diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 0ed5df73e7dc..23b5fc947601 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -7,7 +7,7 @@ If this issue is a bug report: - You can also install the latest version from the Releases section - https://github.com/Azure/azure-powershell/releases - Ensure that you repro the issue with $DebugPreference = "Continue" to receive the debug stream -- If this bug involves an exception being thrown, please run Resolve-AzureRmError to receive extended information on the error +- If this bug involves an exception being thrown, please run Resolve-AzError to receive extended information on the error - Fill out the below template If this issue is not a bug report, please remove the below template diff --git a/README.md b/README.md index 1bf2bc4ab27a..075e6e3029e5 100644 --- a/README.md +++ b/README.md @@ -67,53 +67,53 @@ For more detailed instructions on using Azure PowerShell, please refer to the [g ### Log in to Azure -To connect to Azure, use the [`Connect-AzureRmAccount`](https://docs.microsoft.com/en-us/powershell/module/azurerm.profile/connect-azurermaccount) cmdlet. +To connect to Azure, use the [`Connect-AzAccount`](https://docs.microsoft.com/en-us/powershell/module/azurerm.profile/connect-Azaccount) cmdlet. ```powershell # Interactive login - you will get a dialog box asking for your Azure credentials -Connect-AzureRmAccount +Connect-AzAccount # Non-interactive login - you will need to use a service principal -Connect-AzureRmAccount -ServicePrincipal -ApplicationId "http://my-app" -Credential $PSCredential -TenantId $TenantId +Connect-AzAccount -ServicePrincipal -ApplicationId "http://my-app" -Credential $PSCredential -TenantId $TenantId ``` To log into a specific cloud (_AzureChinaCloud_, _AzureCloud_, _AzureGermanCloud_, _AzureUSGovernment_), use the `Environment` parameter: ```powershell # Log into a specific cloud - in this case, the Azure China cloud -Connect-AzureRmAccount -Environment AzureChinaCloud +Connect-AzAccount -Environment AzureChinaCloud ``` ### Getting and setting your session context -To view the context you are using in the current session, which contains the subscription and tenant, use the [`Get-AzureRmContext`](https://docs.microsoft.com/en-us/powershell/module/azurerm.profile/get-azurermcontext) cmdlet: +To view the context you are using in the current session, which contains the subscription and tenant, use the [`Get-AzContext`](https://docs.microsoft.com/en-us/powershell/module/azurerm.profile/get-Azcontext) cmdlet: ```powershell # Get the context you are currently using -Get-AzureRmContext +Get-AzContext # List all available contexts in the current session -Get-AzureRmContext -ListAvailable +Get-AzContext -ListAvailable ``` -To get the subscriptions in a tenant, use the [`Get-AzureRmSubscription`](https://docs.microsoft.com/en-us/powershell/module/azurerm.profile/get-azurermsubscription) cmdlet: +To get the subscriptions in a tenant, use the [`Get-AzSubscription`](https://docs.microsoft.com/en-us/powershell/module/azurerm.profile/get-azurermsubscription) cmdlet: ```powershell # Get all of the subscriptions in your current tenant -Get-AzureRmSubscription +Get-AzSubscription # Get all of the subscriptions in a specific tenant -Get-AzureRmSubscription -TenantId $TenantId +Get-AzSubscription -TenantId $TenantId ``` -To change the subscription that you are using for your current context, use the [`Set-AzureRmContext`]() cmdlet: +To change the subscription that you are using for your current context, use the [`Set-AzContext`]() cmdlet: ```powershell # Set the context to a specific subscription -Set-AzureRmContext -Subscription $SubscriptionName -Name "MyContext" +Set-AzContext -Subscription $SubscriptionName -Name "MyContext" # Set the context using piping -Get-AzureRmSubscription -SubscriptionName $SubscriptionName | Set-AzureRmContext -Name "MyContext" +Get-AzSubscription -SubscriptionName $SubscriptionName | Set-AzContext -Name "MyContext" ``` ### Discovering cmdlets @@ -136,17 +136,17 @@ Get-Command -Module AzureRM.Compute -Name "*VM*" To view the help content for a cmdlet, use the `Get-Help` cmdlet: ```powershell -# View the basic help content for Get-AzureRmSubscription -Get-Help -Name Get-AzureRmSubscription +# View the basic help content for Get-AzSubscription +Get-Help -Name Get-AzSubscription -# View the examples for Get-AzureRmSubscription -Get-Help -Name Get-AzureRmSubscription -Examples +# View the examples for Get-AzSubscription +Get-Help -Name Get-AzSubscription -Examples -# View the full help content for Get-AzureRmSubscription -Get-Help -Name Get-AzureRmSubscription -Full +# View the full help content for Get-AzSubscription +Get-Help -Name Get-AzSubscription -Full -# View the help content for Get-AzureRmSubscription on https://docs.microsoft.com -Get-Help -Name Get-AzureRmSubscription -Online +# View the help content for Get-AzSubscription on https://docs.microsoft.com +Get-Help -Name Get-AzSubscription -Online ``` ## Reporting Issues and Feedback diff --git a/documentation/breaking-changes/breaking-changes-tool-help.md b/documentation/breaking-changes/breaking-changes-tool-help.md index 42d2474ed3fb..1f13a77e6ef7 100644 --- a/documentation/breaking-changes/breaking-changes-tool-help.md +++ b/documentation/breaking-changes/breaking-changes-tool-help.md @@ -59,8 +59,8 @@ To add an alias to the original cmdlet name, use the `Alias` attribute for the c If you need to, you can add multiple aliases for cmdlets that need to be renamed twice. ```cs -[Cmdlet(VerbsCommunications.Connect, "AzureRmAccount")] -[Alias("Login-AzureRmAccount", "Login-AzAccount", "Add-AzureRmAccount")] +[Cmdlet(VerbsCommunications.Connect, "AzAccount")] +[Alias("Login-AzAccount", "Add-AzAccount")] public class ConnectAzureRmAccount : Cmdlet { protected override void BeginProcessing() diff --git a/documentation/development-docs/azure-powershell-design-guidelines.md b/documentation/development-docs/azure-powershell-design-guidelines.md index 18131ff5ec14..d606272cc52b 100644 --- a/documentation/development-docs/azure-powershell-design-guidelines.md +++ b/documentation/development-docs/azure-powershell-design-guidelines.md @@ -98,7 +98,7 @@ Specified by the `OutputType` attribute, this piece of metadata lets the user kn In most cases, cmdlets will be returning an object corresponding to a resource(s) that a user is performing an action on. Rather than returning the .NET SDK type for that resource (exposing .NET SDK types in PowerShell cmdlets is _strongly_ discouraged), we suggest creating a new class that wraps this .NET SDK type, allowing for breaking changes in the underlying type while avoiding breaking changes in the PowerShell type. -For example, the `Get-AzureRmVM` cmdlet uses the .NET SDK to retrieve objects of the `VirtualMachine` type, but a new class, `PSVirtualMachine`, was created to wrap the type from the .NET SDK, and is returned by the cmdlet. If, in the future, the `VirtualMachine` type in the .NET SDK has a property removed, that property can still be maintained in PowerShell by adding it to the `PSVirtualMachine` and recreating the value, thus avoiding a breaking change in the cmdlet(s). +For example, the `Get-AzVM` cmdlet uses the .NET SDK to retrieve objects of the `VirtualMachine` type, but a new class, `PSVirtualMachine`, was created to wrap the type from the .NET SDK, and is returned by the cmdlet. If, in the future, the `VirtualMachine` type in the .NET SDK has a property removed, that property can still be maintained in PowerShell by adding it to the `PSVirtualMachine` and recreating the value, thus avoiding a breaking change in the cmdlet(s). #### Returning No Output @@ -235,10 +235,10 @@ Below are the two main piping scenarios that should be applied in the cmdlets wi ### ResourceId -In this scenario, the user is able to pipe the result of a generic resources cmdlet into a cmdlet that accepts `ResourceId`. The below example shows how a user can use the generic resources cmdlet `Find-AzureRmResource` to get all resources of type `Foo` and remove them: +In this scenario, the user is able to pipe the result of a generic resources cmdlet into a cmdlet that accepts `ResourceId`. The below example shows how a user can use the generic resources cmdlet `Find-AzResource` to get all resources of type `Foo` and remove them: ```powershell -Find-AzureRmResource -ResourceType Microsoft.Foo/foo | Remove-AzureRmFoo +Find-AzResource -ResourceType Microsoft.Foo/foo | Remove-AzFoo ``` For more information on enabling the `ResourceId` piping scenario and more examples, please see the ["Using the `ResourceId` parameter"](./piping-in-powershell.md#using-the-resourceid-parameter) section of the _Piping in PowerShell_ document. @@ -248,7 +248,7 @@ For more information on enabling the `ResourceId` piping scenario and more examp In this scenario, the user is able to pipe the result of a cmdlet that returns a resource into a cmdlet that accepts that resource as an `InputObject`. The below example shows how a user can get a `Foo` object from one cmdlet and pipe it to a cmdlet that removes it: ```powershell -Get-AzureRmFoo -Name "FooName" -ResourceGroupName "RG" | Remove-AzureRmFoo +Get-AzFoo -Name "FooName" -ResourceGroupName "RG" | Remove-AzFoo ``` For more information on enabling the `InputObject` piping scenario and more examples, please see the ["Using the `InputObject` parameter"](./piping-in-powershell.md#using-the-inputobject-parameter) section of the _Piping in PowerShell_ document. @@ -269,7 +269,7 @@ Once you add the parameter, please manually test that the job is created and suc To ensure that `-AsJob` is not broken in future changes, please add a test for this parameter. To update tests to include this parameter, use the following pattern: ````powershell -$job = Get-AzureRmSubscription +$job = Get-AzSubscription $job | Wait-Job $subcriptions = $job | Receive-Job ```` diff --git a/documentation/development-docs/azure-powershell-developer-guide.md b/documentation/development-docs/azure-powershell-developer-guide.md index 8a4bfee074b4..b816397b68b7 100644 --- a/documentation/development-docs/azure-powershell-developer-guide.md +++ b/documentation/development-docs/azure-powershell-developer-guide.md @@ -394,7 +394,7 @@ Once you add the parameter, please manually test that the job is created and suc To ensure that `-AsJob` is not broken in future changes, please add a test for this parameter. To update tests to include this parameter, use the following pattern: ````powershell -$job = Get-AzureRmSubscription +$job = Get-AzSubscription $job | Wait-Job $subcriptions = $job | Receive-Job ```` diff --git a/documentation/development-docs/generate-format.ps1xml-file.md b/documentation/development-docs/generate-format.ps1xml-file.md index bde47affacef..eee4ee3ca822 100644 --- a/documentation/development-docs/generate-format.ps1xml-file.md +++ b/documentation/development-docs/generate-format.ps1xml-file.md @@ -14,7 +14,7 @@ Our team trends to make the cmdlets output more convenient and consistent across # How table view output works by default. - As an example let's consider [Get-AzureRmSubscription](https://github.com/Azure/azure-powershell/blob/preview/src/ResourceManager/Profile/Commands.Profile/Subscription/GetAzureRMSubscription.cs) cmdlet. + As an example let's consider [Get-AzSubscription](https://github.com/Azure/azure-powershell/blob/preview/src/ResourceManager/Profile/Commands.Profile/Subscription/GetAzureRMSubscription.cs) cmdlet. The cmdlet class specifies the ```PSAzureSubscription``` class as an output type with the **OutputType attribute**: @@ -86,7 +86,7 @@ namespace Microsoft.Azure.Commands.Profile.Models PowerShell uses these properties for the cmdlet table formated output: ```PowerShell -PS C:\> Get-AzureRmSubscription | Format-Table +PS C:\> Get-AzSubscription | Format-Table Id Name State SubscriptionId TenantId CurrentStorageAcc ountName @@ -340,7 +340,7 @@ d----- 4/25/2018 4:35 PM Storage PS E:\git\azure-powershell> Import-Module E:\git\azure-powershell\tools\RepoTasks\RepoTasks.Cmdlets\bin\Debug\RepoTasks.Cmdlets.dll ``` 3. Run the **New-FormatPs1Xml** cmdlet. -* The cmdlet has one required argument **-ModulePath** - a path to a module manifest (psd1) file. Since in our example we are using the Get-AzureRmSubscription cmdlet from the AzureRM.Profile module we need to specify path to the AzureRm.Profile module manifest which is +* The cmdlet has one required argument **-ModulePath** - a path to a module manifest (psd1) file. Since in our example we are using the Get-AzSubscription cmdlet from the AzureRM.Profile module we need to specify path to the AzureRm.Profile module manifest which is ``` E:\git\azure-powershell\src\Package\Debug\ResourceManager\AzureResourceManager\AzureRM.Profile\AzureRM.Profile.psd1 ``` @@ -394,7 +394,7 @@ PS C:\> Import-Module E:\git\azure-powershell\src\Package\Debug\ResourceManager\ 4. Try your cmdlet out. In our example it is Get-AuzreRmSubsription: ```Powershell -PS C:\> Get-AzureRmSubscription +PS C:\> Get-AzSubscription Subscription Id Subscription Name State Tenant Id --------------- ----------------- ----- --------- diff --git a/documentation/development-docs/patterns-for-standard-cmdlets.md b/documentation/development-docs/patterns-for-standard-cmdlets.md index ee514ce3c492..a78b140a159b 100644 --- a/documentation/development-docs/patterns-for-standard-cmdlets.md +++ b/documentation/development-docs/patterns-for-standard-cmdlets.md @@ -26,11 +26,11 @@ All top-level resources should have a `Get-*` cmdlet that allows users to list t To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: ``` -Get-AzureRmFoo [-ResourceGroupName ] +Get-AzFoo [-ResourceGroupName ] -Get-AzureRmFoo -ResourceGroupName -Name +Get-AzFoo -ResourceGroupName -Name -Get-AzureRmFoo -ResourceId +Get-AzFoo -ResourceId ``` The first parameter set has an optional `-ResourceGroupName` parameter, which allows the user to list all resources in a subscription or in a resource group. The second parameter set has required `-ResourceGroupName` and `-Name` parameters, which allows the user to get a specific resource. The third parameter set has a required `-ResourceId` parameter, which allows the user to get a specific resource by resource id. @@ -107,7 +107,7 @@ _Note_: for long-running operations (~15s or longer), it is advised to add the [ To enable the above scenario, only one parameter set is needed: ``` -New-AzureRmFoo -ResourceGroupName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +New-AzFoo -ResourceGroupName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] ``` This parameter set has required `-ResourceGroupName` and `-Name` parameters to satisfy the identity properties of the resource, as well as a few optional `-PropertyX` parameters that allows the user to set values for properties. The parameter set also has optional `-WhatIf` and `-Confirm` parameters that are automatically included from the implementation of `SupportsShouldProcess`. @@ -156,7 +156,7 @@ namespace Microsoft.Azure.Commands.Foo if (existingFoo != null) { - throw new Exception(string.Format("A Foo with name '{0}' in resource group '{1}' already exists. Please use Set/Update-AzureRmFoo to update an existing Foo.", this.Name, this.ResourceGroupName)); + throw new Exception(string.Format("A Foo with name '{0}' in resource group '{1}' already exists. Please use Set/Update-AzFoo to update an existing Foo.", this.Name, this.ResourceGroupName)); } existingFoo = new Foo() @@ -190,11 +190,11 @@ All top-level resources should have a `Remove-*` cmdlet that allows users to del To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: ``` -Remove-AzureRmFoo -ResourceGroupName -Name [-PassThru] [-WhatIf] [-Confirm] +Remove-AzFoo -ResourceGroupName -Name [-PassThru] [-WhatIf] [-Confirm] -Remove-AzureRmFoo -InputObject [-PassThru] [-WhatIf] [-Confirm] +Remove-AzFoo -InputObject [-PassThru] [-WhatIf] [-Confirm] -Remove-AzureRmFoo -ResourceId [-PassThru] [-WhatIf] [-Confirm] +Remove-AzFoo -ResourceId [-PassThru] [-WhatIf] [-Confirm] ``` The first parameter set has required `-ResourceGroupName` and `-Name` parameters, which allows the user to explicitly provide the identity properties of the resource that they want to delete. The second parameter has a required `-InputObject` parameter, which allows the user to pipe the result of the `Get-*` and `Set/Update-*` cmdlets to this cmdlet and delete the corresponding resource. The third parameter has a required `-ResourceId` parameter, which allows the user to delete a specific resource by resource id. @@ -274,11 +274,11 @@ All top-level resources should have a `Set-*` cmdlet that allows users to update To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: ``` -Set-AzureRmFoo -ResourceGroupName -Name -Property1 -Property2 ... [-WhatIf] [-Confirm] +Set-AzFoo -ResourceGroupName -Name -Property1 -Property2 ... [-WhatIf] [-Confirm] -Set-AzureRmFoo -InputObject [-Property1 ] -[Property2 ] ... [-WhatIf] [-Confirm] +Set-AzFoo -InputObject [-Property1 ] -[Property2 ] ... [-WhatIf] [-Confirm] -Set-AzureRmFoo -ResourceId -Property1 -Property2 ... [-WhatIf] [-Confirm] +Set-AzFoo -ResourceId -Property1 -Property2 ... [-WhatIf] [-Confirm] ``` The first parameter set has required `-ResourceGroupName` and `-Name` parameters, as well as required property parameters to set their values on the resource. The second parameter has a required `-InputObject` parameter, as well as optional property parameters that override the value of the property on the given object if provided. The third parameter has a required `-ResourceId` parameter, as well as required property parameters to set their values on the resource. @@ -357,7 +357,7 @@ namespace Microsoft.Azure.Commands.Foo if (foo == null) { - throw new Exception(string.Format("A Foo with name '{0}' in resource group '{1}' does not exist. Please use New-AzureRmFoo to create a Foo with these properties.", this.Name, this.ResourceGroupName)); + throw new Exception(string.Format("A Foo with name '{0}' in resource group '{1}' does not exist. Please use New-AzFoo to create a Foo with these properties.", this.Name, this.ResourceGroupName)); } foo.Property1 = this.Property1; @@ -388,11 +388,11 @@ _Note_: if the only property that a user is able to update through the `PATCH` A To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: ``` -Update-AzureRmFoo -ResourceGroupName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +Update-AzFoo -ResourceGroupName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] -Update-AzureRmFoo -InputObject [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +Update-AzFoo -InputObject [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] -Update-AzureRmFoo -ResourceId [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +Update-AzFoo -ResourceId [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] ``` The first parameter set has required `-ResourceGroupName` and `-Name` parameters, the second parameter set has a required `-InputObject` parameter, and the third parameter set has a required `-ResourceId` parameter. All three parameter sets have optional property parameters that can be used to override the value of the property set on the retrieved/provided resource. @@ -464,7 +464,7 @@ namespace Microsoft.Azure.Commands.Foo if (foo == null) { - throw new Exception(string.Format("A Foo with name '{0}' in resource group '{1}' does not exist. Please use New-AzureRmFoo to create a Foo with these properties.", this.Name, this.ResourceGroupName)); + throw new Exception(string.Format("A Foo with name '{0}' in resource group '{1}' does not exist. Please use New-AzFoo to create a Foo with these properties.", this.Name, this.ResourceGroupName)); } foo.Property1 = this.IsParameterBound(c => c.Property1) ? this.Property1 : foo.Property1; @@ -495,11 +495,11 @@ All child resources should have a `Get-*` cmdlet that allows users to list the c To enable the scenarios mentioned previously, the cmdlet will need three parameter sets: ``` -Get-AzureRmChildFoo -ResourceGroupName -FooName [-Name ] +Get-AzChildFoo -ResourceGroupName -FooName [-Name ] -Get-AzureRmChildFoo -FooObject [-Name ] +Get-AzChildFoo -FooObject [-Name ] -Get-AzureRmChildFoo -ResourceId +Get-AzChildFoo -ResourceId ``` The first parameter set has mandatory `-ResourceGroupName` and `-FooName` parameters to get the identity information about the parent resource, and then an optional `-Name` parameter to allow the user to either list all child resources contained in the given parent or get the specific child resource. The second parameter set has required `-FooObject` parameter, which can be piped from the parent `Get-*` or `Set/Update-*` cmdlet, and an optional `-Name` parameter. The third parameter set has a required `-ResourceId` parameter, which allows the user to get a specific child resource by resource id. @@ -586,9 +586,9 @@ _Note_: for long-running operations (~15s or longer), it is advised to add the [ To enable the above scenario, the cmdlet will need two parameter sets: ``` -New-AzureRmChildFoo -ResourceGroupName -FooName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +New-AzChildFoo -ResourceGroupName -FooName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] -New-AzureRmChildFoo -FooObject -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +New-AzChildFoo -FooObject -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] ``` The first parameter set has required `-ResourceGroupName`, `-FooName` and `-Name` parameters to satisfy the identity properties of the child resource, as well as a few optional `-PropertyX` parameters that allows the user to set values for the properties. The second parameter set has a required `-FooObject` parameter that can be piped from the parent resource's `Get-*` and `Set/Update-*` cmdlets. @@ -652,7 +652,7 @@ namespace Microsoft.Azure.Commands.Foo if (existingChildFoo != null) { - throw new Exception(string.Format("A ChildFoo with name '{0}' in resource group '{1}' under parent Foo '{2}' already exists. Please use Set/Update-AzureRmChildFoo to update an existing ChildFoo.", this.Name, this.ResourceGroupName, this.FooName)); + throw new Exception(string.Format("A ChildFoo with name '{0}' in resource group '{1}' under parent Foo '{2}' already exists. Please use Set/Update-AzChildFoo to update an existing ChildFoo.", this.Name, this.ResourceGroupName, this.FooName)); } existingChildFoo = new ChildFoo() @@ -687,13 +687,13 @@ All child resources should have a `Remove-*` cmdlet that allows users to delete To enable the scenarios mentioned previously, the cmdlet will need four parameter sets: ``` -Remove-AzureRmChildFoo -ResourceGroupName -FooName -Name [-PassThru] [-WhatIf] [-Confirm] +Remove-AzChildFoo -ResourceGroupName -FooName -Name [-PassThru] [-WhatIf] [-Confirm] -Remove-AzureRmChildFoo -FooObject -Name [-PassThru] [-WhatIf] [-Confirm] +Remove-AzChildFoo -FooObject -Name [-PassThru] [-WhatIf] [-Confirm] -Remove-AzureRmChildFoo -InputObject [-PassThru] [-WhatIf] [-Confirm] +Remove-AzChildFoo -InputObject [-PassThru] [-WhatIf] [-Confirm] -Remove-AzureRmChildFoo -ResourceId [-PassThru] [-WhatIf] [-Confirm] +Remove-AzChildFoo -ResourceId [-PassThru] [-WhatIf] [-Confirm] ``` The first parameter set has required `-ResourceGroupName`, `-FooName` and `-Name` parameters, which allows the user to explicitly provide the identity properties of the child resource that they want to delete. The second parameter has a required `-FooObject` parameter, which allows the user to pipe the result of the parent resource's `Get-*` and `Set/Update-*` cmdlets to this cmdlet, as well as a required `-Name` parameter. The third parameter has a required `-InputObject` parameter, which allows the user to pipe the result of the `Get-*` and `Set/Update-*` cmdlets to this cmdlet and delete the corresponding child resource. The fourth parameter has a required `-ResourceId` parameter, which allows the user to delete the specific child resource by resource id. @@ -791,13 +791,13 @@ All child resources should have a `Set-*` cmdlet that allows users to update an To enable the scenarios mentioned previously, the cmdlet will need four parameter sets: ``` -Set-AzureRmChildFoo -ResourceGroupName -FooName -Name -Property1 -Property2 ... [-WhatIf] [-Confirm] +Set-AzChildFoo -ResourceGroupName -FooName -Name -Property1 -Property2 ... [-WhatIf] [-Confirm] -Set-AzureRmChildFoo -FooObject -Name -Property1 -Property2 ... [-WhatIf] [-Confirm] +Set-AzChildFoo -FooObject -Name -Property1 -Property2 ... [-WhatIf] [-Confirm] -Set-AzureRmChildFoo -InputObject [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +Set-AzChildFoo -InputObject [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] -Set-AzureRmChildFoo -ResourceId -Property1 -Property2 ... [-WhatIf] [-Confirm] +Set-AzChildFoo -ResourceId -Property1 -Property2 ... [-WhatIf] [-Confirm] ``` The first parameter set has required `-ResourceGroupName`, `-FooName` and `-Name` parameters, as well as required property parameters to set their values on the child resource. The second parameter set has a required `-FooObject` parameter, which allows the user to pipe the result of the parent resource's `Get-*` and `Set/Update-*` cmdlets to this cmdlet, as well as required property parameters. The third parameter set has a required `-InputObject` parameter, as well as optional property parameters that override the value of the property on the given object if provided. The fourth parameter set has a required `-ResourceIid` parameter, as well as required property parameters to set their values on the child resource. @@ -896,7 +896,7 @@ namespace Microsoft.Azure.Commands.Foo if (childFoo == null) { - throw new Exception(string.Format("A ChildFoo with name '{0}' in resource group '{1}' under parent Foo '{2}' does not exist. Please use New-AzureRmChildFoo to create a ChildFoo with these properties.", this.Name, this.ResourceGroupName, this.FooName)); + throw new Exception(string.Format("A ChildFoo with name '{0}' in resource group '{1}' under parent Foo '{2}' does not exist. Please use New-AzChildFoo to create a ChildFoo with these properties.", this.Name, this.ResourceGroupName, this.FooName)); } childFoo.Property1 = this.Property1; @@ -925,13 +925,13 @@ All child resources should have an `Update-*` cmdlet that allows users to update To enable the scenarios mentioned previously, the cmdlet will need four parameter sets: ``` -Update-AzureRmChildFoo -ResourceGroupName -FooName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +Update-AzChildFoo -ResourceGroupName -FooName -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] -Update-AzureRmChildFoo -FooObject -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +Update-AzChildFoo -FooObject -Name [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] -Update-AzureRmChildFoo -InputObject [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +Update-AzChildFoo -InputObject [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] -Update-AzureRmChildFoo -ResourceId [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] +Update-AzChildFoo -ResourceId [-Property1 ] [-Property2 ] ... [-WhatIf] [-Confirm] ``` The first parameter set has required `-ResourceGroupName`, `-FooName` and `-Name` parameters, the second parameter set has required `-FooObject` and `-Name` parameters, the third parameter set has a required `-InputObject` parameter, and the fourth parameter set has a required `-ResourceId` parameter. All four parameter sets have optional property parameters that can be used to override the value of the property set on the retrieved/provided resource. @@ -1021,7 +1021,7 @@ namespace Microsoft.Azure.Commands.Foo if (childFoo == null) { - throw new Exception(string.Format("A ChildFoo with name '{0}' in resource group '{1}' under parent Foo '{2}' does not exist. Please use New-AzureRmChildFoo to create a ChildFoo with these properties.", this.Name, this.ResourceGroupName, this.FooName)); + throw new Exception(string.Format("A ChildFoo with name '{0}' in resource group '{1}' under parent Foo '{2}' does not exist. Please use New-AzChildFoo to create a ChildFoo with these properties.", this.Name, this.ResourceGroupName, this.FooName)); } childFoo.Property1 = this.IsParameterBound(c => c.Property1) ? this.Property1 : childFoo.Property1; diff --git a/documentation/development-docs/piping-in-powershell.md b/documentation/development-docs/piping-in-powershell.md index 4df2f23e41fa..6c6e13cbece2 100644 --- a/documentation/development-docs/piping-in-powershell.md +++ b/documentation/development-docs/piping-in-powershell.md @@ -10,59 +10,59 @@ There are two main scenarios that we wish to enable in cmdlets for Azure PowerSh For all resources, `InputObject` should be implemented for the Remove/Set/Update cmdlets (and any other cmdlet where an existing resource is being operated on). The implementation of this will be a new parameter set: ```powershell -Remove/Set/Update-AzureRm -InputObject +Remove/Set/Update-Az -InputObject ``` For all child resources, `InputObject` should also be implemented for the Get/New cmdlets. The implementation of this will be a new parameter set: ```powershell -Get/New-AzureRm -ParentObject +Get/New-Az -ParentObject ``` ### Long explanation -This scenario should be used when piping objects around within the same module. For example, if you have a set of `Get-AzureRmFoo`, `Remove-AzureRmFoo`, and `Set-AzureRmFoo` cmdlets, the `Remove-AzureRmFoo` and `Set-AzureRmFoo` cmdlets should have a parameter set that takes the `InputObject` parameter of type `PSFoo` so that a user can do the following: +This scenario should be used when piping objects around within the same module. For example, if you have a set of `Get-AzFoo`, `Remove-AzFoo`, and `Set-AzFoo` cmdlets, the `Remove-AzFoo` and `Set-AzFoo` cmdlets should have a parameter set that takes the `InputObject` parameter of type `PSFoo` so that a user can do the following: ```powershell # --- Piping scenario --- # Setting and removing an individual object -Get-AzureRmFoo -Name "FooName" -ResourceGroupName "RG" | Set-AzureRmFoo -Get-AzureRmFoo -Name "FooName" -ResourceGroupName "RG" | Remove-AzureRmFoo +Get-AzFoo -Name "FooName" -ResourceGroupName "RG" | Set-AzFoo +Get-AzFoo -Name "FooName" -ResourceGroupName "RG" | Remove-AzFoo # Setting and removing a collection of objects -Get-AzureRmFoo | Set-AzureRmFoo -Get-AzureRmFoo | Remove-AzureRmFoo +Get-AzFoo | Set-AzFoo +Get-AzFoo | Remove-AzFoo # --- Non-piping scenario --- # Setting and removing an individual object -$foo = Get-AzureRmFoo -Name "FooName" -ResourceGroupName "RG" -Set-AzureRmFoo -InputObject $foo -Remove-AzureRmFoo -InputObject $foo +$foo = Get-AzFoo -Name "FooName" -ResourceGroupName "RG" +Set-AzFoo -InputObject $foo +Remove-AzFoo -InputObject $foo # Setting and removing a collection of objects -Get-AzureRmFoo | ForEach-Object { Set-AzureRmFoo -InputObject $_ } -Get-AzureRmFoo | ForEach-Object { Remove-AzureRmFoo -InputObject $_ } +Get-AzFoo | ForEach-Object { Set-AzFoo -InputObject $_ } +Get-AzFoo | ForEach-Object { Remove-AzFoo -InputObject $_ } ``` -Another time that this scenario applies is when you have cmdlets for child resources that need information about the parent (top-level) resource. For example you can pipe in the whole parent object to the `New-AzureRmFooBar` and `Get-AzureRmFooBar` cmdlets to get the child resources, and then pipe the child resource object to the `Remove-AzureRmFooBar` and `Set-AzureRmFooBar` cmdlets. +Another time that this scenario applies is when you have cmdlets for child resources that need information about the parent (top-level) resource. For example you can pipe in the whole parent object to the `New-AzFooBar` and `Get-AzFooBar` cmdlets to get the child resources, and then pipe the child resource object to the `Remove-AzFooBar` and `Set-AzFooBar` cmdlets. ```powershell # --- Piping scenario --- # Getting all of child resources from all of the parent resources and removing them -Get-AzureRmFoo | Get-AzureRmFooBar | Remove-AzureRmFooBar +Get-AzFoo | Get-AzFooBar | Remove-AzFooBar # Getting all of the child resources from all of the parent resources in a resource group and removing them -Get-AzureRmFoo -ResourceGroupName "RG" | Get-AzureRmFooBar | Remove-AzureRmFooBar +Get-AzFoo -ResourceGroupName "RG" | Get-AzFooBar | Remove-AzFooBar # Getting all of the child resources from a specific parent resource and removing them -Get-AzureRmFoo -ResourceGroupName "RG" -Name "FooName" | Get-AzureRmFooBar | Remove-AzureRmFooBar +Get-AzFoo -ResourceGroupName "RG" -Name "FooName" | Get-AzFooBar | Remove-AzFooBar # --- Non-piping scenario --- # Getting all of the child resources from a specific parent resource and removing them -$foo = Get-AzureRmFoo -ResourceGroupName "RG" -Name "FooName" -$fooBar = Get-AzureRmFooBar -InputObject $foo -Remove-AzureRmFooBar -InputObject $fooBar +$foo = Get-AzFoo -ResourceGroupName "RG" -Name "FooName" +$fooBar = Get-AzFooBar -InputObject $foo +Remove-AzFooBar -InputObject $fooBar ``` ## Using the `ResourceId` parameter @@ -71,40 +71,40 @@ Remove-AzureRmFooBar -InputObject $fooBar For all resources, `ResourceId` should be implemented for the Remove/Set/Update cmdlets (and any other cmdlet where an existing resource is being operated on). The implementation of this will be a new parameter set: ```powershell -Remove/Set/Update-AzureRm -ResourceId +Remove/Set/Update-Az -ResourceId ``` For all child resources, `ResourceId` should also be implemented for the Get/New cmdlets. The implementation of this will be a new parameter set: ```powershell -Get/New-AzureRm -ParentResourceId +Get/New-Az -ParentResourceId ``` ### Long explanation -In this scenario, we are using the generic cmdlets found in the `AzureRM.Resources` module. These cmdlets, `Find-AzureRmResource` and `Get-AzureRmResource`, return a `PSCustomObject` that has a `ResourceId` property, which is the unique identifier for the given resource. Since this identifier can parsed to get the name and resource group name for a top-level resource, we can create a parameter set that has a `ResourceId` parameter that accepts its value from the pipeline by property name, allowing us to accept piping from these generic cmdlets. +In this scenario, we are using the generic cmdlets found in the `AzureRM.Resources` module. These cmdlets, `Find-AzResource` and `Get-AzResource`, return a `PSCustomObject` that has a `ResourceId` property, which is the unique identifier for the given resource. Since this identifier can parsed to get the name and resource group name for a top-level resource, we can create a parameter set that has a `ResourceId` parameter that accepts its value from the pipeline by property name, allowing us to accept piping from these generic cmdlets. ```powershell # --- Piping scenario --- # Remove all Foo objects in the current subscription -Find-AzureRmResource -ResourceType Microsoft.Foo/foo | Remove-AzureRmFoo +Find-AzResource -ResourceType Microsoft.Foo/foo | Remove-AzFoo # Remove all Foo objects in a given resource group -Find-AzureRmResource -ResourceType Microsoft.Foo/foo -ResourceGroupEquals "RG" | Remove-AzureRmFoo +Find-AzResource -ResourceType Microsoft.Foo/foo -ResourceGroupEquals "RG" | Remove-AzFoo # Remove a specific Foo object -Find-AzureRmResource -ResourceGroupEquals "RG" -ResourceNameEquals "FooName" | Remove-AzureRmFoo +Find-AzResource -ResourceGroupEquals "RG" -ResourceNameEquals "FooName" | Remove-AzFoo # -- Non-piping scenario --- # Removing all Foo objects in the current subscription -Find-AzureRmResource -ResourceType Microsoft.Foo/foo | ForEach-Object { Remove-AzureRmFoo -ResourceId $_.ResourceId } +Find-AzResource -ResourceType Microsoft.Foo/foo | ForEach-Object { Remove-AzFoo -ResourceId $_.ResourceId } # Remove all Foo objects in a given resource group -Find-AzureRmResource -ResourceType Microsoft.Foo/foo -ResourceGroupEquals "RG" | ForEach-Object { Remove-AzureRmFoo -ResourceId $_.ResourceId } +Find-AzResource -ResourceType Microsoft.Foo/foo -ResourceGroupEquals "RG" | ForEach-Object { Remove-AzFoo -ResourceId $_.ResourceId } # Remove a specific Foo object -Find-AzureRmResource -ResourceGroupEquals "RG" -ResourceNameEquals "FooName" | ForEach-Object { Remove-AzureRmFoo -ResourceId $_.ResourceId } +Find-AzResource -ResourceGroupEquals "RG" -ResourceNameEquals "FooName" | ForEach-Object { Remove-AzFoo -ResourceId $_.ResourceId } ``` To implement this scenario, please see the [`ResourceIdentifier`](https://github.com/Azure/azure-powershell/blob/preview/src/ResourceManager/Common/Commands.ResourceManager.Common/Utilities/Models/ResourceIdentifier.cs) class in the `Commands.ResourceManager.Common` project. This class will allow you to create a `ResourceIdentifier` object that accepts a `ResourceId` string in its constructor and has properties `ResourceName`, `ResourceGroupName`, and others. @@ -112,27 +112,27 @@ To implement this scenario, please see the [`ResourceIdentifier`](https://github ## Summary For all Remove/Set/Update cmdlets (and any other cmdlet where an existing resource is being operated on), you will have three parameter sets (and potentially a multiple of three if you have initially have multiple parameter sets): ```powershell -Remove/Set/Update-AzureRm -Remove/Set/Update-AzureRm -InputObject -Remove/Set/Update-AzureRm -ResourceId +Remove/Set/Update-Az +Remove/Set/Update-Az -InputObject +Remove/Set/Update-Az -ResourceId ``` For example, for child resource "Widget" with parent "Foo", there will be these three parameter sets for Remove: ```powershell -Remove-AzureRmWidget -ResourceGroupName -FooName -Name -Remove-AzureRmWidget -InputObject -Remove-AzureRmWidget -ResourceId +Remove-AzWidget -ResourceGroupName -FooName -Name +Remove-AzWidget -InputObject +Remove-AzWidget -ResourceId ``` For all child resources, Get/New cmdlets will also have these three parameter sets: ```powershell -Get/New-AzureRm -Get-AzureRm -InputObject -Get/New-AzureRm -ResourceId +Get/New-Az +Get-Az -InputObject +Get/New-Az -ResourceId ``` For example, for child resource "Widget" with parent "Foo", there will be these three parameter sets for New: ```powershell -New-AzureRmWidget -ResourceGroupName -FooName -Name -New-AzureRmWidget -WidgetObject -Name -New-AzureRmWidget -WidgetResourceId -Name +New-AzWidget -ResourceGroupName -FooName -Name +New-AzWidget -WidgetObject -Name +New-AzWidget -WidgetResourceId -Name ``` # Piping in PowerShell (additional information) @@ -144,10 +144,10 @@ In PowerShell, cmdlets pipe objects between one another; cmdlets should return o For example, in Azure PowerShell, you can remove all of your current environments with the following pipeline scenairo: ```powershell -Get-AzureRmEnvironment | Remove-AzureRmEnviornment +Get-AzEnvironment | Remove-AzEnviornment ``` -The cmdlet `Get-AzureRmEnvironment` will return a set of `Environment` objects, and those objects will be individually piped to the `Remove-AzureRmEnvironment` cmdlet, where they will be removed. +The cmdlet `Get-AzEnvironment` will return a set of `Environment` objects, and those objects will be individually piped to the `Remove-AzEnvironment` cmdlet, where they will be removed. When an object is being piped to a cmdlet, PowerShell will first check to see if it can bind that object to a parameter with the same type and has the property `ValueFromPipeline = true`. If this cannot be done, PowerShell will then see if it can bind the properties of the object with parameters that share the same name and have the property `ValueFromPipelineByPropertyName = true`. @@ -155,67 +155,67 @@ When an object is being piped to a cmdlet, PowerShell will first check to see if In this scenario, the object piped to the cmdlet will be bound to a parameter with the same type that has the property `ValueFromPipeline = true`. -For example, you have a `Remove-AzureRmFoo` cmdlet with the following parameter: +For example, you have a `Remove-AzFoo` cmdlet with the following parameter: ```cs [Parameter(ParameterSetName = "ByInputObject", ValueFromPipeline = true)] public PSFoo InputObject { get; set; } ``` -If there is a corresponding `Get-AzureRmFoo` cmdlet that returns a `PSFoo` object, the following scenario is enabled: +If there is a corresponding `Get-AzFoo` cmdlet that returns a `PSFoo` object, the following scenario is enabled: ```powershell # --- Piping scenario --- # Remove an individual PSFoo object -Get-AzureRmFoo -Name "FooName" -ResourceGroupName "RG" | Remove-AzureRmFoo +Get-AzFoo -Name "FooName" -ResourceGroupName "RG" | Remove-AzFoo # Remove all PSFoo objects -Get-AzureRmFoo | Remove-AzureRmFoo +Get-AzFoo | Remove-AzFoo # --- Non-piping scenarios --- # Remove an individual PSFoo object -$foo = Get-AzureRmFoo -Name "FooName" -ResourceGroupName "RG" -Remove-AzureRmFoo -InputObject $foo +$foo = Get-AzFoo -Name "FooName" -ResourceGroupName "RG" +Remove-AzFoo -InputObject $foo # Remove all PSFoo objects -Get-AzureRmFoo | ForEach-Object { Remove-AzureRmFoo -InputObject $_ } +Get-AzFoo | ForEach-Object { Remove-AzFoo -InputObject $_ } ``` -The `PSFoo` object(s) that is returned by the `Get-AzureRmFoo` call will be piped to the `Remove-AzureRmFoo` cmdlet, and becuase that cmdlet has a parameter that accepts a `PSFoo` object by value, PowerShell will bind the object being sent through the pipeline to this `InputObject` parameter. +The `PSFoo` object(s) that is returned by the `Get-AzFoo` call will be piped to the `Remove-AzFoo` cmdlet, and becuase that cmdlet has a parameter that accepts a `PSFoo` object by value, PowerShell will bind the object being sent through the pipeline to this `InputObject` parameter. ### ValueFromPipelineByPropertyName In this scenario, the properties of the object being piped to the cmdlet will be bound to parameters with the same name that have the property `ValueFromPipelineByPropertyName = true`. -For example, you have a `Remove-AzureRmFoo` cmdlet with the following parameters: +For example, you have a `Remove-AzFoo` cmdlet with the following parameters: ```cs [Parameter(ParameterSetName = "ByPropertyName", ValueFromPipelineByPropertyName = true)] public string ResourceId { get; set; } ``` -If there is a corresponding `Get-AzureRmFoo` cmdlet that returns a `PSFoo` object (that has properties `Name` and `ResourceGroupName`), the following scenario is enabled: +If there is a corresponding `Get-AzFoo` cmdlet that returns a `PSFoo` object (that has properties `Name` and `ResourceGroupName`), the following scenario is enabled: ```powershell # --- Piping scenario --- # Remove an individual PSFoo object -Get-AzureRmResource -ResourceId | Remove-AzureRmFoo +Get-AzResource -ResourceId | Remove-AzFoo # Remove all PSFoo objects -Get-AzureRmResource -ResourceType Foo | Remove-AzureRmFoo +Get-AzResource -ResourceType Foo | Remove-AzFoo # --- Non-piping scenario --- # Remove an individual PSFoo object -$foo = Get-AzureRmResource -ResourceId -Remove-AzureRmFoo -ResourceId +$foo = Get-AzResource -ResourceId +Remove-AzFoo -ResourceId # Remove all PSFoo objects -Get-AzureRmFoo | ForEach-Object { Remove-AzureRmFoo -ResourceId } +Get-AzFoo | ForEach-Object { Remove-AzFoo -ResourceId } ``` -The `PSFoo` object(s) that is returned by the `Get-AzureRmFoo` call will be piped to the `Remove-AzureRmFoo` cmdlet, and because that cmdlet has parameters that accept their value from the pipeline by property name, PowerShell will check each of these parameters and see if it can find a corresponding property in the `PSFoo` object that it shares a name with, and bind the value. +The `PSFoo` object(s) that is returned by the `Get-AzFoo` call will be piped to the `Remove-AzFoo` cmdlet, and because that cmdlet has parameters that accept their value from the pipeline by property name, PowerShell will check each of these parameters and see if it can find a corresponding property in the `PSFoo` object that it shares a name with, and bind the value. ### Writing to the Pipeline diff --git a/documentation/development-docs/vm-for-partners.md b/documentation/development-docs/vm-for-partners.md index 299f791ce94f..1931edfc2d7d 100644 --- a/documentation/development-docs/vm-for-partners.md +++ b/documentation/development-docs/vm-for-partners.md @@ -34,7 +34,7 @@ If you need an Azure Virtual Machine with all the [prerequisites](https://github ``` 4. Sign in to your Azure account. ```PowerShell - Connect-AzureRmAccount + Connect-AzAccount ``` 5. Execute the Powershell script. The script essentially does the following: 1. Checks if a **resource group** with the name ```$ResourceGroupName``` exists if not - creates it for you. @@ -46,14 +46,14 @@ If you need an Azure Virtual Machine with all the [prerequisites](https://github ```PowerShell function SelectSubscription() { Write-Host "==> SelectSubscription" - $null = Select-AzureRmSubscription -SubscriptionId $SubscriptionId + $null = Select-AzSubscription -SubscriptionId $SubscriptionId } function CreateResourceGroupIfNone() { Write-Host "==> CreateResourceGroupIfNone" - $null = Get-AzureRmResourceGroup -Name $ResourceGroupName -ErrorVariable rgNotPresent -ErrorAction SilentlyContinue + $null = Get-AzResourceGroup -Name $ResourceGroupName -ErrorVariable rgNotPresent -ErrorAction SilentlyContinue if ($rgNotPresent) { - $null = New-AzureRmResourceGroup -Name $ResourceGroupName -Location $Location + $null = New-AzResourceGroup -Name $ResourceGroupName -Location $Location Write-Host "`tCreated resource group $ResourceGroupName" -ForegroundColor Yellow } } @@ -64,10 +64,10 @@ If you need an Azure Virtual Machine with all the [prerequisites](https://github # Storage Account Write-Host "`tStorage Account" try { - $sa = Get-AzureRmStorageAccount -StorageAccountName $StorageAccountName -ResourceGroupName $ResourceGroupName + $sa = Get-AzStorageAccount -StorageAccountName $StorageAccountName -ResourceGroupName $ResourceGroupName } catch { if ($_ -like "*was not found*") { - $sa = New-AzureRmStorageAccount -ResourceGroupName $ResourceGroupName -Name $StorageAccountName -Location $Location -SkuName Standard_LRS + $sa = New-AzStorageAccount -ResourceGroupName $ResourceGroupName -Name $StorageAccountName -Location $Location -SkuName Standard_LRS Write-Host "`tCreated storage account $StorageAccountName." -ForegroundColor Yellow } else { throw $_.Exception @@ -106,14 +106,14 @@ If you need an Azure Virtual Machine with all the [prerequisites](https://github $Blob = Get-AzureStorageBlob -Context $StorageAccountContext -Container $StorageContainerName -Blob $VhdFileName $BlobUri = $Blob.ICloudBlob.Uri.AbsoluteUri - $ImageConfig = New-AzureRmImageConfig -Location $Location - $ImageConfig = Set-AzureRmImageOsDisk -Image $ImageConfig -OsType Windows -OsState Generalized -BlobUri $BlobUri - $script:Image = New-AzureRmImage -ImageName $ImageName -ResourceGroupName $ResourceGroupName -Image $ImageConfig + $ImageConfig = New-AzImageConfig -Location $Location + $ImageConfig = Set-AzImageOsDisk -Image $ImageConfig -OsType Windows -OsState Generalized -BlobUri $BlobUri + $script:Image = New-AzImage -ImageName $ImageName -ResourceGroupName $ResourceGroupName -Image $ImageConfig } function CreateVmFromImage() { Write-Host "==> CreateVmFromImage" - New-AzureRmVm -Name $VmName -Location $Location -ResourceGroupName $ResourceGroupName -ImageName $Image.Id -Credential $VmCredential -Size $VmSize + New-AzVm -Name $VmName -Location $Location -ResourceGroupName $ResourceGroupName -ImageName $Image.Id -Credential $VmCredential -Size $VmSize } SelectSubscription diff --git a/documentation/testing-docs/using-azure-test-framework.md b/documentation/testing-docs/using-azure-test-framework.md index 94d108e89511..69312e4c00f2 100644 --- a/documentation/testing-docs/using-azure-test-framework.md +++ b/documentation/testing-docs/using-azure-test-framework.md @@ -136,7 +136,7 @@ This is the preferred option for recording tests because it works with both .NET After the service principal is created, you will need to give it access to Azure resources. This can be done with the following PowerShell command, with the [Service Principal Application ID](https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-create-service-principal-portal#get-application-id-and-authentication-key) (this is a guid, not the display name of the service principal) substituted in for `{clientId}`. ```powershell -New-AzureRmRoleAssignment -ServicePrincipalName {clientId} -RoleDefinitionName Contributor +New-AzRoleAssignment -ServicePrincipalName {clientId} -RoleDefinitionName Contributor ``` To use this option, set the following environment variable before starting Visual Studio. The following values are substituted into the below connection string: diff --git a/src/ResourceManager/Aks/Commands.Aks/Commands/StartAzureRmAksDashboard.cs b/src/ResourceManager/Aks/Commands.Aks/Commands/StartAzureRmAksDashboard.cs index 83b4f62f4a3c..6224dcc8a2c2 100644 --- a/src/ResourceManager/Aks/Commands.Aks/Commands/StartAzureRmAksDashboard.cs +++ b/src/ResourceManager/Aks/Commands.Aks/Commands/StartAzureRmAksDashboard.cs @@ -209,7 +209,7 @@ public class KubeTunnelJob : Job2 private readonly string _dashPod; private string _statusMsg = "Initializing"; - public KubeTunnelJob(string credFilePath, string dashPod) : base("Start-AzureRmKubernetesDashboard", + public KubeTunnelJob(string credFilePath, string dashPod) : base("Start-AzKubernetesDashboard", "Kubectl-Tunnel") { _credFilePath = credFilePath; diff --git a/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Commands/Synchronize-AzureASInstance.cs b/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Commands/Synchronize-AzureASInstance.cs index 3871ca6cfbd1..3ffc0911a8ba 100644 --- a/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Commands/Synchronize-AzureASInstance.cs +++ b/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Commands/Synchronize-AzureASInstance.cs @@ -140,7 +140,7 @@ public override void ExecuteCmdlet() WriteObject(string.Format("Sending sync request for database '{0}' to server '{1}'. Correlation Id: '{2}'.", Database, Instance, correlationId.ToString())); var context = AsAzureClientSession.Instance.Profile.Context; AsAzureClientSession.Instance.Login(context); - WriteProgress(new ProgressRecord(0, "Sync-AzureAnalysisServicesInstance.", string.Format("Authenticating user for '{0}' environment.", context.Environment.Name))); + WriteProgress(new ProgressRecord(0, "Sync-AzAnalysisServicesInstance.", string.Format("Authenticating user for '{0}' environment.", context.Environment.Name))); var clusterResolveResult = ClusterResolve(context, serverName); var virtualServerName = clusterResolveResult.CoreServerName.Split(":".ToCharArray())[0]; if (!serverName.Equals(virtualServerName) && !clusterResolveResult.CoreServerName.EndsWith(":rw")) @@ -155,7 +155,7 @@ public override void ExecuteCmdlet() ScaleOutServerDatabaseSyncDetails syncResult = null; try { - WriteProgress(new ProgressRecord(0, "Sync-AzureAnalysisServicesInstance.", string.Format("Successfully authenticated for '{0}' environment.", context.Environment.Name))); + WriteProgress(new ProgressRecord(0, "Sync-AzAnalysisServicesInstance.", string.Format("Successfully authenticated for '{0}' environment.", context.Environment.Name))); syncResult = SynchronizeDatabaseAsync(context, clusterBaseUri, Database, accessToken).GetAwaiter().GetResult(); } catch (AggregateException aex) diff --git a/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Properties/Resources.Designer.cs b/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Properties/Resources.Designer.cs index 19a52919d7b0..5ad2344dbe51 100644 --- a/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Properties/Resources.Designer.cs +++ b/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Properties/Resources.Designer.cs @@ -65,8 +65,8 @@ internal Resources() { ///The data is anonymous and does not include commandline argument values. ///The data is collected by Microsoft. /// - ///Use the Disable-AzureRmDataCollection cmdlet to turn the feature Off. The cmdlet can be found in the AzureRM.Profile module. To disable data collection: PS > Disable-AzureRmDataCollection. - ///Use the Enable-AzureRmDataCollection cmdlet to turn the feature On. The cmdlet can be found in the AzureRM.Profile module. To enable [rest of string was truncated]";. + ///Use the Disable-AzDataCollection cmdlet to turn the feature Off. The cmdlet can be found in the AzureRM.Profile module. To disable data collection: PS > Disable-AzDataCollection. + ///Use the Enable-AzDataCollection cmdlet to turn the feature On. The cmdlet can be found in the AzureRM.Profile module. To enable [rest of string was truncated]";. /// internal static string ARMDataCollectionMessage { get { @@ -120,7 +120,7 @@ internal static string LoginTarget { } /// - /// Looks up a localized string similar to Run Login-AzureAsAccount to login to Analysis Services server {0}. + /// Looks up a localized string similar to Run Login-AzAsAccount to login to Analysis Services server {0}. /// internal static string NotLoggedInMessage { get { diff --git a/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Properties/Resources.resx b/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Properties/Resources.resx index d34b3d298d10..4bf3920d2858 100644 --- a/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Properties/Resources.resx +++ b/src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Properties/Resources.resx @@ -124,7 +124,7 @@ Login to {0} - Run Login-AzureAsAccount to login to Analysis Services server {0} + Run Login-AzAsAccount to login to Analysis Services server {0} Restart Analysis Services Server @@ -146,8 +146,8 @@ The data is anonymous and does not include commandline argument values. The data is collected by Microsoft. -Use the Disable-AzureRmDataCollection cmdlet to turn the feature Off. The cmdlet can be found in the AzureRM.Profile module. To disable data collection: PS > Disable-AzureRmDataCollection. -Use the Enable-AzureRmDataCollection cmdlet to turn the feature On. The cmdlet can be found in the AzureRM.Profile module. To enable data collection: PS > Enable-AzureRmDataCollection. +Use the Disable-AzDataCollection cmdlet to turn the feature Off. The cmdlet can be found in the AzureRM.Profile module. To disable data collection: PS > Disable-AzDataCollection. +Use the Enable-AzDataCollection cmdlet to turn the feature On. The cmdlet can be found in the AzureRM.Profile module. To enable data collection: PS > Enable-AzDataCollection. Replicate databases from the processing server to the query scale-out servers diff --git a/src/ResourceManager/AnalysisServices/Commands.AnalysisServices/Properties/Resources.Designer.cs b/src/ResourceManager/AnalysisServices/Commands.AnalysisServices/Properties/Resources.Designer.cs index 458c05d00f61..c8a496310149 100644 --- a/src/ResourceManager/AnalysisServices/Commands.AnalysisServices/Properties/Resources.Designer.cs +++ b/src/ResourceManager/AnalysisServices/Commands.AnalysisServices/Properties/Resources.Designer.cs @@ -97,7 +97,7 @@ internal static string FailedToDiscoverResourceGroup { } /// - /// Looks up a localized string similar to No default subscription has been designated. Use Select-AzureSubscription -Default <subscriptionName> to set the default subscription.. + /// Looks up a localized string similar to No default subscription has been designated. Use Select-AzSubscription -Default <subscriptionName> to set the default subscription.. /// internal static string InvalidDefaultSubscription { get { @@ -124,7 +124,7 @@ internal static string LongRunningOperationFailed { } /// - /// Looks up a localized string similar to No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Login-AzureRMAccount to login.. + /// Looks up a localized string similar to No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Login-AzAccount to login.. /// internal static string NoSubscriptionInContext { get { diff --git a/src/ResourceManager/AnalysisServices/Commands.AnalysisServices/Properties/Resources.resx b/src/ResourceManager/AnalysisServices/Commands.AnalysisServices/Properties/Resources.resx index db30ef68d4f1..fbe217cda991 100644 --- a/src/ResourceManager/AnalysisServices/Commands.AnalysisServices/Properties/Resources.resx +++ b/src/ResourceManager/AnalysisServices/Commands.AnalysisServices/Properties/Resources.resx @@ -130,7 +130,7 @@ Could not find server: '{0}' in any resource group in the currently selected subscription: {1}. Please ensure this server exists and that the current user has access to it. - No default subscription has been designated. Use Select-AzureSubscription -Default <subscriptionName> to set the default subscription. + No default subscription has been designated. Use Select-AzSubscription -Default <subscriptionName> to set the default subscription. Invalid Sku: '{0}'. Available Skus are: '{1}' @@ -139,7 +139,7 @@ AnalysisServices server operation failed with the following error code: {0} and message: {1} - No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzureRMAccount to login. + No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzAccount to login. Are you sure you want to remove Analysis Services server: '{0}'? diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/NewAzureApiManagementApi.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/NewAzureApiManagementApi.cs index 5b2f2f32a3bb..a4b3cd39938b 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/NewAzureApiManagementApi.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement.ServiceManagement/Commands/NewAzureApiManagementApi.cs @@ -123,7 +123,7 @@ public override void ExecuteApiManagementCmdlet() if (ProductIds != null && ProductIds.Any()) { - WriteProgress(new ProgressRecord(0, "New-AzureRmApiManagementApi", "New API created. Adding to products...")); + WriteProgress(new ProgressRecord(0, "New-AzApiManagementApi", "New API created. Adding to products...")); foreach (var productId in ProductIds) { @@ -133,7 +133,7 @@ public override void ExecuteApiManagementCmdlet() WriteProgress( new ProgressRecord( 0, - "New-AzureRmApiManagementApi", + "New-AzApiManagementApi", string.Format("... Added to product {0}", productId)) ); } @@ -142,7 +142,7 @@ public override void ExecuteApiManagementCmdlet() WriteProgress( new ProgressRecord( 0, - "New-AzureRmApiManagementApi", + "New-AzApiManagementApi", string.Format("... Failed to add to product {0} due to: {1}", productId, ex)) ); } diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/ImportAzureApiManagementHostnameCertificate.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/ImportAzureApiManagementHostnameCertificate.cs index 5afe1ebfcbc1..38126a863771 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/ImportAzureApiManagementHostnameCertificate.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/ImportAzureApiManagementHostnameCertificate.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.Commands [Cmdlet("Import", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementHostnameCertificate"), OutputType(typeof(PsApiManagementHostnameCertificate))] [Obsolete("This cmdlet has been marked for deprecation in an upcoming release. Please use the " + - "Set-AzureRmApiManagement cmdlet from the AzureRM.ApiManagement module instead.", + "Set-AzApiManagement cmdlet from the AzureRM.ApiManagement module instead.", false)] public class ImportAzureApiManagementHostnameCertificate : AzureApiManagementCmdletBase { diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagementHostnameConfiguration.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagementHostnameConfiguration.cs index f39e06e12ba4..b85b91d9614d 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagementHostnameConfiguration.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/NewAzureApiManagementHostnameConfiguration.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.Commands [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementHostnameConfiguration"), OutputType(typeof(PsApiManagementHostnameConfiguration))] [Obsolete("This cmdlet has been marked for deprecation in an upcoming release. Please use the " + - "New-AzureRmApiManagementCustomHostnameConfiguration cmdlet from the AzureRM.ApiManagement module instead.", + "New-AzApiManagementCustomHostnameConfiguration cmdlet from the AzureRM.ApiManagement module instead.", false)] public class NewAzureApiManagementHostnameConfiguration : AzureRMCmdlet { diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/SetAzureApiManagementHostnames.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/SetAzureApiManagementHostnames.cs index 6a6f4346015f..44864fcf35d4 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/SetAzureApiManagementHostnames.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/SetAzureApiManagementHostnames.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.Commands [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementHostnames", DefaultParameterSetName = DefaultParameterSetName), OutputType(typeof(PsApiManagement))] [Obsolete("This cmdlet has been marked for deprecation in an upcoming release. Please use the " + - "Set-AzureRmApiManagement cmdlet from the AzureRM.ApiManagement module instead.", + "Set-AzApiManagement cmdlet from the AzureRM.ApiManagement module instead.", false)] public class SetAzureApiManagementHostnames : AzureApiManagementCmdletBase { diff --git a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/UpdateAzureApiManagementDeployment.cs b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/UpdateAzureApiManagementDeployment.cs index d6db231dfa5e..c35fd3c8d345 100644 --- a/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/UpdateAzureApiManagementDeployment.cs +++ b/src/ResourceManager/ApiManagement/Commands.ApiManagement/Commands/UpdateAzureApiManagementDeployment.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ApiManagement.Commands [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ApiManagementDeployment", DefaultParameterSetName = DefaultParameterSetName), OutputType(typeof(PsApiManagement))] [Obsolete("This cmdlet has been marked for deprecation in an upcoming release. Please use the " + - "Set-AzureRmApiManagement cmdlet from the AzureRM.ApiManagement module instead.", + "Set-AzApiManagement cmdlet from the AzureRM.ApiManagement module instead.", false)] public class UpdateAzureApiManagementDeployment : AzureApiManagementCmdletBase { diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs index 2ed6bd82fbab..a7876d54954e 100644 --- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs +++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/AzureBackupCmdletHelpMessage.cs @@ -24,51 +24,51 @@ internal static class AzureBackupCmdletHelpMessage public const string RetentionType = "Unit of retention for the recovery point."; public const string RententionDuration = "Specifies how long a recovery point will be retained, for a given RetentionType."; - /* Get-AzureRmBackupVault */ + /* Get-AzBackupVault */ public const string ResourceGroupName = "The ResourceGroup in which the Azure resource is placed."; public const string ResourceName = "The name of the Azure resource."; - /* New-AzureRmBackupVault */ + /* New-AzBackupVault */ //public const string ResourceGroupName //public const string ResourceName public const string Location = "The Azure region where the Backup vault is located."; public const string StorageType = "The storage redundancy for the backup data stored in the vault. The currently supported storage redundancy options are Locally Redundant Storage (LRS) and Geo-Redundant Storage (GRS)."; - /* Set-AzureRmBackupVault */ + /* Set-AzBackupVault */ //public const string Vault //public const string StorageType - /* Get-AzureRmBackupVaultCredentials */ + /* Get-AzBackupVaultCredentials */ //public const string Vault public const string TargetLocation = "The directory where the vault credentials file will be saved. This must be specified as an absolute path."; - /* Get-AzureRmBackupContainer */ + /* Get-AzBackupContainer */ public const string ManagedResourceName = "The name of the resource being managed by the Azure Backup service (for example: resource name of the VM)."; public const string ManagedResourceGroupName = "The ResourceGroup of the resource being managed by the Azure Backup service (for example: ResourceGroup name of the VM)."; public const string ContainerRegistrationStatus = "The registration status of the Azure Backup container."; public const string ContainerType = "The type of the Azure Backup container. This can be a Windows Server, an Azure IaaS VM, or a Data Protection Manager server."; //public const string Vault - /* Get-AzureRmBackupItem */ + /* Get-AzBackupItem */ public const string AzureBackupContainer = "The Azure Backup container object which is the parent resource for the Azure Backup Item. The container can be a Windows Server, an Azure IaaS VM, or a Data Protection Manager server."; public const string ProtectionStatus = "Protection Status of the azure backup item."; public const string Status = "Status of Azure Backup Item"; public const string Type = "Type of Azure Backup Item."; - /* Enable-AzureRmBackupProtection */ + /* Enable-AzBackupProtection */ public const string AzureBackupItemEnable = "The Azure Backup item that is being enabled for protection."; public const string PolicyObject = "The Protection Policy object that contains all the scheduling information for backup and retention. This policy will be associated with the backup item provided as input."; - /* Enable-AzureRmBackupContainerReregistration */ - public const string AzureBackupContainerToReregister = "The Azure Backup container to be unregistered. For this commandlet, the container cannot be of type AzureVM. Use the Get-AzureRmBackupContainer to get a list of containers."; + /* Enable-AzBackupContainerReregistration */ + public const string AzureBackupContainerToReregister = "The Azure Backup container to be unregistered. For this commandlet, the container cannot be of type AzureVM. Use the Get-AzBackupContainer to get a list of containers."; - /* Disable-AzureRmBackupProtection */ + /* Disable-AzBackupProtection */ public const string RemoveProtectionOption = "If this option is used, all the backup data for this item will also be deleted and restoring data will not be possible."; public const string AzureBackupItemDisable = "Azure Backup item for which the protection is being disabled."; public const string Reason = "User-specified reason for removing protection."; public const string Comments = "User-specified comments provided at the time of removing protection."; - /* Get-AzureRmBackupJob */ + /* Get-AzBackupJob */ public const string JobFilterJobIdHelpMessage = "The unique identifier is used as a filtering criterion. It provides details to fetch the latest information about a job."; public const string JobFilterJobHelpMessage = "The job object is used as a filtering criterion. It provides details to fetch the latest information about a job."; public const string JobFilterStartTimeHelpMessage = "For the time range that is used as a filtering critetion, this parameter provides the starting boundary."; @@ -78,32 +78,32 @@ internal static class AzureBackupCmdletHelpMessage public const string JobFitlerVaultHelpMessage = "The Azure Backup vault which is the parent of the jobs being queried. This is needed only when the -Job parameter is not being used."; public const string JobFilterTypeHelpMessage = "The type of workload is used as a filtering criterion."; - /* Get-AzureRmBackupJobDetails */ + /* Get-AzBackupJobDetails */ public const string JobDetailsFilterJobIdHelpMessage = "The unique identifier for the job whose full details are being requested"; public const string JobDetailsFilterVaultHelpMessage = "The Azure Backup vault which is the parent resource of the job"; public const string JobDetailsFilterJobHelpMessage = "The object that represents the job whose full details are being requested"; - /* Stop-AzureRmBackupJob */ + /* Stop-AzBackupJob */ public const string StopJobFilterJobIdHelpMessage = "The unique identifier for the job that needs to be stopped"; public const string StopJobFilterVaultHelpMessage = "The Azure Backup vault which is the parent resource of the job"; public const string StopJobFilterJobHelpMessage = "The object that represents the job that needs be stopped"; - /* Wait-AzureRmBackupJob */ + /* Wait-AzBackupJob */ public const string WaitJobFilterJobIdHelpMessage = "The unique identifier for the job on which the commandlet will wait for completion"; public const string WaitJobFilterVaultHelpMessage = "The Azure Backup vault which is the parent resource of the job"; public const string WaitJobFilterJobHelpMessage = "The object that represents the job on which the commandlet will wait for completion"; public const string WaitJobFilterTimeoutHelpMessage = "If the commandlet should not wait infinitely for the job to finish, then this timeout value needs to be specified. The parameter specifies the maximum number of seconds for which the commandlet should wait before returning."; - /* Register-AzureRmBackupContainer */ + /* Register-AzBackupContainer */ public const string VMName = "The name of the Azure VM that will be registered with the service."; public const string ServiceName = "The Cloud Service name of Azure VM"; public const string RGName = "The ResourceGroup name of Azure VM"; public const string Vault = "The Azure Backup vault object which is the parent resource."; - /* Unregister-AzureRmBackupContainer */ - public const string AzureBackupContainerToUnregister = "The Azure Backup container to be unregistered. This can be a Windows Server, an Azure IaaS VM, or a Data Protection Manager server. Use the Get-AzureRmBackupContainer to get a list of containers."; + /* Unregister-AzBackupContainer */ + public const string AzureBackupContainerToUnregister = "The Azure Backup container to be unregistered. This can be a Windows Server, an Azure IaaS VM, or a Data Protection Manager server. Use the Get-AzBackupContainer to get a list of containers."; - /* New-AzureRmBackupProtectionPolicy */ + /* New-AzBackupProtectionPolicy */ public const string PolicyName = "The name of the Azure Backup protection policy. The name of the policy should be unique within a backup vault"; public const string WorkloadType = "Workload type for which the protection policy is defined."; public const string DailyScheduleType = "Switch parameter to choose a daily backup schedule."; @@ -113,11 +113,11 @@ internal static class AzureBackupCmdletHelpMessage public const string RetentionPolicyList = "List of Retention Policies to be associated with protection policy. You can use a combination of Daily, Weekly, Monthly, and Yearly retention policies but not more than 1 of each."; public const string PolicyVault = "The Azure Backup vault which is the parent resource for the protection policy."; - /* Set-AzureRmBackupProtectionPolicy */ + /* Set-AzBackupProtectionPolicy */ public const string PolicyNewName = "The new name to be given to this policy. Note that the policy name is unique to a backup vault and you need to ensure that you pick a name that does not conflict with existing names."; public const string AzureBackupPolicy = "Azure Backup protection policy object that contains the complete policy information."; - /* New-AzureRmBackupRetentionPolicyObject */ + /* New-AzBackupRetentionPolicyObject */ public const string DailyRetention = "Switch paramater to signal that this policy is being used for Daily Retention"; public const string WeeklyRetention = "Switch parameter to signal that this policy is being used for Weekly Retention"; public const string MonthlyRetentionInDailyFormat = "Allows the user to specify the Monthly retention policy based on specific days of the month"; @@ -130,15 +130,15 @@ internal static class AzureBackupCmdletHelpMessage public const string MonthsOfYear = "Specifies the months of the year that will be used in the policy"; public const string Retention = "Specifies the duration of the retention policy"; - /* Backup-AzureRmBackupItem */ + /* Backup-AzBackupItem */ public const string AzureBackupItem = "The Azure Backup item that is being configured for backup."; - /* Get-AzureRmBackupRecoveryPoint */ + /* Get-AzBackupRecoveryPoint */ public const string AzureBackupItemGet = "The Azure Backup item for which the recovery points are being fetched."; public const string RecoveryPointId = "The unique identifier for the recovery point that is being fetched."; - /* Restore-AzureRmBackupItem */ - public const string AzureBackUpRecoveryPoint = "The PowerShell object that refers to the recovery point. Use Get-AzureRmBackupRecoveryPoint to get the PowerShell object to be used as input to this commandlet."; + /* Restore-AzBackupItem */ + public const string AzureBackUpRecoveryPoint = "The PowerShell object that refers to the recovery point. Use Get-AzBackupRecoveryPoint to get the PowerShell object to be used as input to this commandlet."; public const string StorageAccountName = "The destination storage account where the restored disks and config information will be stored."; } } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/BatchObjectModelCmdletBase.cs b/src/ResourceManager/AzureBatch/Commands.Batch/BatchObjectModelCmdletBase.cs index b882191b5ac8..17ce0587cfef 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/BatchObjectModelCmdletBase.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/BatchObjectModelCmdletBase.cs @@ -30,8 +30,8 @@ public class BatchObjectModelCmdletBase : BatchCmdletBase internal IEnumerable AdditionalBehaviors { get; set; } [Parameter(Mandatory = true, ValueFromPipeline = true, HelpMessage = "The BatchAccountContext instance to use when interacting with the Batch service. " + - "If you use the Get-AzureRmBatchAccount cmdlet to get your BatchAccountContext, then Azure Active Directory authentication will be used when interacting " + - "with the Batch service. To use shared key authentication instead, use the Get-AzureRmBatchAccountKeys cmdlet to get a BatchAccountContext object with " + + "If you use the Get-AzBatchAccount cmdlet to get your BatchAccountContext, then Azure Active Directory authentication will be used when interacting " + + "with the Batch service. To use shared key authentication instead, use the Get-AzBatchAccountKeys cmdlet to get a BatchAccountContext object with " + "its access keys populated. When using shared key authentication, the primary access key is used by default. To change the key to use, set the " + "BatchAccountContext.KeyInUse property.")] [ValidateNotNullOrEmpty] diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/GetBatchJobPreparationAndReleaseTaskStatusCommand.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/GetBatchJobPreparationAndReleaseTaskStatusCommand.cs index 5eeab14e5899..7bbb58944832 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/GetBatchJobPreparationAndReleaseTaskStatusCommand.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Jobs/GetBatchJobPreparationAndReleaseTaskStatusCommand.cs @@ -34,7 +34,7 @@ public class GetBatchJobPreparationAndReleaseTaskStatusCommand : BatchObjectMode ParameterSetName = Constants.InputObjectParameterSet, ValueFromPipeline = true, Mandatory = true, - HelpMessage = "Specifies a PSCloudJob object that represents the job to get the preparation and release task status from. To obtain a PSCloudJob object, use the Get-AzureBatchJob cmdlet.")] + HelpMessage = "Specifies a PSCloudJob object that represents the job to get the preparation and release task status from. To obtain a PSCloudJob object, use the Get-AzBatchJob cmdlet.")] [ValidateNotNullOrEmpty] public PSCloudJob InputObject { get; set; } diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs index 52ee25ccaf26..83458eeae161 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.Designer.cs @@ -322,7 +322,7 @@ internal static string FailedToUpload { } /// - /// Looks up a localized string similar to Failed to upload {0} to Azure Storage and the attempt to delete the application package record afterwards failed. Remove the application package record with the Remove-AzureRmBatchApplicationPackage cmdlet and retry. {1}.. + /// Looks up a localized string similar to Failed to upload {0} to Azure Storage and the attempt to delete the application package record afterwards failed. Remove the application package record with the Remove-AzBatchApplicationPackage cmdlet and retry. {1}.. /// internal static string FailedToUploadAndDelete { get { @@ -1168,7 +1168,7 @@ internal static string UpdatingTask { } /// - /// Looks up a localized string similar to Application package {0} version {1} successfully uploaded but failed to activate. Activate the application package using the New-AzureRmBatchApplicationPackage cmdlet with the -ActivateOnly parameter. {2}.. + /// Looks up a localized string similar to Application package {0} version {1} successfully uploaded but failed to activate. Activate the application package using the New-AzBatchApplicationPackage cmdlet with the -ActivateOnly parameter. {2}.. /// internal static string UploadedApplicationButFailedToActivate { get { @@ -1177,7 +1177,7 @@ internal static string UploadedApplicationButFailedToActivate { } /// - /// Looks up a localized string similar to Using Azure Active Directory authentication to interact with the Batch service. To use shared key authentication, supply a BatchAccountContext that was returned from the Get-AzureRmBatchAccountKeys cmdlet.. + /// Looks up a localized string similar to Using Azure Active Directory authentication to interact with the Batch service. To use shared key authentication, supply a BatchAccountContext that was returned from the Get-AzBatchAccountKeys cmdlet.. /// internal static string UsingAadAuth { get { @@ -1186,7 +1186,7 @@ internal static string UsingAadAuth { } /// - /// Looks up a localized string similar to Using shared key authentication to interact with the Batch service. Current key in use: {0}. To change keys, set the BatchAccountContext.KeyInUse property. To use Azure Active Directory authentication, supply a BatchAccountContext that was returned from the Get-AzureRmBatchAccount cmdlet.. + /// Looks up a localized string similar to Using shared key authentication to interact with the Batch service. Current key in use: {0}. To change keys, set the BatchAccountContext.KeyInUse property. To use Azure Active Directory authentication, supply a BatchAccountContext that was returned from the Get-AzBatchAccount cmdlet.. /// internal static string UsingSharedKeyAuth { get { diff --git a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx index d22df7d3ef63..d3511885fcb5 100644 --- a/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx +++ b/src/ResourceManager/AzureBatch/Commands.Batch/Properties/Resources.resx @@ -443,10 +443,10 @@ Failed to upload {0} to Azure Storage. {1}. - Failed to upload {0} to Azure Storage and the attempt to delete the application package record afterwards failed. Remove the application package record with the Remove-AzureRmBatchApplicationPackage cmdlet and retry. {1}. + Failed to upload {0} to Azure Storage and the attempt to delete the application package record afterwards failed. Remove the application package record with the Remove-AzBatchApplicationPackage cmdlet and retry. {1}. - Application package {0} version {1} successfully uploaded but failed to activate. Activate the application package using the New-AzureRmBatchApplicationPackage cmdlet with the -ActivateOnly parameter. {2}. + Application package {0} version {1} successfully uploaded but failed to activate. Activate the application package using the New-AzBatchApplicationPackage cmdlet with the -ActivateOnly parameter. {2}. Failed to activate application package {0} version {1}. {2}. @@ -482,10 +482,10 @@ Downloading byte range {0} to {1} - Using Azure Active Directory authentication to interact with the Batch service. To use shared key authentication, supply a BatchAccountContext that was returned from the Get-AzureRmBatchAccountKeys cmdlet. + Using Azure Active Directory authentication to interact with the Batch service. To use shared key authentication, supply a BatchAccountContext that was returned from the Get-AzBatchAccountKeys cmdlet. - Using shared key authentication to interact with the Batch service. Current key in use: {0}. To change keys, set the BatchAccountContext.KeyInUse property. To use Azure Active Directory authentication, supply a BatchAccountContext that was returned from the Get-AzureRmBatchAccount cmdlet. + Using shared key authentication to interact with the Batch service. Current key in use: {0}. To change keys, set the BatchAccountContext.KeyInUse property. To use Azure Active Directory authentication, supply a BatchAccountContext that was returned from the Get-AzBatchAccount cmdlet. Getting task counts for job {0}. diff --git a/src/ResourceManager/Cdn/Commands.Cdn/Profile/GetAzureRmCdnProfile.cs b/src/ResourceManager/Cdn/Commands.Cdn/Profile/GetAzureRmCdnProfile.cs index 93069640bc09..4e3a54703c64 100644 --- a/src/ResourceManager/Cdn/Commands.Cdn/Profile/GetAzureRmCdnProfile.cs +++ b/src/ResourceManager/Cdn/Commands.Cdn/Profile/GetAzureRmCdnProfile.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Cdn.Profile { /// - /// Defines the New-AzureRMCdnProfile cmdlet. + /// Defines the New-AzCdnProfile cmdlet. /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "CdnProfile"), OutputType(typeof(PSProfile))] public class GetAzureRmCdnProfile : AzureCdnCmdletBase diff --git a/src/ResourceManager/Cdn/Commands.Cdn/Profile/NewAzureRmCdnProfile.cs b/src/ResourceManager/Cdn/Commands.Cdn/Profile/NewAzureRmCdnProfile.cs index 9ba73449c4cc..c1c3e4dfee1e 100644 --- a/src/ResourceManager/Cdn/Commands.Cdn/Profile/NewAzureRmCdnProfile.cs +++ b/src/ResourceManager/Cdn/Commands.Cdn/Profile/NewAzureRmCdnProfile.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.Cdn.Profile { /// - /// Defines the New-AzureRmCdnProfile cmdlet. + /// Defines the New-AzCdnProfile cmdlet. /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "CdnProfile", SupportsShouldProcess = true), OutputType(typeof(PSProfile))] public class NewAzureRmCdnProfile : AzureCdnCmdletBase diff --git a/src/ResourceManager/Cdn/Commands.Cdn/Profile/SetAzureRmCdnProfile.cs b/src/ResourceManager/Cdn/Commands.Cdn/Profile/SetAzureRmCdnProfile.cs index 10163386bbd8..f6a7eb24612e 100644 --- a/src/ResourceManager/Cdn/Commands.Cdn/Profile/SetAzureRmCdnProfile.cs +++ b/src/ResourceManager/Cdn/Commands.Cdn/Profile/SetAzureRmCdnProfile.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Cdn.Profile { /// - /// Defines the New-AzureRmCdnProfile cmdlet. + /// Defines the New-AzCdnProfile cmdlet. /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "CdnProfile", SupportsShouldProcess = true), OutputType(typeof(PSProfile))] public class SetAzureRmCdnProfile : AzureCdnCmdletBase diff --git a/src/ResourceManager/Cdn/Commands.Cdn/Properties/Resources.Designer.cs b/src/ResourceManager/Cdn/Commands.Cdn/Properties/Resources.Designer.cs index e88386221351..3fba71fe7339 100644 --- a/src/ResourceManager/Cdn/Commands.Cdn/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Cdn/Commands.Cdn/Properties/Resources.Designer.cs @@ -232,7 +232,7 @@ internal static string Success { } /// - /// Looks up a localized string similar to Remove-AzureRmCdnCustomDomain on {0}.. + /// Looks up a localized string similar to Remove-AzCdnCustomDomain on {0}.. /// internal static string Success_RemoveCustomDomain { get { @@ -241,7 +241,7 @@ internal static string Success_RemoveCustomDomain { } /// - /// Looks up a localized string similar to Remove-AzureRmCdnEndpoint on {0}.. + /// Looks up a localized string similar to Remove-AzCdnEndpoint on {0}.. /// internal static string Success_RemoveEndpoint { get { @@ -250,7 +250,7 @@ internal static string Success_RemoveEndpoint { } /// - /// Looks up a localized string similar to Remove-AzureRmCdnProfile on {0}.. + /// Looks up a localized string similar to Remove-AzCdnProfile on {0}.. /// internal static string Success_RemoveProfile { get { @@ -268,7 +268,7 @@ internal static string Success_StartEndpoint { } /// - /// Looks up a localized string similar to Stop-AzureRmCdnEndpoint on {0}.. + /// Looks up a localized string similar to Stop-AzCdnEndpoint on {0}.. /// internal static string Success_StopEndpoint { get { diff --git a/src/ResourceManager/Cdn/Commands.Cdn/Properties/Resources.resx b/src/ResourceManager/Cdn/Commands.Cdn/Properties/Resources.resx index 359d5563e1d7..a6efb2719774 100644 --- a/src/ResourceManager/Cdn/Commands.Cdn/Properties/Resources.resx +++ b/src/ResourceManager/Cdn/Commands.Cdn/Properties/Resources.resx @@ -175,18 +175,18 @@ Success! - Remove-AzureRmCdnCustomDomain on {0}. + Remove-AzCdnCustomDomain on {0}. - Remove-AzureRmCdnEndpoint on {0}. + Remove-AzCdnEndpoint on {0}. - Remove-AzureRmCdnProfile on {0}. + Remove-AzCdnProfile on {0}. Endpoint with name '{0}' in the profile '{1}' and resource group '{2}' has been started. - Stop-AzureRmCdnEndpoint on {0}. + Stop-AzCdnEndpoint on {0}. \ No newline at end of file diff --git a/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService/Properties/Resources.Designer.cs b/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService/Properties/Resources.Designer.cs index 1bf1c4d5bf4e..d88becddf9e7 100644 --- a/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService/Properties/Resources.Designer.cs @@ -151,7 +151,7 @@ internal static string AzureVMDscCreateArchiveAction { } /// - /// Looks up a localized string similar to Can not find your azure storage credential. Please specify an storage context using the -StorageContext parameter, or set the current storage account using "Set-AzureRmSubscription", or set the "AZURE_STORAGE_CONNECTION_STRING" environment variable.. + /// Looks up a localized string similar to Can not find your azure storage credential. Please specify an storage context using the -StorageContext parameter, or set the current storage account using "Set-AzSubscription", or set the "AZURE_STORAGE_CONNECTION_STRING" environment variable.. /// internal static string AzureVMDscDefaultStorageCredentialsNotFound { get { @@ -307,7 +307,7 @@ internal static string CustomScriptExtensionTryToUseTheFirstSpecifiedFileAsRunSc } /// - /// Looks up a localized string similar to A data disk, {0}, is not currently assigned for this VM. Use Add-AzureRmVMDataDisk to add it.. + /// Looks up a localized string similar to A data disk, {0}, is not currently assigned for this VM. Use Add-AzVMDataDisk to add it.. /// internal static string DataDiskNotAssignedForVM { get { @@ -1131,7 +1131,7 @@ internal static string StorageAccountNotFoundForBootDiagnostics { } /// - /// Looks up a localized string similar to No current subscription has been designated. Use Select-AzureRmSubscription -Current <subscriptionName> to set the current subscription.. + /// Looks up a localized string similar to No current subscription has been designated. Use Select-AzSubscription -Current <subscriptionName> to set the current subscription.. /// internal static string StorageCredentialsFactoryCurrentSubscriptionNotSet { get { diff --git a/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService/Properties/Resources.resx b/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService/Properties/Resources.resx index 00e90536ff14..4496f04d7cf8 100644 --- a/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService/Properties/Resources.resx +++ b/src/ResourceManager/Compute.ManagedService/Commands.Compute.ManagedService/Properties/Resources.resx @@ -242,7 +242,7 @@ The file needs to be a PowerShell script (.ps1 or .psm1). {0} = minimal required PS version, {1} = current PS version - Can not find your azure storage credential. Please specify an storage context using the -StorageContext parameter, or set the current storage account using "Set-AzureRmSubscription", or set the "AZURE_STORAGE_CONNECTION_STRING" environment variable. + Can not find your azure storage credential. Please specify an storage context using the -StorageContext parameter, or set the current storage account using "Set-AzSubscription", or set the "AZURE_STORAGE_CONNECTION_STRING" environment variable. List of required modules: [{0}]. @@ -363,10 +363,10 @@ The file needs to be a PowerShell script (.ps1 or .psm1). Uploading - No current subscription has been designated. Use Select-AzureRmSubscription -Current <subscriptionName> to set the current subscription. + No current subscription has been designated. Use Select-AzSubscription -Current <subscriptionName> to set the current subscription. - A data disk, {0}, is not currently assigned for this VM. Use Add-AzureRmVMDataDisk to add it. + A data disk, {0}, is not currently assigned for this VM. Use Add-AzVMDataDisk to add it. Cannot deserialize sql configuration substatus message from Sql Server extension. Updating your Azure PowerShell SDK to the latest version may solve this problem. Settings string: diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs index 11f8f2f0c949..c6383eb78013 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AEM/SetAzureRmVMAEMExtension.cs @@ -402,7 +402,7 @@ public override void ExecuteCmdlet() }).GetAwaiter().GetResult(); this._Helper.WriteHost("[INFO] Azure Enhanced Monitoring Extension for SAP configuration updated. It can take up to 15 Minutes for the monitoring data to appear in the SAP system."); - this._Helper.WriteHost("[INFO] You can check the configuration of a virtual machine by calling the Test-AzureRmVMAEMExtension commandlet."); + this._Helper.WriteHost("[INFO] You can check the configuration of a virtual machine by calling the Test-AzVMAEMExtension commandlet."); var result = ComputeAutoMapperProfile.Mapper.Map(op); WriteObject(result); diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/AzureDiskEncryptionExtensionContext.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/AzureDiskEncryptionExtensionContext.cs index 59adc6d8e52d..2bc54e9d2aa9 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/AzureDiskEncryptionExtensionContext.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/AzureDiskEncryptionExtensionContext.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption { /// - /// This class represents the extension context of AzureDiskEncryption VM extension. This is returned as an output of Get-AzureDiskEncryption cmdlet + /// This class represents the extension context of AzureDiskEncryption VM extension. This is returned as an output of Get-AzDiskEncryption cmdlet /// public class AzureDiskEncryptionExtensionContext : PSVirtualMachineExtension { diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/DisableAzureDiskEncryption.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/DisableAzureDiskEncryption.cs index 689f06699c3e..cc69d2685f8d 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/DisableAzureDiskEncryption.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/DisableAzureDiskEncryption.cs @@ -190,7 +190,7 @@ private VirtualMachineExtension GetVmExtensionParameters(VirtualMachine vmParame new ApplicationException( string.Format( CultureInfo.CurrentUICulture, - "Disable-AzureDiskEncryption can disable encryption only on a VM that was already created ")), + "Disable-AzDiskEncryption can disable encryption only on a VM that was already created ")), "InvalidResult", ErrorCategory.InvalidResult, null)); @@ -248,7 +248,7 @@ private AzureOperationResponse UpdateVmEncryptionSettings() new ApplicationException( string.Format( CultureInfo.CurrentUICulture, - "Set-AzureDiskEncryptionExtension can enable encryption only on a VM that was already created and has appropriate storageProfile and OS disk")), + "Set-AzDiskEncryptionExtension can enable encryption only on a VM that was already created and has appropriate storageProfile and OS disk")), "InvalidResult", ErrorCategory.InvalidResult, null)); @@ -294,7 +294,7 @@ public override void ExecuteCmdlet() new ApplicationException( string.Format( CultureInfo.CurrentUICulture, - "Disable-AzureDiskEncryption can disable encryption only on a VM that was already created and has appropriate storageProfile and OS disk")), + "Disable-AzDiskEncryption can disable encryption only on a VM that was already created and has appropriate storageProfile and OS disk")), "InvalidResult", ErrorCategory.InvalidResult, null)); diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/GetAzureDiskEncryptionStatus.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/GetAzureDiskEncryptionStatus.cs index fb206d42ae12..9fad4f8a777f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/GetAzureDiskEncryptionStatus.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/GetAzureDiskEncryptionStatus.cs @@ -83,7 +83,7 @@ private VirtualMachineExtension GetDualPassQueryVmExtensionParameters(VirtualMac if (vmParameters == null) { - ThrowTerminatingError(new ErrorRecord(new ApplicationException(string.Format(CultureInfo.CurrentUICulture, "Get-AzureDiskEncryptionExtension can enable encryption only on a VM that was already created ")), + ThrowTerminatingError(new ErrorRecord(new ApplicationException(string.Format(CultureInfo.CurrentUICulture, "Get-AzDiskEncryptionExtension can enable encryption only on a VM that was already created ")), "InvalidResult", ErrorCategory.InvalidResult, null)); diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/SetAzureDiskEncryptionExtension.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/SetAzureDiskEncryptionExtension.cs index 96386670f18e..c2a34a663383 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/SetAzureDiskEncryptionExtension.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/AzureDiskEncryption/SetAzureDiskEncryptionExtension.cs @@ -308,7 +308,7 @@ private AzureOperationResponse UpdateVmEncryptionSettings(DiskEn (vmParameters.StorageProfile.OsDisk == null)) { //VM should have been created and have valid storageProfile and OSDisk by now - ThrowTerminatingError(new ErrorRecord(new ApplicationException(string.Format(CultureInfo.CurrentUICulture, "Set-AzureDiskEncryptionExtension can enable encryption only on a VM that was already created and has appropriate storageProfile and OS disk")), + ThrowTerminatingError(new ErrorRecord(new ApplicationException(string.Format(CultureInfo.CurrentUICulture, "Set-AzDiskEncryptionExtension can enable encryption only on a VM that was already created and has appropriate storageProfile and OS disk")), "InvalidResult", ErrorCategory.InvalidResult, null)); @@ -445,7 +445,7 @@ private VirtualMachineExtension GetVmExtensionParameters(VirtualMachine vmParame if (vmParameters == null) { - ThrowTerminatingError(new ErrorRecord(new ApplicationException(string.Format(CultureInfo.CurrentUICulture, "Set-AzureDiskEncryptionExtension can enable encryption only on a VM that was already created ")), + ThrowTerminatingError(new ErrorRecord(new ApplicationException(string.Format(CultureInfo.CurrentUICulture, "Set-AzDiskEncryptionExtension can enable encryption only on a VM that was already created ")), "InvalidResult", ErrorCategory.InvalidResult, null)); diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPrivateSettings.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPrivateSettings.cs index d009de5e1e53..6c3f1d2677a4 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPrivateSettings.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPrivateSettings.cs @@ -18,7 +18,7 @@ namespace Microsoft.WindowsAzure.Commands.Common.Extensions.DSC /// /// Represents private/protected settings. Serialized representation of this object stored as an encrypted string on the VM. - /// Part of the protocol between Set-AzureVMDscExtension cmdlet and DSC Extension handler. + /// Part of the protocol between Set-AzVMDscExtension cmdlet and DSC Extension handler. /// public class DscExtensionPrivateSettings { diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPublicSettings.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPublicSettings.cs index 9403fe20b64f..c526893cf1e8 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPublicSettings.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/DscExtensionPublicSettings.cs @@ -20,7 +20,7 @@ namespace Microsoft.WindowsAzure.Commands.Common.Extensions.DSC { /// /// Represents public settings. Serialized representation of this object stored as a plain text string on the VM. - /// Part of the protocol between Set-AzureVMDscExtension cmdlet and DSC Extension handler. + /// Part of the protocol between Set-AzVMDscExtension cmdlet and DSC Extension handler. /// public class DscExtensionPublicSettings { diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetAzureVMDscExtensionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetAzureVMDscExtensionCommand.cs index c7e5f5ef5bd5..f944e495ace5 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetAzureVMDscExtensionCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetAzureVMDscExtensionCommand.cs @@ -38,8 +38,8 @@ public class GetAzureVMDscExtensionCommand : VirtualMachineExtensionBaseCmdlet [Parameter( Position = 2, ValueFromPipelineByPropertyName = true, - HelpMessage = "Name of the ARM resource that represents the extension. The Set-AzureRmVMDscExtension cmdlet sets this name to " + - "'Microsoft.Powershell.DSC', which is the same value used by Get-AzureRmVMDscExtension. Specify this parameter only if you changed " + + HelpMessage = "Name of the ARM resource that represents the extension. The Set-AzVMDscExtension cmdlet sets this name to " + + "'Microsoft.Powershell.DSC', which is the same value used by Get-AzVMDscExtension. Specify this parameter only if you changed " + "the default name in the Set cmdlet or used a different resource name in an ARM template.")] [ResourceNameCompleter("Microsoft.Compute/virtualMachines/extensions", "ResourceGroupName", "VMName")] [ValidateNotNullOrEmpty] diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetAzureVMDscExtensionStatusCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetAzureVMDscExtensionStatusCommand.cs index b80f2e8e5975..1d5926140cb9 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetAzureVMDscExtensionStatusCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/GetAzureVMDscExtensionStatusCommand.cs @@ -17,8 +17,8 @@ namespace Microsoft.Azure.Commands.Compute.Extension.DSC /// Note: To get detailed output -Verbose flag need to be specified /// /// Example Usage: - /// Get-AzureVMDscExtensionStatus -ResourceGroupName resgrp1 -VMName vm1 - /// /// Get-AzureVMDscExtensionStatus -ResourceGroupName resgrp1 -VMName vm1 -Name DSC + /// Get-AzVMDscExtensionStatus -ResourceGroupName resgrp1 -VMName vm1 + /// /// Get-AzVMDscExtensionStatus -ResourceGroupName resgrp1 -VMName vm1 -Name DSC /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VMDscExtensionStatus"),OutputType(typeof(PSVirtualMachineInstanceView))] public class GetAzureVMDscExtensionStatusCommand : VirtualMachineExtensionBaseCmdlet @@ -44,8 +44,8 @@ public class GetAzureVMDscExtensionStatusCommand : VirtualMachineExtensionBaseCm [Parameter( Position = 2, ValueFromPipelineByPropertyName = true, - HelpMessage = "Name of the ARM resource that represents the extension. The Set-AzureVMDscExtension cmdlet sets this name to " + - "'Microsoft.Powershell.DSC', which is the same value used by Get-AzureVMDscExtension. Specify this parameter only if you changed " + + HelpMessage = "Name of the ARM resource that represents the extension. The Set-AzVMDscExtension cmdlet sets this name to " + + "'Microsoft.Powershell.DSC', which is the same value used by Get-AzVMDscExtension. Specify this parameter only if you changed " + "the default name in the Set cmdlet or used a different resource name in an ARM template.")] [ResourceNameCompleter("Microsoft.Compute/virtualMachines/extensions", "ResourceGroupName", "VMName")] [ValidateNotNullOrEmpty] diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/PublishAzureVMDscConfigurationCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/PublishAzureVMDscConfigurationCommand.cs index 6f14cf667fcf..a193cac36e90 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/PublishAzureVMDscConfigurationCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/PublishAzureVMDscConfigurationCommand.cs @@ -13,7 +13,7 @@ namespace Microsoft.Azure.Commands.Compute.Extension.DSC /// /// Uploads a Desired State Configuration script to Azure blob storage, which /// later can be applied to Azure Virtual Machines using the - /// Set-AzureRmVMDscExtension cmdlet. + /// Set-AzVMDscExtension cmdlet. /// [Cmdlet("Publish", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VMDscConfiguration",SupportsShouldProcess = true,DefaultParameterSetName = UploadArchiveParameterSetName),OutputType(typeof(String))] public class PublishAzureVMDscConfigurationCommand : DscExtensionPublishCmdletCommonBase @@ -70,7 +70,7 @@ public class PublishAzureVMDscConfigurationCommand : DscExtensionPublishCmdletCo /// /// Path to a local ZIP file to write the configuration archive to. - /// When using this parameter, Publish-AzureRmVMDscConfiguration creates a + /// When using this parameter, Publish-AzVMDscConfiguration creates a /// local ZIP archive instead of uploading it to blob storage.. /// [Alias("ConfigurationArchivePath")] @@ -93,10 +93,10 @@ public class PublishAzureVMDscConfigurationCommand : DscExtensionPublishCmdletCo public string StorageEndpointSuffix { get; set; } /// - /// By default Publish-AzureRmVMDscConfiguration will not overwrite any existing blobs. + /// By default Publish-AzVMDscConfiguration will not overwrite any existing blobs. /// Use -Force to overwrite them. /// - [Parameter(HelpMessage = "By default Publish-AzureRmVMDscConfiguration will not overwrite any existing blobs")] + [Parameter(HelpMessage = "By default Publish-AzVMDscConfiguration will not overwrite any existing blobs")] public SwitchParameter Force { get; set; } /// @@ -114,7 +114,7 @@ public class PublishAzureVMDscConfigurationCommand : DscExtensionPublishCmdletCo ValueFromPipelineByPropertyName = true, HelpMessage = "Path to a .psd1 file that specifies the data for the Configuration. This is added to the configuration " + "archive and then passed to the configuration function. It gets overwritten by the configuration data path " + - "provided through the Set-AzureRmVMDscExtension cmdlet")] + "provided through the Set-AzVMDscExtension cmdlet")] [ValidateNotNullOrEmpty] public string ConfigurationDataPath { get; set; } diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/RemoveAzureVMDscExtensionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/RemoveAzureVMDscExtensionCommand.cs index 763e5601d64e..0bf7ed8c6ae1 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/RemoveAzureVMDscExtensionCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/RemoveAzureVMDscExtensionCommand.cs @@ -40,8 +40,8 @@ public class RemoveAzureVMDscExtensionCommand : VirtualMachineExtensionBaseCmdle [Parameter( Position = 2, ValueFromPipelineByPropertyName = true, - HelpMessage = "Name of the ARM resource that represents the extension. The Set-AzureRmVMDscExtension cmdlet sets this name to " + - "'Microsoft.Powershell.DSC', which is the same value used by Get-AzureRmVMDscExtension. Specify this parameter only if you changed " + + HelpMessage = "Name of the ARM resource that represents the extension. The Set-AzVMDscExtension cmdlet sets this name to " + + "'Microsoft.Powershell.DSC', which is the same value used by Get-AzVMDscExtension. Specify this parameter only if you changed " + "the default name in the Set cmdlet or used a different resource name in an ARM template.")] [ResourceNameCompleter("Microsoft.Compute/virtualMachines/extensions", "ResourceGroupName", "VMName")] [ValidateNotNullOrEmpty] diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/SetAzureVMDscExtensionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/SetAzureVMDscExtensionCommand.cs index 58c186efe2dc..c2a4f2106e1a 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/SetAzureVMDscExtensionCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/DSC/SetAzureVMDscExtensionCommand.cs @@ -51,7 +51,7 @@ public class SetAzureVMDscExtensionCommand : VirtualMachineExtensionBaseCmdlet /// /// The name of the configuration archive that was previously uploaded by - /// Publish-AzureRmVMDSCConfiguration. This parameter must specify only the name + /// Publish-AzVMDSCConfiguration. This parameter must specify only the name /// of the file, without any path. /// A null value or empty string indicate that the VM extension should install DSC, /// but not start any configuration @@ -62,7 +62,7 @@ public class SetAzureVMDscExtensionCommand : VirtualMachineExtensionBaseCmdlet Position = 5, ValueFromPipelineByPropertyName = true, ParameterSetName = AzureBlobDscExtensionParamSet, - HelpMessage = "The name of the configuration file that was previously uploaded by Publish-AzureRmVMDSCConfiguration")] + HelpMessage = "The name of the configuration file that was previously uploaded by Publish-AzVMDSCConfiguration")] [AllowEmptyString] [AllowNull] public string ArchiveBlobName { get; set; } @@ -146,7 +146,7 @@ public class SetAzureVMDscExtensionCommand : VirtualMachineExtensionBaseCmdlet public string ConfigurationData { get; set; } /// - /// The specific version of the DSC extension that Set-AzureRmVMDSCExtension will + /// The specific version of the DSC extension that Set-AzVMDSCExtension will /// apply the settings to. /// [Alias("HandlerVersion")] @@ -154,13 +154,13 @@ public class SetAzureVMDscExtensionCommand : VirtualMachineExtensionBaseCmdlet Mandatory = true, Position = 1, ValueFromPipelineByPropertyName = true, - HelpMessage = "The version of the DSC extension that Set-AzureRmVMDSCExtension will apply the settings to. " + + HelpMessage = "The version of the DSC extension that Set-AzVMDSCExtension will apply the settings to. " + "Allowed format N.N")] [ValidateNotNullOrEmpty] public string Version { get; set; } /// - /// By default Set-AzureRmVMDscExtension will not overwrite any existing blobs. Use -Force to overwrite them. + /// By default Set-AzVMDscExtension will not overwrite any existing blobs. Use -Force to overwrite them. /// [Parameter( HelpMessage = "Use this parameter to overwrite any existing blobs")] diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs index 4c6a30e547e3..86a428898a12 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/GetAzureVMSqlServerExtensionCommand.cs @@ -68,8 +68,8 @@ public class GetAzureVMSqlServerExtensionCommand : VirtualMachineExtensionBaseCm [Parameter( Position = 2, ValueFromPipelineByPropertyName = true, - HelpMessage = "Name of the ARM resource that represents the extension. The Set-AzureRmVMSqlServerExtension cmdlet sets this name to " + - "'Microsoft.SqlServer.Management.SqlIaaSAgent', which is the same value used by Get-AzureRmVMSqlServerExtension. Specify this parameter only if you changed " + + HelpMessage = "Name of the ARM resource that represents the extension. The Set-AzVMSqlServerExtension cmdlet sets this name to " + + "'Microsoft.SqlServer.Management.SqlIaaSAgent', which is the same value used by Get-AzVMSqlServerExtension. Specify this parameter only if you changed " + "the default name in the Set cmdlet or used a different resource name in an ARM template.")] [ResourceNameCompleter("Microsoft.Compute/virtualMachines/extensions", "ResourceGroupName", "VMName")] [ValidateNotNullOrEmpty] diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/SetAzureVMSqlServerExtensionCommand.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/SetAzureVMSqlServerExtensionCommand.cs index 9d2a229645f2..71997d4437c8 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/SetAzureVMSqlServerExtensionCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/SetAzureVMSqlServerExtensionCommand.cs @@ -29,14 +29,14 @@ namespace Microsoft.Azure.Commands.Compute public class SetAzureSqlServerExtensionCommand : VirtualMachineExtensionBaseCmdlet { /// - /// The specific version of the SqlServer extension that Set-AzureRmVMSqlServerExtension will + /// The specific version of the SqlServer extension that Set-AzVMSqlServerExtension will /// apply the settings to. /// [Alias("HandlerVersion")] [Parameter( Position = 1, ValueFromPipelineByPropertyName = true, - HelpMessage = "The version of the SqlServer extension that Set-AzureRmVMSqlServerExtension will apply the settings to. " + + HelpMessage = "The version of the SqlServer extension that Set-AzVMSqlServerExtension will apply the settings to. " + "Allowed format N.N")] [ValidateNotNullOrEmpty] public string Version { get; set; } diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/VirtualMachineSqlServerExtensionContext.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/VirtualMachineSqlServerExtensionContext.cs index b8253f0e242c..6320142a37ad 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/VirtualMachineSqlServerExtensionContext.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/SqlServer/VirtualMachineSqlServerExtensionContext.cs @@ -17,7 +17,7 @@ namespace Microsoft.Azure.Commands.Compute { /// - /// SQL VM Extension's context object used by Get-AzureRmVMSqlServerExtension + /// SQL VM Extension's context object used by Get-AzVMSqlServerExtension /// public class VirtualMachineSqlServerExtensionContext : PSVirtualMachineExtension { diff --git a/src/ResourceManager/Compute/Commands.Compute/Extension/VmssDiskEncryption/AzureVmssDiskEncryptionExtensionContext.cs b/src/ResourceManager/Compute/Commands.Compute/Extension/VmssDiskEncryption/AzureVmssDiskEncryptionExtensionContext.cs index 98480f5be24e..90121ec13a5e 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Extension/VmssDiskEncryption/AzureVmssDiskEncryptionExtensionContext.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Extension/VmssDiskEncryption/AzureVmssDiskEncryptionExtensionContext.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.Compute.Extension.AzureDiskEncryption { /// /// This class represents the extension context of AzureDiskEncryption VM Scale Set extension. - /// This is returned as an output of Get-AzureRmVmssDiskEncryptionStatus cmdlet + /// This is returned as an output of Get-AzVmssDiskEncryptionStatus cmdlet /// public class AzureVmssDiskEncryptionExtensionContext : PSVirtualMachineScaleSetExtension { diff --git a/src/ResourceManager/Compute/Commands.Compute/Generated/ContainerService/ContainerServiceDeleteMethod.cs b/src/ResourceManager/Compute/Commands.Compute/Generated/ContainerService/ContainerServiceDeleteMethod.cs index 244f7d543875..f03829c5b2ff 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Generated/ContainerService/ContainerServiceDeleteMethod.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Generated/ContainerService/ContainerServiceDeleteMethod.cs @@ -43,7 +43,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(this.Name, VerbsCommon.Remove) && (this.Force.IsPresent || this.ShouldContinue(Properties.Resources.ResourceRemovalConfirmation, - "Remove-AzureRmContainerService operation"))) + "Remove-AzContainerService operation"))) { string resourceGroupName = this.ResourceGroupName; string containerServiceName = this.Name; diff --git a/src/ResourceManager/Compute/Commands.Compute/Generated/Disk/DiskDeleteMethod.cs b/src/ResourceManager/Compute/Commands.Compute/Generated/Disk/DiskDeleteMethod.cs index f96c13303430..5a5ff522a0f8 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Generated/Disk/DiskDeleteMethod.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Generated/Disk/DiskDeleteMethod.cs @@ -43,7 +43,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(this.DiskName, VerbsCommon.Remove) && (this.Force.IsPresent || this.ShouldContinue(Properties.Resources.ResourceRemovalConfirmation, - "Remove-AzureRmDisk operation"))) + "Remove-AzDisk operation"))) { string resourceGroupName = this.ResourceGroupName; string diskName = this.DiskName; diff --git a/src/ResourceManager/Compute/Commands.Compute/Generated/Gallery/GalleryDeleteMethod.cs b/src/ResourceManager/Compute/Commands.Compute/Generated/Gallery/GalleryDeleteMethod.cs index b3b4f1355bca..edaf1927367a 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Generated/Gallery/GalleryDeleteMethod.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Generated/Gallery/GalleryDeleteMethod.cs @@ -43,7 +43,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(this.Name, VerbsCommon.Remove) && (this.Force.IsPresent || this.ShouldContinue(Properties.Resources.ResourceRemovalConfirmation, - "Remove-AzureRmGallery operation"))) + "Remove-AzGallery operation"))) { string resourceGroupName; string galleryName; diff --git a/src/ResourceManager/Compute/Commands.Compute/Generated/GalleryImage/GalleryImageDeleteMethod.cs b/src/ResourceManager/Compute/Commands.Compute/Generated/GalleryImage/GalleryImageDeleteMethod.cs index b7980480cdd1..a74a7e751e9c 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Generated/GalleryImage/GalleryImageDeleteMethod.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Generated/GalleryImage/GalleryImageDeleteMethod.cs @@ -43,7 +43,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(this.Name, VerbsCommon.Remove) && (this.Force.IsPresent || this.ShouldContinue(Properties.Resources.ResourceRemovalConfirmation, - "Remove-AzureRmGalleryImageDefinition operation"))) + "Remove-AzGalleryImageDefinition operation"))) { string resourceGroupName; string galleryName; diff --git a/src/ResourceManager/Compute/Commands.Compute/Generated/GalleryImageVersion/GalleryImageVersionDeleteMethod.cs b/src/ResourceManager/Compute/Commands.Compute/Generated/GalleryImageVersion/GalleryImageVersionDeleteMethod.cs index 276a2ea6fc92..856092f089d5 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Generated/GalleryImageVersion/GalleryImageVersionDeleteMethod.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Generated/GalleryImageVersion/GalleryImageVersionDeleteMethod.cs @@ -43,7 +43,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(this.Name, VerbsCommon.Remove) && (this.Force.IsPresent || this.ShouldContinue(Properties.Resources.ResourceRemovalConfirmation, - "Remove-AzureRmGalleryImageVersion operation"))) + "Remove-AzGalleryImageVersion operation"))) { string resourceGroupName; string galleryName; diff --git a/src/ResourceManager/Compute/Commands.Compute/Generated/Image/ImageDeleteMethod.cs b/src/ResourceManager/Compute/Commands.Compute/Generated/Image/ImageDeleteMethod.cs index 14a98182fc11..267882a86d42 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Generated/Image/ImageDeleteMethod.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Generated/Image/ImageDeleteMethod.cs @@ -43,7 +43,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(this.ImageName, VerbsCommon.Remove) && (this.Force.IsPresent || this.ShouldContinue(Properties.Resources.ResourceRemovalConfirmation, - "Remove-AzureRmImage operation"))) + "Remove-AzImage operation"))) { string resourceGroupName = this.ResourceGroupName; string imageName = this.ImageName; diff --git a/src/ResourceManager/Compute/Commands.Compute/Generated/Snapshot/SnapshotDeleteMethod.cs b/src/ResourceManager/Compute/Commands.Compute/Generated/Snapshot/SnapshotDeleteMethod.cs index a503072db0f0..28d03542db53 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Generated/Snapshot/SnapshotDeleteMethod.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Generated/Snapshot/SnapshotDeleteMethod.cs @@ -43,7 +43,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(this.SnapshotName, VerbsCommon.Remove) && (this.Force.IsPresent || this.ShouldContinue(Properties.Resources.ResourceRemovalConfirmation, - "Remove-AzureRmSnapshot operation"))) + "Remove-AzSnapshot operation"))) { string resourceGroupName = this.ResourceGroupName; string snapshotName = this.SnapshotName; diff --git a/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetDeallocateMethod.cs b/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetDeallocateMethod.cs index c3cbf6de905a..0f7fa98c4adb 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetDeallocateMethod.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetDeallocateMethod.cs @@ -43,7 +43,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(this.VMScaleSetName, VerbsLifecycle.Stop) && (this.Force.IsPresent || this.ShouldContinue(Properties.Resources.ResourceStoppingConfirmation, - "Stop-AzureRmVmss operation"))) + "Stop-AzVmss operation"))) { string resourceGroupName = this.ResourceGroupName; string vmScaleSetName = this.VMScaleSetName; diff --git a/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetDeleteInstancesMethod.cs b/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetDeleteInstancesMethod.cs index 5a1f9550ac41..182fbe458c7f 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetDeleteInstancesMethod.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetDeleteInstancesMethod.cs @@ -43,7 +43,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(this.VMScaleSetName, VerbsCommon.Remove) && (this.Force.IsPresent || this.ShouldContinue(Properties.Resources.ResourceRemovalConfirmation, - "Remove-AzureRmVmss operation"))) + "Remove-AzVmss operation"))) { string resourceGroupName = this.ResourceGroupName; string vmScaleSetName = this.VMScaleSetName; diff --git a/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetUpdateMethod.cs b/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetUpdateMethod.cs index 2430bd5e933b..36e211515092 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetUpdateMethod.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSet/VirtualMachineScaleSetUpdateMethod.cs @@ -972,7 +972,7 @@ private void BuildPutObject() if (this.MyInvocation.BoundParameters.ContainsKey("ManagedDiskStorageAccountType")) { - WriteWarning("Update-AzureRmVmss: The accepted values for parameter ManagedDiskStorageAccountType will change in an upcoming breaking change release " + + WriteWarning("Update-AzVmss: The accepted values for parameter ManagedDiskStorageAccountType will change in an upcoming breaking change release " + "from StandardLRS and PremiumLRS to Standard_LRS and Premium_LRS, respectively."); if (this.VirtualMachineScaleSet.VirtualMachineProfile == null) { diff --git a/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSetRollingUpgrade/VirtualMachineScaleSetRollingUpgradeCancelMethod.cs b/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSetRollingUpgrade/VirtualMachineScaleSetRollingUpgradeCancelMethod.cs index 5f4848d55bf1..6f27c7fc3754 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSetRollingUpgrade/VirtualMachineScaleSetRollingUpgradeCancelMethod.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Generated/VirtualMachineScaleSetRollingUpgrade/VirtualMachineScaleSetRollingUpgradeCancelMethod.cs @@ -43,7 +43,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(this.VMScaleSetName, VerbsLifecycle.Stop) && (this.Force.IsPresent || this.ShouldContinue(Properties.Resources.ResourceStoppingConfirmation, - "Stop-AzureRmVmssRollingUpgrade operation"))) + "Stop-AzVmssRollingUpgrade operation"))) { string resourceGroupName = this.ResourceGroupName; string vmScaleSetName = this.VMScaleSetName; diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs index 56a52829f98b..1cfc30256941 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.Designer.cs @@ -151,7 +151,7 @@ internal static string AzureVMDscCreateArchiveAction { } /// - /// Looks up a localized string similar to Can not find your azure storage credential. Please specify an storage context using the -StorageContext parameter, or set the current storage account using "Set-AzureRmSubscription", or set the "AZURE_STORAGE_CONNECTION_STRING" environment variable.. + /// Looks up a localized string similar to Can not find your azure storage credential. Please specify an storage context using the -StorageContext parameter, or set the current storage account using "Set-AzSubscription", or set the "AZURE_STORAGE_CONNECTION_STRING" environment variable.. /// internal static string AzureVMDscDefaultStorageCredentialsNotFound { get { @@ -334,7 +334,7 @@ internal static string CustomScriptExtensionTryToUseTheFirstSpecifiedFileAsRunSc } /// - /// Looks up a localized string similar to A data disk, {0}, is not currently assigned for this VM. Use Add-AzureRmVMDataDisk to add it.. + /// Looks up a localized string similar to A data disk, {0}, is not currently assigned for this VM. Use Add-AzVMDataDisk to add it.. /// internal static string DataDiskNotAssignedForVM { get { @@ -577,7 +577,7 @@ internal static string InvalidImageName { } /// - /// Looks up a localized string similar to No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzureRmAccount to login.. + /// Looks up a localized string similar to No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzAccount to login.. /// internal static string NoSubscriptionInContext { get { @@ -1176,7 +1176,7 @@ internal static string StorageAccountNotFoundForBootDiagnostics { } /// - /// Looks up a localized string similar to No current subscription has been designated. Use Select-AzureRmSubscription -Current <subscriptionName> to set the current subscription.. + /// Looks up a localized string similar to No current subscription has been designated. Use Select-AzSubscription -Current <subscriptionName> to set the current subscription.. /// internal static string StorageCredentialsFactoryCurrentSubscriptionNotSet { get { diff --git a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx index b148b9b0270b..0f96e3b0ea62 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx +++ b/src/ResourceManager/Compute/Commands.Compute/Properties/Resources.resx @@ -242,7 +242,7 @@ The file needs to be a PowerShell script (.ps1 or .psm1). {0} = minimal required PS version, {1} = current PS version - Can not find your azure storage credential. Please specify an storage context using the -StorageContext parameter, or set the current storage account using "Set-AzureRmSubscription", or set the "AZURE_STORAGE_CONNECTION_STRING" environment variable. + Can not find your azure storage credential. Please specify an storage context using the -StorageContext parameter, or set the current storage account using "Set-AzSubscription", or set the "AZURE_STORAGE_CONNECTION_STRING" environment variable. List of required modules: [{0}]. @@ -363,10 +363,10 @@ The file needs to be a PowerShell script (.ps1 or .psm1). Uploading - No current subscription has been designated. Use Select-AzureRmSubscription -Current <subscriptionName> to set the current subscription. + No current subscription has been designated. Use Select-AzSubscription -Current <subscriptionName> to set the current subscription. - A data disk, {0}, is not currently assigned for this VM. Use Add-AzureRmVMDataDisk to add it. + A data disk, {0}, is not currently assigned for this VM. Use Add-AzVMDataDisk to add it. Cannot deserialize sql configuration substatus message from Sql Server extension. Updating your Azure PowerShell SDK to the latest version may solve this problem. Settings string: @@ -595,6 +595,6 @@ The file needs to be a PowerShell script (.ps1 or .psm1) or a ZIP archive (.zip) {0} = image name - No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzureRmAccount to login. + No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzAccount to login. \ No newline at end of file diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMDataDiskCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMDataDiskCommand.cs index 06c95e373eca..67e3a8273e5a 100644 --- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMDataDiskCommand.cs +++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Config/AddAzureVMDataDiskCommand.cs @@ -235,7 +235,7 @@ public override void ExecuteCmdlet() } else { - WriteWarning("VirtualMachineScaleSetVM parameter will be deprecated. Use Add-AzureRmVmssVMDataDisk instead."); + WriteWarning("VirtualMachineScaleSetVM parameter will be deprecated. Use Add-AzVmssVMDataDisk instead."); var storageProfile = this.VirtualMachineScaleSetVM.StorageProfile; diff --git a/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/GetAzureContainerGroupCommand.cs b/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/GetAzureContainerGroupCommand.cs index 9e3baade492d..c5907f8c63be 100644 --- a/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/GetAzureContainerGroupCommand.cs +++ b/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/GetAzureContainerGroupCommand.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.ContainerInstance { /// - /// Get-AzureRmContainerGroup. + /// Get-AzContainerGroup. /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerGroup", DefaultParameterSetName = ListContainerGroupParamSet)] [OutputType(typeof(PSContainerGroup))] diff --git a/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/GetAzureContainerInstanceLogCommand.cs b/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/GetAzureContainerInstanceLogCommand.cs index f5b7d7584e74..a78d1d0e5e58 100644 --- a/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/GetAzureContainerInstanceLogCommand.cs +++ b/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/GetAzureContainerInstanceLogCommand.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ContainerInstance { /// - /// Get-AzureRmContainerGroupLogs + /// Get-AzContainerGroupLogs /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerInstanceLog", DefaultParameterSetName = GetContainerInstanceLogByNamesParamSet)] [OutputType(typeof(string))] diff --git a/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/NewAzureContainerGroupCommand.cs b/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/NewAzureContainerGroupCommand.cs index 7e8c1cbbe744..37e907ec945d 100644 --- a/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/NewAzureContainerGroupCommand.cs +++ b/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/NewAzureContainerGroupCommand.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.ContainerInstance { /// - /// New-AzureRmContainerGroup + /// New-AzContainerGroup /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerGroup", SupportsShouldProcess = true, DefaultParameterSetName = CreateContainerGroupBaseParamSet)] [OutputType(typeof(PSContainerGroup))] diff --git a/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/RemoveAzureContainerGroupCommand.cs b/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/RemoveAzureContainerGroupCommand.cs index a3f7257ecd27..2e2666dd17e4 100644 --- a/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/RemoveAzureContainerGroupCommand.cs +++ b/src/ResourceManager/ContainerInstance/Commands.ContainerInstance/Commands/RemoveAzureContainerGroupCommand.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.ContainerInstance { /// - /// Remove-AzureRmContainerGroup + /// Remove-AzContainerGroup /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerGroup", SupportsShouldProcess = true, DefaultParameterSetName = RemoveContainerGroupByResourceGroupAndNameParamSet)] [OutputType(typeof(PSContainerGroup))] diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Encrypt/NewAzureDataFactoryEncryptValueCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Encrypt/NewAzureDataFactoryEncryptValueCommand.cs index 0047c6a5ea31..5b718876b85c 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Encrypt/NewAzureDataFactoryEncryptValueCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Encrypt/NewAzureDataFactoryEncryptValueCommand.cs @@ -93,7 +93,7 @@ public override void ExecuteCmdlet() if (String.IsNullOrWhiteSpace(GatewayName)) { // Cloud encryption without Gateway - WriteWarning("Cloud encryption has already been deprecated. Please run get-help new-azuredatafactoryencryptvalue to see other option of this command"); + WriteWarning("Cloud encryption has already been deprecated. Please run get-help new-Azdatafactoryencryptvalue to see other option of this command"); } else { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/NewAzureDataFactoryGatewayKeyCommand.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/NewAzureDataFactoryGatewayKeyCommand.cs index 51ab7ad35ed2..07ad7fde9b0d 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/NewAzureDataFactoryGatewayKeyCommand.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Gateway/NewAzureDataFactoryGatewayKeyCommand.cs @@ -38,7 +38,7 @@ public class NewAzureDataFactoryGatewayKeyCommand : DataFactoryBaseCmdlet public override void ExecuteCmdlet() { - WriteWarning("This cmdlet is deprecated and you should use New-AzureRmDataFactoryGatewayAuthKey instead."); + WriteWarning("This cmdlet is deprecated and you should use New-AzDataFactoryGatewayAuthKey instead."); if (ParameterSetName == ByFactoryObject) { if (DataFactory == null) diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.Designer.cs b/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.Designer.cs index c884386f2c7c..058ab3eb7c73 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.Designer.cs +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.Designer.cs @@ -61,7 +61,7 @@ internal Resources() { } /// - /// Looks up a localized string similar to The data factory object provided is invalid. Use Get-AzureRmDataFactory to retrieve a specific data factory object, or use New-AzureRmDataFactory to create a new data factory object.. + /// Looks up a localized string similar to The data factory object provided is invalid. Use Get-AzDataFactory to retrieve a specific data factory object, or use New-AzDataFactory to create a new data factory object.. /// internal static string DataFactoryArgumentInvalid { get { @@ -218,7 +218,7 @@ internal static string DownloadLogCompleted { } /// - /// Looks up a localized string similar to EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Get-AzureRmDataFactorySlice command if you want to specify EndDateTime.. + /// Looks up a localized string similar to EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Get-AzDataFactorySlice command if you want to specify EndDateTime.. /// internal static string EndDateTimeNotSpecifiedForGetSlice { get { @@ -227,7 +227,7 @@ internal static string EndDateTimeNotSpecifiedForGetSlice { } /// - /// Looks up a localized string similar to EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Set-AzureRmDataFactorySliceStatus command if you want to specify EndDateTime.. + /// Looks up a localized string similar to EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Set-AzDataFactorySliceStatus command if you want to specify EndDateTime.. /// internal static string EndDateTimeNotSpecifiedForSetSliceStatus { get { diff --git a/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.resx b/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.resx index cc3075be90dc..6038add2bac1 100644 --- a/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.resx +++ b/src/ResourceManager/DataFactories/Commands.DataFactories/Properties/Resources.resx @@ -118,7 +118,7 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - The data factory object provided is invalid. Use Get-AzureRmDataFactory to retrieve a specific data factory object, or use New-AzureRmDataFactory to create a new data factory object. + The data factory object provided is invalid. Use Get-AzDataFactory to retrieve a specific data factory object, or use New-AzDataFactory to create a new data factory object. Are you sure you want to remove the gateway '{0}' in the data factory '{1}'? @@ -256,9 +256,9 @@ Are you sure you want to continue? For data factory naming restrictions, please see http://msdn.microsoft.com/en-us/library/dn835027.aspx - EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Get-AzureRmDataFactorySlice command if you want to specify EndDateTime. + EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Get-AzDataFactorySlice command if you want to specify EndDateTime. - EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Set-AzureRmDataFactorySliceStatus command if you want to specify EndDateTime. + EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Set-AzDataFactorySliceStatus command if you want to specify EndDateTime. \ No newline at end of file diff --git a/src/ResourceManager/DataFactoryV2/Commands.DataFactoryV2/Properties/Resources.Designer.cs b/src/ResourceManager/DataFactoryV2/Commands.DataFactoryV2/Properties/Resources.Designer.cs index c7e7d7a47957..36af3bcbf51b 100644 --- a/src/ResourceManager/DataFactoryV2/Commands.DataFactoryV2/Properties/Resources.Designer.cs +++ b/src/ResourceManager/DataFactoryV2/Commands.DataFactoryV2/Properties/Resources.Designer.cs @@ -71,7 +71,7 @@ internal static string ContinueRegenerateAuthKey { } /// - /// Looks up a localized string similar to The data factory object provided is invalid. Use Get-AzureRmDataFactory to retrieve a specific data factory object, or use New-AzureRmDataFactory to create a new data factory object.. + /// Looks up a localized string similar to The data factory object provided is invalid. Use Get-AzDataFactory to retrieve a specific data factory object, or use New-AzDataFactory to create a new data factory object.. /// internal static string DataFactoryArgumentInvalid { get { @@ -228,7 +228,7 @@ internal static string Encrypting { } /// - /// Looks up a localized string similar to EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Get-AzureRmDataFactorySlice command if you want to specify EndDateTime.. + /// Looks up a localized string similar to EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Get-AzDataFactorySlice command if you want to specify EndDateTime.. /// internal static string EndDateTimeNotSpecifiedForGetSlice { get { @@ -237,7 +237,7 @@ internal static string EndDateTimeNotSpecifiedForGetSlice { } /// - /// Looks up a localized string similar to EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Set-AzureRmDataFactorySliceStatus command if you want to specify EndDateTime.. + /// Looks up a localized string similar to EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Set-AzDataFactorySliceStatus command if you want to specify EndDateTime.. /// internal static string EndDateTimeNotSpecifiedForSetSliceStatus { get { @@ -635,7 +635,7 @@ internal static string LinksSwitchMissing { } /// - /// Looks up a localized string similar to An error occurred while requesting the status of Integration Runtime, but you can manually execute the following command: Get-AzureRmDataFactoryV2IntegrationRuntime -DataFactoryName MyDataFactory -ResourceGroupName MyResourceGroup -Name MyIR -Status. + /// Looks up a localized string similar to An error occurred while requesting the status of Integration Runtime, but you can manually execute the following command: Get-AzDataFactoryV2IntegrationRuntime -DataFactoryName MyDataFactory -ResourceGroupName MyResourceGroup -Name MyIR -Status. /// internal static string LongRunningStatusError { get { diff --git a/src/ResourceManager/DataFactoryV2/Commands.DataFactoryV2/Properties/Resources.resx b/src/ResourceManager/DataFactoryV2/Commands.DataFactoryV2/Properties/Resources.resx index 5eea515003ea..49a8bb1e871e 100644 --- a/src/ResourceManager/DataFactoryV2/Commands.DataFactoryV2/Properties/Resources.resx +++ b/src/ResourceManager/DataFactoryV2/Commands.DataFactoryV2/Properties/Resources.resx @@ -118,7 +118,7 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - The data factory object provided is invalid. Use Get-AzureRmDataFactory to retrieve a specific data factory object, or use New-AzureRmDataFactory to create a new data factory object. + The data factory object provided is invalid. Use Get-AzDataFactory to retrieve a specific data factory object, or use New-AzDataFactory to create a new data factory object. Are you sure you want to remove data factory '{0}' in resource group '{1}'? @@ -244,10 +244,10 @@ Are you sure you want to continue? For data factory naming restrictions, please see http://msdn.microsoft.com/en-us/library/dn835027.aspx - EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Get-AzureRmDataFactorySlice command if you want to specify EndDateTime. + EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Get-AzDataFactorySlice command if you want to specify EndDateTime. - EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Set-AzureRmDataFactorySliceStatus command if you want to specify EndDateTime. + EndDateTime is not specified and is set to 48 hours from StartDateTime (by default). Please use -EndDateTime parameter in Set-AzDataFactorySliceStatus command if you want to specify EndDateTime. All keys in the parameters hashtable must be of type string since they represent pipeline parameter names. @@ -363,7 +363,7 @@ Are you sure you want to continue? Are you sure you want to update integration runtime '{0}'? - An error occurred while requesting the status of Integration Runtime, but you can manually execute the following command: Get-AzureRmDataFactoryV2IntegrationRuntime -DataFactoryName MyDataFactory -ResourceGroupName MyResourceGroup -Name MyIR -Status + An error occurred while requesting the status of Integration Runtime, but you can manually execute the following command: Get-AzDataFactoryV2IntegrationRuntime -DataFactoryName MyDataFactory -ResourceGroupName MyResourceGroup -Name MyIR -Status Are you sure you want to upgrade integration runtime '{0}'. diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsCatalogSecret.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsCatalogSecret.cs index 15e2771f7ac6..56e453af9e98 100644 --- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsCatalogSecret.cs +++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/NewAzureRmDataLakeAnalyticsCatalogSecret.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.DataLakeAnalytics { [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataLakeAnalyticsCatalogSecret"), OutputType(typeof(USqlSecret))] [Alias("New-AdlCatalogSecret")] - [Obsolete("Catalog secrets are being deprecated in a future release. Please use New-AzureRmDataLakeAnalyticsCatalogCredential directly instead.")] + [Obsolete("Catalog secrets are being deprecated in a future release. Please use New-AzDataLakeAnalyticsCatalogCredential directly instead.")] public class NewAzureDataLakeAnalyticsCatalogSecret : DataLakeAnalyticsCmdletBase { internal const string BaseParameterSetName = "CreateByFullURI"; diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/RemoveAzureRmDataLakeAnalyticsCatalogSecret.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/RemoveAzureRmDataLakeAnalyticsCatalogSecret.cs index 3ce284583784..7d496f8c6580 100644 --- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/RemoveAzureRmDataLakeAnalyticsCatalogSecret.cs +++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/RemoveAzureRmDataLakeAnalyticsCatalogSecret.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.DataLakeAnalytics { [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataLakeAnalyticsCatalogSecret", SupportsShouldProcess = true), OutputType(typeof(bool))] [Alias("Remove-AdlCatalogSecret")] - [Obsolete("Catalog secrets are being deprecated in a future release. Please use Remove-AzureRmDataLakeAnalyticsCatalogCredential directly instead.")] + [Obsolete("Catalog secrets are being deprecated in a future release. Please use Remove-AzDataLakeAnalyticsCatalogCredential directly instead.")] public class RemoveAzureDataLakeAnalyticsSecret : DataLakeAnalyticsCmdletBase { [Parameter(ValueFromPipelineByPropertyName = true, Position = 0, Mandatory = true, diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsCatalogSecret.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsCatalogSecret.cs index 0903aa2b88a1..9f65f558000f 100644 --- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsCatalogSecret.cs +++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Commands/SetAzureRmDataLakeAnalyticsCatalogSecret.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.DataLakeAnalytics { [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "DataLakeAnalyticsCatalogSecret"), OutputType(typeof(USqlSecret))] [Alias("Set-AdlCatalogSecret")] - [Obsolete("Catalog secrets are being deprecated in a future release. Please use Set-AzureRmDataLakeAnalyticsCatalogCredential directly instead.")] + [Obsolete("Catalog secrets are being deprecated in a future release. Please use Set-AzDataLakeAnalyticsCatalogCredential directly instead.")] public class SetAzureDataLakeAnalyticsCatalogSecret : DataLakeAnalyticsCmdletBase { internal const string BaseParameterSetName = "SetByFullUri"; diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.Designer.cs b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.Designer.cs index e85252efbd9c..ecbcfb24f1d7 100644 --- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.Designer.cs +++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.Designer.cs @@ -196,7 +196,7 @@ internal static string InvalidDataLakeStoreAccountModificationAttempt { } /// - /// Looks up a localized string similar to No default subscription has been designated. Use Select-AzureSubscription -Default <subscriptionName> to set the default subscription.. + /// Looks up a localized string similar to No default subscription has been designated. Use Select-AzSubscription -Default <subscriptionName> to set the default subscription.. /// internal static string InvalidDefaultSubscription { get { @@ -313,7 +313,7 @@ internal static string NoPortSpecified { } /// - /// Looks up a localized string similar to No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzureRMAccount to login.. + /// Looks up a localized string similar to No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzAccount to login.. /// internal static string NoSubscriptionInContext { get { diff --git a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.resx b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.resx index 0f0ef8ed2f35..cd90ce98decf 100644 --- a/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.resx +++ b/src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Properties/Resources.resx @@ -253,10 +253,10 @@ Setting the Data Lake Analytics firewall rule: '{0}' ... - No default subscription has been designated. Use Select-AzureSubscription -Default <subscriptionName> to set the default subscription. + No default subscription has been designated. Use Select-AzSubscription -Default <subscriptionName> to set the default subscription. - No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzureRMAccount to login. + No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzAccount to login. -MaxAnalyticsUnitsPerJob or -MinPriorityPerJob or both must be specified when creating or updating a compute policy. diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/RemoveAzureRmDataLakeStoreItemAclEntry.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/RemoveAzureRmDataLakeStoreItemAclEntry.cs index f168f32dc256..fc7b6841dbcf 100644 --- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/RemoveAzureRmDataLakeStoreItemAclEntry.cs +++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/RemoveAzureRmDataLakeStoreItemAclEntry.cs @@ -56,7 +56,7 @@ public class RemoveAzureDataLakeStoreItemAclEntry : DataLakeStoreFileSystemCmdle [Parameter(ValueFromPipelineByPropertyName = true, ValueFromPipeline = true, ParameterSetName = BaseParameterSetName, Position = 2, Mandatory = true, HelpMessage = - "The ACL spec containing the entries to remove. These entries MUST exist in the ACL spec for the file already. This can be a modified ACL from Get-AzureDataLakeStoreItemAcl or it can be the string " + + "The ACL spec containing the entries to remove. These entries MUST exist in the ACL spec for the file already. This can be a modified ACL from Get-AzDataLakeStoreItemAcl or it can be the string " + " representation of an ACL as defined in the apache webhdfs specification. Note that this is only supported for named ACEs." + "This cmdlet is not to be used for setting the owner or owning group.")] public DataLakeStoreItemAce[] Acl { get; set; } diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/SetAzureRmDataLakeStoreItemAcl.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/SetAzureRmDataLakeStoreItemAcl.cs index 4ed3cb838f2f..ce0509ea0424 100644 --- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/SetAzureRmDataLakeStoreItemAcl.cs +++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/SetAzureRmDataLakeStoreItemAcl.cs @@ -41,7 +41,7 @@ public class SetAzureDataLakeStoreItemAcl : DataLakeStoreFileSystemCmdletBase [Parameter(ValueFromPipelineByPropertyName = true, ValueFromPipeline = true, Position = 2, Mandatory = true, HelpMessage = - "The ACL to set. This can be a modified ACL from Get-AzureDataLakeStoreItemAcl or it can be the string " + + "The ACL to set. This can be a modified ACL from Get-AzDataLakeStoreItemAcl or it can be the string " + " representation of an ACL as defined in the apache webhdfs specification. Note that this is only supported for named ACEs." + "This cmdlet is not to be used for setting the owner or owning group.")] public DataLakeStoreItemAce[] Acl { get; set; } diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/SetAzureRmDataLakeStoreItemAclEntry.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/SetAzureRmDataLakeStoreItemAclEntry.cs index 94bebfc3a92a..0a6b3cda72f6 100644 --- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/SetAzureRmDataLakeStoreItemAclEntry.cs +++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/SetAzureRmDataLakeStoreItemAclEntry.cs @@ -55,7 +55,7 @@ public class SetAzureDataLakeStoreItemAclEntry : DataLakeStoreFileSystemCmdletBa [Parameter(ValueFromPipelineByPropertyName = true, ValueFromPipeline = true, ParameterSetName = BaseParameterSetName, Position = 2, Mandatory = true, HelpMessage = - "The ACL spec containing the entries to set. These entries MUST exist in the ACL spec for the file already. This can be a modified ACL from Get-AzureDataLakeStoreItemAcl or it can be the string " + + "The ACL spec containing the entries to set. These entries MUST exist in the ACL spec for the file already. This can be a modified ACL from Get-AzDataLakeStoreItemAcl or it can be the string " + " representation of an ACL as defined in the apache webhdfs specification. Note that this is only supported for named ACEs." + "This cmdlet is not to be used for setting the owner or owning group.")] public DataLakeStoreItemAce[] Acl { get; set; } diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Properties/Resources.Designer.cs b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Properties/Resources.Designer.cs index 90bffbf0b2aa..db0088a15dc5 100644 --- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Properties/Resources.Designer.cs +++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Properties/Resources.Designer.cs @@ -254,7 +254,7 @@ internal static string InvalidContent { } /// - /// Looks up a localized string similar to No default subscription has been designated. Use Select-AzureSubscription -Default <subscriptionName> to set the default subscription.. + /// Looks up a localized string similar to No default subscription has been designated. Use Select-AzSubscription -Default <subscriptionName> to set the default subscription.. /// internal static string InvalidDefaultSubscription { get { @@ -308,7 +308,7 @@ internal static string InvalidMovePathTypeCombination { } /// - /// Looks up a localized string similar to Invalid ACE Supplied. Expected ACE format: '[default]:<scope>:<identity>:<permissions>'. Actual ACE: {0}. Note: parsing is only supported for user and group ACEs. The mask and other permissions are set through Set-AzureDataLakeItemOwner. + /// Looks up a localized string similar to Invalid ACE Supplied. Expected ACE format: '[default]:<scope>:<identity>:<permissions>'. Actual ACE: {0}. Note: parsing is only supported for user and group ACEs. The mask and other permissions are set through Set-AzDataLakeItemOwner. /// internal static string InvalidParseAce { get { @@ -407,7 +407,7 @@ internal static string MoveFailed { } /// - /// Looks up a localized string similar to No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzureRMAccount to login.. + /// Looks up a localized string similar to No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzAccount to login.. /// internal static string NoSubscriptionInContext { get { @@ -416,7 +416,7 @@ internal static string NoSubscriptionInContext { } /// - /// Looks up a localized string similar to The existing DataLakeStoreItemAcl object will be deprecated in a future release. At that time, this cmdlet will instead accept the output of, and objects in the same format as, Get-AzureRMDataLakeStoreItemAclEntry. + /// Looks up a localized string similar to The existing DataLakeStoreItemAcl object will be deprecated in a future release. At that time, this cmdlet will instead accept the output of, and objects in the same format as, Get-AzDataLakeStoreItemAclEntry. /// internal static string ObsoleteWarningForAclObjects { get { diff --git a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Properties/Resources.resx b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Properties/Resources.resx index 0b0876808aab..941b185b7e45 100644 --- a/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Properties/Resources.resx +++ b/src/ResourceManager/DataLakeStore/Commands.DataLakeStore/Properties/Resources.resx @@ -184,7 +184,7 @@ Invalid content passed in. Only byte[] and string content is supported. If bytes are passed in, 'Byte' encoding must be selected. - No default subscription has been designated. Use Select-AzureSubscription -Default <subscriptionName> to set the default subscription. + No default subscription has been designated. Use Select-AzSubscription -Default <subscriptionName> to set the default subscription. Invalid encoding selected. 'Byte' encoding can only be used with byte content. Use text encoding instead. @@ -202,7 +202,7 @@ The source and destination path type must be the same. Both paths must be webhdfs compliant paths. - Invalid ACE Supplied. Expected ACE format: '[default]:<scope>:<identity>:<permissions>'. Actual ACE: {0}. Note: parsing is only supported for user and group ACEs. The mask and other permissions are set through Set-AzureDataLakeItemOwner + Invalid ACE Supplied. Expected ACE format: '[default]:<scope>:<identity>:<permissions>'. Actual ACE: {0}. Note: parsing is only supported for user and group ACEs. The mask and other permissions are set through Set-AzDataLakeItemOwner The specified path '{0}' is in an invalid format. The valid formats is an account relative full path: '/someFolder/someFile.txt', '/' (for the root). Please enter the path in valid format and try again." @@ -235,10 +235,10 @@ Failed to move source: '{0}' to destination: '{1}'. Please ensure the file or folder exists at the source and that the destination does not or force was used. - No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzureRMAccount to login. + No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzAccount to login. - The existing DataLakeStoreItemAcl object will be deprecated in a future release. At that time, this cmdlet will instead accept the output of, and objects in the same format as, Get-AzureRMDataLakeStoreItemAclEntry + The existing DataLakeStoreItemAcl object will be deprecated in a future release. At that time, this cmdlet will instead accept the output of, and objects in the same format as, Get-AzDataLakeStoreItemAclEntry The specified offset: {0} is greater than the length of the file to preview. Please select an offset less than: {1} and greater than or equal to zero. diff --git a/src/ResourceManager/DataMigration/Commands.DataMigration/Resources.Designer.cs b/src/ResourceManager/DataMigration/Commands.DataMigration/Resources.Designer.cs index a71a78901d00..535fa87bab95 100644 --- a/src/ResourceManager/DataMigration/Commands.DataMigration/Resources.Designer.cs +++ b/src/ResourceManager/DataMigration/Commands.DataMigration/Resources.Designer.cs @@ -187,7 +187,7 @@ public static string DatabaseNameNotAvailableOnTarget { } /// - /// Looks up a localized string similar to The database '{0}' has not been selected for migration. Please first run Add-AzureRmDmsDatabase to add the database to the migration task.. + /// Looks up a localized string similar to The database '{0}' has not been selected for migration. Please first run Add-AzDmsDatabase to add the database to the migration task.. /// public static string DatabaseNotSelectedForMigration { get { diff --git a/src/ResourceManager/DataMigration/Commands.DataMigration/Resources.resx b/src/ResourceManager/DataMigration/Commands.DataMigration/Resources.resx index 61237377c94f..c962f4055355 100644 --- a/src/ResourceManager/DataMigration/Commands.DataMigration/Resources.resx +++ b/src/ResourceManager/DataMigration/Commands.DataMigration/Resources.resx @@ -148,7 +148,7 @@ The database '{0}' is not available on the target server. - The database '{0}' has not been selected for migration. Please first run Add-AzureRmDmsDatabase to add the database to the migration task. + The database '{0}' has not been selected for migration. Please first run Add-AzDmsDatabase to add the database to the migration task. This command is not available for migration tasks from '{0}' to '{1}' diff --git a/src/ResourceManager/Dns/Commands.Dns/Properties/Resources.Designer.cs b/src/ResourceManager/Dns/Commands.Dns/Properties/Resources.Designer.cs index 9717bfb77b83..e393fcd7deac 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Dns/Commands.Dns/Properties/Resources.Designer.cs @@ -214,7 +214,7 @@ internal static string Success { } /// - /// Looks up a localized string similar to Zone '{0}' was created in resource group '{1}'. The SOA record for this zone has been created automatically. Use Get-AzureRmDnsRecordSet to retrieve it.. + /// Looks up a localized string similar to Zone '{0}' was created in resource group '{1}'. The SOA record for this zone has been created automatically. Use Get-AzDnsRecordSet to retrieve it.. /// internal static string Success_NewPrivateZone { get { @@ -223,7 +223,7 @@ internal static string Success_NewPrivateZone { } /// - /// Looks up a localized string similar to Record set '{0}' was created in zone '{1}'.The record set is empty. Use Add-AzureRmDnsRecordConfig to add {2} records to it and Set-AzureRmDnsRecordSet to save your changes.. + /// Looks up a localized string similar to Record set '{0}' was created in zone '{1}'.The record set is empty. Use Add-AzDnsRecordConfig to add {2} records to it and Set-AzDnsRecordSet to save your changes.. /// internal static string Success_NewRecordSet { get { @@ -232,7 +232,7 @@ internal static string Success_NewRecordSet { } /// - /// Looks up a localized string similar to Zone '{0}' was created in resource group '{1}'. The SOA and authoritative NS records for this zone have been created automatically. Use Get-AzureRmDnsRecordSet to retrieve them. + /// Looks up a localized string similar to Zone '{0}' was created in resource group '{1}'. The SOA and authoritative NS records for this zone have been created automatically. Use Get-AzDnsRecordSet to retrieve them. /// internal static string Success_NewZone { get { @@ -250,7 +250,7 @@ internal static string Success_NonExistentZone { } /// - /// Looks up a localized string similar to Record added. Use Set-AzureRmDnsRecordSet to save your change to this record set.. + /// Looks up a localized string similar to Record added. Use Set-AzDnsRecordSet to save your change to this record set.. /// internal static string Success_RecordAdded { get { @@ -259,7 +259,7 @@ internal static string Success_RecordAdded { } /// - /// Looks up a localized string similar to Record removed. Use Set-AzureRmDnsRecordSet to save your change to this record set.. + /// Looks up a localized string similar to Record removed. Use Set-AzDnsRecordSet to save your change to this record set.. /// internal static string Success_RecordRemoved { get { diff --git a/src/ResourceManager/Dns/Commands.Dns/Properties/Resources.resx b/src/ResourceManager/Dns/Commands.Dns/Properties/Resources.resx index a12973e9673e..ca35fd8948f6 100644 --- a/src/ResourceManager/Dns/Commands.Dns/Properties/Resources.resx +++ b/src/ResourceManager/Dns/Commands.Dns/Properties/Resources.resx @@ -169,22 +169,22 @@ Success! - Zone '{0}' was created in resource group '{1}'. The SOA record for this zone has been created automatically. Use Get-AzureRmDnsRecordSet to retrieve it. + Zone '{0}' was created in resource group '{1}'. The SOA record for this zone has been created automatically. Use Get-AzDnsRecordSet to retrieve it. - Record set '{0}' was created in zone '{1}'.The record set is empty. Use Add-AzureRmDnsRecordConfig to add {2} records to it and Set-AzureRmDnsRecordSet to save your changes. + Record set '{0}' was created in zone '{1}'.The record set is empty. Use Add-AzDnsRecordConfig to add {2} records to it and Set-AzDnsRecordSet to save your changes. - Zone '{0}' was created in resource group '{1}'. The SOA and authoritative NS records for this zone have been created automatically. Use Get-AzureRmDnsRecordSet to retrieve them + Zone '{0}' was created in resource group '{1}'. The SOA and authoritative NS records for this zone have been created automatically. Use Get-AzDnsRecordSet to retrieve them The Zone '{0}' was not present in the resource group '{1}'. Hence, was not deleted - Record added. Use Set-AzureRmDnsRecordSet to save your change to this record set. + Record added. Use Set-AzDnsRecordSet to save your change to this record set. - Record removed. Use Set-AzureRmDnsRecordSet to save your change to this record set. + Record removed. Use Set-AzDnsRecordSet to save your change to this record set. After you create {2} records in this record set you will be able to query them in DNS using the FQDN '{0}.{1}.' diff --git a/src/ResourceManager/EventGrid/Commands.EventGrid/Topic/GetAzureEventGridTopic.cs b/src/ResourceManager/EventGrid/Commands.EventGrid/Topic/GetAzureEventGridTopic.cs index 9cf3724e81b0..7f9fb58910fa 100644 --- a/src/ResourceManager/EventGrid/Commands.EventGrid/Topic/GetAzureEventGridTopic.cs +++ b/src/ResourceManager/EventGrid/Commands.EventGrid/Topic/GetAzureEventGridTopic.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.EventGrid { /// - /// 'Get-AzureRmEventGridTopic' Cmdlet gives the details of a / List of EventGrid topic(s) + /// 'Get-AzEventGridTopic' Cmdlet gives the details of a / List of EventGrid topic(s) /// If Topic name provided, a single Topic details will be returned /// If Topic name not provided, list of Topics will be returned /// diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/GetAzureEventhubAuthorizationRules.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/GetAzureEventhubAuthorizationRules.cs index 941d101202e3..c407396c25b2 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/GetAzureEventhubAuthorizationRules.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/GetAzureEventhubAuthorizationRules.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands { /// - /// 'Get-AzureRmEventHubAuthorizationRule' Cmdlet gives the details of a / List of AuthorizationRule(s) + /// 'Get-AzEventHubAuthorizationRule' Cmdlet gives the details of a / List of AuthorizationRule(s) /// If AuthorizationRule name provided, a single AuthorizationRule detials will be returned /// If AuthorizationRule name not provided, list of AuthorizationRules will be returned /// diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/GetAzureEventhubKey.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/GetAzureEventhubKey.cs index 055e80d83478..3a20b3b7a33c 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/GetAzureEventhubKey.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/GetAzureEventhubKey.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands { /// - /// 'Get-AzureRmRelayKey' Cmdlet gives key detials for the given Authorization Rule + /// 'Get-AzRelayKey' Cmdlet gives key detials for the given Authorization Rule /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubKey", DefaultParameterSetName = NamespaceAuthoRuleParameterSet), OutputType(typeof(PSListKeysAttributes))] public class GetAzureEventhubKey : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/NewAzureEventhubAuthorizationRules.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/NewAzureEventhubAuthorizationRules.cs index 8b52823706ba..29ef04570b7a 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/NewAzureEventhubAuthorizationRules.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/NewAzureEventhubAuthorizationRules.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands { /// - /// 'New-AzureRmRelayAuthorizationRule' Cmdlet creates a new AuthorizationRule + /// 'New-AzRelayAuthorizationRule' Cmdlet creates a new AuthorizationRule /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubAuthorizationRule", DefaultParameterSetName = NamespaceAuthoRuleParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSSharedAccessAuthorizationRuleAttributes))] public class NewAzureEventhubAuthorizationRules : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/NewAzureEventhubKey.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/NewAzureEventhubKey.cs index f367224bea77..ff343058df51 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/NewAzureEventhubKey.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/NewAzureEventhubKey.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands { /// - /// 'New-AzureRmRelayKey' Cmdlet creates a new specified (PrimaryKey / SecondaryKey) key for the given EventHub Authorization Rule + /// 'New-AzRelayKey' Cmdlet creates a new specified (PrimaryKey / SecondaryKey) key for the given EventHub Authorization Rule /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubKey", DefaultParameterSetName = NamespaceAuthoRuleParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSListKeysAttributes))] public class NewAzureEventhubKey : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/RemoveAzureEventhubAuthorizationRules.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/RemoveAzureEventhubAuthorizationRules.cs index 6b94b5b05e44..6e81d01a7264 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/RemoveAzureEventhubAuthorizationRules.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/RemoveAzureEventhubAuthorizationRules.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands { /// - /// 'Remove-AzureRmRelayAuthorizationRule' Cmdlet removes/deletes AuthorizationRule + /// 'Remove-AzRelayAuthorizationRule' Cmdlet removes/deletes AuthorizationRule /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubAuthorizationRule", DefaultParameterSetName = NamespaceAuthoRuleParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveAzureEventhubAuthorizationRules : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/SetAzureEventhubAuthorizationRules.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/SetAzureEventhubAuthorizationRules.cs index 279b42264263..7851f7990135 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/SetAzureEventhubAuthorizationRules.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/AuthorizationRule/SetAzureEventhubAuthorizationRules.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands { /// - /// 'Set-AzureRmEventHubAuthorizationRule' Cmdlet updates the specified AuthorizationRule + /// 'Set-AzEventHubAuthorizationRule' Cmdlet updates the specified AuthorizationRule /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubAuthorizationRule", DefaultParameterSetName = NamespaceAuthoRuleParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSSharedAccessAuthorizationRuleAttributes))] public class SetAzureEventhubAuthorizationRules : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/GetAzureEventHubConsumerGroups.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/GetAzureEventHubConsumerGroups.cs index ac74d63c0cee..b2f3a58f42c4 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/GetAzureEventHubConsumerGroups.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/GetAzureEventHubConsumerGroups.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.ConsumerGroup { /// - /// 'Get-AzureRmEventHubConsumerGroup' Cmdlet gives the details of a / List of Consumer Group + /// 'Get-AzEventHubConsumerGroup' Cmdlet gives the details of a / List of Consumer Group /// If consumerGroup name provided, a single Consumergroup detials will be returned /// If consumerGroup name not provided, list of Consumergroups will be returned /// diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/NewAzureEventHubConsumerGroups.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/NewAzureEventHubConsumerGroups.cs index 64f79786c577..76c95357e45c 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/NewAzureEventHubConsumerGroups.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/NewAzureEventHubConsumerGroups.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.ConsumerGroup { /// - /// 'New-AzureRmEventHubConsumerGroup' Cmdlet creates a new Cosumer Group for Specified Eventhub + /// 'New-AzEventHubConsumerGroup' Cmdlet creates a new Cosumer Group for Specified Eventhub /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubConsumerGroup", SupportsShouldProcess = true), OutputType(typeof(PSConsumerGroupAttributes))] public class NewEventHubConsumerGroup : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/RemoveAzureEventHubConsumerGroups.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/RemoveAzureEventHubConsumerGroups.cs index 2d5ca2f167df..610fb08442a9 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/RemoveAzureEventHubConsumerGroups.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/RemoveAzureEventHubConsumerGroups.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.ConsumerGroup { /// - /// 'Remove-AzureRmEventHubConsumerGroup' deletes the specifed Consumer Group + /// 'Remove-AzEventHubConsumerGroup' deletes the specifed Consumer Group /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubConsumerGroup", DefaultParameterSetName = ConsumergroupPropertiesParameterSet, SupportsShouldProcess = true), OutputType(typeof(void))] public class RemoveAzureRmEventHubConsumerGroupp : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/SetAzureEventHubConsumerGroups.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/SetAzureEventHubConsumerGroups.cs index 59b9227e0399..e45be2d8dc8a 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/SetAzureEventHubConsumerGroups.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/ConsumerGroup/SetAzureEventHubConsumerGroups.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.ConsumerGroup { /// - /// 'Set-AzureRmEventHubConsumerGroup' Cmdlet updates the specified of Consumer Group + /// 'Set-AzEventHubConsumerGroup' Cmdlet updates the specified of Consumer Group /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubConsumerGroup", SupportsShouldProcess = true), OutputType(typeof(PSConsumerGroupAttributes))] public class SetAzureEventHubConsumerGroup : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/GetAzureEventHubGeoDRConfiguration.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/GetAzureEventHubGeoDRConfiguration.cs index 52d457ae4670..ddd9b3485c03 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/GetAzureEventHubGeoDRConfiguration.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/GetAzureEventHubGeoDRConfiguration.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.GeoDR { /// - /// 'Get-AzureEventHubDRConfiguration' CmdletRetrieves Alias(Disaster Recovery configuration) for primary or secondary namespace + /// 'Get-AzEventHubDRConfiguration' CmdletRetrieves Alias(Disaster Recovery configuration) for primary or secondary namespace /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubGeoDRConfiguration", DefaultParameterSetName = GeoDRParameterSet), OutputType(typeof(PSEventHubDRConfigurationAttributes))] public class GetEventHubGeoDRConfiguration : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/NewAzureEventHubGeoDRConfiguration.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/NewAzureEventHubGeoDRConfiguration.cs index cf27964255c2..987ac454d66a 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/NewAzureEventHubGeoDRConfiguration.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/NewAzureEventHubGeoDRConfiguration.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.GeoDR { /// - /// 'New-AzureRmEventHubDRConfiguration' Cmdlet Creates an new Alias(Disaster Recovery configuration) + /// 'New-AzEventHubDRConfiguration' Cmdlet Creates an new Alias(Disaster Recovery configuration) /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubGeoDRConfiguration", DefaultParameterSetName = GeoDRParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSEventHubDRConfigurationAttributes))] public class NewAzureRmEventHubGeoDRConfiguration : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/RemoveAzureEventHubGeoDRConfiguration.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/RemoveAzureEventHubGeoDRConfiguration.cs index eea3064c8911..bffdbfe669ef 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/RemoveAzureEventHubGeoDRConfiguration.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/RemoveAzureEventHubGeoDRConfiguration.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.GeoDR { /// - /// 'Remove-AzureRmEventHubDRConfiguration' Cmdlet Deletes an Alias(Disaster Recovery configuration) + /// 'Remove-AzEventHubDRConfiguration' Cmdlet Deletes an Alias(Disaster Recovery configuration) /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubGeoDRConfiguration", DefaultParameterSetName = GeoDRParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveEventHubGeoDRConfiguration : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/SetAzureEventHubGeoDRConfigurationBreakPair.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/SetAzureEventHubGeoDRConfigurationBreakPair.cs index 97839f21cb33..39d5a8c4d8c8 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/SetAzureEventHubGeoDRConfigurationBreakPair.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/SetAzureEventHubGeoDRConfigurationBreakPair.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.GeoDR { /// - /// 'Set-AzureRmEventHubDRConfigurationBreakPair' Cmdlet disables the Disaster Recovery and stops replicating changes from primary to secondary namespaces + /// 'Set-AzEventHubDRConfigurationBreakPair' Cmdlet disables the Disaster Recovery and stops replicating changes from primary to secondary namespaces /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubGeoDRConfigurationBreakPair", DefaultParameterSetName = GeoDRParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class SetAzureEventHubGeoDRConfigurationBreakPair : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/SetAzureEventHubGeoDRConfigurationFailOver.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/SetAzureEventHubGeoDRConfigurationFailOver.cs index 39079a6aa38a..09aeaa03e57c 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/SetAzureEventHubGeoDRConfigurationFailOver.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/DRConfig/SetAzureEventHubGeoDRConfigurationFailOver.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.GeoDR { /// - /// 'Set-AzureRmEventHubDRConfigurationFailOver' Cmdlet envokes Geo DR failover and reconfigure the alias to point to the secondary namespace + /// 'Set-AzEventHubDRConfigurationFailOver' Cmdlet envokes Geo DR failover and reconfigure the alias to point to the secondary namespace /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubGeoDRConfigurationFailOver", DefaultParameterSetName = GeoDRParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class SetAzureEventHubGeoDRConfigurationFailOver : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/GetAzureEventHubs.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/GetAzureEventHubs.cs index f0182e1c9fa6..cf1f9e3b34b9 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/GetAzureEventHubs.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/GetAzureEventHubs.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.EventHub { /// - /// 'Get-AzureRmEventHub' Cmdlet gives the details of a / List of EventHub(s) + /// 'Get-AzEventHub' Cmdlet gives the details of a / List of EventHub(s) /// If EventHub name provided, a single EventHub detials will be returned /// If EventHub name not provided, list of EventHub will be returned /// diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/NewAzureEventHub.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/NewAzureEventHub.cs index 22e60acb8bf1..53620d1356f0 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/NewAzureEventHub.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/NewAzureEventHub.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.EventHub { /// - /// 'New-AzureRmEventHub' Cmdlet creates a new EventHub + /// 'New-AzEventHub' Cmdlet creates a new EventHub /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHub", DefaultParameterSetName = EventhubPropertiesParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSEventHubAttributes))] public class NewAzureRmEventHub : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/RemoveAzureEventHub.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/RemoveAzureEventHub.cs index 76f2a03e7ea4..d8ec84fa6dd2 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/RemoveAzureEventHub.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/RemoveAzureEventHub.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.EventHub { /// - /// 'Remove-AzureRmEventHub' Cmdlet removes the specified EventHub + /// 'Remove-AzEventHub' Cmdlet removes the specified EventHub /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHub", DefaultParameterSetName = EventhubDefaultParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveAzureEventHub : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/SetAzureEventHub.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/SetAzureEventHub.cs index 7e4b0e1fcd30..ab167b6bb36c 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/SetAzureEventHub.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/EventHub/SetAzureEventHub.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.EventHub { /// - /// 'Set-AzureRmEventHub' Cmdlet updates the specified EventHub + /// 'Set-AzEventHub' Cmdlet updates the specified EventHub /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHub", SupportsShouldProcess = true), OutputType(typeof(PSEventHubAttributes))] public class SetAzureEventHub : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/Namespace/GetAzureEventHubNamespace.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/Namespace/GetAzureEventHubNamespace.cs index 15131ea68deb..3f3d94b48c45 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/Namespace/GetAzureEventHubNamespace.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/Namespace/GetAzureEventHubNamespace.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.Namespace { /// - /// 'Get-AzureRmEventHubNamespace' Cmdlet gives the details of a / List of Eventhub Namespace(s) + /// 'Get-AzEventHubNamespace' Cmdlet gives the details of a / List of Eventhub Namespace(s) /// If Namespace name provided, a single Namespace detials will be returned /// If Namespace name not provided, list of Namespace will be returned /// diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/Namespace/RemoveAzureEventHubNamespace.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/Namespace/RemoveAzureEventHubNamespace.cs index 59dc34bc5691..c464214bc649 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/Namespace/RemoveAzureEventHubNamespace.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/Namespace/RemoveAzureEventHubNamespace.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.Namespace { /// - /// 'Remove-AzureRmEventHubNamespace' Cmdlet deletes the specified Eventhub Namespace + /// 'Remove-AzEventHubNamespace' Cmdlet deletes the specified Eventhub Namespace /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubNamespace", DefaultParameterSetName = NamespaceParameterSet, SupportsShouldProcess = true), OutputType(typeof(void))] public class RemoveAzureRmEventHubNamespace : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/Namespace/SetAzureEventHubNamespace.cs b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/Namespace/SetAzureEventHubNamespace.cs index 458f2f48bd2e..232cd93ecf74 100644 --- a/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/Namespace/SetAzureEventHubNamespace.cs +++ b/src/ResourceManager/EventHub/Commands.EventHub/Cmdlets/Namespace/SetAzureEventHubNamespace.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.EventHub.Commands.Namespace { /// - /// 'Set-AzureRmEventHubNamespace' Cmdlet updates the specified Eventhub Namespace + /// 'Set-AzEventHubNamespace' Cmdlet updates the specified Eventhub Namespace /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "EventHubNamespace", SupportsShouldProcess = true, DefaultParameterSetName = NamespaceParameterSet), OutputType(typeof(PSNamespaceAttributes))] public class SetAzureEventHubNamespace : AzureEventHubsCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/GetAzureRmFrontDoor.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/GetAzureRmFrontDoor.cs index f70d05dee2a3..0a397d955911 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/GetAzureRmFrontDoor.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/GetAzureRmFrontDoor.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the Get-AzureRmFrontDoor cmdlet. + /// Defines the Get-AzFrontDoor cmdlet. /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoor"), OutputType(typeof(PSFrontDoor))] public class GetAzureRmFrontDoor : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/GetAzureRmFrontDoorFireWallPolicy.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/GetAzureRmFrontDoorFireWallPolicy.cs index 9c4b642ad985..95052d2f4d0d 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/GetAzureRmFrontDoorFireWallPolicy.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/GetAzureRmFrontDoorFireWallPolicy.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the Get-AzureRmFrontDoorFireWallPolicy cmdlet. + /// Defines the Get-AzFrontDoorFireWallPolicy cmdlet. /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorFireWallPolicy"), OutputType(typeof(PSPolicy))] public class GetAzureRmFrontDoorFireWallPolicy : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoor.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoor.cs index a1fe4118df8e..a3a14098cb6d 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoor.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoor.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the New-AzureRmFrontDoor cmdlet. + /// Defines the New-AzFrontDoor cmdlet. /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoor", SupportsShouldProcess = true), OutputType(typeof(PSFrontDoor))] public class NewAzureRmFrontDoor : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorBackendObject.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorBackendObject.cs index 58af3531254a..75d9ae459490 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorBackendObject.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorBackendObject.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the New-AzureRmFrontDoorRoutingRuleObject cmdlet. + /// Defines the New-AzFrontDoorRoutingRuleObject cmdlet. /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorBackendObject"), OutputType(typeof(PSBackend))] public class NewAzureRmFrontDoorBackendObject : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorBackendPoolObject.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorBackendPoolObject.cs index 85116e9ddf39..30696bb2b00d 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorBackendPoolObject.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorBackendPoolObject.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the New-AzureRmFrontDoorBackendPoolObject cmdlet. + /// Defines the New-AzFrontDoorBackendPoolObject cmdlet. /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorBackendPoolObject"), OutputType(typeof(PSBackendPool))] public class NewAzureRmFrontDoorBackendPoolObject : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorCustomRuleObject.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorCustomRuleObject.cs index 543e700cccf5..f691cef7a869 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorCustomRuleObject.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorCustomRuleObject.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the New-AzureRmFrontDoorCustomRuleObject cmdlet. + /// Defines the New-AzFrontDoorCustomRuleObject cmdlet. /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorCustomRuleObject"), OutputType(typeof(PSCustomRule))] public class NewAzureRmFrontDoorCustomRuleObject : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorFireWallPolicy.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorFireWallPolicy.cs index 2ab8f2a90725..edbb64d464a8 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorFireWallPolicy.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorFireWallPolicy.cs @@ -28,7 +28,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the New-AzureRmFrontDoorFireWallPolicy cmdlet. + /// Defines the New-AzFrontDoorFireWallPolicy cmdlet. /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorFireWallPolicy", SupportsShouldProcess = true), OutputType(typeof(PSPolicy))] public class NewAzureRmFrontDoorFireWallPolicy : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorFrontendEndpointObject.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorFrontendEndpointObject.cs index be42e44cb446..bca4ec93d299 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorFrontendEndpointObject.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorFrontendEndpointObject.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the New-AzureRmFrontDoorFrontendEndpointObject cmdlet. + /// Defines the New-AzFrontDoorFrontendEndpointObject cmdlet. /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorFrontendEndpointObject"), OutputType(typeof(PSFrontendEndpoint))] public class NewAzureRmFrontDoorFrontendEndpointObject : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorHealthProbeSettingObject.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorHealthProbeSettingObject.cs index 3ef4e31d1b32..87a204417d87 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorHealthProbeSettingObject.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorHealthProbeSettingObject.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the New-AzureRmFrontDoorHealthProbeSettingObject cmdlet. + /// Defines the New-AzFrontDoorHealthProbeSettingObject cmdlet. /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorHealthProbeSettingObject"), OutputType(typeof(PSHealthProbeSetting))] public class NewAzureRmFrontDoorHealthProbeSettingObject : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorLoadBalancingSettingObject.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorLoadBalancingSettingObject.cs index 80aa6b8f9374..220a30bda09b 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorLoadBalancingSettingObject.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorLoadBalancingSettingObject.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the New-AzureRmFrontDoorLoadBalancingSettingObject cmdlet. + /// Defines the New-AzFrontDoorLoadBalancingSettingObject cmdlet. /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorLoadBalancingSettingObject"), OutputType(typeof(PSLoadBalancingSetting))] public class NewAzureRmFrontDoorLoadBalancingSettingObject : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorManagedRuleObject.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorManagedRuleObject.cs index 2e59b8ed328c..42159ffea3c9 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorManagedRuleObject.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorManagedRuleObject.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the New-AzureRmFrontDoorManagedRuleObject cmdlet. + /// Defines the New-AzFrontDoorManagedRuleObject cmdlet. /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorManagedRuleObject"), OutputType(typeof(PSAzureManagedRule))] public class NewAzureRmFrontDoorManagedRuleObject : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorMatchConditionObject.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorMatchConditionObject.cs index 3f6321b565b7..d757e980a875 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorMatchConditionObject.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorMatchConditionObject.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the New-AzureRmFrontDoorMatchConditionObject cmdlet. + /// Defines the New-AzFrontDoorMatchConditionObject cmdlet. /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorMatchConditionObject"), OutputType(typeof(PSMatchCondition))] public class NewAzureRmFrontDoorMatchConditionObject : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorRoutingRuleObject.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorRoutingRuleObject.cs index 807d99763cd5..6c77cdb4b604 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorRoutingRuleObject.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorRoutingRuleObject.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the New-AzureRmFrontDoorRoutingRuleObject cmdlet. + /// Defines the New-AzFrontDoorRoutingRuleObject cmdlet. /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorRoutingRuleObject"), OutputType(typeof(PSRoutingRule))] public class NewAzureRmFrontDoorRoutingRuleObject : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorRuleGroupOverrideObject.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorRuleGroupOverrideObject.cs index 0cc18ce63bec..c25be1e94038 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorRuleGroupOverrideObject.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/NewAzureRmFrontDoorRuleGroupOverrideObject.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the New-AzureRmFrontDoorRuleGroupOverrideObject cmdlet. + /// Defines the New-AzFrontDoorRuleGroupOverrideObject cmdlet. /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorRuleGroupOverrideObject"), OutputType(typeof(PSAzureRuleGroupOverride))] public class NewAzureRmFrontDoorRuleGroupOverrideObject : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/RemoveAzureRmFrontDoor.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/RemoveAzureRmFrontDoor.cs index 10e60f8fe16e..5c304703c7c1 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/RemoveAzureRmFrontDoor.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/RemoveAzureRmFrontDoor.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the Remove-AzureRmFrontDoor cmdlet. + /// Defines the Remove-AzFrontDoor cmdlet. /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoor", SupportsShouldProcess = true, DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(bool))] public class RemoveAzureRmFrontDoor : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/RemoveAzureRmFrontDoorContent.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/RemoveAzureRmFrontDoorContent.cs index 0b277103a975..d3de01e8d4b8 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/RemoveAzureRmFrontDoorContent.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/RemoveAzureRmFrontDoorContent.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the New-AzureRmFrontDoor cmdlet. + /// Defines the New-AzFrontDoor cmdlet. /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorContent", SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveAzureRmFrontDoorContent : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/RemoveAzureRmFrontDoorFireWallPolicy.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/RemoveAzureRmFrontDoorFireWallPolicy.cs index 23e301864981..fe06a3c9b94e 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/RemoveAzureRmFrontDoorFireWallPolicy.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/RemoveAzureRmFrontDoorFireWallPolicy.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the Remove-AzureRmFrontDoorFireWallPolicy cmdlet. + /// Defines the Remove-AzFrontDoorFireWallPolicy cmdlet. /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorFireWallPolicy", SupportsShouldProcess = true, DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(bool))] public class RemoveAzureRmFrontDoorFireWallPolicy : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/SetAzureRmFrontDoor.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/SetAzureRmFrontDoor.cs index 48bfee3db4fb..988668624c24 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/SetAzureRmFrontDoor.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/SetAzureRmFrontDoor.cs @@ -31,7 +31,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the Set-AzureRmFrontDoor cmdlet. + /// Defines the Set-AzFrontDoor cmdlet. /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoor", SupportsShouldProcess = true, DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSFrontDoor))] public class SetAzureRmFrontDoor : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/SetAzureRmFrontDoorFIreWallPolicy.cs b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/SetAzureRmFrontDoorFIreWallPolicy.cs index a7774b63354e..f89ee144f10b 100644 --- a/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/SetAzureRmFrontDoorFIreWallPolicy.cs +++ b/src/ResourceManager/FrontDoor/Commands.FrontDoor/Cmdlets/SetAzureRmFrontDoorFIreWallPolicy.cs @@ -30,7 +30,7 @@ namespace Microsoft.Azure.Commands.FrontDoor.Cmdlets { /// - /// Defines the Set-AzureRmFrontDoorFireWallPolicy cmdlet. + /// Defines the Set-AzFrontDoorFireWallPolicy cmdlet. /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "FrontDoorFireWallPolicy", SupportsShouldProcess = true, DefaultParameterSetName = FieldsParameterSet), OutputType(typeof(PSPolicy))] public class SetAzureRmFrontDoorFireWallPolicy : AzureFrontDoorCmdletBase diff --git a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs index 304326bdbc08..35ae4ac34742 100644 --- a/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs +++ b/src/ResourceManager/HDInsight/Commands.HDInsight/JobCommands/InvokeHiveCommand.cs @@ -119,7 +119,7 @@ public override void ExecuteCmdlet() { throw new NullReferenceException( string.Format( - "The cluster or resource group specified is null. Please use the Use-AzureRmHDInsightCluster command to connect to a cluster.")); + "The cluster or resource group specified is null. Please use the Use-AzHDInsightCluster command to connect to a cluster.")); } //get hive job diff --git a/src/ResourceManager/Insights/Commands.Insights/Alerts/GetAzureRmAlertRuleCommand.cs b/src/ResourceManager/Insights/Commands.Insights/Alerts/GetAzureRmAlertRuleCommand.cs index c8220a688262..87c1fa1689ce 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Alerts/GetAzureRmAlertRuleCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Alerts/GetAzureRmAlertRuleCommand.cs @@ -110,7 +110,7 @@ private static string ExtractTargetResourceId(AlertRuleResource alertRuleResourc protected override void ProcessRecordInternal() { this.WriteIdentifiedWarning( - cmdletName: "Get-AzureRmAlertRule", + cmdletName: "Get-AzAlertRule", topic: "Parameter deprecation", message: "The DetailedOutput parameter will be deprecated in a future breaking change release."); if (string.IsNullOrWhiteSpace(this.Name)) diff --git a/src/ResourceManager/Insights/Commands.Insights/Autoscale/GetAzureRmAutoscaleSettingCommand.cs b/src/ResourceManager/Insights/Commands.Insights/Autoscale/GetAzureRmAutoscaleSettingCommand.cs index 8889c2b85f20..8c5081e021c5 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Autoscale/GetAzureRmAutoscaleSettingCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Autoscale/GetAzureRmAutoscaleSettingCommand.cs @@ -63,7 +63,7 @@ public class GetAzureRmAutoscaleSettingCommand : ManagementCmdletBase protected override void ProcessRecordInternal() { this.WriteIdentifiedWarning( - cmdletName: "Get-AzureRmAutoscaleSetting", + cmdletName: "Get-AzAutoscaleSetting", topic: "Parameter deprecation", message: "The DetailedOutput parameter will be deprecated in a future breaking change release."); if (string.IsNullOrWhiteSpace(this.Name)) diff --git a/src/ResourceManager/Insights/Commands.Insights/ManagementCmdletBase.cs b/src/ResourceManager/Insights/Commands.Insights/ManagementCmdletBase.cs index 7c5a2da20068..f1160a35cb50 100644 --- a/src/ResourceManager/Insights/Commands.Insights/ManagementCmdletBase.cs +++ b/src/ResourceManager/Insights/Commands.Insights/ManagementCmdletBase.cs @@ -32,7 +32,7 @@ public abstract class ManagementCmdletBase : MonitorCmdletBase /// public IMonitorManagementClient MonitorManagementClient { - // The premise is that a command to establish a context (like Connect-AzureRmAccount) has + // The premise is that a command to establish a context (like Connect-AzAccount) has // been called before this command in order to have a correct CurrentContext get { diff --git a/src/ResourceManager/Insights/Commands.Insights/Metrics/GetAzureRmMetricCommand.cs b/src/ResourceManager/Insights/Commands.Insights/Metrics/GetAzureRmMetricCommand.cs index bcc772781918..33de41e96306 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Metrics/GetAzureRmMetricCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Metrics/GetAzureRmMetricCommand.cs @@ -128,7 +128,7 @@ public class GetAzureRmMetricCommand : ManagementCmdletBase protected override void ProcessRecordInternal() { this.WriteIdentifiedWarning( - cmdletName: "Get-AzureRmMetric", + cmdletName: "Get-AzMetric", topic: "Parameter deprecation", message: "The DetailedOutput parameter will be deprecated in a future breaking change release."); bool fullDetails = this.DetailedOutput.IsPresent; diff --git a/src/ResourceManager/Insights/Commands.Insights/Metrics/GetAzureRmMetricDefinitionCommand.cs b/src/ResourceManager/Insights/Commands.Insights/Metrics/GetAzureRmMetricDefinitionCommand.cs index b87eb9a9fdb0..d304455f359c 100644 --- a/src/ResourceManager/Insights/Commands.Insights/Metrics/GetAzureRmMetricDefinitionCommand.cs +++ b/src/ResourceManager/Insights/Commands.Insights/Metrics/GetAzureRmMetricDefinitionCommand.cs @@ -56,7 +56,7 @@ public class GetAzureRmMetricDefinitionCommand : ManagementCmdletBase /// protected override void ProcessRecordInternal() { - string cmdletName = "Get-AzureRmMetricDefinition"; + string cmdletName = "Get-AzMetricDefinition"; this.WriteIdentifiedWarning( cmdletName: cmdletName, topic: "Parameter deprecation", diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificate.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificate.cs index 16ca21e70abd..56b8655c3107 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificate.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificate.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.KeyVault { /// - /// The Get-AzureKeyVaultCertificate cmdlet gets the certificates in an Azure Key Vault or the current version of the certificate. + /// The Get-AzKeyVaultCertificate cmdlet gets the certificates in an Azure Key Vault or the current version of the certificate. /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultCertificate", DefaultParameterSetName = ByVaultNameParameterSet)] [OutputType(typeof(PSKeyVaultCertificateIdentityItem), typeof(PSKeyVaultCertificate), typeof(PSDeletedKeyVaultCertificate), typeof(PSDeletedKeyVaultCertificateIdentityItem))] diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificateContact.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificateContact.cs index 4e697c56ccc2..da75293d6468 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificateContact.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificateContact.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.KeyVault { /// - /// Get-AzureKeyVaultCertificateContact gets the list of contacts for certificate objects in key vault. + /// Get-AzKeyVaultCertificateContact gets the list of contacts for certificate objects in key vault. /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultCertificateContact", DefaultParameterSetName = ByVaultNameParameterSet)] [OutputType(typeof(PSKeyVaultCertificateContact))] diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificateIssuer.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificateIssuer.cs index 6f7bac303deb..667bdf69e25a 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificateIssuer.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificateIssuer.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.KeyVault { /// - /// The Get-AzureKeyVaultCertificate cmdlet gets the certificates in an Azure Key Vault or the current version of the certificate. + /// The Get-AzKeyVaultCertificate cmdlet gets the certificates in an Azure Key Vault or the current version of the certificate. /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultCertificateIssuer", DefaultParameterSetName = ByNameParameterSet)] [OutputType(typeof(PSKeyVaultCertificateIssuerIdentityItem), typeof(PSKeyVaultCertificateIssuer))] diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificatePolicy.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificatePolicy.cs index e55b9a951000..121bf010c139 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificatePolicy.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/GetAzureKeyVaultCertificatePolicy.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.KeyVault.Commands { /// - /// Get-AzureKeyVaultCertificatePolicy gets the policy for a certificate object in key vault. + /// Get-AzKeyVaultCertificatePolicy gets the policy for a certificate object in key vault. /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultCertificatePolicy", DefaultParameterSetName = ByVaultAndCertNameParameterSet)] [OutputType(typeof(PSKeyVaultCertificatePolicy))] diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/ImportAzureKeyVaultCertificate.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/ImportAzureKeyVaultCertificate.cs index dfc786535ec5..c4b90c5485ca 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/ImportAzureKeyVaultCertificate.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/ImportAzureKeyVaultCertificate.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.KeyVault /// /// Imports a certificate to the key vault. The certificate can be created by /// adding the certificate after getting the CSR from - /// Add-AzureKeyVaultCertificate issued by a Certificate Authority or by + /// Add-AzKeyVaultCertificate issued by a Certificate Authority or by /// importing an existing certificate package file that contains both the /// certificate and private key (example: PFX or P12 files). /// diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVault.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVault.cs index 0e8a2dad9dec..64bf99842ea4 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVault.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVault.cs @@ -61,7 +61,7 @@ public class NewAzureKeyVault : KeyVaultManagementCmdletBase [Parameter(Mandatory = true, Position = 2, ValueFromPipelineByPropertyName = true, - HelpMessage = "Specifies the Azure region in which to create the key vault. Use the command Get-AzureRmResourceProvider with the ProviderNamespace parameter to see your choices.")] + HelpMessage = "Specifies the Azure region in which to create the key vault. Use the command Get-AzResourceProvider with the ProviderNamespace parameter to see your choices.")] [LocationCompleter("Microsoft.KeyVault/vaults")] [ValidateNotNullOrEmpty()] public string Location { get; set; } diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVaultCertificateAdministratorDetails.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVaultCertificateAdministratorDetails.cs index 11c67c244c83..332248b70169 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVaultCertificateAdministratorDetails.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVaultCertificateAdministratorDetails.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.KeyVault.Commands { /// - /// New-AzureKeyVaultCertificateAdministratorDetails creates an in-memory administrator details object + /// New-AzKeyVaultCertificateAdministratorDetails creates an in-memory administrator details object /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultCertificateAdministratorDetails",SupportsShouldProcess = true)] [OutputType(typeof(PSKeyVaultCertificateAdministratorDetails))] diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVaultCertificateOrganizationDetails.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVaultCertificateOrganizationDetails.cs index 416bc12b9b6d..8a932cfa2f4a 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVaultCertificateOrganizationDetails.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVaultCertificateOrganizationDetails.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.KeyVault.Commands { /// - /// New-AzureKeyVaultOrganizationDetails creates an in-memory organization details object + /// New-AzKeyVaultOrganizationDetails creates an in-memory organization details object /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultCertificateOrganizationDetails",SupportsShouldProcess = true)] [OutputType(typeof(PSKeyVaultCertificateOrganizationDetails))] diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVaultCertificatePolicy.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVaultCertificatePolicy.cs index afa0211f0b6b..c635a19a2630 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVaultCertificatePolicy.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/NewAzureKeyVaultCertificatePolicy.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.KeyVault { /// - /// New-AzureKeyVaultCertificatePolicy creates an in-memory Certificate Policy object + /// New-AzKeyVaultCertificatePolicy creates an in-memory Certificate Policy object /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultCertificatePolicy",SupportsShouldProcess = true,DefaultParameterSetName = SubjectNameParameterSet)] [OutputType(typeof(PSKeyVaultCertificatePolicy))] diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultCertificate.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultCertificate.cs index 75e6c0da4241..df9719d3e3e2 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultCertificate.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/RemoveAzureKeyVaultCertificate.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.KeyVault { /// - /// The Remove-AzureKeyVaultCertificate cmdlet deletes a certificate in an Azure Key Vault. + /// The Remove-AzKeyVaultCertificate cmdlet deletes a certificate in an Azure Key Vault. /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultCertificate",SupportsShouldProcess = true,DefaultParameterSetName = ByVaultNameAndNameParameterSet)] [OutputType(typeof(PSDeletedKeyVaultCertificate))] diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultCertificateIssuer.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultCertificateIssuer.cs index 8fc315f054e6..9c106342e415 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultCertificateIssuer.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultCertificateIssuer.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.KeyVault { /// - /// Set-AzureKeyVaultCertificateIssuer sets the provided parameters on the + /// Set-AzKeyVaultCertificateIssuer sets the provided parameters on the /// issuer object /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultCertificateIssuer",SupportsShouldProcess = true,DefaultParameterSetName = ExpandedParameterSet)] diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultCertificatePolicy.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultCertificatePolicy.cs index 453af668d597..75b73a2bd828 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultCertificatePolicy.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Commands/SetAzureKeyVaultCertificatePolicy.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.KeyVault { /// - /// Set-AzureKeyVaultCertificatePolicy sets the provided parameters on the + /// Set-AzKeyVaultCertificatePolicy sets the provided parameters on the /// policy for the Certificate object /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzurePrefix + "KeyVaultCertificatePolicy",SupportsShouldProcess = true,DefaultParameterSetName = ExpandedRenewPercentageParameterSet)] diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.Designer.cs b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.Designer.cs index 0d04df411f52..f73e47bde95c 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.Designer.cs +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.Designer.cs @@ -106,7 +106,7 @@ internal static string AddNetworkRule { } /// - /// Looks up a localized string similar to The Email argument specified, '{1}', matches multiple objects in the Azure Active Directory tenant '{2}'. Please use -UserPrincipalName to narrow down the filter to a single object. The TenantID displayed by the cmdlet 'Get-AzureRmContext' is the current subscription's Azure Active Directory.. + /// Looks up a localized string similar to The Email argument specified, '{1}', matches multiple objects in the Azure Active Directory tenant '{2}'. Please use -UserPrincipalName to narrow down the filter to a single object. The TenantID displayed by the cmdlet 'Get-AzContext' is the current subscription's Azure Active Directory.. /// internal static string ADObjectAmbiguous { get { @@ -127,7 +127,7 @@ internal static string ADObjectIDRetrievalFailed { } /// - /// Looks up a localized string similar to Cannot find the Active Directory object '{0}' in tenant '{1}'. Please make sure that the user or application service principal you are authorizing is registered in the current subscription's Azure Active directory. The TenantID displayed by the cmdlet 'Get-AzureRmContext' is the current subscription's Azure Active directory.. + /// Looks up a localized string similar to Cannot find the Active Directory object '{0}' in tenant '{1}'. Please make sure that the user or application service principal you are authorizing is registered in the current subscription's Azure Active directory. The TenantID displayed by the cmdlet 'Get-AzContext' is the current subscription's Azure Active directory.. /// internal static string ADObjectNotFound { get { @@ -145,7 +145,7 @@ internal static string AllPermissionExpansionWarning { } /// - /// Looks up a localized string similar to No account found in the context. Please login using Connect-AzureRMAccount.. + /// Looks up a localized string similar to No account found in the context. Please login using Connect-AzAccount.. /// internal static string ArmAccountNotFound { get { @@ -361,7 +361,7 @@ internal static string InvalidAzureEnvironment { } /// - /// Looks up a localized string similar to No current subscription has been designated. Use Set-AzureRmContext -SubscriptionName <subscriptionName> to set the current subscription.. + /// Looks up a localized string similar to No current subscription has been designated. Use Set-AzContext -SubscriptionName <subscriptionName> to set the current subscription.. /// internal static string InvalidCurrentSubscription { get { @@ -532,7 +532,7 @@ internal static string InvalidSecretUri { } /// - /// Looks up a localized string similar to No subscription is currently selected. Use Set-AzureRmContext to activate a subscription.. + /// Looks up a localized string similar to No subscription is currently selected. Use Set-AzContext to activate a subscription.. /// internal static string InvalidSelectedSubscription { get { @@ -550,7 +550,7 @@ internal static string InvalidStorageSasDefinitionIdentifier { } /// - /// Looks up a localized string similar to Your Azure credentials have not been set up or have expired, please run Connect-AzureRmAccount to set up your Azure credentials.. + /// Looks up a localized string similar to Your Azure credentials have not been set up or have expired, please run Connect-AzAccount to set up your Azure credentials.. /// internal static string InvalidSubscriptionState { get { @@ -604,7 +604,7 @@ internal static string NoDefaultUserAccount { } /// - /// Looks up a localized string similar to No tenant found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzureRMAccount to login.. + /// Looks up a localized string similar to No tenant found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzAccount to login.. /// internal static string NoTenantInContext { get { @@ -1126,7 +1126,7 @@ internal static string VaultDoesNotExist { } /// - /// Looks up a localized string similar to Access policy is not set. No user or application have access permission to use this vault. This can happen if the vault was created by a service principal. Please use Set-AzureRmKeyVaultAccessPolicy to set access policies.. + /// Looks up a localized string similar to Access policy is not set. No user or application have access permission to use this vault. This can happen if the vault was created by a service principal. Please use Set-AzKeyVaultAccessPolicy to set access policies.. /// internal static string VaultNoAccessPolicyWarning { get { diff --git a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.resx b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.resx index a38942a55a64..3c5fcad4ea93 100644 --- a/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.resx +++ b/src/ResourceManager/KeyVault/Commands.KeyVault/Properties/Resources.resx @@ -124,10 +124,10 @@ Please provide object ID for the user or service principle to set a vault access You can find the object ID using Azure Active Directory Module for Windows PowerShell. - Cannot find the Active Directory object '{0}' in tenant '{1}'. Please make sure that the user or application service principal you are authorizing is registered in the current subscription's Azure Active directory. The TenantID displayed by the cmdlet 'Get-AzureRmContext' is the current subscription's Azure Active directory. + Cannot find the Active Directory object '{0}' in tenant '{1}'. Please make sure that the user or application service principal you are authorizing is registered in the current subscription's Azure Active directory. The TenantID displayed by the cmdlet 'Get-AzContext' is the current subscription's Azure Active directory. - No account found in the context. Please login using Connect-AzureRMAccount. + No account found in the context. Please login using Connect-AzAccount. The backup key file '{0}' already exists. @@ -160,7 +160,7 @@ You can find the object ID using Azure Active Directory Module for Windows Power Invalid AzureEnvironment. - No current subscription has been designated. Use Set-AzureRmContext -SubscriptionName <subscriptionName> to set the current subscription. + No current subscription has been designated. Use Set-AzContext -SubscriptionName <subscriptionName> to set the current subscription. Invalid key attributes @@ -199,10 +199,10 @@ You can find the object ID using Azure Active Directory Module for Windows Power Invalid secret uri '{0}'. - No subscription is currently selected. Use Set-AzureRmContext to activate a subscription. + No subscription is currently selected. Use Set-AzContext to activate a subscription. - Your Azure credentials have not been set up or have expired, please run Connect-AzureRmAccount to set up your Azure credentials. + Your Azure credentials have not been set up or have expired, please run Connect-AzAccount to set up your Azure credentials. Invalid tag format. Expect @{Name = "tagName"} or @{Name = "tagName"; Value = "tagValue"} @@ -223,7 +223,7 @@ You can find the object ID using Azure Active Directory Module for Windows Power There is no default user account associated with this subscription. Certificate accounts are not supported with Azure Key Vault. - No tenant found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzureRMAccount to login. + No tenant found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzAccount to login. Invalid permissions to {0}. The list contains "all" along with other permissions. Please remove "all" from the list or include only "all" in the list. @@ -283,7 +283,7 @@ You can find the object ID using Azure Active Directory Module for Windows Power The specified vault already exists. - Access policy is not set. No user or application have access permission to use this vault. This can happen if the vault was created by a service principal. Please use Set-AzureRmKeyVaultAccessPolicy to set access policies. + Access policy is not set. No user or application have access permission to use this vault. This can happen if the vault was created by a service principal. Please use Set-AzKeyVaultAccessPolicy to set access policies. Cannot find vault '{0}' in resource group '{1}'. @@ -415,7 +415,7 @@ You can find the object ID using Azure Active Directory Module for Windows Power Invalid Sas permission '{0}'. - The Email argument specified, '{1}', matches multiple objects in the Azure Active Directory tenant '{2}'. Please use -UserPrincipalName to narrow down the filter to a single object. The TenantID displayed by the cmdlet 'Get-AzureRmContext' is the current subscription's Azure Active Directory. + The Email argument specified, '{1}', matches multiple objects in the Azure Active Directory tenant '{2}'. Please use -UserPrincipalName to narrow down the filter to a single object. The TenantID displayed by the cmdlet 'Get-AzContext' is the current subscription's Azure Active Directory. Recover certificate diff --git a/src/ResourceManager/Maps/Commands.Maps/MapsAccount/GetAzureMapsAccountKey.cs b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/GetAzureMapsAccountKey.cs index 2022d558570f..25b7a904ab70 100644 --- a/src/ResourceManager/Maps/Commands.Maps/MapsAccount/GetAzureMapsAccountKey.cs +++ b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/GetAzureMapsAccountKey.cs @@ -49,7 +49,7 @@ public class GetAzureMapsAccountKey : MapsAccountBaseCmdlet [Parameter( ParameterSetName = InputObjectParameterSet, - HelpMessage = "Maps Account piped from Get-AzureRmMapsAccount.", + HelpMessage = "Maps Account piped from Get-AzMapsAccount.", ValueFromPipeline = true)] public PSMapsAccount InputObject { get; set; } diff --git a/src/ResourceManager/Maps/Commands.Maps/MapsAccount/NewAzureMapsAccountKey.cs b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/NewAzureMapsAccountKey.cs index 0cf920beab65..bac529381757 100644 --- a/src/ResourceManager/Maps/Commands.Maps/MapsAccount/NewAzureMapsAccountKey.cs +++ b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/NewAzureMapsAccountKey.cs @@ -60,7 +60,7 @@ public class NewAzureMapsAccountKey : MapsAccountBaseCmdlet [Parameter( ParameterSetName = InputObjectParameterSet, - HelpMessage = "Maps Account piped from Get-AzureRmMapsAccount.", + HelpMessage = "Maps Account piped from Get-AzMapsAccount.", ValueFromPipeline = true)] public PSMapsAccount InputObject { get; set; } diff --git a/src/ResourceManager/Maps/Commands.Maps/MapsAccount/RemoveAzureMapsAccount.cs b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/RemoveAzureMapsAccount.cs index be3a01ce6778..5e4708d587c6 100644 --- a/src/ResourceManager/Maps/Commands.Maps/MapsAccount/RemoveAzureMapsAccount.cs +++ b/src/ResourceManager/Maps/Commands.Maps/MapsAccount/RemoveAzureMapsAccount.cs @@ -51,7 +51,7 @@ public class RemoveAzureMapsAccount : MapsAccountBaseCmdlet [Parameter( ParameterSetName = InputObjectParameterSet, - HelpMessage = "Maps Account piped from Get-AzureRmMapsAccount.", + HelpMessage = "Maps Account piped from Get-AzMapsAccount.", ValueFromPipeline = true)] public PSMapsAccount InputObject { get; set; } diff --git a/src/ResourceManager/MarketplaceOrdering/Commands.MarketplaceOrdering/Cmdlets/Agreements/SetAzureRmMarketplaceTerms.cs b/src/ResourceManager/MarketplaceOrdering/Commands.MarketplaceOrdering/Cmdlets/Agreements/SetAzureRmMarketplaceTerms.cs index e8ee03c481fd..d74e0dbbdf93 100644 --- a/src/ResourceManager/MarketplaceOrdering/Commands.MarketplaceOrdering/Cmdlets/Agreements/SetAzureRmMarketplaceTerms.cs +++ b/src/ResourceManager/MarketplaceOrdering/Commands.MarketplaceOrdering/Cmdlets/Agreements/SetAzureRmMarketplaceTerms.cs @@ -47,13 +47,13 @@ public class SetAzureRmMarketplaceTerms : AzureMarketplaceOrderingCmdletBase [ValidateNotNullOrEmpty] public SwitchParameter Reject { get; set; } - [Parameter(Mandatory = false, HelpMessage = "Terms object returned in Get-AzureRmMarketplaceTerms cmdlet. This is a mandatory parameter if you accept the legal terms.", ParameterSetName = Constants.ParameterSetNames.AgreementAcceptParameterSet)] - [Parameter(Mandatory = false, HelpMessage = "Terms object returned in Get-AzureRmMarketplaceTerms cmdlet. This is a mandatory parameter if you accept the legal terms.", ParameterSetName = Constants.ParameterSetNames.AgreementRejectParameterSet)] + [Parameter(Mandatory = false, HelpMessage = "Terms object returned in Get-AzMarketplaceTerms cmdlet. This is a mandatory parameter if you accept the legal terms.", ParameterSetName = Constants.ParameterSetNames.AgreementAcceptParameterSet)] + [Parameter(Mandatory = false, HelpMessage = "Terms object returned in Get-AzMarketplaceTerms cmdlet. This is a mandatory parameter if you accept the legal terms.", ParameterSetName = Constants.ParameterSetNames.AgreementRejectParameterSet)] [ValidateNotNullOrEmpty] public PSAgreementTerms Terms { get; set; } - [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0, HelpMessage = "Terms object returned in Get-AzureRmMarketplaceTerms cmdlet. This is a mandatory parameter if Accept paramter is true.", ParameterSetName = Constants.ParameterSetNames.InputObjectAcceptParametrSet)] - [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0, HelpMessage = "Terms object returned in Get-AzureRmMarketplaceTerms cmdlet. This is a mandatory parameter if Accept paramter is true.", ParameterSetName = Constants.ParameterSetNames.InputObjectRejectParametrSet)] + [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0, HelpMessage = "Terms object returned in Get-AzMarketplaceTerms cmdlet. This is a mandatory parameter if Accept paramter is true.", ParameterSetName = Constants.ParameterSetNames.InputObjectAcceptParametrSet)] + [Parameter(Mandatory = true, ValueFromPipeline = true, Position = 0, HelpMessage = "Terms object returned in Get-AzMarketplaceTerms cmdlet. This is a mandatory parameter if Accept paramter is true.", ParameterSetName = Constants.ParameterSetNames.InputObjectRejectParametrSet)] [ValidateNotNullOrEmpty] public PSAgreementTerms InputObject { get; set; } diff --git a/src/ResourceManager/Media/Commands.Media/MediaService/NewAzureRmMediaService.cs b/src/ResourceManager/Media/Commands.Media/MediaService/NewAzureRmMediaService.cs index 469452fbfbfa..01320dbd5b12 100644 --- a/src/ResourceManager/Media/Commands.Media/MediaService/NewAzureRmMediaService.cs +++ b/src/ResourceManager/Media/Commands.Media/MediaService/NewAzureRmMediaService.cs @@ -108,7 +108,7 @@ public class NewAzureRmMediaService : AzureMediaServiceCmdletBase [Parameter( Mandatory = false, HelpMessage = "The tags associated with the media service account.")] - [Obsolete("New-AzureRmMediaService: -Tags will be removed in favor of -Tag in an upcoming breaking change release. Please start using the -Tag parameter to avoid breaking scripts.")] + [Obsolete("New-AzMediaService: -Tags will be removed in favor of -Tag in an upcoming breaking change release. Please start using the -Tag parameter to avoid breaking scripts.")] [Alias("Tags")] [ValidateNotNull] public Hashtable Tag { get; set; } diff --git a/src/ResourceManager/Network/Commands.Network/Common/NetworkClient.cs b/src/ResourceManager/Network/Commands.Network/Common/NetworkClient.cs index 8f04e6b70d13..0e7894b6b026 100644 --- a/src/ResourceManager/Network/Commands.Network/Common/NetworkClient.cs +++ b/src/ResourceManager/Network/Commands.Network/Common/NetworkClient.cs @@ -177,7 +177,7 @@ public async Task> GeneratevpnclientpackageWithHt if ((int)statusCode != 202) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - throw new Exception(string.Format("Get-AzureRmVpnClientPackage Operation returned an invalid status code '{0}' with Exception:{1}", + throw new Exception(string.Format("Get-AzVpnClientPackage Operation returned an invalid status code '{0}' with Exception:{1}", statusCode, string.IsNullOrEmpty(responseContent) ? "NotAvailable" : responseContent)); } @@ -194,12 +194,12 @@ public async Task> GeneratevpnclientpackageWithHt } else { - throw new Exception(string.Format("Get-AzureRmVpnClientPackage Operation Failed as no valid Location header received in response!")); + throw new Exception(string.Format("Get-AzVpnClientPackage Operation Failed as no valid Location header received in response!")); } if (string.IsNullOrEmpty(locationResultsUrl)) { - throw new Exception(string.Format("Get-AzureRmVpnClientPackage Operation Failed as no valid Location header value received in response!")); + throw new Exception(string.Format("Get-AzVpnClientPackage Operation Failed as no valid Location header value received in response!")); } #endregion @@ -231,7 +231,7 @@ public async Task> GeneratevpnclientpackageWithHt { string newResponseContent = await newHttpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - throw new Exception(string.Format("Get-AzureRmVpnClientPackage Operation returned an invalid status code '{0}' with Exception:{1} while retrieving " + + throw new Exception(string.Format("Get-AzVpnClientPackage Operation returned an invalid status code '{0}' with Exception:{1} while retrieving " + "the Vpnclient PackageUrl!", newHttpResponse.StatusCode, string.IsNullOrEmpty(newResponseContent) ? "NotAvailable" : newResponseContent)); } else @@ -331,7 +331,7 @@ public async Task> GenerateVpnProfileWithHttpMess if ((int)statusCode != 202) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - throw new Exception(string.Format("Get-AzureRmVpnClientPackage Operation returned an invalid status code '{0}' with Exception:{1}", + throw new Exception(string.Format("Get-AzVpnClientPackage Operation returned an invalid status code '{0}' with Exception:{1}", statusCode, string.IsNullOrEmpty(responseContent) ? "NotAvailable" : responseContent)); } @@ -348,12 +348,12 @@ public async Task> GenerateVpnProfileWithHttpMess } else { - throw new Exception(string.Format("Get-AzureRmVpnClientConfiguration Operation Failed as no valid Location header received in response!")); + throw new Exception(string.Format("Get-AzVpnClientConfiguration Operation Failed as no valid Location header received in response!")); } if (string.IsNullOrEmpty(locationResultsUrl)) { - throw new Exception(string.Format("Get-AzureRmVpnClientConfiguration Operation Failed as no valid Location header value received in response!")); + throw new Exception(string.Format("Get-AzVpnClientConfiguration Operation Failed as no valid Location header value received in response!")); } #endregion @@ -383,7 +383,7 @@ public async Task> GenerateVpnProfileWithHttpMess { string newResponseContent = await newHttpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - throw new Exception(string.Format("Get-AzureRmVpnClientPackage Operation returned an invalid status code '{0}' with Exception:{1} while retrieving " + + throw new Exception(string.Format("Get-AzVpnClientPackage Operation returned an invalid status code '{0}' with Exception:{1} while retrieving " + "the Vpnclient PackageUrl!", newHttpResponse.StatusCode, string.IsNullOrEmpty(newResponseContent) ? "NotAvailable" : newResponseContent)); } else @@ -470,7 +470,7 @@ public async Task> GetVpnProfilePackageUrlWithHtt if ((int)statusCode != 202) { string responseContent = await httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - throw new Exception(string.Format("Get-AzureRmVpnClientPackage Operation returned an invalid status code '{0}' with Exception:{1}", + throw new Exception(string.Format("Get-AzVpnClientPackage Operation returned an invalid status code '{0}' with Exception:{1}", statusCode, string.IsNullOrEmpty(responseContent) ? "NotAvailable" : responseContent)); } @@ -487,12 +487,12 @@ public async Task> GetVpnProfilePackageUrlWithHtt } else { - throw new Exception(string.Format("Get-AzureRmVpnClientConfiguration Operation Failed as no valid Location header received in response!")); + throw new Exception(string.Format("Get-AzVpnClientConfiguration Operation Failed as no valid Location header received in response!")); } if (string.IsNullOrEmpty(locationResultsUrl)) { - throw new Exception(string.Format("Get-AzureRmVpnClientConfiguration Operation Failed as no valid Location header value received in response!")); + throw new Exception(string.Format("Get-AzVpnClientConfiguration Operation Failed as no valid Location header value received in response!")); } #endregion @@ -522,7 +522,7 @@ public async Task> GetVpnProfilePackageUrlWithHtt { string newResponseContent = await newHttpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - throw new Exception(string.Format("Get-AzureRmVpnClientPackage Operation returned an invalid status code '{0}' with Exception:{1} while retrieving " + + throw new Exception(string.Format("Get-AzVpnClientPackage Operation returned an invalid status code '{0}' with Exception:{1} while retrieving " + "the Vpnclient PackageUrl!", newHttpResponse.StatusCode, string.IsNullOrEmpty(newResponseContent) ? "NotAvailable" : newResponseContent)); } else diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/AddAzureVirtualNetworkGatewayIpConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/AddAzureVirtualNetworkGatewayIpConfigCommand.cs index 1281447de351..c25045282742 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/AddAzureVirtualNetworkGatewayIpConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/AddAzureVirtualNetworkGatewayIpConfigCommand.cs @@ -24,7 +24,7 @@ public class AddAzureVirtualNetworkGatewayIpConfigCommand : AzureVirtualNetworkG [Parameter( Mandatory = true, ValueFromPipeline = true, - HelpMessage = "The virtual network gateway object to base modifications off of. This can be retrieved using Get-AzureRmVirtualNetworkGateway")] + HelpMessage = "The virtual network gateway object to base modifications off of. This can be retrieved using Get-AzVirtualNetworkGateway")] public PSVirtualNetworkGateway VirtualNetworkGateway { get; set; } [Parameter( diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/RemoveAzureVirtualNetworkGatewayIpConfigCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/RemoveAzureVirtualNetworkGatewayIpConfigCommand.cs index b39efb9c2543..47cb3b509194 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/RemoveAzureVirtualNetworkGatewayIpConfigCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/RemoveAzureVirtualNetworkGatewayIpConfigCommand.cs @@ -24,7 +24,7 @@ public class RemoveAzureVirtualNetworkGatewayIpConfigCommand : VirtualNetworkGat [Parameter( Mandatory = true, ValueFromPipeline = true, - HelpMessage = "The virtual network gateway object to base modifications off of. This can be retrieved using Get-AzureRmVirtualNetworkGateway")] + HelpMessage = "The virtual network gateway object to base modifications off of. This can be retrieved using Get-AzVirtualNetworkGateway")] [ValidateNotNull] public PSVirtualNetworkGateway VirtualNetworkGateway { get; set; } diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVirtualNetworkGatewayVpnClientConfig.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVirtualNetworkGatewayVpnClientConfig.cs index ac634697beef..f2dc34c68056 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVirtualNetworkGatewayVpnClientConfig.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVirtualNetworkGatewayVpnClientConfig.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Network { [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "VirtualNetworkGatewayVpnClientConfig",DefaultParameterSetName = VirtualNetworkGatewayParameterSets.Default,SupportsShouldProcess = true),OutputType(typeof(PSVirtualNetworkGateway))] - [Obsolete("Set-AzureRmVirtualNetworkGatewayVpnClientConfig command let will be removed in next release. Please use Set-AzureRmVirtualNetworkGateway command let instead.")] + [Obsolete("Set-AzVirtualNetworkGatewayVpnClientConfig command let will be removed in next release. Please use Set-AzVirtualNetworkGateway command let instead.")] public class SetAzureVirtualNetworkGatewayVpnClientConfigCommand : VirtualNetworkGatewayBaseCmdlet { [Parameter( diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVpnClientIpsecParametersCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVpnClientIpsecParametersCommand.cs index 44510b923a93..3c93236b5e9c 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVpnClientIpsecParametersCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/SetAzureVpnClientIpsecParametersCommand.cs @@ -87,7 +87,7 @@ public override void Execute() // Map to the sdk object var vpnClientIPsecParametersModel = NetworkResourceManagerProfile.Mapper.Map(this.VpnClientIPsecParameter); - string shouldProcessMessage = string.Format("Execute Set-AzureRmVpnClientIpsecParameters for ResourceGroupName {0} VirtualNetworkGateway {1}", this.ResourceGroupName, this.VirtualNetworkGatewayName); + string shouldProcessMessage = string.Format("Execute Set-AzVpnClientIpsecParameters for ResourceGroupName {0} VirtualNetworkGateway {1}", this.ResourceGroupName, this.VirtualNetworkGatewayName); if (ShouldProcess(shouldProcessMessage, VerbsCommon.Set)) { var vpnClientIpsecParameters = this.VirtualNetworkGatewayClient.SetVpnclientIpsecParameters(this.ResourceGroupName, this.VirtualNetworkGatewayName, vpnClientIPsecParametersModel); diff --git a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/UpdateAzureVirtualNetworkGatewayCommand.cs b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/UpdateAzureVirtualNetworkGatewayCommand.cs index 42ed0cbfd235..b818306a7b7d 100644 --- a/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/UpdateAzureVirtualNetworkGatewayCommand.cs +++ b/src/ResourceManager/Network/Commands.Network/VirtualNetworkGateway/UpdateAzureVirtualNetworkGatewayCommand.cs @@ -33,12 +33,12 @@ public class SetAzureVirtualNetworkGatewayCommand : VirtualNetworkGatewayBaseCmd Mandatory = true, ParameterSetName = VirtualNetworkGatewayParameterSets.RadiusServerConfiguration, ValueFromPipeline = true, - HelpMessage = "The virtual network gateway object to base modifications off of. This can be retrieved using Get-AzureRmVirtualNetworkGateway")] + HelpMessage = "The virtual network gateway object to base modifications off of. This can be retrieved using Get-AzVirtualNetworkGateway")] [Parameter( Mandatory = true, ParameterSetName = VirtualNetworkGatewayParameterSets.Default, ValueFromPipeline = true, - HelpMessage = "The virtual network gateway object to base modifications off of. This can be retrieved using Get-AzureRmVirtualNetworkGateway")] + HelpMessage = "The virtual network gateway object to base modifications off of. This can be retrieved using Get-AzVirtualNetworkGateway")] public PSVirtualNetworkGateway VirtualNetworkGateway { get; set; } [Parameter( diff --git a/src/ResourceManager/PowerBIEmbedded/Commands.PowerBI/Properties/Resources.Designer.cs b/src/ResourceManager/PowerBIEmbedded/Commands.PowerBI/Properties/Resources.Designer.cs index 3bd500d3632a..f8b37ac4cfc7 100644 --- a/src/ResourceManager/PowerBIEmbedded/Commands.PowerBI/Properties/Resources.Designer.cs +++ b/src/ResourceManager/PowerBIEmbedded/Commands.PowerBI/Properties/Resources.Designer.cs @@ -99,7 +99,7 @@ internal static string FailedToDiscoverResourceGroup { } /// - /// Looks up a localized string similar to No default subscription has been designated. Use Select-AzureSubscription -Default <subscriptionName> to set the default subscription.. + /// Looks up a localized string similar to No default subscription has been designated. Use Select-AzSubscription -Default <subscriptionName> to set the default subscription.. /// internal static string InvalidDefaultSubscription { get { @@ -126,7 +126,7 @@ internal static string LongRunningOperationFailed { } /// - /// Looks up a localized string similar to No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Login-AzurePowerBIEmbeddedCapacityAccount to login.. + /// Looks up a localized string similar to No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Login-AzPowerBIEmbeddedCapacityAccount to login.. /// internal static string NoSubscriptionInContext { get { diff --git a/src/ResourceManager/PowerBIEmbedded/Commands.PowerBI/Properties/Resources.resx b/src/ResourceManager/PowerBIEmbedded/Commands.PowerBI/Properties/Resources.resx index 0120537a38b4..314f828426af 100644 --- a/src/ResourceManager/PowerBIEmbedded/Commands.PowerBI/Properties/Resources.resx +++ b/src/ResourceManager/PowerBIEmbedded/Commands.PowerBI/Properties/Resources.resx @@ -130,7 +130,7 @@ Could not find capacity: '{0}' in any resource group in the currently selected subscription: {1}. Please ensure this capacity exists and that the current user has access to it. - No default subscription has been designated. Use Select-AzureSubscription -Default <subscriptionName> to set the default subscription. + No default subscription has been designated. Use Select-AzSubscription -Default <subscriptionName> to set the default subscription. Invalid Sku: '{0}'. Available Skus are: '{1}' diff --git a/src/ResourceManager/Profile/Commands.Profile/Models/RMProfileClient.cs b/src/ResourceManager/Profile/Commands.Profile/Models/RMProfileClient.cs index da458114ffb1..a15bf2b27b84 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Models/RMProfileClient.cs +++ b/src/ResourceManager/Profile/Commands.Profile/Models/RMProfileClient.cs @@ -575,7 +575,7 @@ private bool TryGetTenantSubscription(IAccessToken accessToken, { WriteWarningMessage(string.Format( "TenantId '{0}' contains more than one active subscription. First one will be selected for further use. " + - "To select another subscription, use Set-AzureRmContext.", + "To select another subscription, use Set-AzContext.", tenantId)); } subscriptionFromServer = subscriptions.First(); diff --git a/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.Designer.cs b/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.Designer.cs index e3cec7a94e3e..3a8263416fc5 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.Designer.cs @@ -277,7 +277,7 @@ internal static string ClearContextUserTarget { } /// - /// Looks up a localized string similar to Could not authenticate your user account {0} with the common tenant. Please login again using Connect-AzureRmAccount.. + /// Looks up a localized string similar to Could not authenticate your user account {0} with the common tenant. Please login again using Connect-AzAccount.. /// internal static string CommonTenantAuthFailed { get { @@ -286,7 +286,7 @@ internal static string CommonTenantAuthFailed { } /// - /// Looks up a localized string similar to Context cannot be null. Please log in using Connect-AzureRmAccount.. + /// Looks up a localized string similar to Context cannot be null. Please log in using Connect-AzAccount.. /// internal static string ContextCannotBeNull { get { @@ -511,7 +511,7 @@ internal static string NoAccountProvided { } /// - /// Looks up a localized string similar to Please provide a valid tenant Id on the command line or execute Connect-AzureRmAccount.. + /// Looks up a localized string similar to Please provide a valid tenant Id on the command line or execute Connect-AzAccount.. /// internal static string NoValidTenant { get { @@ -700,7 +700,7 @@ internal static string RmProfileNull { } /// - /// Looks up a localized string similar to Run Connect-AzureRmAccount to login.. + /// Looks up a localized string similar to Run Connect-AzAccount to login.. /// internal static string RunLoginCmdlet { get { @@ -871,7 +871,7 @@ internal static string SubscriptionOrTenantRequired { } /// - /// Looks up a localized string similar to Could not authenticate with tenant {0}. Please ensure that your account has access to this tenant and log in with Connect-AzureRmAccount. + /// Looks up a localized string similar to Could not authenticate with tenant {0}. Please ensure that your account has access to this tenant and log in with Connect-AzAccount. /// internal static string TenantAuthFailed { get { @@ -925,7 +925,7 @@ internal static string UnableToAqcuireToken { } /// - /// Looks up a localized string similar to Could not authenticate user account '{0}' with tenant '{1}'. Subscriptions in this tenant will not be listed. Please login again using Connect-AzureRmAccount to view the subscriptions in this tenant.. + /// Looks up a localized string similar to Could not authenticate user account '{0}' with tenant '{1}'. Subscriptions in this tenant will not be listed. Please login again using Connect-AzAccount to view the subscriptions in this tenant.. /// internal static string UnableToLogin { get { diff --git a/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.resx b/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.resx index 60f3a87c83a4..7b3b3fce2a86 100644 --- a/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.resx +++ b/src/ResourceManager/Profile/Commands.Profile/Properties/Resources.resx @@ -149,10 +149,10 @@ {0} is tenant, {1} is subscription - Could not authenticate your user account {0} with the common tenant. Please login again using Connect-AzureRmAccount. + Could not authenticate your user account {0} with the common tenant. Please login again using Connect-AzAccount. - Context cannot be null. Please log in using Connect-AzureRmAccount. + Context cannot be null. Please log in using Connect-AzAccount. Targeting all subsequent cmdlets at a different tenant and subscription @@ -219,7 +219,7 @@ (no account provided) - Please provide a valid tenant Id on the command line or execute Connect-AzureRmAccount. + Please provide a valid tenant Id on the command line or execute Connect-AzAccount. Overwrite context '{0}' with context '{1}' @@ -327,7 +327,7 @@ Please provide a valid tenant or a valid subscription. - Could not authenticate with tenant {0}. Please ensure that your account has access to this tenant and log in with Connect-AzureRmAccount + Could not authenticate with tenant {0}. Please ensure that your account has access to this tenant and log in with Connect-AzAccount Targeting all subsequent cmdlets in this session at a different tenant @@ -342,7 +342,7 @@ Unable to acquire token for tenant '{0}' - Could not authenticate user account '{0}' with tenant '{1}'. Subscriptions in this tenant will not be listed. Please login again using Connect-AzureRmAccount to view the subscriptions in this tenant. + Could not authenticate user account '{0}' with tenant '{1}'. Subscriptions in this tenant will not be listed. Please login again using Connect-AzAccount to view the subscriptions in this tenant. Unable to find environment with name '{0}' @@ -404,7 +404,7 @@ Must supply Subscription Id and Tenant Id when using -SkipValidation - Run Connect-AzureRmAccount to login. + Run Connect-AzAccount to login. Cannot create a context for subscription with id '{0}'. diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Backup.Models/Properties/Resources.Designer.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Backup.Models/Properties/Resources.Designer.cs index 986a322473bc..eee27b494a1d 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Backup.Models/Properties/Resources.Designer.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Backup.Models/Properties/Resources.Designer.cs @@ -1064,7 +1064,7 @@ public static string ScheduleTimeNotInUTCTimeZoneException { } /// - /// Looks up a localized string similar to Set vault context first using cmdlet Set-AzureRmRecoveryServicesVaultContext. + /// Looks up a localized string similar to Set vault context first using cmdlet Set-AzRecoveryServicesVaultContext. /// public static string SetVaultContextFirst { get { diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Backup.Models/Properties/Resources.resx b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Backup.Models/Properties/Resources.resx index b8ad700245b9..d69feac15d07 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Backup.Models/Properties/Resources.resx +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.Backup.Models/Properties/Resources.resx @@ -399,7 +399,7 @@ Please contact Microsoft for further assistance. {0} Uri value not found in Id {1} - Set vault context first using cmdlet Set-AzureRmRecoveryServicesVaultContext + Set vault context first using cmdlet Set-AzRecoveryServicesVaultContext VirtualMachineId is NULL or Empty. Please enter valid VirtualMachineId diff --git a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.SiteRecovery/Properties/Resources.Designer.cs b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.SiteRecovery/Properties/Resources.Designer.cs index 46927f5ca1a7..14eb3e1554ab 100644 --- a/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.SiteRecovery/Properties/Resources.Designer.cs +++ b/src/ResourceManager/RecoveryServices/Commands.RecoveryServices.SiteRecovery/Properties/Resources.Designer.cs @@ -860,8 +860,8 @@ internal static string SubscriptionIsNotAssociatedWithTheAccount { /// /// Looks up a localized string similar to Message: For newly created vault download vault creds file and retry. ///Recommended Action: Install module AzureRm.RecoveryServices if not installed. And execute below cmdlets - ///$path = Get-AzureRmRecoveryServicesVaultSettingsFile -Vault $Vault - ///Import-AzureRmRecoveryServicesAsrVaultSettingsFile -Path $path.filepath. + ///$path = Get-AzRecoveryServicesVaultSettingsFile -Vault $Vault + ///Import-AzRecoveryServicesAsrVaultSettingsFile -Path $path.filepath. /// internal static string TryDownloadingVaultFile { get { diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/GetAzureRelayAuthorizationRules.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/GetAzureRelayAuthorizationRules.cs index eaf5548a1590..74a72f027ef1 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/GetAzureRelayAuthorizationRules.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/GetAzureRelayAuthorizationRules.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands { /// - /// 'Get-AzureRmWcfRelayAuthorizationRule' Cmdlet gives the details of a / List of AuthorizationRule(s) + /// 'Get-AzWcfRelayAuthorizationRule' Cmdlet gives the details of a / List of AuthorizationRule(s) /// If AuthorizationRule name provided, a single AuthorizationRule detials will be returned /// If AuthorizationRule name not provided, list of AuthorizationRules will be returned /// diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/GetAzureRelayKey.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/GetAzureRelayKey.cs index 1edc6a394cd1..36e3b4fb211d 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/GetAzureRelayKey.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/GetAzureRelayKey.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands { /// - /// 'Get-AzureRmRelayKey' Cmdlet gives key detials for the given Authorization Rule + /// 'Get-AzRelayKey' Cmdlet gives key detials for the given Authorization Rule /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RelayKey", DefaultParameterSetName = NamespaceAuthoRuleParameterSet), OutputType(typeof(PSAuthorizationRuleKeysAttributes))] public class GetAzureRelayKey : AzureRelayCmdletBase diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/NewAzureRelayAuthorizationRules.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/NewAzureRelayAuthorizationRules.cs index 3bdf3dd0e5cd..22cb5daa344e 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/NewAzureRelayAuthorizationRules.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/NewAzureRelayAuthorizationRules.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands { /// - /// 'New-AzureRmRelayAuthorizationRule' Cmdlet creates a new AuthorizationRule + /// 'New-AzRelayAuthorizationRule' Cmdlet creates a new AuthorizationRule /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RelayAuthorizationRule", DefaultParameterSetName = NamespaceAuthoRuleParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSAuthorizationRuleAttributes))] public class NewAzureRelayAuthorizationRule : AzureRelayCmdletBase diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/NewAzureRelayKey.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/NewAzureRelayKey.cs index 469da40ea6af..9e66bffe2587 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/NewAzureRelayKey.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/NewAzureRelayKey.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands { /// - /// 'New-AzureRmRelayKey' Cmdlet creates a new specified (PrimaryKey / SecondaryKey) key for the given WcfRelay Authorization Rule + /// 'New-AzRelayKey' Cmdlet creates a new specified (PrimaryKey / SecondaryKey) key for the given WcfRelay Authorization Rule /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RelayKey", DefaultParameterSetName = NamespaceAuthoRuleParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSAuthorizationRuleKeysAttributes))] public class NewAzureRmRelayKey : AzureRelayCmdletBase diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/RemoveAzureRelayAuthorizationRules.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/RemoveAzureRelayAuthorizationRules.cs index 69f5990f5b26..8831da107f03 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/RemoveAzureRelayAuthorizationRules.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/RemoveAzureRelayAuthorizationRules.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands { /// - /// 'Remove-AzureRmRelayAuthorizationRule' Cmdlet removes/deletes AuthorizationRule + /// 'Remove-AzRelayAuthorizationRule' Cmdlet removes/deletes AuthorizationRule /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RelayAuthorizationRule", DefaultParameterSetName = NamespaceAuthoRuleParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveAzureRelayAuthorizationRule : AzureRelayCmdletBase diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/SetAzureRelayAuthorizationRules.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/SetAzureRelayAuthorizationRules.cs index c0107786e7a1..8b70b892e934 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/SetAzureRelayAuthorizationRules.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/AuthorizationRule/SetAzureRelayAuthorizationRules.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands { /// - /// 'Set-AzureRmRelayAuthorizationRule' Cmdlet updates the specified AuthorizationRule + /// 'Set-AzRelayAuthorizationRule' Cmdlet updates the specified AuthorizationRule /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RelayAuthorizationRule", DefaultParameterSetName = NamespaceAuthoRuleParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSAuthorizationRuleAttributes))] public class SetAzureRelayAuthorizationRule : AzureRelayCmdletBase diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/GetAzureRelayHybridConnections.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/GetAzureRelayHybridConnections.cs index ebb89457b8c6..b8004467385d 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/GetAzureRelayHybridConnections.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/GetAzureRelayHybridConnections.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands.HybridConnections { /// - /// 'Get-AzureRmRelayHybridConnection' Cmdlet gives the details of a / List of HybridConnections(s) + /// 'Get-AzRelayHybridConnection' Cmdlet gives the details of a / List of HybridConnections(s) /// If HybridConnections name provided, a single HybridConnections detials will be returned /// If WcfRelayHybridConnections name not provided, list of WcfRelayHybridConnections will be returned /// diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/NewAzureRelayHybridConnections.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/NewAzureRelayHybridConnections.cs index a04eb3e7eef9..71a6a6b4b324 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/NewAzureRelayHybridConnections.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/NewAzureRelayHybridConnections.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands.HybridConnection { /// - /// 'New-AzureRmRelayHybridConnection' Cmdlet creates a new HybridConnections + /// 'New-AzRelayHybridConnection' Cmdlet creates a new HybridConnections /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RelayHybridConnection", SupportsShouldProcess = true), OutputType(typeof(PSHybridConnectionAttibutes))] public class NewAzureRmRelayHybridConnection : AzureRelayCmdletBase diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/RemoveAzureRelayHybridConnections.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/RemoveAzureRelayHybridConnections.cs index 4cd647992f53..8366e239fe40 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/RemoveAzureRelayHybridConnections.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/RemoveAzureRelayHybridConnections.cs @@ -17,7 +17,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands.HybridConnections { /// - /// 'Remove-AzureRmRelayHybridConnection' Cmdlet removes the specified HybridConnections + /// 'Remove-AzRelayHybridConnection' Cmdlet removes the specified HybridConnections /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RelayHybridConnection", SupportsShouldProcess = true), OutputType(typeof(void))] public class RemoveAzureRelayHybridConnections : AzureRelayCmdletBase diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/SetAzureRelayHybridConnections.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/SetAzureRelayHybridConnections.cs index 8a427b778cf1..fd951a906793 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/SetAzureRelayHybridConnections.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/HybridConnections/SetAzureRelayHybridConnections.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands.HybridConnections { /// - /// 'Set-AzureRmRelayHybridConnection' Cmdlet updates the specified WcfRelay + /// 'Set-AzRelayHybridConnection' Cmdlet updates the specified WcfRelay /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RelayHybridConnection", SupportsShouldProcess = true), OutputType(typeof(PSHybridConnectionAttibutes))] public class SetAzureRelayHybridConnections : AzureRelayCmdletBase diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Namespace/GetAzureRelayNamespace.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Namespace/GetAzureRelayNamespace.cs index c67232e31ca9..3bdef40479c4 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Namespace/GetAzureRelayNamespace.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Namespace/GetAzureRelayNamespace.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands.Namespace { /// - /// 'Get-AzureRmRelayNamespace' Cmdlet gives the details of a / List of Relay Namespace(s) + /// 'Get-AzRelayNamespace' Cmdlet gives the details of a / List of Relay Namespace(s) /// If Namespace name provided, a single Namespace detials will be returned /// If Namespace name not provided, list of Namespace will be returned /// diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Namespace/RemoveAzureRelayNamespace.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Namespace/RemoveAzureRelayNamespace.cs index ecd7201c1663..d6d86c2449c5 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Namespace/RemoveAzureRelayNamespace.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Namespace/RemoveAzureRelayNamespace.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands.Namespace { /// - /// 'Remove-AzureRmRelayNamespace' Cmdlet deletes the specified Relay Namespace + /// 'Remove-AzRelayNamespace' Cmdlet deletes the specified Relay Namespace /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RelayNamespace", SupportsShouldProcess = true), OutputType(typeof(void))] public class RemoveAzureRmRelayNamespace : AzureRelayCmdletBase diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Namespace/SetAzureRelayNamespace.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Namespace/SetAzureRelayNamespace.cs index 066fd7f36a3b..806ced9a1598 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Namespace/SetAzureRelayNamespace.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Namespace/SetAzureRelayNamespace.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands.Namespace { /// - /// 'Set-AzureRmRelayNamespace' Cmdlet updates the specified Relay Namespace + /// 'Set-AzRelayNamespace' Cmdlet updates the specified Relay Namespace /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RelayNamespace", SupportsShouldProcess = true), OutputType(typeof(PSRelayNamespaceAttributes))] public class SetAzureRelayNamespace : AzureRelayCmdletBase diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Operations/GetAzureRelayOperations.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Operations/GetAzureRelayOperations.cs index 8848580b12bd..536390673d9b 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Operations/GetAzureRelayOperations.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/Operations/GetAzureRelayOperations.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands.Namespace { /// - /// 'Get-AzureRmRelayOperation' Cmdlet retrive the Operations List + /// 'Get-AzRelayOperation' Cmdlet retrive the Operations List /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "RelayOperation"), OutputType(typeof(PSOperationAttributes))] public class GetAzureRmRelayOperation : AzureRelayCmdletBase diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/GetAzureWcfRelay.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/GetAzureWcfRelay.cs index 7ebc97be5b1b..fecd9976d399 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/GetAzureWcfRelay.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/GetAzureWcfRelay.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands.WcfRelay { /// - /// 'Get-AzureRmWcfRelay' Cmdlet gives the details of a / List of WcfRelay(s) + /// 'Get-AzWcfRelay' Cmdlet gives the details of a / List of WcfRelay(s) /// If WcfRelay name provided, a single WcfRelay detials will be returned /// If WcfRelay name not provided, list of WcfRelay will be returned /// diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/NewAzureWcfRelay.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/NewAzureWcfRelay.cs index c6a553f93188..4598b65aac0b 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/NewAzureWcfRelay.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/NewAzureWcfRelay.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands.WcfRelay { /// - /// 'New-AzureRmWcfRelay' Cmdlet creates a new WcfRelay + /// 'New-AzWcfRelay' Cmdlet creates a new WcfRelay /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WcfRelay", SupportsShouldProcess = true), OutputType(typeof(PSWcfRelayAttributes))] public class NewAzureRmWcfRelay : AzureRelayCmdletBase diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/RemoveAzureWcfRelay.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/RemoveAzureWcfRelay.cs index a46434c98719..8eaec2c990e1 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/RemoveAzureWcfRelay.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/RemoveAzureWcfRelay.cs @@ -17,7 +17,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands.WcfRelay { /// - /// 'Remove-AzureRmWcfRelay' Cmdlet removes the specified WcfRelay + /// 'Remove-AzWcfRelay' Cmdlet removes the specified WcfRelay /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WcfRelay", SupportsShouldProcess = true), OutputType(typeof(void))] public class RemoveAzureWcfRelay : AzureRelayCmdletBase diff --git a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/SetAzureWcfRelay.cs b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/SetAzureWcfRelay.cs index 6af9da10cea4..bbe28b02a04c 100644 --- a/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/SetAzureWcfRelay.cs +++ b/src/ResourceManager/Relay/Commands.Relay/Cmdlets/WcfRelay/SetAzureWcfRelay.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Relay.Commands.WcfRelay { /// - /// 'Set-AzureRmWcfRelay' Cmdlet updates the specified WcfRelay + /// 'Set-AzWcfRelay' Cmdlet updates the specified WcfRelay /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "WcfRelay", SupportsShouldProcess = true), OutputType(typeof(PSWcfRelayAttributes))] public class SetAzureWcfRelay : AzureRelayCmdletBase diff --git a/src/ResourceManager/ResourceGraph/Commands.ResourceGraph/Cmdlets/SearchAzureRmGraph.cs b/src/ResourceManager/ResourceGraph/Commands.ResourceGraph/Cmdlets/SearchAzureRmGraph.cs index 0ec21cee480a..178c5692683e 100644 --- a/src/ResourceManager/ResourceGraph/Commands.ResourceGraph/Cmdlets/SearchAzureRmGraph.cs +++ b/src/ResourceManager/ResourceGraph/Commands.ResourceGraph/Cmdlets/SearchAzureRmGraph.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ResourceGraph.Cmdlets using Microsoft.Azure.Management.ResourceGraph.Models; /// - /// Search-AzureRmGraph cmdlet + /// Search-AzGraph cmdlet /// /// [Cmdlet(VerbsCommon.Search, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Graph"), OutputType(typeof(PSObject))] diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Properties/Resources.Designer.cs b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Properties/Resources.Designer.cs index eecbbfe6333b..1033e985a1ee 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Properties/Resources.Designer.cs @@ -970,7 +970,7 @@ internal static string UpdatedResourceGroup { } /// - /// Looks up a localized string similar to The DeploymentDebug setting has been enabled. This can potentially log secrets like passwords used in resource property or listKeys operations when you retrieve the deployment operations through Get-AzureRmResourceGroupDeploymentOperation. + /// Looks up a localized string similar to The DeploymentDebug setting has been enabled. This can potentially log secrets like passwords used in resource property or listKeys operations when you retrieve the deployment operations through Get-AzResourceGroupDeploymentOperation. /// internal static string WarnOnDeploymentDebugSetting { get { diff --git a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Properties/Resources.resx b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Properties/Resources.resx index ea73d81a497e..a57fbb80e802 100644 --- a/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Properties/Resources.resx +++ b/src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Properties/Resources.resx @@ -355,7 +355,7 @@ Unregistering provider ... - The DeploymentDebug setting has been enabled. This can potentially log secrets like passwords used in resource property or listKeys operations when you retrieve the deployment operations through Get-AzureRmResourceGroupDeploymentOperation + The DeploymentDebug setting has been enabled. This can potentially log secrets like passwords used in resource property or listKeys operations when you retrieve the deployment operations through Get-AzResourceGroupDeploymentOperation The paramater -RollbackToLastDeployment and -RollBackDeploymentName can't be defined at the same time. diff --git a/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/GetAzureRmManagementGroup.cs b/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/GetAzureRmManagementGroup.cs index 0806c5d24066..f16141650f4f 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/GetAzureRmManagementGroup.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/GetAzureRmManagementGroup.cs @@ -22,13 +22,13 @@ namespace Microsoft.Azure.Commands.Resources.ManagementGroups { /// - /// Get-AzureRmManagementGroup Cmdlet + /// Get-AzManagementGroup Cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ManagementGroup", DefaultParameterSetName = Constants.ParameterSetNames.ListParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSManagementGroupInfo), typeof(PSManagementGroup))] public class GetAzureRmManagementGroup : AzureManagementGroupsCmdletBase { /// - /// Get-AzureRmManagementGroup Cmdlet + /// Get-AzManagementGroup Cmdlet /// [Parameter(ParameterSetName = Constants.ParameterSetNames.GetParameterSet, Mandatory = true, HelpMessage = Constants.HelpMessages.GroupName, Position = 0)] public string GroupName { get; set; } diff --git a/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/NewAzureRmManagementGroup.cs b/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/NewAzureRmManagementGroup.cs index 027260375f1b..2e10eafb18bf 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/NewAzureRmManagementGroup.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/NewAzureRmManagementGroup.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Resources.ManagementGroups { /// - /// New-AzureRmManagementGroup Cmdlet + /// New-AzManagementGroup Cmdlet /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ManagementGroup", DefaultParameterSetName = Constants.ParameterSetNames.GroupOperationsParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSManagementGroup))] public class NewAzureRmManagementGroup : AzureManagementGroupsCmdletBase diff --git a/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/NewAzureRmManagementGroupSubscription.cs b/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/NewAzureRmManagementGroupSubscription.cs index 48e2c6992a83..76f67ee42ee6 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/NewAzureRmManagementGroupSubscription.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/NewAzureRmManagementGroupSubscription.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Resources.ManagementGroups { /// - /// Add-AzureRmManagementGroupSubscription Cmdlet + /// Add-AzManagementGroupSubscription Cmdlet /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ManagementGroupSubscription",DefaultParameterSetName = Constants.ParameterSetNames.GroupOperationsParameterSet,SupportsShouldProcess = true), OutputType(typeof(bool))] public class NewAzureRmManagementGroupSubscription : AzureManagementGroupsCmdletBase diff --git a/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/RemoveAzureRmManagementGroup.cs b/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/RemoveAzureRmManagementGroup.cs index 5682082f7a19..46a2f6c43472 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/RemoveAzureRmManagementGroup.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/RemoveAzureRmManagementGroup.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Resources.ManagementGroups { /// - /// Remove-AzureRmManagementGroup Cmdlet + /// Remove-AzManagementGroup Cmdlet /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ManagementGroup",DefaultParameterSetName = Constants.ParameterSetNames.GroupOperationsParameterSet,SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveAzureRmManagementGroup : AzureManagementGroupsCmdletBase diff --git a/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/RemoveAzureRmManagementGroupSubscription.cs b/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/RemoveAzureRmManagementGroupSubscription.cs index edf7390594c2..0d0051a80360 100644 --- a/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/RemoveAzureRmManagementGroupSubscription.cs +++ b/src/ResourceManager/Resources/Commands.Resources/ManagementGroups/RemoveAzureRmManagementGroupSubscription.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Resources.ManagementGroups { /// - /// Remove-AzureRmManagementGroupSubscription Cmdlet + /// Remove-AzManagementGroupSubscription Cmdlet /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ManagementGroupSubscription",DefaultParameterSetName = Constants.ParameterSetNames.GroupOperationsParameterSet,SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveAzureRmManagementGroupSubscription : AzureManagementGroupsCmdletBase diff --git a/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs b/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs index 29dfb74cd5b6..40d348957677 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs @@ -97,13 +97,13 @@ private List ProcessProviderOperationsWithWildCard( string provider = this.OperationSearchString.Split(Separator).First(); if (provider.Equals(WildCardCharacter)) { - // 'Get-AzureRmProviderOperation *' or 'Get-AzureRmProviderOperation */virtualmachines/*' + // 'Get-AzProviderOperation *' or 'Get-AzProviderOperation */virtualmachines/*' // get operations for all providers providers.AddRange(this.ResourcesClient.ListProviderOperationsMetadata()); } else { - // 'Get-AzureRmProviderOperation Microsoft.Compute/virtualmachines/*' or 'Get-AzureRmProviderOperation Microsoft.Sql/*' + // 'Get-AzProviderOperation Microsoft.Compute/virtualmachines/*' or 'Get-AzProviderOperation Microsoft.Sql/*' providers.Add(this.ResourcesClient.GetProviderOperationsMetadata(provider)); } diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/GetAzureServiceBusAuthorizationRule.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/GetAzureServiceBusAuthorizationRule.cs index bdcea85a8403..0efdde067f6a 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/GetAzureServiceBusAuthorizationRule.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/GetAzureServiceBusAuthorizationRule.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands { /// - /// 'Get-AzureRmServiceBusAuthorizationRule' Cmdlet gives the details of a / List of AuthorizationRule(s) + /// 'Get-AzServiceBusAuthorizationRule' Cmdlet gives the details of a / List of AuthorizationRule(s) /// If AuthorizationRule name provided, a single AuthorizationRule detials will be returned /// If AuthorizationRule name not provided, list of AuthorizationRules will be returned /// diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/GetAzureServiceBusKey.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/GetAzureServiceBusKey.cs index fb7362c663a3..9970968aeb89 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/GetAzureServiceBusKey.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/GetAzureServiceBusKey.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands { /// - /// 'Get-AzureRmServiceBusKey' Cmdlet gives key detials for the given Authorization Rule + /// 'Get-AzServiceBusKey' Cmdlet gives key detials for the given Authorization Rule /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusKey", DefaultParameterSetName = NamespaceAuthoRuleParameterSet), OutputType(typeof(PSListKeysAttributes))] public class GetAzureServiceBusKey : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/NewAzureServiceBusAuthorizationRule.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/NewAzureServiceBusAuthorizationRule.cs index 3dd0dd4e44a3..daddc5926b69 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/NewAzureServiceBusAuthorizationRule.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/NewAzureServiceBusAuthorizationRule.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands { /// - /// 'New-AzureRmServiceBusAuthorizationRule' Cmdlet creates a new AuthorizationRule + /// 'New-AzServiceBusAuthorizationRule' Cmdlet creates a new AuthorizationRule /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusAuthorizationRule", DefaultParameterSetName = NamespaceAuthoRuleParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSSharedAccessAuthorizationRuleAttributes))] public class NewAzureServiceBusAuthorizationRule : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/NewAzureServiceBusKey.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/NewAzureServiceBusKey.cs index af8b2fcddbea..7a1e79b2d4ce 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/NewAzureServiceBusKey.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/NewAzureServiceBusKey.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands { /// - /// 'New-AzureRmServiceBusKey' Cmdlet creates a new specified (PrimaryKey / SecondaryKey) key for the given ServiceBus Namespace/Queue/Topic Authorization Rule + /// 'New-AzServiceBusKey' Cmdlet creates a new specified (PrimaryKey / SecondaryKey) key for the given ServiceBus Namespace/Queue/Topic Authorization Rule /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusKey", DefaultParameterSetName = NamespaceAuthoRuleParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSListKeysAttributes))] public class NewAzureServiceBusKey : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/RemoveAzureServiceBusAuthorizationRule.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/RemoveAzureServiceBusAuthorizationRule.cs index 1309be0ae82d..501cdd6cb5ae 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/RemoveAzureServiceBusAuthorizationRule.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/RemoveAzureServiceBusAuthorizationRule.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands { /// - /// 'Remove-AzureRmServiceBusAuthorizationRule' Cmdlet removes/deletes AuthorizationRule + /// 'Remove-AzServiceBusAuthorizationRule' Cmdlet removes/deletes AuthorizationRule /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusAuthorizationRule", DefaultParameterSetName = NamespaceAuthoRuleParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveAzureServiceBusAuthorizationRule : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/SetAzureServiceBusAuthorizationRule.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/SetAzureServiceBusAuthorizationRule.cs index 2958d673295c..6c44103f1787 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/SetAzureServiceBusAuthorizationRule.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/AuthorizationRule/SetAzureServiceBusAuthorizationRule.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands { /// - /// 'Set-AzureRmServiceBusAuthorizationRule' Cmdlet updates the specified AuthorizationRule + /// 'Set-AzServiceBusAuthorizationRule' Cmdlet updates the specified AuthorizationRule /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusAuthorizationRule", DefaultParameterSetName = NamespaceAuthoRuleParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSSharedAccessAuthorizationRuleAttributes))] public class SetAzureServiceBusAuthorizationRule : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/GetAzureServiceBusGeoDRConfiguration.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/GetAzureServiceBusGeoDRConfiguration.cs index b04fdf18e103..16b845717211 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/GetAzureServiceBusGeoDRConfiguration.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/GetAzureServiceBusGeoDRConfiguration.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.GeoDR { /// - /// 'Get-AzureServicebusGeoDRConfigurations' CmdletRetrieves Alias(Disaster Recovery configuration) for primary or secondary namespace + /// 'Get-AzServicebusGeoDRConfigurations' CmdletRetrieves Alias(Disaster Recovery configuration) for primary or secondary namespace /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusGeoDRConfiguration", DefaultParameterSetName = GeoDRParameterSet), OutputType(typeof(PSServiceBusDRConfigurationAttributes))] public class GetServiceBusGeoDRConfiguration : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/NewAzureServiceBusGeoDRConfiguration.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/NewAzureServiceBusGeoDRConfiguration.cs index d3ac8b40ffbe..d64dd4107abe 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/NewAzureServiceBusGeoDRConfiguration.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/NewAzureServiceBusGeoDRConfiguration.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.GeoDR { /// - /// 'New-AzureRmServicebusGeoDRConfiguration' Cmdlet Creates an new Alias(Disaster Recovery configuration) + /// 'New-AzServicebusGeoDRConfiguration' Cmdlet Creates an new Alias(Disaster Recovery configuration) /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusGeoDRConfiguration", DefaultParameterSetName = GeoDRParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSServiceBusDRConfigurationAttributes))] public class NewAzureRmEventHubGeoDRConfiguration : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/RemoveAzureServiceBusGeoDRConfiguration.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/RemoveAzureServiceBusGeoDRConfiguration.cs index 8741b5712b8d..a94d36d46028 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/RemoveAzureServiceBusGeoDRConfiguration.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/RemoveAzureServiceBusGeoDRConfiguration.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.GeoDR { /// - /// 'Remove-AzureRmServicebusGeoDRConfiguration' Cmdlet Deletes an Alias(Disaster Recovery configuration) + /// 'Remove-AzServicebusGeoDRConfiguration' Cmdlet Deletes an Alias(Disaster Recovery configuration) /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusGeoDRConfiguration", DefaultParameterSetName = GeoDRParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveServicBusGeoDRConfiguration : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/SetAzureServiceBusGeoDRConfigurationBreakPair.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/SetAzureServiceBusGeoDRConfigurationBreakPair.cs index 8f6dd3739afc..6e3156162dc7 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/SetAzureServiceBusGeoDRConfigurationBreakPair.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/SetAzureServiceBusGeoDRConfigurationBreakPair.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.GeoDR { /// - /// 'Set-AzureRmServicebusGeoDRConfigurationBreakPair' Cmdlet disables the Disaster Recovery and stops replicating changes from primary to secondary namespace + /// 'Set-AzServicebusGeoDRConfigurationBreakPair' Cmdlet disables the Disaster Recovery and stops replicating changes from primary to secondary namespace /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusGeoDRConfigurationBreakPair", DefaultParameterSetName = GeoDRParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class SetAzureServiceBusGeoDRConfigurationBreakPair : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/SetAzureServiceBusGeoDRConfigurationFailOver.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/SetAzureServiceBusGeoDRConfigurationFailOver.cs index 8cd14c80f319..4209d55eefcd 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/SetAzureServiceBusGeoDRConfigurationFailOver.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/DRConfig/SetAzureServiceBusGeoDRConfigurationFailOver.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.GeoDR { /// - /// 'Set-AzureRmServicebusGeoDRConfigurationFailOver' Cmdlet invokes GEO DR failover and reconfigure the alias to point to the secondary namespace + /// 'Set-AzServicebusGeoDRConfigurationFailOver' Cmdlet invokes GEO DR failover and reconfigure the alias to point to the secondary namespace /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusGeoDRConfigurationFailOver", DefaultParameterSetName = GeoDRParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class SetAzureServiceBusGeoDRConfigurationFailOver : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/CompleteAzureServiceBusMigrationConfiguration.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/CompleteAzureServiceBusMigrationConfiguration.cs index b35f9be8ed07..6639499bd724 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/CompleteAzureServiceBusMigrationConfiguration.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/CompleteAzureServiceBusMigrationConfiguration.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Migration { /// - /// 'Set-AzureRmServiceBusCompleteMigrationConfiguration' Cmdlet invokes + /// 'Set-AzServiceBusCompleteMigrationConfiguration' Cmdlet invokes /// [Cmdlet("Complete", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusMigration", DefaultParameterSetName = MigrationConfigurationParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class CompleteAzureServiceBusMigrationConfiguration : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/RemoveAzureServiceBusMigrationConfiguration.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/RemoveAzureServiceBusMigrationConfiguration.cs index 2b09954916ec..80edce115489 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/RemoveAzureServiceBusMigrationConfiguration.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/RemoveAzureServiceBusMigrationConfiguration.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Migration { /// - /// 'Remove-AzureRmServicebusMigrationConfiguration' Cmdlet Deletes Migration Coinfiguration) + /// 'Remove-AzServicebusMigrationConfiguration' Cmdlet Deletes Migration Coinfiguration) /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusMigration", DefaultParameterSetName = MigrationConfigurationParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveAzureServiceBusMigrationConfiguration : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/StartAzureServiceBusMigrationConfiguration.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/StartAzureServiceBusMigrationConfiguration.cs index 82836fb9eb2a..4a5f69dc36d7 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/StartAzureServiceBusMigrationConfiguration.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/StartAzureServiceBusMigrationConfiguration.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Migration { /// - /// 'Start-AzureRmServicebusMigration' Cmdlet Creates an new Migration configuration of Standard to Premium + /// 'Start-AzServicebusMigration' Cmdlet Creates an new Migration configuration of Standard to Premium /// [Cmdlet("Start", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusMigration", DefaultParameterSetName = MigrationConfigurationParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSServiceBusDRConfigurationAttributes))] public class StartAzureServiceBusMigrationConfiguration : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/StopAzureServiceBusMigrationConfiguration.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/StopAzureServiceBusMigrationConfiguration.cs index 3a45e8b03cfa..bb820bbaca90 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/StopAzureServiceBusMigrationConfiguration.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/MigrationConfiguration/StopAzureServiceBusMigrationConfiguration.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Migration { /// - /// 'Stop-AzureRmServiceBusMigration' Cmdlet disables the Migration and stops replicating changes from standard to premium + /// 'Stop-AzServiceBusMigration' Cmdlet disables the Migration and stops replicating changes from standard to premium /// [Cmdlet("Stop", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusMigration", DefaultParameterSetName = MigrationConfigurationParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class StopAzureServiceBusMigrationConfiguration : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/GetAzureServiceBusNamespace.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/GetAzureServiceBusNamespace.cs index 0114d25161f7..0806eb333b3b 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/GetAzureServiceBusNamespace.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/GetAzureServiceBusNamespace.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Namespace { /// - /// 'Get-AzureRmServiceBusNamespace' Cmdlet gives the details of a / List of Servicebus Namespace(s) + /// 'Get-AzServiceBusNamespace' Cmdlet gives the details of a / List of Servicebus Namespace(s) /// If Namespace name provided, a single Namespace detials will be returned /// If Namespace name not provided, list of Namespace will be returned /// diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/NewAzureServiceBusNamespace.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/NewAzureServiceBusNamespace.cs index a05246ca6a2c..5a6d02df1955 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/NewAzureServiceBusNamespace.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/NewAzureServiceBusNamespace.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Namespace { /// - /// 'New-AzureRmServiceBusNamespace' cmdlet creates a new Servicebus NameSpace + /// 'New-AzServiceBusNamespace' cmdlet creates a new Servicebus NameSpace /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusNamespace", SupportsShouldProcess = true), OutputType(typeof(PSNamespaceAttributes))] public class NewAzureRmServiceBusNamespace : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/RemoveAzureServiceBusNamespace.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/RemoveAzureServiceBusNamespace.cs index 58713ffe62fe..08100a51a003 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/RemoveAzureServiceBusNamespace.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/RemoveAzureServiceBusNamespace.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Namespace { /// - /// 'Remove-AzureRmServiceBusNamespace' Cmdlet deletes the specified ServiceBus Namespace + /// 'Remove-AzServiceBusNamespace' Cmdlet deletes the specified ServiceBus Namespace /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusNamespace", DefaultParameterSetName = NamespacePropertiesParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveAzureRmServiceBusNamespace : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/SetAzureServiceBusNamespace.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/SetAzureServiceBusNamespace.cs index 2e51d76545b7..a907f9b539f8 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/SetAzureServiceBusNamespace.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Namespace/SetAzureServiceBusNamespace.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Namespace { /// - /// 'Set-AzureRmServiceBusNamespace' Cmdlet updates the specified ServiceBus Namespace + /// 'Set-AzServiceBusNamespace' Cmdlet updates the specified ServiceBus Namespace /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusNamespace", SupportsShouldProcess = true), OutputType(typeof(PSNamespaceAttributes))] public class SetAzureRmServiceBusNamespace : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Operations/GetAzureServiceBusOperations.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Operations/GetAzureServiceBusOperations.cs index 5f5a0416972c..801b04175a7a 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Operations/GetAzureServiceBusOperations.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Operations/GetAzureServiceBusOperations.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Namespace { /// - /// 'Get-AzureRmRelayOperation' Cmdlet retrive the Operations List + /// 'Get-AzRelayOperation' Cmdlet retrive the Operations List /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusOperation"), OutputType(typeof(PSOperationAttributes))] public class GetAzureServiceBusOperations : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/GetAzureServiceBusQueue.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/GetAzureServiceBusQueue.cs index 72526c9df3a4..54b542b48233 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/GetAzureServiceBusQueue.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/GetAzureServiceBusQueue.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Queue { /// - /// 'Get-AzureRmServiceBusQueue' Cmdlet gives the details of a / List of ServiceBus Queue(s) + /// 'Get-AzServiceBusQueue' Cmdlet gives the details of a / List of ServiceBus Queue(s) /// If Queue name provided, a single Queue detials will be returned /// If Queue name not provided, list of Queue will be returned /// diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/NewAzureServiceBusQueue.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/NewAzureServiceBusQueue.cs index cf50c3acdcc1..991f901a717c 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/NewAzureServiceBusQueue.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/NewAzureServiceBusQueue.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Queue { /// - /// 'New-AzureRmServiceBusQueue' Cmdlet creates a new Queue + /// 'New-AzServiceBusQueue' Cmdlet creates a new Queue /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusQueue", SupportsShouldProcess = true), OutputType(typeof(PSQueueAttributes))] public class NewAzureRmServiceBusQueue : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/RemoveAzureServiceBusQueue.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/RemoveAzureServiceBusQueue.cs index bb9a36b70323..e68de047a8ee 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/RemoveAzureServiceBusQueue.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/RemoveAzureServiceBusQueue.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Queue { /// - /// 'Remove-AzureRmServiceBusQueue' Cmdlet removes the specified Queue + /// 'Remove-AzServiceBusQueue' Cmdlet removes the specified Queue /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusQueue", DefaultParameterSetName = QueuePropertiesParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveAzureRmServiceBusQueue : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/SetAzureServiceBusQueue.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/SetAzureServiceBusQueue.cs index aab1b9ea10c5..1a262d5d639c 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/SetAzureServiceBusQueue.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Queue/SetAzureServiceBusQueue.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Queue { /// - /// 'Set-AzureRmServiceBusQueue' Cmdlet updates the specified Queue + /// 'Set-AzServiceBusQueue' Cmdlet updates the specified Queue /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusQueue", SupportsShouldProcess = true), OutputType(typeof(PSQueueAttributes))] public class SetAzureRmServiceBusQueue : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/GetAzureServiceBusRule.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/GetAzureServiceBusRule.cs index 075fcf6959ad..93db8b667a89 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/GetAzureServiceBusRule.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/GetAzureServiceBusRule.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Rule { /// - /// 'Get-AzureRmServiceBusRule' Cmdlet gives the details of a / List of subscriptions Rules + /// 'Get-AzServiceBusRule' Cmdlet gives the details of a / List of subscriptions Rules /// If Rule name provided, a single Rule detials will be returned /// If Rule name not provided, list of Rule will be returned /// diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/NewAzureServiceBusRule.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/NewAzureServiceBusRule.cs index 8e47063dacf5..52434714e59c 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/NewAzureServiceBusRule.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/NewAzureServiceBusRule.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Rule { /// - /// 'New-AzureRmServiceBusRule' Cmdlet creates a new Rule + /// 'New-AzServiceBusRule' Cmdlet creates a new Rule /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusRule", DefaultParameterSetName = RuleResourceParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSRulesAttributes))] public class NewAzureRmServiceBusRule : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/RemoveAzureServiceBusRule.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/RemoveAzureServiceBusRule.cs index 7ba5e06c671b..ed50e1562c07 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/RemoveAzureServiceBusRule.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/RemoveAzureServiceBusRule.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Rule { /// - /// 'Remove-AzureRmServiceBusRule' Cmdlet removes the specified Rule + /// 'Remove-AzServiceBusRule' Cmdlet removes the specified Rule /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusRule", DefaultParameterSetName = RuleResourceParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveAzureRmServiceBusRule : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/SetAzureServiceBusRule.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/SetAzureServiceBusRule.cs index bfedf4d25d1d..027a1fbb6fae 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/SetAzureServiceBusRule.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Rule/SetAzureServiceBusRule.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Rule { /// - /// 'Set-AzureRmServiceBusRule' Cmdlet updates the specified ServiceBus Rule + /// 'Set-AzServiceBusRule' Cmdlet updates the specified ServiceBus Rule /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusRule", SupportsShouldProcess = true), OutputType(typeof(PSRulesAttributes))] public class SetAzureRmServiceBusRule : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/GetAzureServiceBusSubscription.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/GetAzureServiceBusSubscription.cs index c4cac61660ba..53fc7dfdc528 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/GetAzureServiceBusSubscription.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/GetAzureServiceBusSubscription.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Subscription { /// - /// 'Get-AzureRmServiceBusSubscription' Cmdlet gives the details of a / List of Topic subscriptions(s) + /// 'Get-AzServiceBusSubscription' Cmdlet gives the details of a / List of Topic subscriptions(s) /// If Subscription name provided, a single Subscription detials will be returned /// If Subscription name not provided, list of Subscription will be returned /// diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/NewAzureServiceBusSubscription.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/NewAzureServiceBusSubscription.cs index c4c98b6b670b..5d12f5d66a58 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/NewAzureServiceBusSubscription.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/NewAzureServiceBusSubscription.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Subscription { /// - /// 'New-AzureRmServiceBusSubscription' Cmdlet creates a new Subscription + /// 'New-AzServiceBusSubscription' Cmdlet creates a new Subscription /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusSubscription", SupportsShouldProcess = true), OutputType(typeof(PSSubscriptionAttributes))] public class NewAzureRmServiceBusSubscription : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/RemoveAzureServiceBusSubscription.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/RemoveAzureServiceBusSubscription.cs index 4297596242cd..e2c6b0268d45 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/RemoveAzureServiceBusSubscription.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/RemoveAzureServiceBusSubscription.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Subscription { /// - /// 'Remove-AzureRmServiceBusSubscription' Cmdlet removes the specified Subscription + /// 'Remove-AzServiceBusSubscription' Cmdlet removes the specified Subscription /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusSubscription", DefaultParameterSetName = SubscriptionPropertiesParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveAzureRmServiceBusSubscription : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/SetAzureServiceBusSubscription.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/SetAzureServiceBusSubscription.cs index f716e1919fb3..e0a67b7db82c 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/SetAzureServiceBusSubscription.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Subscription/SetAzureServiceBusSubscription.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Subscription { /// - /// 'Set-AzureRmServiceBusSubscription' Cmdlet updates the specified ServiceBus Subscription + /// 'Set-AzServiceBusSubscription' Cmdlet updates the specified ServiceBus Subscription /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusSubscription", SupportsShouldProcess = true), OutputType(typeof(PSSubscriptionAttributes))] public class SetAzureRmServiceBusSubscription : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/GetAzureServiceBusTopic.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/GetAzureServiceBusTopic.cs index 9475c5474a30..236f6255265d 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/GetAzureServiceBusTopic.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/GetAzureServiceBusTopic.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Topic { /// - /// 'Get-AzureRmServiceBusTopic' Cmdlet gives the details of a / List of ServiceBus Topic(s) + /// 'Get-AzServiceBusTopic' Cmdlet gives the details of a / List of ServiceBus Topic(s) /// If ServiceBus Topic name provided, a single ServiceBus Topic detials will be returned /// If ServiceBus Topic name not provided, list of ServiceBus Topic will be returned /// diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/NewAzureServiceBusTopic.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/NewAzureServiceBusTopic.cs index eccdd4ad806c..519f66d54514 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/NewAzureServiceBusTopic.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/NewAzureServiceBusTopic.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Topic { /// - /// 'New-AzureRmServiceBusTopic' Cmdlet creates a new ServiceBus Topic + /// 'New-AzServiceBusTopic' Cmdlet creates a new ServiceBus Topic /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusTopic", SupportsShouldProcess = true), OutputType(typeof(PSTopicAttributes))] public class NewAzureRmServiceBusTopic : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/RemoveAzureServiceBusTopic.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/RemoveAzureServiceBusTopic.cs index 06f11cb38def..52b3bcccba1d 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/RemoveAzureServiceBusTopic.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/RemoveAzureServiceBusTopic.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Topic { /// - /// 'Remove-AzureRmServiceBusTopic' Cmdlet removes the specified ServiceBus Topic + /// 'Remove-AzServiceBusTopic' Cmdlet removes the specified ServiceBus Topic /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusTopic", DefaultParameterSetName = TopicPropertiesParameterSet, SupportsShouldProcess = true), OutputType(typeof(bool))] public class RemoveAzureRmServiceBusTopic : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/SetAzureServiceBusTopic.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/SetAzureServiceBusTopic.cs index c29fae7da34d..5a0629569a5b 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/SetAzureServiceBusTopic.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Cmdlets/Topic/SetAzureServiceBusTopic.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Commands.Topic { /// - /// 'Set-AzureRmServiceBusTopic' Cmdlet updates the specified ServiceBus Topic + /// 'Set-AzServiceBusTopic' Cmdlet updates the specified ServiceBus Topic /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ServiceBusTopic", SupportsShouldProcess = true), OutputType(typeof(PSTopicAttributes))] public class SetAzureRmServiceBusTopic : AzureServiceBusCmdletBase diff --git a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Models/PSNamespaceLongRunningOperation.cs b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Models/PSNamespaceLongRunningOperation.cs index 719e8bf1716a..9b3a6a3d9a5f 100644 --- a/src/ResourceManager/ServiceBus/Commands.ServiceBus/Models/PSNamespaceLongRunningOperation.cs +++ b/src/ResourceManager/ServiceBus/Commands.ServiceBus/Models/PSNamespaceLongRunningOperation.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.ServiceBus.Models public class PSNamespaceLongRunningOperation { - public const string DeleteOperation = "Remove-AzureRmServiceBusNamespace"; + public const string DeleteOperation = "Remove-AzServiceBusNamespace"; internal static PSNamespaceLongRunningOperation CreateLongRunningOperation( diff --git a/src/ResourceManager/ServiceFabric/Commands.ServiceFabric/Properties/Resources.Designer.cs b/src/ResourceManager/ServiceFabric/Commands.ServiceFabric/Properties/Resources.Designer.cs index 9734cec7027b..832fc9b34f52 100644 --- a/src/ResourceManager/ServiceFabric/Commands.ServiceFabric/Properties/Resources.Designer.cs +++ b/src/ResourceManager/ServiceFabric/Commands.ServiceFabric/Properties/Resources.Designer.cs @@ -556,7 +556,7 @@ internal static string UseAutoToIncreaseNodesCount { } /// - /// Looks up a localized string similar to Access policy is not set. No user or application have access permission to use this vault. Please use Set-AzureRmKeyVaultAccessPolicy to set access policies.. + /// Looks up a localized string similar to Access policy is not set. No user or application have access permission to use this vault. Please use Set-AzKeyVaultAccessPolicy to set access policies.. /// internal static string VaultCreatedWithOutAccessPolicy { get { diff --git a/src/ResourceManager/ServiceFabric/Commands.ServiceFabric/Properties/Resources.resx b/src/ResourceManager/ServiceFabric/Commands.ServiceFabric/Properties/Resources.resx index 6f2750bbeb90..3139f35cfd19 100644 --- a/src/ResourceManager/ServiceFabric/Commands.ServiceFabric/Properties/Resources.resx +++ b/src/ResourceManager/ServiceFabric/Commands.ServiceFabric/Properties/Resources.resx @@ -283,7 +283,7 @@ Primary node count is {0}, which is less than the required node count of {1} for the target reliability level. Please use 'AutoAddNode' switch to automatically increase node count. - Access policy is not set. No user or application have access permission to use this vault. Please use Set-AzureRmKeyVaultAccessPolicy to set access policies. + Access policy is not set. No user or application have access permission to use this vault. Please use Set-AzKeyVaultAccessPolicy to set access policies. The resource group should have a valid VM extension for Service Fabric. diff --git a/src/ResourceManager/SignalR/Commands.SignalR/Cmdlets/SignalRCmdletBase.cs b/src/ResourceManager/SignalR/Commands.SignalR/Cmdlets/SignalRCmdletBase.cs index 160f2e7a618f..8f8216a86459 100644 --- a/src/ResourceManager/SignalR/Commands.SignalR/Cmdlets/SignalRCmdletBase.cs +++ b/src/ResourceManager/SignalR/Commands.SignalR/Cmdlets/SignalRCmdletBase.cs @@ -62,7 +62,7 @@ private T BuildClient(string endpoint = null, Func postBuild = null) wh public abstract string ResourceGroupName { get; set; } /// - /// Returns the default resource group set by Set-AzureRmDefault, if present. + /// Returns the default resource group set by Set-AzDefault, if present. /// protected string DefaultResourceGroupName { diff --git a/src/ResourceManager/SignalR/Commands.SignalR/Properties/Resources.Designer.cs b/src/ResourceManager/SignalR/Commands.SignalR/Properties/Resources.Designer.cs index 9dcb5fd97d52..9849c31008c3 100644 --- a/src/ResourceManager/SignalR/Commands.SignalR/Properties/Resources.Designer.cs +++ b/src/ResourceManager/SignalR/Commands.SignalR/Properties/Resources.Designer.cs @@ -70,7 +70,7 @@ internal static string DefaultResourceGroupKey { } /// - /// Looks up a localized string similar to No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzureRmAccount to login.. + /// Looks up a localized string similar to No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzAccount to login.. /// internal static string NoSubscriptionInContext { get { diff --git a/src/ResourceManager/SignalR/Commands.SignalR/Properties/Resources.resx b/src/ResourceManager/SignalR/Commands.SignalR/Properties/Resources.resx index 940daa079953..4e4114fc81dc 100644 --- a/src/ResourceManager/SignalR/Commands.SignalR/Properties/Resources.resx +++ b/src/ResourceManager/SignalR/Commands.SignalR/Properties/Resources.resx @@ -121,7 +121,7 @@ Default Resource Group - No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzureRmAccount to login. + No subscription found in the context. Please ensure that the credentials you provided are authorized to access an Azure subscription, then run Connect-AzAccount to login. The parameter set could not be determined from the provided parameters. Please check the documentation for appropriate parameters, and report this issue at https://github.com/azure/azure-powershell/issues diff --git a/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/GetAzureSqlDatabaseAdvisors.cs b/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/GetAzureSqlDatabaseAdvisors.cs index f34c187d95a1..fdb4d62e83ed 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/GetAzureSqlDatabaseAdvisors.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/GetAzureSqlDatabaseAdvisors.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.Advisor.Cmdlet { /// - /// Defines the Get-AzureRmSqlDatabaseAdvisors cmdlet + /// Defines the Get-AzSqlDatabaseAdvisors cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseAdvisor")] [OutputType(typeof(AzureSqlDatabaseAdvisorModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/GetAzureSqlElasticPoolAdvisors.cs b/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/GetAzureSqlElasticPoolAdvisors.cs index 02cb3f19cf84..3d8a49dea106 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/GetAzureSqlElasticPoolAdvisors.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/GetAzureSqlElasticPoolAdvisors.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.Advisor.Cmdlet { /// - /// Defines the Get-AzureRmSqlElasticPoolAdvisors cmdlet + /// Defines the Get-AzSqlElasticPoolAdvisors cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlElasticPoolAdvisor")] [OutputType(typeof(AzureSqlElasticPoolAdvisorModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/GetAzureSqlServerAdvisors.cs b/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/GetAzureSqlServerAdvisors.cs index 61834d603f5b..be3893e814f8 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/GetAzureSqlServerAdvisors.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/GetAzureSqlServerAdvisors.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.Advisor.Cmdlet { /// - /// Defines the Get-AzureRmSqlServerAdvisors cmdlet + /// Defines the Get-AzSqlServerAdvisors cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerAdvisor")] [OutputType(typeof(AzureSqlServerAdvisorModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/SetAzureSqlDatabaseAdvisorAutoExecuteStatus.cs b/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/SetAzureSqlDatabaseAdvisorAutoExecuteStatus.cs index 6a9976797d91..4200e998848a 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/SetAzureSqlDatabaseAdvisorAutoExecuteStatus.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/SetAzureSqlDatabaseAdvisorAutoExecuteStatus.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Sql.Advisor.Cmdlet { /// - /// Defines the Set-AzureRmSqlDatabaseAdvisorAutoExecuteStatus cmdlet + /// Defines the Set-AzSqlDatabaseAdvisorAutoExecuteStatus cmdlet /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseAdvisorAutoExecuteStatus",SupportsShouldProcess = true), OutputType(typeof(AzureSqlDatabaseAdvisorModel))] public class SetAzureSqlDatabaseAdvisorAutoExecuteStatus : AzureSqlDatabaseAdvisorCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/SetAzureSqlElasticPoolAdvisorAutoExecuteStatus.cs b/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/SetAzureSqlElasticPoolAdvisorAutoExecuteStatus.cs index cdbe8a0b8235..a483aeb34607 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/SetAzureSqlElasticPoolAdvisorAutoExecuteStatus.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/SetAzureSqlElasticPoolAdvisorAutoExecuteStatus.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Sql.Advisor.Cmdlet { /// - /// Defines the Set-AzureRmSqlElasticPoolAdvisorAutoExecuteStatus cmdlet + /// Defines the Set-AzSqlElasticPoolAdvisorAutoExecuteStatus cmdlet /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlElasticPoolAdvisorAutoExecuteStatus",SupportsShouldProcess = true), OutputType(typeof(AzureSqlElasticPoolAdvisorModel))] public class SetAzureSqlElasticPoolAdvisorAutoExecuteStatus : AzureSqlElasticPoolAdvisorCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/SetAzureSqlServerAdvisorAutoExecuteStatus.cs b/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/SetAzureSqlServerAdvisorAutoExecuteStatus.cs index c3f7fdb1294c..959ad5b620b7 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/SetAzureSqlServerAdvisorAutoExecuteStatus.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Advisor/Cmdlet/SetAzureSqlServerAdvisorAutoExecuteStatus.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Sql.Advisor.Cmdlet { /// - /// Defines the Set-AzureRmSqlServerAdvisorAutoExecuteStatus cmdlet + /// Defines the Set-AzSqlServerAdvisorAutoExecuteStatus cmdlet /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerAdvisorAutoExecuteStatus",SupportsShouldProcess = true), OutputType(typeof(AzureSqlServerAdvisorModel))] public class SetAzureSqlServerAdvisorAutoExecuteStatus : AzureSqlServerAdvisorCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/GetAzureSqlDatabaseAuditingPolicy.cs b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/GetAzureSqlDatabaseAuditingPolicy.cs index aaab7391dced..b4e0de944a8e 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/GetAzureSqlDatabaseAuditingPolicy.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/GetAzureSqlDatabaseAuditingPolicy.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Sql.Auditing.Cmdlet /// Returns the auditing policy of a specific database. /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseAuditingPolicy", SupportsShouldProcess = true), OutputType(typeof(AuditingPolicyModel))] - [Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Get-AzureRmSqlDatabaseAuditing' command to get Blob auditing settings.", false)] + [Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Get-AzSqlDatabaseAuditing' command to get Blob auditing settings.", false)] public class GetAzureSqlDatabaseAuditingPolicy : SqlDatabaseAuditingCmdletBase { /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/GetAzureSqlServerAuditingPolicy.cs b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/GetAzureSqlServerAuditingPolicy.cs index 7669a11ab304..f2c263a8a5db 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/GetAzureSqlServerAuditingPolicy.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/GetAzureSqlServerAuditingPolicy.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.Auditing.Cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerAuditingPolicy", SupportsShouldProcess = true), OutputType(typeof(AuditingPolicyModel))] [Alias("Get-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseServerAuditingPolicy")] - [Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Get-AzureRmSqlServerAuditing' command to get Blob auditing settings.", false)] + [Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Get-AzSqlServerAuditing' command to get Blob auditing settings.", false)] public class GetAzureSqlServerAuditingPolicy : SqlDatabaseServerAuditingCmdletBase { /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/RemoveSqlDatabaseAuditing.cs b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/RemoveSqlDatabaseAuditing.cs index 956bb86f5e1b..409b33901d66 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/RemoveSqlDatabaseAuditing.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/RemoveSqlDatabaseAuditing.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Sql.Auditing.Cmdlet /// Disables auditing on a specific database. /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseAuditing", SupportsShouldProcess = true), OutputType(typeof(AuditingPolicyModel))] - [Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzureRmSqlDatabaseAuditing' command to configure Blob auditing.", false)] + [Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzSqlDatabaseAuditing' command to configure Blob auditing.", false)] public class RemoveSqlDatabaseAuditing : SqlDatabaseAuditingCmdletBase { /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/RemoveSqlServerAuditing.cs b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/RemoveSqlServerAuditing.cs index 4f3ef61cf5a7..95d0451767b0 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/RemoveSqlServerAuditing.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/RemoveSqlServerAuditing.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.Auditing.Cmdlet /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerAuditing", SupportsShouldProcess = true), OutputType(typeof(AuditingPolicyModel))] [Alias("Remove-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseServerAuditing")] - [Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzureRmSqlServerAuditing' command to configure Blob auditing.", false)] + [Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzSqlServerAuditing' command to configure Blob auditing.", false)] public class RemoveSqlServerAuditing : SqlDatabaseServerAuditingCmdletBase { /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlDatabaseAuditingPolicy.cs b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlDatabaseAuditingPolicy.cs index d4c4b03510c0..182ff00576c9 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlDatabaseAuditingPolicy.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlDatabaseAuditingPolicy.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Sql.Auditing.Cmdlet /// Sets the auditing policy properties for a specific database. /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseAuditingPolicy", SupportsShouldProcess = true), OutputType(typeof(AuditingPolicyModel))] - [Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzureRmSqlDatabaseAuditing' command to configure Blob auditing.", false)] + [Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzSqlDatabaseAuditing' command to configure Blob auditing.", false)] public class SetAzureSqlDatabaseAuditingPolicy : SqlDatabaseAuditingCmdletBase { /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlServerAuditingPolicy.cs b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlServerAuditingPolicy.cs index da8ec79e3385..bc9b17d90a87 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlServerAuditingPolicy.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/SetAzureSqlServerAuditingPolicy.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Sql.Auditing.Cmdlet /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerAuditingPolicy", SupportsShouldProcess = true), OutputType(typeof(AuditingPolicyModel))] [Alias("Set-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseServerAuditingPolicy")] - [Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzureRmSqlServerAuditing' command to configure Blob auditing.", false)] + [Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzSqlServerAuditing' command to configure Blob auditing.", false)] public class SetAzureSqlServerAuditingPolicy : SqlDatabaseServerAuditingCmdletBase { /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/UseAzureSqlServerAuditingPolicy.cs b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/UseAzureSqlServerAuditingPolicy.cs index 85665e41149e..8765a18383f6 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/UseAzureSqlServerAuditingPolicy.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Auditing/Cmdlet/UseAzureSqlServerAuditingPolicy.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.Auditing.Cmdlet /// [Cmdlet("Use", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerAuditingPolicy"), OutputType(typeof(AuditingPolicyModel))] [Alias("Use-" + ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseServerAuditingPolicy")] - [Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzureRmSqlDatabaseAuditing' command to configure Blob auditing.", false)] + [Obsolete("Note that Table auditing is deprecated and this command will be removed in a future release. Please use the 'Set-AzSqlDatabaseAuditing' command to configure Blob auditing.", false)] public class UseAzureSqlServerAuditingPolicy : SqlDatabaseAuditingCmdletBase { /// diff --git a/src/ResourceManager/Sql/Commands.Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs b/src/ResourceManager/Sql/Commands.Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs index e36ddbf0d663..9fc8b8be65a5 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Database Backup/Cmdlet/RestoreAzureRMSqlDatabase.cs @@ -189,22 +189,22 @@ public class RestoreAzureRmSqlDatabase ParameterSetName = FromPointInTimeBackupSetName, ValueFromPipelineByPropertyName = true, HelpMessage = "The service level objective to use for the restored database." + - "Refer Get-AzureRmSqlCapability cmdlet to see what ServiceObjectiveNames are valid")] + "Refer Get-AzSqlCapability cmdlet to see what ServiceObjectiveNames are valid")] [Parameter(Mandatory = false, ParameterSetName = FromDeletedDatabaseBackupSetName, ValueFromPipelineByPropertyName = true, HelpMessage = "The service level objective to use for the restored database." + - "Refer Get-AzureRmSqlCapability cmdlet to see what ServiceObjectiveNames are valid")] + "Refer Get-AzSqlCapability cmdlet to see what ServiceObjectiveNames are valid")] [Parameter(Mandatory = false, ParameterSetName = FromGeoBackupSetName, ValueFromPipelineByPropertyName = true, HelpMessage = "The service level objective to use for the restored database." + - "Refer Get-AzureRmSqlCapability cmdlet to see what ServiceObjectiveNames are valid")] + "Refer Get-AzSqlCapability cmdlet to see what ServiceObjectiveNames are valid")] [Parameter(Mandatory = false, ParameterSetName = FromLongTermRetentionBackupSetName, ValueFromPipelineByPropertyName = true, HelpMessage = "The service level objective to use for the restored database." + - "Refer Get-AzureRmSqlCapability cmdlet to see what ServiceObjectiveNames are valid")] + "Refer Get-AzSqlCapability cmdlet to see what ServiceObjectiveNames are valid")] public string ServiceObjectiveName { get; set; } /// diff --git a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/GetAzureSqlServerFirewallRule.cs b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/GetAzureSqlServerFirewallRule.cs index de93ce7a1165..a97924415ec7 100644 --- a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/GetAzureSqlServerFirewallRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/GetAzureSqlServerFirewallRule.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.FirewallRule.Cmdlet { /// - /// Defines the Get-AzureRmSqlServerFirewallRule cmdlet + /// Defines the Get-AzSqlServerFirewallRule cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerFirewallRule", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.None)] [OutputType(typeof(AzureSqlServerFirewallRuleModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/NewAzureSqlServerFirewallRule.cs b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/NewAzureSqlServerFirewallRule.cs index 3ad63e6af0ac..ab3ce30b0469 100644 --- a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/NewAzureSqlServerFirewallRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/NewAzureSqlServerFirewallRule.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Sql.FirewallRule.Cmdlet { /// - /// Defines the Get-AzureRmSqlServerFirewallRule cmdlet + /// Defines the Get-AzSqlServerFirewallRule cmdlet /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerFirewallRule", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low), OutputType(typeof(Model.AzureSqlServerFirewallRuleModel))] public class NewAzureSqlServerFirewallRule : AzureSqlServerFirewallRuleCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/RemoveAzureSqlServerFirewallRule.cs b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/RemoveAzureSqlServerFirewallRule.cs index 07a461af8464..e164ca5528bc 100644 --- a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/RemoveAzureSqlServerFirewallRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/RemoveAzureSqlServerFirewallRule.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.FirewallRule.Cmdlet { /// - /// Defines the Get-AzureRmSqlServerFirewallRule cmdlet + /// Defines the Get-AzSqlServerFirewallRule cmdlet /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerFirewallRule", SupportsShouldProcess = true), OutputType(typeof(Model.AzureSqlServerFirewallRuleModel))] public class RemoveAzureSqlServerFirewallRule : AzureSqlServerFirewallRuleCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/SetAzureSqlServerFirewallRule.cs b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/SetAzureSqlServerFirewallRule.cs index 9d8d1b9a627c..68a31db639d8 100644 --- a/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/SetAzureSqlServerFirewallRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/FirewallRule/Cmdlet/SetAzureSqlServerFirewallRule.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.FirewallRule.Cmdlet { /// - /// Defines the Get-AzureRmSqlServerFirewallRule cmdlet + /// Defines the Get-AzSqlServerFirewallRule cmdlet /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerFirewallRule", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low), OutputType(typeof(Model.AzureSqlServerFirewallRuleModel))] public class SetAzureSqlServerFirewallRule : AzureSqlServerFirewallRuleCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/Index Recommendations/Cmdlet/GetAzureSqlDatabaseIndexRecommendations.cs b/src/ResourceManager/Sql/Commands.Sql/Index Recommendations/Cmdlet/GetAzureSqlDatabaseIndexRecommendations.cs index 0a35e32c8b32..0520f46d6940 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Index Recommendations/Cmdlet/GetAzureSqlDatabaseIndexRecommendations.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Index Recommendations/Cmdlet/GetAzureSqlDatabaseIndexRecommendations.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Sql.Cmdlet { /// - /// Defines the Get-AzureRmSqlDatabaseIndexRecommendations cmdlet + /// Defines the Get-AzSqlDatabaseIndexRecommendations cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseIndexRecommendations", ConfirmImpact = ConfirmImpact.None, SupportsShouldProcess = true)] [OutputType(typeof(IndexRecommendation))] diff --git a/src/ResourceManager/Sql/Commands.Sql/Index Recommendations/Cmdlet/StartAzureSqlDatabaseExecuteIndexRecommendation.cs b/src/ResourceManager/Sql/Commands.Sql/Index Recommendations/Cmdlet/StartAzureSqlDatabaseExecuteIndexRecommendation.cs index 76bd4e84f8a1..f280ab2900eb 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Index Recommendations/Cmdlet/StartAzureSqlDatabaseExecuteIndexRecommendation.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Index Recommendations/Cmdlet/StartAzureSqlDatabaseExecuteIndexRecommendation.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.Cmdlet { /// - /// Defines the Start-AzureRmSqlDatabaseExecuteIndexRecommendation cmdlet + /// Defines the Start-AzSqlDatabaseExecuteIndexRecommendation cmdlet /// [Cmdlet("Start", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseExecuteIndexRecommendation",ConfirmImpact = ConfirmImpact.Low), OutputType(typeof(IndexRecommendation))] public class StartAzureSqlDatabaseExecuteIndexRecommendation : AzureSqlDatabaseExecuteIndexRecommendationCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/Index Recommendations/Cmdlet/StopAzureSqlDatabaseExecuteIndexRecommendation.cs b/src/ResourceManager/Sql/Commands.Sql/Index Recommendations/Cmdlet/StopAzureSqlDatabaseExecuteIndexRecommendation.cs index 9695a16f4fb7..cc2841496ad6 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Index Recommendations/Cmdlet/StopAzureSqlDatabaseExecuteIndexRecommendation.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Index Recommendations/Cmdlet/StopAzureSqlDatabaseExecuteIndexRecommendation.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.Cmdlet { /// - /// Defines the Stop-AzureRmSqlDatabaseExecuteIndexRecommendation cmdlet + /// Defines the Stop-AzSqlDatabaseExecuteIndexRecommendation cmdlet /// [Cmdlet("Stop", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseExecuteIndexRecommendation",ConfirmImpact = ConfirmImpact.Low), OutputType(typeof(IndexRecommendation))] public class StopAzureSqlDatabaseExecuteIndexRecommendation : AzureSqlDatabaseExecuteIndexRecommendationCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlCapability.cs b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlCapability.cs index c1914859a44f..fda6458c9970 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlCapability.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Location Capabilities/Cmdlet/GetAzureSqlCapability.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.Location_Capabilities.Cmdlet { /// - /// Defines the Get-AzureRmSqlCapability cmdlet + /// Defines the Get-AzSqlCapability cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlCapability",ConfirmImpact = ConfirmImpact.None,DefaultParameterSetName = _filtered, SupportsShouldProcess = true)] [OutputType(typeof(LocationCapabilityModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/GetAzureSqlManagedInstance.cs b/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/GetAzureSqlManagedInstance.cs index b00f5b5aa16c..1ff2bc405e85 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/GetAzureSqlManagedInstance.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/GetAzureSqlManagedInstance.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Sql.ManagedInstance.Cmdlet { /// - /// Defines the Get-AzureRmSqlInstance cmdlet + /// Defines the Get-AzSqlInstance cmdlet /// [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstance", DefaultParameterSetName = GetByResourceGroupParameterSet), diff --git a/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs b/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs index 4e775c836989..863ac3ab9b6a 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/NewAzureSqlManagedInstance.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Commands.Sql.ManagedInstance.Cmdlet { /// - /// Defines the New-AzureRmSqlInstance cmdlet + /// Defines the New-AzSqlInstance cmdlet /// [Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstance", DefaultParameterSetName = NewByEditionAndComputeGenerationParameterSet, diff --git a/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/RemoveAzureSqlManagedInstance.cs b/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/RemoveAzureSqlManagedInstance.cs index 0f16f95296b1..dd9fa5ae7680 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/RemoveAzureSqlManagedInstance.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/RemoveAzureSqlManagedInstance.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Sql.ManagedInstance.Cmdlet { /// - /// Defines the Get-AzureRmSqlInstance cmdlet + /// Defines the Get-AzSqlInstance cmdlet /// [Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstance", DefaultParameterSetName = RemoveByNameAndResourceGroupParameterSet, diff --git a/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/SetAzureSqlManagedInstance.cs b/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/SetAzureSqlManagedInstance.cs index ae9ca5a30504..4dc5914c7ac1 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/SetAzureSqlManagedInstance.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ManagedInstance/Cmdlet/SetAzureSqlManagedInstance.cs @@ -27,7 +27,7 @@ namespace Microsoft.Azure.Commands.Sql.ManagedInstance.Cmdlet { /// - /// Defines the Set-AzureRmSqlInstance cmdlet + /// Defines the Set-AzSqlInstance cmdlet /// [Cmdlet(VerbsCommon.Set, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlInstance", DefaultParameterSetName = SetByNameAndResourceGroupParameterSet, diff --git a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs index b6f2f416428b..518761c9f4cb 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.Designer.cs @@ -61,7 +61,7 @@ internal Resources() { } /// - /// Looks up a localized string similar to More than one Active Directory group with the display name '{0}' was found. Please provide an Azure Active Directory object id to select the correct group. To get the object id use Get-AzureRmADGroup -SearchString "{0}". + /// Looks up a localized string similar to More than one Active Directory group with the display name '{0}' was found. Please provide an Azure Active Directory object id to select the correct group. To get the object id use Get-AzADGroup -SearchString "{0}". /// internal static string ADGroupMoreThanOneFound { get { @@ -70,7 +70,7 @@ internal static string ADGroupMoreThanOneFound { } /// - /// Looks up a localized string similar to Cannot find the Azure Active Directory object '{0}'. Please make sure that the user or group you are authorizing is registered in the current subscription's Azure Active directory. To get a list of Azure Active Directory groups use Get-AzureRmADGroup, or to get a list of Azure Active Directory users use Get-AzureRmADUser.. + /// Looks up a localized string similar to Cannot find the Azure Active Directory object '{0}'. Please make sure that the user or group you are authorizing is registered in the current subscription's Azure Active directory. To get a list of Azure Active Directory groups use Get-AzADGroup, or to get a list of Azure Active Directory users use Get-AzADUser.. /// internal static string ADObjectNotFound { get { @@ -79,7 +79,7 @@ internal static string ADObjectNotFound { } /// - /// Looks up a localized string similar to More than one Azure Active Directory user with the display name '{0}' was found. Please provide an Azure Active Directory object id to select the correct user. To get the object id use Get-AzureRmADUser -SearchString "{0}". + /// Looks up a localized string similar to More than one Azure Active Directory user with the display name '{0}' was found. Please provide an Azure Active Directory object id to select the correct user. To get the object id use Get-AzADUser -SearchString "{0}". /// internal static string ADUserMoreThanOneFound { get { @@ -304,7 +304,7 @@ internal static string InvalidExcludedDetectionTypeSet { } /// - /// Looks up a localized string similar to Please use Set-AzureRmEnvironment to set a valid GraphEndpoint for the current AzureEnvironment.. + /// Looks up a localized string similar to Please use Set-AzEnvironment to set a valid GraphEndpoint for the current AzureEnvironment.. /// internal static string InvalidGraphEndpoint { get { @@ -709,7 +709,7 @@ internal static string RetrievingStorageAccountKeysFailed { } /// - /// Looks up a localized string similar to Vulnerability assessment settings are not defined. Please run Update-AzureRmSqlDatabaseVulnerabilityAssessmentSettings first.. + /// Looks up a localized string similar to Vulnerability assessment settings are not defined. Please run Update-AzSqlDatabaseVulnerabilityAssessmentSettings first.. /// internal static string RunSetVulnerabilityAssemenSettings { get { @@ -718,7 +718,7 @@ internal static string RunSetVulnerabilityAssemenSettings { } /// - /// Looks up a localized string similar to ScanId is a required parameter for this cmdlet. Please explicitly provide it or pass the Get-AzureRmSqlDatabaseVulnerabilityAssessmentScanRecord output via pipe.. + /// Looks up a localized string similar to ScanId is a required parameter for this cmdlet. Please explicitly provide it or pass the Get-AzSqlDatabaseVulnerabilityAssessmentScanRecord output via pipe.. /// internal static string ScanIdParameterIsRequired { get { @@ -727,7 +727,7 @@ internal static string ScanIdParameterIsRequired { } /// - /// Looks up a localized string similar to Server Advanced Threat Protection is not defined. Please run Enable-AzureRmSqlServerAdvancedThreatProtection first.. + /// Looks up a localized string similar to Server Advanced Threat Protection is not defined. Please run Enable-AzSqlServerAdvancedThreatProtection first.. /// internal static string ServerAdvancedThreatProtectionIsNotDefined { get { diff --git a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx index 8248c703601e..e7b9aeaaca5c 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx +++ b/src/ResourceManager/Sql/Commands.Sql/Properties/Resources.resx @@ -118,13 +118,13 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - More than one Active Directory group with the display name '{0}' was found. Please provide an Azure Active Directory object id to select the correct group. To get the object id use Get-AzureRmADGroup -SearchString "{0}" + More than one Active Directory group with the display name '{0}' was found. Please provide an Azure Active Directory object id to select the correct group. To get the object id use Get-AzADGroup -SearchString "{0}" - Cannot find the Azure Active Directory object '{0}'. Please make sure that the user or group you are authorizing is registered in the current subscription's Azure Active directory. To get a list of Azure Active Directory groups use Get-AzureRmADGroup, or to get a list of Azure Active Directory users use Get-AzureRmADUser. + Cannot find the Azure Active Directory object '{0}'. Please make sure that the user or group you are authorizing is registered in the current subscription's Azure Active directory. To get a list of Azure Active Directory groups use Get-AzADGroup, or to get a list of Azure Active Directory users use Get-AzADUser. - More than one Azure Active Directory user with the display name '{0}' was found. Please provide an Azure Active Directory object id to select the correct user. To get the object id use Get-AzureRmADUser -SearchString "{0}" + More than one Azure Active Directory user with the display name '{0}' was found. Please provide an Azure Active Directory object id to select the correct user. To get the object id use Get-AzADUser -SearchString "{0}" Database with name: '{0}' already exists in server '{1}'. @@ -160,7 +160,7 @@ Cannot use the None option with other event types. - Please use Set-AzureRmEnvironment to set a valid GraphEndpoint for the current AzureEnvironment. + Please use Set-AzEnvironment to set a valid GraphEndpoint for the current AzureEnvironment. Cannot use audit table retention without specifying TableIdentifier. You may want to use '{0}'. @@ -409,10 +409,10 @@ Are you sure you want to remove the Long Term Retention backup '{0}' on database '{1}' on server '{2}' in location '{3}'? - Server Advanced Threat Protection is not defined. Please run Enable-AzureRmSqlServerAdvancedThreatProtection first. + Server Advanced Threat Protection is not defined. Please run Enable-AzSqlServerAdvancedThreatProtection first. - Vulnerability assessment settings are not defined. Please run Update-AzureRmSqlDatabaseVulnerabilityAssessmentSettings first. + Vulnerability assessment settings are not defined. Please run Update-AzSqlDatabaseVulnerabilityAssessmentSettings first. Invalid BlobStorageSasUri parameter value. The value should be in format of https://mystorage.blob.core.windows.net/vulnerability-assessment?st=XXXXXX." @@ -421,7 +421,7 @@ Please provide valid value for StorageAccountName or BlobStorageSasUri parameter. - ScanId is a required parameter for this cmdlet. Please explicitly provide it or pass the Get-AzureRmSqlDatabaseVulnerabilityAssessmentScanRecord output via pipe. + ScanId is a required parameter for this cmdlet. Please explicitly provide it or pass the Get-AzSqlDatabaseVulnerabilityAssessmentScanRecord output via pipe. Failed retrieving id of storage account '{0}' under subscription '{1}'. diff --git a/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/GetAzureSqlDatabaseRecommendedActions.cs b/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/GetAzureSqlDatabaseRecommendedActions.cs index 3cefe1f845ab..147270594463 100644 --- a/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/GetAzureSqlDatabaseRecommendedActions.cs +++ b/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/GetAzureSqlDatabaseRecommendedActions.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet { /// - /// Defines the Get-AzureRmSqlDatabaseRecommendedActions cmdlet + /// Defines the Get-AzSqlDatabaseRecommendedActions cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseRecommendedAction")] [OutputType(typeof(AzureSqlDatabaseRecommendedActionModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/GetAzureSqlElasticPoolRecommendedActions.cs b/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/GetAzureSqlElasticPoolRecommendedActions.cs index b410fafb7428..d3bf9a9d730f 100644 --- a/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/GetAzureSqlElasticPoolRecommendedActions.cs +++ b/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/GetAzureSqlElasticPoolRecommendedActions.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet { /// - /// Defines the Get-AzureRmSqlElasticPoolRecommendedActions cmdlet + /// Defines the Get-AzSqlElasticPoolRecommendedActions cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlElasticPoolRecommendedAction")] [OutputType(typeof(AzureSqlElasticPoolRecommendedActionModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/GetAzureSqlServerRecommendedActions.cs b/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/GetAzureSqlServerRecommendedActions.cs index 9c53e94237b3..3b16d049af9b 100644 --- a/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/GetAzureSqlServerRecommendedActions.cs +++ b/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/GetAzureSqlServerRecommendedActions.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet { /// - /// Defines the Get-AzureRmSqlServerRecommendedActions cmdlet + /// Defines the Get-AzSqlServerRecommendedActions cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerRecommendedAction")] [OutputType(typeof(AzureSqlServerRecommendedActionModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/SetAzureSqlDatabaseRecommendedActionState.cs b/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/SetAzureSqlDatabaseRecommendedActionState.cs index 12feb9e6a6cd..a5630b5f2735 100644 --- a/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/SetAzureSqlDatabaseRecommendedActionState.cs +++ b/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/SetAzureSqlDatabaseRecommendedActionState.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet { /// - /// Defines the Set-AzureRmSqlDatabaseRecommendedActionState cmdlet + /// Defines the Set-AzSqlDatabaseRecommendedActionState cmdlet /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseRecommendedActionState",SupportsShouldProcess = true), OutputType(typeof(AzureSqlDatabaseRecommendedActionModel))] public class SetAzureSqlDatabaseRecommendedActionState : AzureSqlDatabaseRecommendedActionCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/SetAzureSqlElasticPoolRecommendedActionState.cs b/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/SetAzureSqlElasticPoolRecommendedActionState.cs index 530315082368..0f80dad13e81 100644 --- a/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/SetAzureSqlElasticPoolRecommendedActionState.cs +++ b/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/SetAzureSqlElasticPoolRecommendedActionState.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet { /// - /// Defines the Set-AzureRmSqlElasticPoolRecommendedActionState cmdlet + /// Defines the Set-AzSqlElasticPoolRecommendedActionState cmdlet /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlElasticPoolRecommendedActionState",SupportsShouldProcess = true), OutputType(typeof(AzureSqlElasticPoolRecommendedActionModel))] public class SetAzureSqlElasticPoolRecommendedActionState : AzureSqlElasticPoolRecommendedActionCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/SetAzureSqlServerRecommendedActionState.cs b/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/SetAzureSqlServerRecommendedActionState.cs index 42724cdb2950..c18536d9a328 100644 --- a/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/SetAzureSqlServerRecommendedActionState.cs +++ b/src/ResourceManager/Sql/Commands.Sql/RecommendedAction/Cmdlet/SetAzureSqlServerRecommendedActionState.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Sql.RecommendedAction.Cmdlet { /// - /// Defines the Set-AzureRmSqlServerRecommendedActionState cmdlet + /// Defines the Set-AzSqlServerRecommendedActionState cmdlet /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerRecommendedActionState",SupportsShouldProcess = true), OutputType(typeof(AzureSqlServerRecommendedActionModel))] public class SetAzureSqlServerRecommendedActionState : AzureSqlServerRecommendedActionCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/GetAzureSqlServer.cs b/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/GetAzureSqlServer.cs index e54885c6b965..2eaba131c98b 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/GetAzureSqlServer.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/GetAzureSqlServer.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Sql.Server.Cmdlet { /// - /// Defines the Get-AzureRmSqlServer cmdlet + /// Defines the Get-AzSqlServer cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServer", ConfirmImpact = ConfirmImpact.None, SupportsShouldProcess = true)] [OutputType(typeof(AzureSqlServerModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/NewAzureSqlServer.cs b/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/NewAzureSqlServer.cs index f14dcd6ca064..9ac7986e5a36 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/NewAzureSqlServer.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/NewAzureSqlServer.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.Sql.Server.Cmdlet { /// - /// Defines the Get-AzureRmSqlServer cmdlet + /// Defines the Get-AzSqlServer cmdlet /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServer",ConfirmImpact = ConfirmImpact.Low, SupportsShouldProcess = true), OutputType(typeof(Model.AzureSqlServerModel))] public class NewAzureSqlServer : AzureSqlServerCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/RemoveAzureSqlServer.cs b/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/RemoveAzureSqlServer.cs index 421fdf8c8223..4dbd62c478ee 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/RemoveAzureSqlServer.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/RemoveAzureSqlServer.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Sql.Server.Cmdlet { /// - /// Defines the Get-AzureRmSqlDatabaseServer cmdlet + /// Defines the Get-AzSqlDatabaseServer cmdlet /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServer", SupportsShouldProcess = true), OutputType(typeof(Model.AzureSqlServerModel))] public class RemoveAzureSqlServer : AzureSqlServerCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/SetAzureSqlServer.cs b/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/SetAzureSqlServer.cs index 58b931eccd34..7aed4da46730 100644 --- a/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/SetAzureSqlServer.cs +++ b/src/ResourceManager/Sql/Commands.Sql/Server/Cmdlet/SetAzureSqlServer.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Commands.Sql.Server.Cmdlet { /// - /// Defines the Get-AzureRmSqlServer cmdlet + /// Defines the Get-AzSqlServer cmdlet /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServer", SupportsShouldProcess = true,ConfirmImpact = ConfirmImpact.Medium), OutputType(typeof(Model.AzureSqlServerModel))] public class SetAzureSqlServer : AzureSqlServerCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/ServerDnsAlias/Cmdlet/GetAzureSqlServerDnsAlias.cs b/src/ResourceManager/Sql/Commands.Sql/ServerDnsAlias/Cmdlet/GetAzureSqlServerDnsAlias.cs index 2150d35921f3..8981739bd222 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServerDnsAlias/Cmdlet/GetAzureSqlServerDnsAlias.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServerDnsAlias/Cmdlet/GetAzureSqlServerDnsAlias.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.ServerDnsAlias.Cmdlet { /// - /// Defines the Get-AzureRmSqlServerDnsAlias cmdlet + /// Defines the Get-AzSqlServerDnsAlias cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerDnsAlias", SupportsShouldProcess = true)] [OutputType(typeof(AzureSqlServerDnsAliasModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/ServerDnsAlias/Cmdlet/NewAzureSqlServerDnsAlias.cs b/src/ResourceManager/Sql/Commands.Sql/ServerDnsAlias/Cmdlet/NewAzureSqlServerDnsAlias.cs index 1c79e22c806d..0f1760dba34b 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServerDnsAlias/Cmdlet/NewAzureSqlServerDnsAlias.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServerDnsAlias/Cmdlet/NewAzureSqlServerDnsAlias.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Sql.ServerDnsAlias.Cmdlet { /// - /// Defines the New-AzureRmSqlServerDnsAlias cmdlet + /// Defines the New-AzSqlServerDnsAlias cmdlet /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerDnsAlias", SupportsShouldProcess = true)] [OutputType(typeof(Model.AzureSqlServerDnsAliasModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/ServerDnsAlias/Cmdlet/SetAzureSqlServerDnsAlias.cs b/src/ResourceManager/Sql/Commands.Sql/ServerDnsAlias/Cmdlet/SetAzureSqlServerDnsAlias.cs index c872c77fbca4..dc101dc8db42 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServerDnsAlias/Cmdlet/SetAzureSqlServerDnsAlias.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServerDnsAlias/Cmdlet/SetAzureSqlServerDnsAlias.cs @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Commands.Sql.ServerDnsAlias.Cmdlet { /// - /// Defines the Set-AzureRmSqlServerDnsAlias cmdlet + /// Defines the Set-AzSqlServerDnsAlias cmdlet /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerDnsAlias",SupportsShouldProcess = true)] [OutputType(typeof(Model.AzureSqlServerDnsAliasModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/ServerKeyVaultKey/Cmdlet/AddAzureSqlServerKeyVaultKey.cs b/src/ResourceManager/Sql/Commands.Sql/ServerKeyVaultKey/Cmdlet/AddAzureSqlServerKeyVaultKey.cs index 57ba2f68576d..ad4f5ba56e28 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServerKeyVaultKey/Cmdlet/AddAzureSqlServerKeyVaultKey.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServerKeyVaultKey/Cmdlet/AddAzureSqlServerKeyVaultKey.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Cmdlet { /// - /// Defines the Add-AzureRmSqlServerKeyVaultKey cmdlet + /// Defines the Add-AzSqlServerKeyVaultKey cmdlet /// [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerKeyVaultKey", ConfirmImpact = ConfirmImpact.Low,SupportsShouldProcess = true)] [OutputType(typeof(AzureSqlServerKeyVaultKeyModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/ServerKeyVaultKey/Cmdlet/GetAzureSqlServerKeyVaultKey.cs b/src/ResourceManager/Sql/Commands.Sql/ServerKeyVaultKey/Cmdlet/GetAzureSqlServerKeyVaultKey.cs index de9ade881164..5d3c56f26679 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServerKeyVaultKey/Cmdlet/GetAzureSqlServerKeyVaultKey.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServerKeyVaultKey/Cmdlet/GetAzureSqlServerKeyVaultKey.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Cmdlet { /// - /// Defines the Get-AzureRmSqlServerKeyVaultKey cmdlet + /// Defines the Get-AzSqlServerKeyVaultKey cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerKeyVaultKey", ConfirmImpact = ConfirmImpact.None, SupportsShouldProcess = true)] [OutputType(typeof(AzureSqlServerKeyVaultKeyModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/ServerKeyVaultKey/Cmdlet/RemoveAzureSqlServerKeyVaultKey.cs b/src/ResourceManager/Sql/Commands.Sql/ServerKeyVaultKey/Cmdlet/RemoveAzureSqlServerKeyVaultKey.cs index d1cf4203ce60..5fb59d906f7f 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServerKeyVaultKey/Cmdlet/RemoveAzureSqlServerKeyVaultKey.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServerKeyVaultKey/Cmdlet/RemoveAzureSqlServerKeyVaultKey.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Sql.ServerKeyVaultKey.Cmdlet { /// - /// Defines the Remove-AzureRmSqlServerKeyVaultKey cmdlet + /// Defines the Remove-AzSqlServerKeyVaultKey cmdlet /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerKeyVaultKey", SupportsShouldProcess = true), OutputType(typeof(AzureSqlServerKeyVaultKeyModel))] public class RemoveAzureSqlServerKeyVaultKey : AzureSqlServerKeyVaultKeyCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/GetAzureSqlServerUpgrade.cs b/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/GetAzureSqlServerUpgrade.cs index 2ea7afc6482e..6a1902014596 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/GetAzureSqlServerUpgrade.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/GetAzureSqlServerUpgrade.cs @@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Sql.ServerUpgrade.Cmdlet { /// - /// Defines the Get-AzureRmSqlServerUpgrade cmdlet + /// Defines the Get-AzSqlServerUpgrade cmdlet /// [CmdletDeprecation(ChangeDescription = "All Azure SQL DB Servers now have version 12.0 so there is nothing to upgrade.")] [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerUpgrade", ConfirmImpact = ConfirmImpact.None, SupportsShouldProcess = true)] diff --git a/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/StartAzureSqlServerUpgrade.cs b/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/StartAzureSqlServerUpgrade.cs index dddcc722c9cd..e6bd72452889 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/StartAzureSqlServerUpgrade.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/StartAzureSqlServerUpgrade.cs @@ -23,7 +23,7 @@ namespace Microsoft.Azure.Commands.Sql.ServerUpgrade.Cmdlet { /// - /// Defines the Start-AzureRmSqlServerUpgrade cmdlet + /// Defines the Start-AzSqlServerUpgrade cmdlet /// [CmdletDeprecation(ChangeDescription = "All Azure SQL DB Servers now have version 12.0 so there is nothing to upgrade.")] [Cmdlet("Start", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerUpgrade",ConfirmImpact = ConfirmImpact.Low), OutputType(typeof(AzureSqlServerUpgradeStartModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/StopAzureSqlServerUpgrade.cs b/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/StopAzureSqlServerUpgrade.cs index 1e3e82ef746b..bad45a6861ba 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/StopAzureSqlServerUpgrade.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServerUpgrade/Cmdlet/StopAzureSqlServerUpgrade.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Sql.ServerUpgrade.Cmdlet { /// - /// Defines the Get-AzureRmSqlDatabaseServer cmdlet + /// Defines the Get-AzSqlDatabaseServer cmdlet /// [CmdletDeprecation(ChangeDescription = "All Azure SQL DB Servers now have version 12.0 so there is nothing to upgrade.")] [Cmdlet("Stop", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerUpgrade", SupportsShouldProcess = true), OutputType(typeof(AzureSqlServerUpgradeModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/ServiceObjective/Cmdlet/GetAzureSqlServerServiceObjective.cs b/src/ResourceManager/Sql/Commands.Sql/ServiceObjective/Cmdlet/GetAzureSqlServerServiceObjective.cs index aa1a2467d109..77829e3f9064 100644 --- a/src/ResourceManager/Sql/Commands.Sql/ServiceObjective/Cmdlet/GetAzureSqlServerServiceObjective.cs +++ b/src/ResourceManager/Sql/Commands.Sql/ServiceObjective/Cmdlet/GetAzureSqlServerServiceObjective.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.ServiceObjective.Cmdlet { /// - /// Defines the Get-AzureRmSqlDatabaseServer cmdlet + /// Defines the Get-AzSqlDatabaseServer cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerServiceObjective", ConfirmImpact = ConfirmImpact.None, SupportsShouldProcess = true)] [OutputType(typeof(AzureSqlServerServiceObjectiveModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/AddAzureRmSqlManagedInstanceTransparentDataEncryptionCertificate.cs b/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/AddAzureRmSqlManagedInstanceTransparentDataEncryptionCertificate.cs index 307a5c54e6b7..c296bfca7952 100644 --- a/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/AddAzureRmSqlManagedInstanceTransparentDataEncryptionCertificate.cs +++ b/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/AddAzureRmSqlManagedInstanceTransparentDataEncryptionCertificate.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Cmdlet { /// - /// Defines the Add-AzureRmSqlManagedInstanceTransparentDataEncryptionCertificate cmdlet + /// Defines the Add-AzSqlManagedInstanceTransparentDataEncryptionCertificate cmdlet /// [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlManagedInstanceTransparentDataEncryptionCertificate", ConfirmImpact = ConfirmImpact.Low, SupportsShouldProcess = true)] [OutputType(typeof(bool))] diff --git a/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/AddAzureRmSqlServerTransparentDataEncryptionCertificate.cs b/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/AddAzureRmSqlServerTransparentDataEncryptionCertificate.cs index b535b09716ae..365b4884409b 100644 --- a/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/AddAzureRmSqlServerTransparentDataEncryptionCertificate.cs +++ b/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/AddAzureRmSqlServerTransparentDataEncryptionCertificate.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Cmdlet { /// - /// Defines the Add-AzureRmSqlServerTransparentDataEncryptionCertificate cmdlet + /// Defines the Add-AzSqlServerTransparentDataEncryptionCertificate cmdlet /// [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerTransparentDataEncryptionCertificate", ConfirmImpact = ConfirmImpact.Low, SupportsShouldProcess = true, DefaultParameterSetName = DefaultParameterSet)] [OutputType(typeof(bool))] diff --git a/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/GetAzureSqlDatabaseTransparentDataEncryption.cs b/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/GetAzureSqlDatabaseTransparentDataEncryption.cs index 4e05c943da51..2efba5eb620c 100644 --- a/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/GetAzureSqlDatabaseTransparentDataEncryption.cs +++ b/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/GetAzureSqlDatabaseTransparentDataEncryption.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Cmdlet { /// - /// Defines the Get-AzureRmSqlDatabaseTransparentDataEncryption cmdlet + /// Defines the Get-AzSqlDatabaseTransparentDataEncryption cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseTransparentDataEncryption", ConfirmImpact = ConfirmImpact.None, SupportsShouldProcess = true)] [OutputType(typeof(AzureSqlDatabaseTransparentDataEncryptionModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/GetAzureSqlDatabaseTransparentDataEncryptionActivity.cs b/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/GetAzureSqlDatabaseTransparentDataEncryptionActivity.cs index 9553b86af196..86883a0388ef 100644 --- a/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/GetAzureSqlDatabaseTransparentDataEncryptionActivity.cs +++ b/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/GetAzureSqlDatabaseTransparentDataEncryptionActivity.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Cmdlet { /// - /// Defines the Get-AzureRmSqlDatabaseTransparentDataEncryption cmdlet + /// Defines the Get-AzSqlDatabaseTransparentDataEncryption cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseTransparentDataEncryptionActivity", ConfirmImpact = ConfirmImpact.None, SupportsShouldProcess = true)] [OutputType(typeof(AzureSqlDatabaseTransparentDataEncryptionActivityModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/GetAzureSqlServerTransparentDataEncryptionProtector.cs b/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/GetAzureSqlServerTransparentDataEncryptionProtector.cs index 83ee58ef4853..5c8fb2921cda 100644 --- a/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/GetAzureSqlServerTransparentDataEncryptionProtector.cs +++ b/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/GetAzureSqlServerTransparentDataEncryptionProtector.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Cmdlet { /// - /// Defines the Get-AzureRmSqlServerTransparentDataEncryptionProtector cmdlet + /// Defines the Get-AzSqlServerTransparentDataEncryptionProtector cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerTransparentDataEncryptionProtector", ConfirmImpact = ConfirmImpact.None, SupportsShouldProcess = true)] [OutputType(typeof(AzureSqlServerTransparentDataEncryptionProtectorModel))] diff --git a/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/SetAzureSqlDatabaseTransparentDataEncryption.cs b/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/SetAzureSqlDatabaseTransparentDataEncryption.cs index 2707659825af..0bd1755c788e 100644 --- a/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/SetAzureSqlDatabaseTransparentDataEncryption.cs +++ b/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/SetAzureSqlDatabaseTransparentDataEncryption.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Cmdlet { /// - /// Defines the Get-AzureRmSqlDatabaseTransparentDataEncryption cmdlet + /// Defines the Get-AzSqlDatabaseTransparentDataEncryption cmdlet /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlDatabaseTransparentDataEncryption", ConfirmImpact = ConfirmImpact.Low, SupportsShouldProcess = true), OutputType(typeof(AzureSqlDatabaseTransparentDataEncryptionModel))] public class SetAzureSqlDatabaseTransparentDataEncryption : AzureSqlDatabaseTransparentDataEncryptionCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/SetAzureSqlServerTransparentDataEncryptionProtector.cs b/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/SetAzureSqlServerTransparentDataEncryptionProtector.cs index c6bbf3fcd2b2..018da7fb736a 100644 --- a/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/SetAzureSqlServerTransparentDataEncryptionProtector.cs +++ b/src/ResourceManager/Sql/Commands.Sql/TransparentDataEncryption/Cmdlet/SetAzureSqlServerTransparentDataEncryptionProtector.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Sql.TransparentDataEncryption.Cmdlet { /// - /// Defines the Set-AzureRmSqlServerTransparentDataEncryptionProtector cmdlet + /// Defines the Set-AzSqlServerTransparentDataEncryptionProtector cmdlet /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerTransparentDataEncryptionProtector", SupportsShouldProcess = true), OutputType(typeof(AzureSqlServerTransparentDataEncryptionProtectorModel))] public class SetAzureSqlServerTransparentDataEncryptionProtector : AzureSqlServerTransparentDataEncryptionProtectorCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/GetAzureSqlServerVirtualNetworkRule.cs b/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/GetAzureSqlServerVirtualNetworkRule.cs index 27a78c71a205..1c7d81964cfd 100644 --- a/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/GetAzureSqlServerVirtualNetworkRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/GetAzureSqlServerVirtualNetworkRule.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Cmdlet { /// - /// Defines the Get-AzureRmSqlServerVirtualNetworkRule cmdlet + /// Defines the Get-AzSqlServerVirtualNetworkRule cmdlet /// [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerVirtualNetworkRule"),OutputType(typeof(Model.AzureSqlServerVirtualNetworkRuleModel))] public class GetAzureSqlServerVirtualNetworkRule : AzureSqlServerVirtualNetworkRuleCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/NewAzureSqlServerVirtualNetworkRule.cs b/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/NewAzureSqlServerVirtualNetworkRule.cs index 5d8712c70852..f2e7d8856c02 100644 --- a/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/NewAzureSqlServerVirtualNetworkRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/NewAzureSqlServerVirtualNetworkRule.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Cmdlet { /// - /// Defines the New-AzureRmSqlServerVirtualNetworkRule cmdlet + /// Defines the New-AzSqlServerVirtualNetworkRule cmdlet /// [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerVirtualNetworkRule", ConfirmImpact = ConfirmImpact.Low, SupportsShouldProcess = true),OutputType(typeof(Model.AzureSqlServerVirtualNetworkRuleModel))] public class NewAzureSqlServerVirtualNetworkRule : AzureSqlServerVirtualNetworkRuleCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/RemoveAzureSqlServerVirtualNetworkRule.cs b/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/RemoveAzureSqlServerVirtualNetworkRule.cs index e944363bc560..eac26bb7c5d3 100644 --- a/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/RemoveAzureSqlServerVirtualNetworkRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/RemoveAzureSqlServerVirtualNetworkRule.cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Cmdlet { /// - /// Defines the Remove-AzureRmSqlServerVirtualNetworkRule cmdlet + /// Defines the Remove-AzSqlServerVirtualNetworkRule cmdlet /// [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerVirtualNetworkRule", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium),OutputType(typeof(Model.AzureSqlServerVirtualNetworkRuleModel))] public class RemoveAzureSqlServerVirtualNetworkRule : AzureSqlServerVirtualNetworkRuleCmdletBase diff --git a/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/SetAzureSqlServerVirtualNetworkRule.cs b/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/SetAzureSqlServerVirtualNetworkRule.cs index d8f1f75e0a3c..e153604a7d2c 100644 --- a/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/SetAzureSqlServerVirtualNetworkRule.cs +++ b/src/ResourceManager/Sql/Commands.Sql/VirtualNetworkRule/Cmdlet/SetAzureSqlServerVirtualNetworkRule.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Commands.Sql.VirtualNetworkRule.Cmdlet { /// - /// Defines the Set-AzureRmSqlServerVirtualNetworkRule cmdlet + /// Defines the Set-AzSqlServerVirtualNetworkRule cmdlet /// [Cmdlet("Set", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SqlServerVirtualNetworkRule", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium),OutputType(typeof(Model.AzureSqlServerVirtualNetworkRuleModel))] public class SetAzureSqlServerVirtualNetworkRule : AzureSqlServerVirtualNetworkRuleCmdletBase diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/SetAzureWebAppSlot.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/SetAzureWebAppSlot.cs index 391610ea7cd9..2e3a8b095426 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/SetAzureWebAppSlot.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/DeploymentSlots/SetAzureWebAppSlot.cs @@ -119,7 +119,7 @@ public class SetAzureWebAppSlotCmdlet : WebAppSlotBaseCmdlet [Parameter(ParameterSetName = ParameterSet1Name, Mandatory = false, HelpMessage = "Enable/disable redirecting all traffic to HTTPS on an existing azure webapp")] public bool HttpsOnly { get; set; } - [Parameter(ParameterSetName = ParameterSet1Name, Mandatory = false, HelpMessage = "Azure Storage to mount inside a Web App for Container. Use New-AzureRmWebAppAzureStoragePath to create it")] + [Parameter(ParameterSetName = ParameterSet1Name, Mandatory = false, HelpMessage = "Azure Storage to mount inside a Web App for Container. Use New-AzWebAppAzureStoragePath to create it")] public WebAppAzureStoragePath[] AzureStoragePath { get; set; } diff --git a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/SetAzureWebApp.cs b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/SetAzureWebApp.cs index 936de717076f..81c872d93f37 100644 --- a/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/SetAzureWebApp.cs +++ b/src/ResourceManager/Websites/Commands.Websites/Cmdlets/WebApps/SetAzureWebApp.cs @@ -127,7 +127,7 @@ public class SetAzureWebAppCmdlet : WebAppBaseCmdlet [Parameter(ParameterSetName = ParameterSet1Name, Mandatory = false, HelpMessage = "Enable/disable redirecting all traffic to HTTPS on an existing azure webapp")] public bool HttpsOnly { get; set; } - [Parameter(ParameterSetName = ParameterSet1Name, Mandatory = false, HelpMessage = "Azure Storage to mount inside a Web App for Container. Use New-AzureRmWebAppAzureStoragePath to create it")] + [Parameter(ParameterSetName = ParameterSet1Name, Mandatory = false, HelpMessage = "Azure Storage to mount inside a Web App for Container. Use New-AzWebAppAzureStoragePath to create it")] public WebAppAzureStoragePath[] AzureStoragePath { get; set; } public override void ExecuteCmdlet() diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightMetastoreCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightMetastoreCmdlet.cs index 4f3680766185..b00bd7554c0a 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightMetastoreCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightMetastoreCmdlet.cs @@ -106,7 +106,7 @@ protected override void EndProcessing() { try { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Add-AzureRmHDinsightMetastore")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Add-AzHDinsightMetastore")); this.command.EndProcessing().Wait(); foreach (AzureHDInsightConfig output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightScriptActionCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightScriptActionCmdlet.cs index 6f568306e336..274d2b947477 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightScriptActionCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightScriptActionCmdlet.cs @@ -105,7 +105,7 @@ protected override void EndProcessing() { try { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Add-AzureRmHDInsightScriptAction")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Add-AzHDInsightScriptAction")); this.command.EndProcessing().Wait(); foreach (AzureHDInsightConfig output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightStorageCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightStorageCmdlet.cs index b8f2b0191ee2..048221e2ab37 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightStorageCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/AddAzureHDInsightStorageCmdlet.cs @@ -82,7 +82,7 @@ protected override void EndProcessing() { try { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Add-AzureRmHDInsightStorage")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Add-AzHDInsightStorage")); this.command.EndProcessing().Wait(); foreach (AzureHDInsightConfig output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightClusterCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightClusterCmdlet.cs index 3ef4bc3f2e53..f79f544714d7 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightClusterCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightClusterCmdlet.cs @@ -108,7 +108,7 @@ protected override void EndProcessing() { try { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Get-AzureRmHDInsightCluster")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Get-AzHDInsightCluster")); this.command.CurrentSubscription = this.GetCurrentSubscription(this.Subscription, this.Certificate); this.command.Logger = this.Logger; Task task = this.command.EndProcessing(); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobCmdlet.cs index fa47b622dee5..20cd874ed62e 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobCmdlet.cs @@ -128,7 +128,7 @@ protected override void EndProcessing() { try { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Get-AzureRmHDInsightJob")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Get-AzHDInsightJob")); this.command.CurrentSubscription = this.GetCurrentSubscription(this.Subscription, this.Certificate); this.command.Logger = this.Logger; Task task = this.command.EndProcessing(); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobOutputCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobOutputCmdlet.cs index 508e9c5354ca..668f807692b2 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobOutputCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightJobOutputCmdlet.cs @@ -140,7 +140,7 @@ public string TaskLogsDirectory /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Get-AzureRmHDInsightJobOutput")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Get-AzHDInsightJobOutput")); this.command.Logger = this.Logger; this.command.CurrentSubscription = this.GetCurrentSubscription(this.Subscription, this.Certificate); this.AssertTaskLogsDirectorySpecified(this.TaskLogsDirectory); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightPropertiesCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightPropertiesCmdlet.cs index d5befb012c77..72b773803f23 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightPropertiesCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GetAzureHDInsightPropertiesCmdlet.cs @@ -106,7 +106,7 @@ public string Subscription /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Get-AzureRmHDInsightProperties")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Get-AzHDInsightProperties")); this.command.Logger = this.Logger; try { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHDInsightHttpServicesAccessCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHDInsightHttpServicesAccessCmdlet.cs index 405d61083745..53a2e615668c 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHDInsightHttpServicesAccessCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHDInsightHttpServicesAccessCmdlet.cs @@ -130,7 +130,7 @@ public string Subscription /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Grant-AzureRmHDInsightHttpServicesAccess")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Grant-AzHDInsightHttpServicesAccess")); this.command.Enable = true; try { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHdinsightRdpAccessCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHdinsightRdpAccessCmdlet.cs index 4970f515ca06..cd1156bc0356 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHdinsightRdpAccessCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/GrantAzureHdinsightRdpAccessCmdlet.cs @@ -136,7 +136,7 @@ public string Subscription /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Grant-AzureRmHDInsightRdpServicesAccess")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Grant-AzHDInsightRdpServicesAccess")); this.command.Enable = true; try { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/InvokeHiveCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/InvokeHiveCmdlet.cs index fcf8d2afd028..516c7133a156 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/InvokeHiveCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/InvokeHiveCmdlet.cs @@ -138,7 +138,7 @@ protected override void EndProcessing() this.command.Connection = currentConnection; try { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Invoke-AzureRmHDInsightHiveJob")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Invoke-AzHDInsightHiveJob")); this.command.Logger = this.Logger; this.command.CurrentSubscription = this.GetCurrentSubscription(string.Empty, null); Task task = this.command.EndProcessing(); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterCmdlet.cs index c9eca8fb3b0e..0be17deb0efb 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterCmdlet.cs @@ -436,7 +436,7 @@ protected override void BeginProcessing() /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "New-AzureRmHDInsightCluster")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "New-AzHDInsightCluster")); DateTime start = DateTime.Now; string msg = string.Format(CultureInfo.CurrentCulture, "Create Cluster Started : {0}", start.ToString(CultureInfo.CurrentCulture)); this.Logger.Log(Severity.Informational, Verbosity.Detailed, msg); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterConfigCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterConfigCmdlet.cs index 5aed374eb853..45ca3e3a1212 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterConfigCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightClusterConfigCmdlet.cs @@ -107,7 +107,7 @@ public string ZookeeperNodeVMSize /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "New-AzureRmHDInsightClusterConfig")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "New-AzHDInsightClusterConfig")); this.command.EndProcessing().Wait(); foreach (AzureHDInsightConfig output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightHiveJobDefinitionCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightHiveJobDefinitionCmdlet.cs index 80092f75b33e..4ecc43849cfb 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightHiveJobDefinitionCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightHiveJobDefinitionCmdlet.cs @@ -116,7 +116,7 @@ public string StatusFolder /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "New-AzureRmHDInsightHiveJobDefinition")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "New-AzHDInsightHiveJobDefinition")); if (this.File.IsNullOrEmpty() && this.Query.IsNullOrEmpty()) { throw new PSArgumentException("Either File or Query should be specified for Hive jobs."); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightMapReduceDefinitionCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightMapReduceDefinitionCmdlet.cs index 2a383cfc8728..2aa7ed210ab5 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightMapReduceDefinitionCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightMapReduceDefinitionCmdlet.cs @@ -118,7 +118,7 @@ public string StatusFolder /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "New-AzureRmHDInsightMapReduceJobDefinition")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "New-AzHDInsightMapReduceJobDefinition")); this.command.EndProcessing().Wait(); foreach (AzureHDInsightMapReduceJobDefinition output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightPigJobDefinitionCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightPigJobDefinitionCmdlet.cs index dd5e33865bf4..7c88050efb3b 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightPigJobDefinitionCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightPigJobDefinitionCmdlet.cs @@ -90,7 +90,7 @@ public string StatusFolder /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "New-AzureRmHDInsightPigJobDefinition")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "New-AzHDInsightPigJobDefinition")); if (this.File.IsNullOrEmpty() && this.Query.IsNullOrEmpty()) { throw new PSArgumentException("Either File or Query should be specified for Pig jobs."); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightSqoopJobDefinitionCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightSqoopJobDefinitionCmdlet.cs index 0aeaaab300d1..1197095b7105 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightSqoopJobDefinitionCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightSqoopJobDefinitionCmdlet.cs @@ -79,7 +79,7 @@ public string StatusFolder /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "New-AzureRmHDInsightSqoopJobDefinition")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "New-AzHDInsightSqoopJobDefinition")); if (this.File.IsNullOrEmpty() && this.Command.IsNullOrEmpty()) { throw new PSArgumentException("Either File or Command should be specified for Sqoop jobs."); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightStreamingJobDefinitionCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightStreamingJobDefinitionCmdlet.cs index 8e3195f00535..1ad4530a62da 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightStreamingJobDefinitionCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/NewAzureHDInsightStreamingJobDefinitionCmdlet.cs @@ -142,7 +142,7 @@ public string StatusFolder /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "New-AzureRmHDInsightStreamingMapReduceJobDefinition")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "New-AzHDInsightStreamingMapReduceJobDefinition")); this.command.EndProcessing().Wait(); foreach (AzureHDInsightStreamingMapReduceJobDefinition output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RemoveClusterHDInsightClusterCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RemoveClusterHDInsightClusterCmdlet.cs index 4df34715cbb6..d9936cf44b1b 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RemoveClusterHDInsightClusterCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RemoveClusterHDInsightClusterCmdlet.cs @@ -105,7 +105,7 @@ public string Subscription /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Remove-AzureRmHDInsightCluster")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Remove-AzHDInsightCluster")); try { this.command.CurrentSubscription = this.GetCurrentSubscription(this.Subscription, this.Certificate); diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightHttpServicesAccessCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightHttpServicesAccessCmdlet.cs index 918f85a2b82b..684bb9511002 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightHttpServicesAccessCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightHttpServicesAccessCmdlet.cs @@ -129,7 +129,7 @@ public string Subscription /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Revoke-AzureRmHDInsightHttpServicesAccess")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Revoke-AzHDInsightHttpServicesAccess")); this.command.Enable = false; try { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightRdpAccessCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightRdpAccessCmdlet.cs index a1ae71f71417..55a2aaf67167 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightRdpAccessCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/RevokeAzureHDInsightRdpAccessCmdlet.cs @@ -134,7 +134,7 @@ public string Subscription /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Revoke-AzureRmHDInsightRdpServicesAccess")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Revoke-AzHDInsightRdpServicesAccess")); this.command.Enable = false; try { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightClusterSizeCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightClusterSizeCmdlet.cs index 3e162cf6b403..c93f9b7c13b7 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightClusterSizeCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightClusterSizeCmdlet.cs @@ -124,7 +124,7 @@ public SetAzureHDInsightClusterSizeCmdlet() protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Set-AzureRmHDInsightClusterSize")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Set-AzHDInsightClusterSize")); if (Cluster != null) { Name = Cluster.Name; diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightDefaultStorageCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightDefaultStorageCmdlet.cs index dc3363a5e7b7..da5ab7d7978e 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightDefaultStorageCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/SetAzureHDInsightDefaultStorageCmdlet.cs @@ -88,7 +88,7 @@ public string StorageContainerName /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Set-AzureRmHDInsightDefaultStorage")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Set-AzHDInsightDefaultStorage")); this.command.EndProcessing().Wait(); foreach (AzureHDInsightConfig output in this.command.Output) { diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StartAzureHDInsightJobCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StartAzureHDInsightJobCmdlet.cs index 2312a8b4c5ad..92635a0c62dd 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StartAzureHDInsightJobCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StartAzureHDInsightJobCmdlet.cs @@ -126,7 +126,7 @@ public string Subscription /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Start-AzureRmHDInsightJob")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Start-AzHDInsightJob")); try { this.command.Logger = this.Logger; diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StopAzureHDInsightJobCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StopAzureHDInsightJobCmdlet.cs index 8da62cc1b5f9..6ff8942fbb0b 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StopAzureHDInsightJobCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/StopAzureHDInsightJobCmdlet.cs @@ -123,7 +123,7 @@ public string Subscription /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Stop-AzureRmHDInsightJob")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Stop-AzHDInsightJob")); try { this.command.Logger = this.Logger; diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/UseAzureHDInsightClusterCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/UseAzureHDInsightClusterCmdlet.cs index 71e30e0236b7..80c494d4f788 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/UseAzureHDInsightClusterCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/UseAzureHDInsightClusterCmdlet.cs @@ -109,7 +109,7 @@ public string Subscription /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Use-AzureRmHDInsightCluster")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Use-AzHDInsightCluster")); try { this.command.Logger = this.Logger; diff --git a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/WaitAzureHDInsightJobCmdlet.cs b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/WaitAzureHDInsightJobCmdlet.cs index d38b8f5afd34..dff770e11029 100644 --- a/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/WaitAzureHDInsightJobCmdlet.cs +++ b/src/ServiceManagement/HDInsight/Commands.HDInsight/Cmdlet/WaitAzureHDInsightJobCmdlet.cs @@ -158,7 +158,7 @@ public double WaitTimeoutInSeconds /// protected override void EndProcessing() { - this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Wait-AzureRmHDInsightJob")); + this.WriteWarning(string.Format(AzureHdInsightPowerShellConstants.AsmWarning, "Wait-AzHDInsightJob")); try { this.command.Logger = this.Logger; diff --git a/src/Storage/Commands.Storage/Blob/Cmdlet/GetAzureStorageContainer.cs b/src/Storage/Commands.Storage/Blob/Cmdlet/GetAzureStorageContainer.cs index 124ccbf57c04..80a84bfb459d 100644 --- a/src/Storage/Commands.Storage/Blob/Cmdlet/GetAzureStorageContainer.cs +++ b/src/Storage/Commands.Storage/Blob/Cmdlet/GetAzureStorageContainer.cs @@ -206,8 +206,8 @@ internal void PackCloudBlobContainerWithAcl(IEnumerable - /// Self reference, it could enable New-AzureStorageContext can be used in pipeline + /// Self reference, it could enable New-AzStorageContext can be used in pipeline /// public IStorageContext Context { get; protected set; } diff --git a/src/Storage/Commands.Storage/Common/StorageNouns.cs b/src/Storage/Commands.Storage/Common/StorageNouns.cs index 766f30ca206d..96f5f56f9ecc 100644 --- a/src/Storage/Commands.Storage/Common/StorageNouns.cs +++ b/src/Storage/Commands.Storage/Common/StorageNouns.cs @@ -190,7 +190,7 @@ public static class StorageNouns public const string DefaultLoggingVersion = "1.0"; /// - /// Permission const for New-AzureStorage(Blob/Container/Table/Queue)SasToken + /// Permission const for New-AzStorage(Blob/Container/Table/Queue)SasToken /// public static class Permission { diff --git a/src/Storage/Commands.Storage/Resources.Designer.cs b/src/Storage/Commands.Storage/Resources.Designer.cs index ba0da9764ee3..dcb645120e99 100644 --- a/src/Storage/Commands.Storage/Resources.Designer.cs +++ b/src/Storage/Commands.Storage/Resources.Designer.cs @@ -169,7 +169,7 @@ internal static string CannotDeleteSnapshotForSnapshot { } /// - /// Looks up a localized string similar to Can not get storage account from subscription. Please check the subscription settings using "Get-AzureSubscription".. + /// Looks up a localized string similar to Can not get storage account from subscription. Please check the subscription settings using "Get-AzSubscription".. /// internal static string CannotGetSotrageAccountFromSubscription { get { @@ -187,7 +187,7 @@ internal static string CannotGetStorageAccountFromEnvironmentVariable { } /// - /// Looks up a localized string similar to Can not upload the directory '{0}' to azure. If you want to upload directory, please use "ls -File -Recurse | Set-AzureStorageBlobContent -Container containerName".. + /// Looks up a localized string similar to Can not upload the directory '{0}' to azure. If you want to upload directory, please use "ls -File -Recurse | Set-AzStorageBlobContent -Container containerName".. /// internal static string CannotSendDirectory { get { @@ -421,7 +421,7 @@ internal static string CORSRuleError { } /// - /// Looks up a localized string similar to Current Storage Account not found in subscription '{0}'. Please set it use "Set-AzureSubscription".. + /// Looks up a localized string similar to Current Storage Account not found in subscription '{0}'. Please set it use "Set-AzSubscription".. /// internal static string CurrentStorageAccountNameNotFound { get { @@ -448,7 +448,7 @@ internal static string DefaultDomain { } /// - /// Looks up a localized string similar to Can not find your azure storage credential. Please set current storage account using "Set-AzureSubscription" or set the "AZURE_STORAGE_CONNECTION_STRING" environment variable.. + /// Looks up a localized string similar to Can not find your azure storage credential. Please set current storage account using "Set-AzSubscription" or set the "AZURE_STORAGE_CONNECTION_STRING" environment variable.. /// internal static string DefaultStorageCredentialsNotFound { get { @@ -646,7 +646,7 @@ internal static string FinishRemoteCall { } /// - /// Looks up a localized string similar to Get-AzureStorageContainerAcl. + /// Looks up a localized string similar to Get-AzStorageContainerAcl. /// internal static string GetAzureStorageContainerAclCmdletName { get { @@ -655,7 +655,7 @@ internal static string GetAzureStorageContainerAclCmdletName { } /// - /// Looks up a localized string similar to Get-AzureStorageContainer. + /// Looks up a localized string similar to Get-AzStorageContainer. /// internal static string GetAzureStorageContainerCmdletName { get { diff --git a/src/Storage/Commands.Storage/Resources.resx b/src/Storage/Commands.Storage/Resources.resx index f4dad8629588..50e43640e268 100644 --- a/src/Storage/Commands.Storage/Resources.resx +++ b/src/Storage/Commands.Storage/Resources.resx @@ -211,7 +211,7 @@ Start to upload '{0}' to blob '{1}'. - Can not find your azure storage credential. Please set current storage account using "Set-AzureSubscription" or set the "AZURE_STORAGE_CONNECTION_STRING" environment variable. + Can not find your azure storage credential. Please set current storage account using "Set-AzSubscription" or set the "AZURE_STORAGE_CONNECTION_STRING" environment variable. Table '{0}' already exists. @@ -235,7 +235,7 @@ Blob type mismatched, the current blob type of '{0}' is {1}. - Can not upload the directory '{0}' to azure. If you want to upload directory, please use "ls -File -Recurse | Set-AzureStorageBlobContent -Container containerName". + Can not upload the directory '{0}' to azure. If you want to upload directory, please use "ls -File -Recurse | Set-AzStorageBlobContent -Container containerName". Prepare to upload blob. @@ -323,7 +323,7 @@ 0 for storage account name, 1 for end point domain. - Current Storage Account not found in subscription '{0}'. Please set it use "Set-AzureSubscription". + Current Storage Account not found in subscription '{0}'. Please set it use "Set-AzSubscription". 0 subscription name @@ -379,10 +379,10 @@ 0 for blob name, 1 for container name - Get-AzureStorageContainerAcl + Get-AzStorageContainerAcl - Get-AzureStorageContainer + Get-AzStorageContainer New-Alias @@ -394,7 +394,7 @@ Value - Can not get storage account from subscription. Please check the subscription settings using "Get-AzureSubscription". + Can not get storage account from subscription. Please check the subscription settings using "Get-AzSubscription". 0 storage account name 1 subscription name