-
Notifications
You must be signed in to change notification settings - Fork 4.1k
High Bandwidth VPNGW changes #27322
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
notyashhh
merged 11 commits into
Azure:release-network-2024-07-01
from
disinghal18:dev/disinghal/high_bw_vpngw
Apr 10, 2025
Merged
High Bandwidth VPNGW changes #27322
Changes from 10 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
5a756d6
Scenario tests
disinghal18 41b707e
Scenario test changes
disinghal18 c4ed6f2
New models and scenario tests changes
disinghal18 80de51a
Tunnel properties changes
disinghal18 50fb648
Tunnel properties changes
disinghal18 aef98d6
Updated scenario test and reverted API version change
disinghal18 e2894d3
Refactoring
disinghal18 952c6e6
Refactoring
disinghal18 5137f9c
Refactoring
disinghal18 5c6b2c5
Refactoring
disinghal18 f0c11e1
Resolved merge conflicts
disinghal18 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
...etwork.Management.Sdk/Generated/Models/VirtualNetworkGatewayConnectionTunnelProperties.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. See License.txt in the project root for license information. | ||
| // Code generated by Microsoft (R) AutoRest Code Generator. | ||
| // Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
|
|
||
| namespace Microsoft.Azure.Management.Network.Models | ||
| { | ||
| using System.Linq; | ||
|
|
||
| public partial class VirtualNetworkGatewayConnectionTunnelProperties | ||
| { | ||
| /// <summary> | ||
| /// Initializes a new instance of the VirtualNetworkGatewayConnectionTunnelProperties class. | ||
| /// </summary> | ||
| public VirtualNetworkGatewayConnectionTunnelProperties() | ||
| { | ||
| CustomInit(); | ||
| } | ||
|
|
||
| /// <summary> | ||
| /// Initializes a new instance of the VirtualNetworkGatewayConnectionTunnelProperties class. | ||
| /// </summary> | ||
|
|
||
| /// <param name="tunnelIPAddress">Tunnel Remote IP address | ||
| /// </param> | ||
|
|
||
| /// <param name="bgpPeeringAddress">Tunnel BGP peering address | ||
| /// </param> | ||
| public VirtualNetworkGatewayConnectionTunnelProperties(string tunnelIPAddress = default(string), string bgpPeeringAddress = default(string)) | ||
|
|
||
| { | ||
| this.TunnelIPAddress = tunnelIPAddress; | ||
| this.BgpPeeringAddress = bgpPeeringAddress; | ||
| CustomInit(); | ||
| } | ||
|
|
||
| /// <summary> | ||
| /// An initialization method that performs custom operations like setting defaults | ||
| /// </summary> | ||
| partial void CustomInit(); | ||
|
|
||
|
|
||
| /// <summary> | ||
| /// Gets or sets tunnel Remote IP address | ||
| /// </summary> | ||
| [Newtonsoft.Json.JsonProperty(PropertyName = "tunnelIpAddress")] | ||
| public string TunnelIPAddress { get; set; } | ||
|
|
||
| /// <summary> | ||
| /// Gets or sets tunnel BGP peering address | ||
| /// </summary> | ||
| [Newtonsoft.Json.JsonProperty(PropertyName = "bgpPeeringAddress")] | ||
| public string BgpPeeringAddress { get; set; } | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Ignore changes in Network.Management.SDK . It will be updated with next networking swagger release when .sdk is updated.