Skip to content

Commit 73c2d96

Browse files
committed
Rename network cmdlets
1 parent ae763a3 commit 73c2d96

File tree

30 files changed

+30
-30
lines changed

30 files changed

+30
-30
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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;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;application;gateway;ls")]
2525
public class GetAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet
2626
{
2727
[Alias("ResourceName")]

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;application;gateway;create")]
2828
public class NewAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet
2929
{
3030
[Alias("ResourceName")]

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;application;gateway;rm")]
2525
public class RemoveAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet
2626
{
2727
[Alias("ResourceName")]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
namespace Microsoft.Azure.Commands.Network
2424
{
2525
[Cmdlet(VerbsCommon.Set, "AzureRmApplicationGateway"), OutputType(typeof(PSApplicationGateway))]
26-
[CliCommandAlias("applicationgateway;set")]
26+
[CliCommandAlias("network;application;gateway;set")]
2727
public class SetAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet
2828
{
2929
[Parameter(

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
namespace Microsoft.Azure.Commands.Network
2424
{
2525
[Cmdlet(VerbsLifecycle.Start, "AzureRmApplicationGateway"), OutputType(typeof(PSApplicationGateway))]
26-
[CliCommandAlias("applicationgateway;start")]
26+
[CliCommandAlias("network;application;gateway;start")]
2727
public class StartAzureApplicationGatewayCommand : ApplicationGatewayBaseCmdlet
2828
{
2929
[Parameter(

0 commit comments

Comments
 (0)