Skip to content

Commit 03a14f3

Browse files
committed
rename files
1 parent 78ec6ea commit 03a14f3

File tree

2 files changed

+24
-20
lines changed

2 files changed

+24
-20
lines changed

src/ResourceManager/Network/Commands.Network/Commands.Network.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,7 @@
245245
<Compile Include="ExpressRouteCircuit\Authorization\RemoveAzureExpressRouteCircuitAuthorizationCommand.cs" />
246246
<Compile Include="ExpressRouteCircuit\MoveAzureExpressRouteCircuitCommand.cs" />
247247
<Compile Include="ExpressRouteCircuit\Stats\GetAzureExpressRouteCircuitARPTableCommand.cs" />
248-
<Compile Include="ExpressRouteCircuit\Stats\GetAzureExpressRouteCircuitRouteTableCommand.cs" />
249-
<Compile Include="ExpressRouteCircuit\Stats\GetAzureExpressRouteRouteTableSummaryCommand.cs" />
248+
<Compile Include="ExpressRouteCircuit\Stats\GetAzureExpressRouteCircuitRouteTableSummaryCommand.cs" />
250249
<Compile Include="ExpressRouteCircuit\Stats\GetAzureExpressRouteStatsCommand.cs" />
251250
<Compile Include="LoadBalancer\InboundNatPool\AddAzureLoadBalancerInboundNatPoolConfigCommand.cs" />
252251
<Compile Include="LoadBalancer\InboundNatPool\AzureLoadBalancerInboundNatPoolConfigBase.cs" />
Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,36 @@
1-
// ----------------------------------------------------------------------------------
2-
//
3-
// Copyright Microsoft Corporation
4-
// Licensed under the Apache License, Version 2.0 (the "License");
5-
// you may not use this file except in compliance with the License.
6-
// You may obtain a copy of the License at
7-
// http://www.apache.org/licenses/LICENSE-2.0
8-
// Unless required by applicable law or agreed to in writing, software
9-
// distributed under the License is distributed on an "AS IS" BASIS,
10-
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11-
// See the License for the specific language governing permissions and
12-
// limitations under the License.
13-
// ----------------------------------------------------------------------------------
1+
//
2+
//
3+
// Copyright Microsoft Corporation
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
// http://www.apache.org/licenses/LICENSE2.0
8+
// Unless required by applicable law or agreed to in writing, software
9+
// distributed under the License is distributed on an "AS IS" BASIS,
10+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
// See the License for the specific language governing permissions and
12+
// limitations under the License.
13+
//
1414

15+
using System.Collections;
1516
using System.Collections.Generic;
1617
using System.Management.Automation;
18+
using AutoMapper;
19+
using Microsoft.Azure.Commands.Tags.Model;
1720
using Microsoft.Azure.Management.Network;
1821
using Microsoft.Azure.Commands.Network.Models;
1922
using MNM = Microsoft.Azure.Management.Network.Models;
2023

2124
namespace Microsoft.Azure.Commands.Network
2225
{
2326
using System;
27+
using System.Collections;
2428
using System.Linq;
2529

2630
using AutoMapper;
2731

28-
[Cmdlet(VerbsCommon.Get, "AzureExpressRouteCircuitRouteTableSummary"), OutputType(typeof(PSExpressRouteCircuitRoutesTableSummary))]
29-
public class GetAzureExpressRouteCircuitRouteTableSummaryCommand : NetworkBaseCmdlet
32+
[Cmdlet(VerbsCommon.Get, "AzureRmExpressRouteCircuitRouteTableSummary"), OutputType(typeof(PSExpressRouteCircuitRoutesTableSummary))]
33+
public class GetAzureRmExpressRouteCircuitRouteTableSummaryCommand : NetworkBaseCmdlet
3034
{
3135
[Alias("ResourceName")]
3236
[Parameter(
@@ -64,7 +68,7 @@ public class GetAzureExpressRouteCircuitRouteTableSummaryCommand : NetworkBaseCm
6468
Mandatory = true,
6569
HelpMessage = "The DevicePath, can be either Primary or Secondary")]
6670
[ValidateNotNullOrEmpty]
67-
public string DevicePath { get; set; }
71+
public string DevicePath { get; set; }
6872

6973
public override void ExecuteCmdlet()
7074
{
@@ -80,7 +84,8 @@ public override void ExecuteCmdlet()
8084
psARPs.Add(psARP);
8185
}
8286
WriteObject(psARPs, true);
83-
}
87+
}
8488
}
8589
}
86-
}
90+
91+
}

0 commit comments

Comments
 (0)