Skip to content

Commit 6cee247

Browse files
authored
Merge pull request Azure#2865 from DeepakRajendranMsft/BugFixes
bug fixes for vnet peering and effective nsg
2 parents 68a90d2 + 8931221 commit 6cee247

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/ResourceManager/Network/Commands.Network/Models/PSEffectiveSecurityRule.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ public class PSEffectiveSecurityRule
3838
public string DestinationAddressPrefix { get; set; }
3939

4040
[JsonProperty(Order = 1)]
41-
public List<string> ExtendedSourceAddressPrefix { get; set; }
41+
public List<string> ExpandedSourceAddressPrefix { get; set; }
4242

4343
[JsonProperty(Order = 1)]
44-
public List<string> ExtendedDestinationAddressPrefix { get; set; }
44+
public List<string> ExpandedDestinationAddressPrefix { get; set; }
4545

4646
[JsonProperty(Order = 1)]
4747
public string Access { get; set; }

src/ResourceManager/Network/Commands.Network/VirtualNetwork/Peering/AddAzureVirtualNetworkPeeringCommand.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public class AddAzureVirtualNetworkPeeringCommand : VirtualNetworkPeeringBase
5252
HelpMessage = "Flag to allow the forwarded traffic from the VMs in the remote virtual network")]
5353
public SwitchParameter AllowForwardedTraffic { get; set; }
5454

55+
[Alias("AllowGatewayTransit")]
5556
[Parameter(
5657
Mandatory = false,
5758
HelpMessage = "Flag to allow gatewayLinks be used in remote virtual network's link to this virtual network")]

0 commit comments

Comments
 (0)