Skip to content

Commit 174eabc

Browse files
committed
Fixed build errors
1 parent b9ebdcc commit 174eabc

7 files changed

+8
-8
lines changed

src/Network/Network/Models/PSCircuitMetadataMap.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Microsoft.Azure.Commands.Network.Models
99
{
1010
public partial class PSCircuitMetadataMap : PSChildResource
1111
{
12-
public string Name { get; set; }
12+
public new string Name { get; set; }
1313

1414
public string Link { get; set; }
1515

src/Network/Network/Models/PSExpressRouteFailoverCircuitResourceDetails.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public partial class PSExpressRouteFailoverCircuitResourceDetails : PSChildResou
1111
{
1212
public string NrpResourceUri { get; set; }
1313

14-
public string Name { get; set; }
14+
public new string Name { get; set; }
1515

1616
public string ConnectionName { get; set; }
1717
}

src/Network/Network/Models/PSExpressRouteFailoverConnectionResourceDetails.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public partial class PSExpressRouteFailoverConnectionResourceDetails : PSChildRe
1111
{
1212
public string NrpResourceUri { get; set; }
1313

14-
public string Name { get; set; }
14+
public new string Name { get; set; }
1515

1616
public string Status { get; set; }
1717

src/Network/Network/Models/PSGatewayResiliencyInformation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public partial class PSGatewayResiliencyInformation : PSTopLevelResource
3535

3636
public List<PSResiliencyRecommendationComponents> Components { get; set; }
3737

38-
public PSCircuitMetadata CircuitMetadata { get; set; }
38+
public PSCircuitMetadataMap CircuitMetadata { get; set; }
3939

4040
public List<string> PrimaryConnectionIds { get; set; }
4141

src/Network/Network/Models/PSGatewayRouteSet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Microsoft.Azure.Commands.Network.Models
1212
{
1313
public partial class PSGatewayRouteSet : PSChildResource
1414
{
15-
public string Name { get; set; }
15+
public new string Name { get; set; }
1616

1717
public List<string> Locations { get; set; }
1818

src/Network/Network/Models/PSGatewayRouteSetsInformation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ public partial class PSGatewayRouteSetsInformation : PSTopLevelResource
2929
[Ps1Xml(Target = ViewControl.Table)]
3030
public string RouteSetVersion { get; set; }
3131

32-
public List<PSRouteSet> RouteSets { get; set; }
32+
public List<PSGatewayRouteSet> RouteSets { get; set; }
3333

34-
public Dictionary<string, PSCircuitMetadata> CircuitsMetadataMap { get; set; }
34+
public Dictionary<string, PSCircuitMetadataMap> CircuitsMetadataMap { get; set; }
3535

3636
[JsonIgnore]
3737
public string RouteSetsText =>

src/Network/Network/Models/PSResiliencyRecommendationComponents.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Microsoft.Azure.Commands.Network.Models
1414
{
1515
public partial class PSResiliencyRecommendationComponents : PSChildResource
1616
{
17-
public string Name { get; set; }
17+
public new string Name { get; set; }
1818

1919
public string CurrentScore { get; set; }
2020

0 commit comments

Comments
 (0)