File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/Network/Network/VirtualNetwork Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -75,8 +75,8 @@ public class NewAzureVirtualNetworkCommand : VirtualNetworkBaseCmdlet
75
75
[ Parameter (
76
76
Mandatory = false ,
77
77
ValueFromPipelineByPropertyName = true ,
78
- HelpMessage = "The BGP Community of the Virtual Network " ) ]
79
- public string VirtualNetworkCommunity { get ; set ; }
78
+ HelpMessage = "The BGP Community advertised over ExpressRoute. " ) ]
79
+ public string BgpCommunity { get ; set ; }
80
80
81
81
[ Parameter (
82
82
Mandatory = false ,
@@ -143,9 +143,9 @@ private PSVirtualNetwork CreateVirtualNetwork()
143
143
vnet . DdosProtectionPlan = new PSResourceId { Id = DdosProtectionPlanId } ;
144
144
}
145
145
146
- if ( ! string . IsNullOrWhiteSpace ( VirtualNetworkCommunity ) )
146
+ if ( ! string . IsNullOrWhiteSpace ( BgpCommunity ) )
147
147
{
148
- vnet . BgpCommunities = new PSVirtualNetworkBgpCommunities { VirtualNetworkCommunity = this . VirtualNetworkCommunity } ;
148
+ vnet . BgpCommunities = new PSVirtualNetworkBgpCommunities { VirtualNetworkCommunity = this . BgpCommunity } ;
149
149
}
150
150
151
151
// Map to the sdk object
You can’t perform that action at this time.
0 commit comments