-
Notifications
You must be signed in to change notification settings - Fork 4k
CustomBgpIpConfigurations in gateway connections #21098
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
CustomBgpIpConfigurations in gateway connections #21098
Conversation
Validation for PowerShell Core and Windows PowerShell Starts. Thanks for your contribution! |
src/Network/Network/help/New-AzGatewayCustomBgpIpConfigurationObject.md
Outdated
Show resolved
Hide resolved
...rk/Network/VirtualNetworkGatewayConnection/GetAzureVirtualNetworkGatewayConnectionCommand.cs
Show resolved
Hide resolved
...rk/Network/VirtualNetworkGatewayConnection/NewAzureVirtualNetworkGatewayConnectionCommand.cs
Show resolved
Hide resolved
@@ -61,7 +61,7 @@ public PSVirtualNetworkGatewayConnection GetVirtualNetworkGatewayConnection(stri | |||
return psVirtualNetworkGatewayConnection; | |||
} | |||
|
|||
public PSVirtualNetworkGatewayConnection ToPsVirtualNetworkGatewayConnection(VirtualNetworkGatewayConnection vnetGatewayConnection) | |||
public PSVirtualNetworkGatewayConnection ToPsVirtualNetworkGatewayConnection(Management.Network.Models.VirtualNetworkGatewayConnection vnetGatewayConnection) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as GetAzureVirtualNetworkGatewayConnectionCommand.cs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please see comments
ValueFromPipelineByPropertyName = true, | ||
HelpMessage = "The GatewayCustomBgpIpAddress of Vpngateway used in this link connection.")] | ||
[ValidateNotNullOrEmpty] | ||
public PSGatewayCustomBgpIpConfiguration[] VpnGatewayCustomBgpAddresses { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public PSGatewayCustomBgpIpConfiguration[] VpnGatewayCustomBgpAddresses { get; set; } | |
public PSGatewayCustomBgpIpConfiguration[] VpnGatewayCustomBgpAddress { get; set; } |
please find analyze-netcore3.1 -> staticAnalysisResults -> ExampleIssues.csv in |
Not able to find anything here |
This reverts commit 9ab2e13.
/azp run |
Azure Pipelines successfully started running 3 pipeline(s). |
* Created a new feature FlushConnection for Network Security Groups. (#20604) * Updated Help files * Added tests to PS cmdlet * Updated to SwitchParameter as per design guidelines * Updated changelog * Added FlushConnection property to NSG + updated help files * Updated changelog.md * Updated changelog.md * Update src/Network/Network/NetworkSecurityGroup/NewAzureNetworkSecurityGroupCommand.cs Co-authored-by: Yeming Liu <11371776+isra-fel@users.noreply.github.com> * Update src/Network/Network/help/New-AzNetworkSecurityGroup.md Co-authored-by: Yeming Liu <11371776+isra-fel@users.noreply.github.com> * Fixed indentation: Used space instead of tabs --------- Co-authored-by: Yeming Liu <11371776+isra-fel@users.noreply.github.com> * Add Optional Parameter "Billing Type" to Express Route Direct (#20663) * changes * Update ChangeLog.md --------- Co-authored-by: Yeming Liu <11371776+isra-fel@users.noreply.github.com> * adding circuit auth status property (#20791) * adding auth status property * updating change log --------- Co-authored-by: Yeming Liu <11371776+isra-fel@users.noreply.github.com> * Changes to add support for state in WAF Custom Rule (#21058) * Changes to add support for state in WAF Custom Rule * PR Review comments * CustomBgpIpConfigurations in gateway connections (#21098) * commit1 * fixes1 * commit2Tested * help * tests * TestRecord * fixing help * helpfix2 * fixing help3 * FixHelp5 * fixing comments * removelocalbuildissue * Revert "removelocalbuildissue" This reverts commit 9ab2e13. * fixing build issues --------- Co-authored-by: Khushboo Baheti <khbaheti@microsoft.com> * Resetvpngateway with IpconfigurationId (#21142) * commit1 * commit2 * adding tests * fixing Test --------- Co-authored-by: Khushboo Baheti <khbaheti@microsoft.com> --------- Co-authored-by: Satya-anshu <70507845+Satya-anshu@users.noreply.github.com> Co-authored-by: Yeming Liu <11371776+isra-fel@users.noreply.github.com> Co-authored-by: nimaller <71352534+nimaller@users.noreply.github.com> Co-authored-by: utbarn-ms <66377251+utbarn-ms@users.noreply.github.com> Co-authored-by: tejasshah7 <49326906+tejasshah7@users.noreply.github.com> Co-authored-by: Khushboo Baheti <37917868+Khushboo-Baheti@users.noreply.github.com> Co-authored-by: Khushboo Baheti <khbaheti@microsoft.com>
Description
Adding New Cmdlets to create PSGatewayCustomBgpIpAddressIpConfiguration.
Adding new parameter GatewayCustomBgpIpAddre to Set-AzVirtualNetworkGatewayConnection and New-AzVirtualNetworkGatewayConnection.
Adding new parameter VpnGatewayCustomBgpIpAddress to New-AzVpnSiteLinkConnection.
https://github.com/Azure/azure-powershell-cmdlet-review-pr/issues/1306
Checklist
CONTRIBUTING.md
and reviewed the following information:generation
branch.ChangeLog.md
file(s) appropriatelyChangeLog.md
file can be found atsrc/{{SERVICE}}/{{SERVICE}}/ChangeLog.md
## Upcoming Release
header in the past tense. Add changelog in description section if PR goes intogeneration
branch.ChangeLog.md
if no new release is required, such as fixing test case only.