Skip to content

bug fixes for vnet peering and effective nsg #2865

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 1, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ public class PSEffectiveSecurityRule
public string DestinationAddressPrefix { get; set; }

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

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

[JsonProperty(Order = 1)]
public string Access { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public class AddAzureVirtualNetworkPeeringCommand : VirtualNetworkPeeringBase
HelpMessage = "Flag to allow the forwarded traffic from the VMs in the remote virtual network")]
public SwitchParameter AllowForwardedTraffic { get; set; }

[Alias("AllowGatewayTransit")]
[Parameter(
Mandatory = false,
HelpMessage = "Flag to allow gatewayLinks be used in remote virtual network's link to this virtual network")]
Expand Down