Skip to content

Commit 1b69480

Browse files
committed
Merge pull request Azure#1682 from markcowl/renamenetwork
Rename network commands in clu
2 parents 606f707 + f7a237c commit 1b69480

File tree

317 files changed

+158
-158
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

317 files changed

+158
-158
lines changed

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/BackendAddressPool/AddAzureApplicationGatewayBackendAddressPoolCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Add, "AzureRmApplicationGatewayBackendAddressPool"), OutputType(typeof(PSApplicationGateway))]
24-
[CliCommandAlias("applicationgateway backendaddress pool add")]
24+
[CliCommandAlias("network app gateway backend address pool add")]
2525
public class AddAzureApplicationGatewayBackendAddressPoolCommand : AzureApplicationGatewayBackendAddressPoolBase
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/BackendAddressPool/GetAzureApplicationGatewayBackendAddressPoolCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Network
2121
{
2222
[Cmdlet(VerbsCommon.Get, "AzureRmApplicationGatewayBackendAddressPool"),
2323
OutputType(typeof(PSApplicationGatewayBackendAddressPool), typeof(IEnumerable<PSApplicationGatewayBackendAddressPool>))]
24-
[CliCommandAlias("applicationgateway backendaddress pool ls")]
24+
[CliCommandAlias("network app gateway backend address pool ls")]
2525
public class GetAzureApplicationGatewayBackendAddressPoolCommand : NetworkBaseCmdlet
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/BackendAddressPool/NewAzureApplicationGatewayBackendAddressPoolCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.New, "AzureRmApplicationGatewayBackendAddressPool"), OutputType(typeof(PSApplicationGatewayBackendAddressPool))]
22-
[CliCommandAlias("applicationgateway backendaddress pool new")]
22+
[CliCommandAlias("network app gateway backend address pool create")]
2323
public class NewAzureApplicationGatewayBackendAddressPoolCommand : AzureApplicationGatewayBackendAddressPoolBase
2424
{
2525
public override void ExecuteCmdlet()

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/BackendAddressPool/RemoveAzureApplicationGatewayBackendAddressPoolCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.Remove, "AzureRmApplicationGatewayBackendAddressPool"), OutputType(typeof(PSApplicationGatewayBackendAddressPool))]
22-
[CliCommandAlias("applicationgateway backendaddress pool rm")]
22+
[CliCommandAlias("network app gateway backend address pool rm")]
2323
public class RemoveAzureApplicationGatewayBackendAddressPoolCommand : NetworkBaseCmdlet
2424
{
2525
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/BackendAddressPool/SetAzureApplicationGatewayBackendAddressPoolCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Set, "AzureRmApplicationGatewayBackendAddressPool"), OutputType(typeof(PSApplicationGateway))]
24-
[CliCommandAlias("applicationgateway backendaddress pool set")]
24+
[CliCommandAlias("network app gateway backend address pool set")]
2525
public class SetAzureApplicationGatewayBackendAddressPoolCommand : AzureApplicationGatewayBackendAddressPoolBase
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/BackendHttpSettings/AddAzureApplicationGatewayBackendHttpSettingsCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Add, "AzureRmApplicationGatewayBackendHttpSettings"), OutputType(typeof(PSApplicationGateway))]
24-
[CliCommandAlias("applicationgateway backend http settings add")]
24+
[CliCommandAlias("network app gateway backend http settings add")]
2525
public class AddAzureApplicationGatewayBackendHttpSettingsCommand : AzureApplicationGatewayBackendHttpSettingsBase
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/BackendHttpSettings/GetAzureApplicationGatewayBackendHttpSettingsCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Network
2121
{
2222
[Cmdlet(VerbsCommon.Get, "AzureRmApplicationGatewayBackendHttpSettings"),
2323
OutputType(typeof(PSApplicationGatewayBackendHttpSettings), typeof(IEnumerable<PSApplicationGatewayBackendHttpSettings>))]
24-
[CliCommandAlias("applicationgateway backend http settings ls")]
24+
[CliCommandAlias("network app gateway backend http settings ls")]
2525
public class GetAzureApplicationGatewayBackendHttpSettings : NetworkBaseCmdlet
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/BackendHttpSettings/NewAzureApplicationGatewayBackendHttpSettingsCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.New, "AzureRmApplicationGatewayBackendHttpSettings"), OutputType(typeof(PSApplicationGatewayBackendHttpSettings))]
22-
[CliCommandAlias("applicationgateway backend http settings new")]
22+
[CliCommandAlias("network app gateway backend http settings create")]
2323
public class NewAzureApplicationGatewayBackendHttpSettingsCommand : AzureApplicationGatewayBackendHttpSettingsBase
2424
{
2525
public override void ExecuteCmdlet()

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/BackendHttpSettings/RemoveAzureApplicationGatewayBackendHttpSettingsCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.Remove, "AzureRmApplicationGatewayBackendHttpSettings"), OutputType(typeof(PSApplicationGateway))]
22-
[CliCommandAlias("applicationgateway backend http settings rm")]
22+
[CliCommandAlias("network app gateway backend http settings rm")]
2323
public class RemoveAzureApplicationGatewayBackendHttpSettingsCommand : NetworkBaseCmdlet
2424
{
2525
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/BackendHttpSettings/SetAzureApplicationGatewayBackendHttpSettingsCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Set, "AzureRmApplicationGatewayBackendHttpSettings"), OutputType(typeof(PSApplicationGateway))]
24-
[CliCommandAlias("applicationgateway backend http settings set")]
24+
[CliCommandAlias("network app gateway backend http settings set")]
2525
public class SetAzureApplicationGatewayBackendHttpSettingsCommand : AzureApplicationGatewayBackendHttpSettingsBase
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/FrontendIPConfiguration/AddAzureApplicationGatewayFrontendIPConfigCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
namespace Microsoft.Azure.Commands.Network
2121
{
2222
[Cmdlet(VerbsCommon.Add, "AzureRmApplicationGatewayFrontendIPConfig"), OutputType(typeof(PSApplicationGateway))]
23-
[CliCommandAlias("applicationgateway frontend port add")]
23+
[CliCommandAlias("network app gateway frontend ipconfig add")]
2424
public class AddAzureApplicationGatewayFrontendIPConfigCommand : AzureApplicationGatewayFrontendIPConfigBase
2525
{
2626
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/FrontendIPConfiguration/GetAzureApplicationGatewayFrontendIPConfigCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Network
2121
{
2222
[Cmdlet(VerbsCommon.Get, "AzureRmApplicationGatewayFrontendIPConfig"),
2323
OutputType(typeof(PSApplicationGatewayFrontendIPConfiguration), typeof(IEnumerable<PSApplicationGatewayFrontendIPConfiguration>))]
24-
[CliCommandAlias("applicationgateway frontend port ls")]
24+
[CliCommandAlias("network app gateway frontend ipconfig ls")]
2525
public class GetAzureApplicationGatewayFrontendIPConfigCommand : NetworkBaseCmdlet
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/FrontendIPConfiguration/NewAzureApplicationGatewayFrontendIPConfigCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
namespace Microsoft.Azure.Commands.Network
1919
{
2020
[Cmdlet(VerbsCommon.New, "AzureRmApplicationGatewayFrontendIPConfig"), OutputType(typeof(PSApplicationGatewayFrontendIPConfiguration))]
21-
[CliCommandAlias("applicationgateway frontend port new")]
21+
[CliCommandAlias("network app gateway frontend ipconfig create")]
2222
public class NewAzureApplicationGatewayFrontendIPConfigCommand : AzureApplicationGatewayFrontendIPConfigBase
2323
{
2424
public override void ExecuteCmdlet()

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/FrontendIPConfiguration/RemoveAzureApplicationGatewayFrontendIPConfigCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.Remove, "AzureRmApplicationGatewayFrontendIPConfig"), OutputType(typeof(PSApplicationGateway))]
22-
[CliCommandAlias("applicationgateway frontend port rm")]
22+
[CliCommandAlias("network app gateway frontend ipconfig rm")]
2323
public class RemoveAzureApplicationGatewayFrontendIPConfigCommand : NetworkBaseCmdlet
2424
{
2525
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/FrontendIPConfiguration/SetAzureApplicationGatewayFrontendIPConfigCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
namespace Microsoft.Azure.Commands.Network
2121
{
2222
[Cmdlet(VerbsCommon.Set, "AzureRmApplicationGatewayFrontendIPConfig"), OutputType(typeof(PSApplicationGateway))]
23-
[CliCommandAlias("applicationgateway frontend port set")]
23+
[CliCommandAlias("network app gateway frontend ipconfig set")]
2424
public class SetAzureApplicationGatewayFrontendIPConfigCommand : AzureApplicationGatewayFrontendIPConfigBase
2525
{
2626
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/FrontendPort/AddAzureApplicationGatewayFrontendPortCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Add, "AzureRmApplicationGatewayFrontendPort"), OutputType(typeof(PSApplicationGateway))]
24-
[CliCommandAlias("applicationgateway frontendipconfig add")]
24+
[CliCommandAlias("network app gateway frontend port add")]
2525
public class AddAzureApplicationGatewayFrontendPortCommand : AzureApplicationGatewayFrontendPortBase
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/FrontendPort/GetAzureApplicationGatewayFrontendPortCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Network
2121
{
2222
[Cmdlet(VerbsCommon.Get, "AzureRmApplicationGatewayFrontendPort"),
2323
OutputType(typeof(PSApplicationGatewayFrontendPort), typeof(IEnumerable<PSApplicationGatewayFrontendPort>))]
24-
[CliCommandAlias("applicationgateway frontendipconfig ls")]
24+
[CliCommandAlias("network app gateway frontend port ls")]
2525
public class GetAzureApplicationGatewayFrontendPortCommand : NetworkBaseCmdlet
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/FrontendPort/NewAzureApplicationGatewayFrontendPortCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.New, "AzureRmApplicationGatewayFrontendPort"), OutputType(typeof(PSApplicationGatewayFrontendPort))]
22-
[CliCommandAlias("applicationgateway frontendipconfig new")]
22+
[CliCommandAlias("network app gateway frontend port create")]
2323
public class NewAzureApplicationGatewayFrontendPortCommand : AzureApplicationGatewayFrontendPortBase
2424
{
2525
public override void ExecuteCmdlet()

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/FrontendPort/RemoveAzureApplicationGatewayFrontendPortCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.Remove, "AzureRmApplicationGatewayFrontendPort"), OutputType(typeof(PSApplicationGateway))]
22-
[CliCommandAlias("applicationgateway frontendipconfig rm")]
22+
[CliCommandAlias("network app gateway frontend port rm")]
2323
public class RemoveAzureApplicationGatewayFrontendPortCommand : NetworkBaseCmdlet
2424
{
2525
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/FrontendPort/SetAzureApplicationGatewayFrontendPortCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Set, "AzureRmApplicationGatewayFrontendPort"), OutputType(typeof(PSApplicationGateway))]
24-
[CliCommandAlias("applicationgateway frontendipconfig set")]
24+
[CliCommandAlias("network app gateway frontend port set")]
2525
public class SetAzureApplicationGatewayFrontendPortCommand : AzureApplicationGatewayFrontendPortBase
2626
{
2727

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/GatewayIPConfiguration/AddAzureApplicationGatewayIPConfigurationCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Add, "AzureRmApplicationGatewayIPConfiguration"), OutputType(typeof(PSApplicationGateway))]
24-
[CliCommandAlias("applicationgateway ipconfiguration add")]
24+
[CliCommandAlias("network app gateway ipconfig add")]
2525
public class AddAzureApplicationGatewayIPConfigurationCommand : AzureApplicationGatewayIPConfigurationBase
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/GatewayIPConfiguration/GetAzureApplicationGatewayIPConfigurationCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Network
2121
{
2222
[Cmdlet(VerbsCommon.Get, "AzureRmApplicationGatewayIPConfiguration"),
2323
OutputType(typeof(PSApplicationGatewayIPConfiguration), typeof(IEnumerable<PSApplicationGatewayIPConfiguration>))]
24-
[CliCommandAlias("applicationgateway ipconfiguration ls")]
24+
[CliCommandAlias("network app gateway ipconfig ls")]
2525
public class GetAzureApplicationGatewayIPConfigurationCommand : NetworkBaseCmdlet
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/GatewayIPConfiguration/NewAzureApplicationGatewayIPConfigurationCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.New, "AzureRmApplicationGatewayIPConfiguration"), OutputType(typeof(PSApplicationGatewayIPConfiguration))]
22-
[CliCommandAlias("applicationgateway ipconfiguration new")]
22+
[CliCommandAlias("network app gateway ipconfig create")]
2323
public class NewAzureApplicationGatewayIPConfigurationCommand : AzureApplicationGatewayIPConfigurationBase
2424
{
2525
public override void ExecuteCmdlet()

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/GatewayIPConfiguration/RemoveAzureApplicationGatewayIPConfigurationCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.Remove, "AzureRmApplicationGatewayIPConfiguration"), OutputType(typeof(PSApplicationGateway))]
22-
[CliCommandAlias("applicationgateway ipconfiguration rm")]
22+
[CliCommandAlias("network app gateway ipconfig rm")]
2323
public class RemoveAzureApplicationGatewayIPConfigurationCommand : NetworkBaseCmdlet
2424
{
2525
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/GatewayIPConfiguration/SetAzureApplicationGatewayIPConfigurationCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Set, "AzureRmApplicationGatewayIPConfiguration"), OutputType(typeof(PSApplicationGateway))]
24-
[CliCommandAlias("applicationgateway ipconfiguration set")]
24+
[CliCommandAlias("network app gateway ipconfig set")]
2525
public class SetAzureApplicationGatewayIPConfigurationCommand : AzureApplicationGatewayIPConfigurationBase
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/GetAzureApplicationGatewayCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Get, "AzureRmApplicationGateway"), OutputType(typeof(PSApplicationGateway), typeof(IEnumerable<PSApplicationGateway>))]
24-
[CliCommandAlias("applicationgateway ls")]
24+
[CliCommandAlias("network app gateway ls")]
2525
public class GetAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet
2626
{
2727
[Alias("ResourceName")]

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/HttpListener/AddAzureApplicationGatewayHttpListenerCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Add, "AzureRmApplicationGatewayHttpListener"), OutputType(typeof(PSApplicationGateway))]
24-
[CliCommandAlias("applicationgateway httplistener add")]
24+
[CliCommandAlias("network app gateway http listener add")]
2525
public class AddAzureApplicationGatewayHttpListenerCommand : AzureApplicationGatewayHttpListenerBase
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/HttpListener/GetAzureApplicationGatewayHttpListenerCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Network
2121
{
2222
[Cmdlet(VerbsCommon.Get, "AzureRmApplicationGatewayHttpListener"),
2323
OutputType(typeof(PSApplicationGatewayHttpListener), typeof(IEnumerable<PSApplicationGatewayHttpListener>))]
24-
[CliCommandAlias("applicationgateway httplistener ls")]
24+
[CliCommandAlias("network app gateway http listener ls")]
2525
public class GetAzureApplicationGatewayHttpListenerCommand : NetworkBaseCmdlet
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/HttpListener/NewAzureApplicationGatewayHttpListenerCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.New, "AzureRmApplicationGatewayHttpListener"), OutputType(typeof(PSApplicationGatewayHttpListener))]
22-
[CliCommandAlias("applicationgateway httplistener new")]
22+
[CliCommandAlias("network app gateway http listener create")]
2323
public class NewAzureApplicationGatewayHttpListenerCommand : AzureApplicationGatewayHttpListenerBase
2424
{
2525
public override void ExecuteCmdlet()

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/HttpListener/RemoveAzureApplicationGatewayHttpListenerCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.Remove, "AzureRmApplicationGatewayHttpListener"), OutputType(typeof(PSApplicationGatewayHttpListener))]
22-
[CliCommandAlias("applicationgateway httplistener rm")]
22+
[CliCommandAlias("network app gateway http listener rm")]
2323
public class RemoveAzureApplicationGatewayHttpListenerCommand : NetworkBaseCmdlet
2424
{
2525
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/HttpListener/SetAzureApplicationGatewayHttpListenerCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Set, "AzureRmApplicationGatewayHttpListener"), OutputType(typeof(PSApplicationGateway))]
24-
[CliCommandAlias("applicationgateway httplistener set")]
24+
[CliCommandAlias("network app gateway http listener set")]
2525
public class SetAzureApplicationGatewayHttpListenerCommand : AzureApplicationGatewayHttpListenerBase
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/NewAzureApplicationGatewayCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
namespace Microsoft.Azure.Commands.Network
2525
{
2626
[Cmdlet(VerbsCommon.New, "AzureRmApplicationGateway"), OutputType(typeof(PSApplicationGateway))]
27-
[CliCommandAlias("applicationgateway new")]
27+
[CliCommandAlias("network app gateway create")]
2828
public class NewAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet
2929
{
3030
[Alias("ResourceName")]

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/PathRule/NewAzureApplicationGatewayPathRuleConfigCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.New, "AzureRmApplicationGatewayPathRuleConfig"), OutputType(typeof(PSApplicationGatewayPathRule))]
22-
[CliCommandAlias("applicationgateway path rule config new")]
22+
[CliCommandAlias("network app gateway path rule config create")]
2323
public class NewAzureApplicationGatewayPathRuleConfigCommand : AzureApplicationGatewayPathRuleConfigBase
2424
{
2525
public override void ExecuteCmdlet()

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/Probe/AddAzureApplicationGatewayProbeConfigCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Add, "AzureRmApplicationGatewayProbeConfig"), OutputType(typeof(PSApplicationGateway))]
24-
[CliCommandAlias("applicationgateway probe config add")]
24+
[CliCommandAlias("network app gateway probe config add")]
2525
public class AddAzureApplicationGatewayProbeConfigCommand : AzureApplicationGatewayProbeConfigBase
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/Probe/GetAzureApplicationGatewayProbeConfigCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Network
2121
{
2222
[Cmdlet(VerbsCommon.Get, "AzureRmApplicationGatewayProbeConfig"),
2323
OutputType(typeof(PSApplicationGatewayProbe), typeof(IEnumerable<PSApplicationGatewayProbe>))]
24-
[CliCommandAlias("applicationgateway probe config ls")]
24+
[CliCommandAlias("network app gateway probe config ls")]
2525
public class GetAzureApplicationGatewayProbeConfigCommand : NetworkBaseCmdlet
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/Probe/NewAzureApplicationGatewayProbeConfigCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.New, "AzureRmApplicationGatewayProbeConfig"), OutputType(typeof(PSApplicationGatewayProbe))]
22-
[CliCommandAlias("applicationgateway probe config new")]
22+
[CliCommandAlias("network app gateway probe config new")]
2323
public class NewAzureApplicationGatewayProbeConfigCommand : AzureApplicationGatewayProbeConfigBase
2424
{
2525
public override void ExecuteCmdlet()

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/Probe/RemoveAzureApplicationGatewayProbeConfigCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.Remove, "AzureRmApplicationGatewayProbeConfig"), OutputType(typeof(PSApplicationGateway))]
22-
[CliCommandAlias("applicationgateway probe config rm")]
22+
[CliCommandAlias("network app gateway probe config rm")]
2323
public class RemoveAzureApplicationGatewayProbeConfigCommand : NetworkBaseCmdlet
2424
{
2525
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/Probe/SetAzureApplicationGatewayProbeConfigCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Set, "AzureRmApplicationGatewayProbeConfig"), OutputType(typeof(PSApplicationGateway))]
24-
[CliCommandAlias("applicationgateway probe config set")]
24+
[CliCommandAlias("network app gateway probe config set")]
2525
public class SetAzureApplicationGatewayProbeConfigCommand : AzureApplicationGatewayProbeConfigBase
2626
{
2727

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/RemoveAzureApplicationGatewayCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Remove, "AzureRmApplicationGateway")]
24-
[CliCommandAlias("applicationgateway rm")]
24+
[CliCommandAlias("network app gateway rm")]
2525
public class RemoveAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet
2626
{
2727
[Alias("ResourceName")]

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/RequestRoutingRule/AddAzureApplicationGatewayRequestRoutingRuleCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Add, "AzureRmApplicationGatewayRequestRoutingRule"), OutputType(typeof(PSApplicationGateway))]
24-
[CliCommandAlias("applicationgateway request routing rule add")]
24+
[CliCommandAlias("network app gateway request routing rule add")]
2525
public class AddAzureApplicationGatewayRequestRoutingRuleCommand : AzureApplicationGatewayRequestRoutingRuleBase
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/RequestRoutingRule/GetAzureApplicationGatewayRequestRoutingRuleCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace Microsoft.Azure.Commands.Network
2121
{
2222
[Cmdlet(VerbsCommon.Get, "AzureRmApplicationGatewayRequestRoutingRule"),
2323
OutputType(typeof(PSApplicationGatewayRequestRoutingRule), typeof(IEnumerable<PSApplicationGatewayRequestRoutingRule>))]
24-
[CliCommandAlias("applicationgateway request routing rule ls")]
24+
[CliCommandAlias("network app gateway request routing rule ls")]
2525
public class GetAzureApplicationGatewayRequestRoutingRuleCommand : NetworkBaseCmdlet
2626
{
2727
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/RequestRoutingRule/NewAzureApplicationGatewayRequestRoutingRuleCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.New, "AzureRmApplicationGatewayRequestRoutingRule"), OutputType(typeof(PSApplicationGatewayRequestRoutingRule))]
22-
[CliCommandAlias("applicationgateway request routing rule new")]
22+
[CliCommandAlias("network app gateway request routing rule new")]
2323
public class NewAzureApplicationGatewayRequestRoutingRuleCommand : AzureApplicationGatewayRequestRoutingRuleBase
2424
{
2525
public override void ExecuteCmdlet()

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/RequestRoutingRule/RemoveAzureApplicationGatewayRequestRoutingRuleCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace Microsoft.Azure.Commands.Network
2020
{
2121
[Cmdlet(VerbsCommon.Remove, "AzureRmApplicationGatewayRequestRoutingRule"), OutputType(typeof(PSApplicationGatewayRequestRoutingRule))]
22-
[CliCommandAlias("applicationgateway request routing rule rm")]
22+
[CliCommandAlias("network app gateway request routing rule rm")]
2323
public class RemoveAzureApplicationGatewayRequestRoutingRuleCommand : NetworkBaseCmdlet
2424
{
2525
[Parameter(

src/CLU/Microsoft.Azure.Commands.Network/ApplicationGateway/RequestRoutingRule/SetAzureApplicationGatewayRequestRoutingRuleCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace Microsoft.Azure.Commands.Network
2222
{
2323
[Cmdlet(VerbsCommon.Set, "AzureRmApplicationGatewayRequestRoutingRule"), OutputType(typeof(PSApplicationGateway))]
24-
[CliCommandAlias("applicationgateway request routing rule set")]
24+
[CliCommandAlias("network app gateway request routing rule set")]
2525
public class SetAzureApplicationGatewayRequestRoutingRuleCommand : AzureApplicationGatewayRequestRoutingRuleBase
2626
{
2727
[Parameter(

0 commit comments

Comments
 (0)