Skip to content

Commit ac51e01

Browse files
[regenerated] Fixed SupportsShouldProcess param
1 parent 904b142 commit ac51e01

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ResourceManager/Network/Commands.Network/RouteTable/Route/GetAzureRmRouteConfigCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
namespace Microsoft.Azure.Commands.Network.Automation
3131
{
32-
[Cmdlet("Get", "AzureRmRouteConfig", SupportsShouldProcess = true), OutputType(typeof(PSRoute))]
32+
[Cmdlet("Get", "AzureRmRouteConfig"), OutputType(typeof(PSRoute))]
3333
public class GetAzureRmRouteConfigCommand : NetworkBaseCmdlet
3434
{
3535
[Parameter(

src/ResourceManager/Network/Commands.Network/RouteTable/SetAzureRMRouteTableCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
namespace Microsoft.Azure.Commands.Network.Automation
3636
{
3737

38-
[Cmdlet(VerbsCommon.Set, "AzureRmRouteTable"), OutputType(typeof(PSRouteTable))]
38+
[Cmdlet(VerbsCommon.Set, "AzureRmRouteTable", SupportsShouldProcess = true), OutputType(typeof(PSRouteTable))]
3939
public class SetAzureRouteTableCommand : NetworkBaseCmdlet
4040
{
4141
[Parameter(

0 commit comments

Comments
 (0)