Skip to content
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

Eddelrio/network august release #7066

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 @@ -61,7 +61,8 @@
"sharedKey": "Abc123",
"enableBgp": false,
"usePolicyBasedTrafficSelectors": false,
"ipsecPolicies": []
"ipsecPolicies": [],
"trafficSelectorPolicies": []
},
"location": "centralus"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"enableBgp": false,
"usePolicyBasedTrafficSelectors": false,
"ipsecPolicies": [],
"trafficSelectorPolicies": [],
"connectionStatus": "Connecting",
"ingressBytesTransferred": 0,
"egressBytesTransferred": 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
"enableBgp": false,
"usePolicyBasedTrafficSelectors": false,
"ipsecPolicies": [],
"trafficSelectorPolicies": [],
"connectionStatus": "Unknown",
"ingressBytesTransferred": 0,
"egressBytesTransferred": 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"enableBgp": false,
"usePolicyBasedTrafficSelectors": false,
"ipsecPolicies": [],
"trafficSelectorPolicies": [],
"ingressBytesTransferred": 0,
"egressBytesTransferred": 0
}
Expand Down Expand Up @@ -58,6 +59,7 @@
"enableBgp": false,
"usePolicyBasedTrafficSelectors": false,
"ipsecPolicies": [],
"trafficSelectorPolicies": [],
"ingressBytesTransferred": 0,
"egressBytesTransferred": 0
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"enableBgp": true,
"usePolicyBasedTrafficSelectors": false,
"ipsecPolicies": [],
"trafficSelectorPolicies": [],
"ingressBytesTransferred": 0,
"egressBytesTransferred": 0
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2370,6 +2370,13 @@
},
"description": "The IPSec Policies to be considered by this connection."
},
"trafficSelectorPolicies": {
"type": "array",
"items": {
"$ref": "#/definitions/TrafficSelectorPolicy"
},
"description": "The Traffic Selector Policies to be considered by this connection."
},
"resourceGuid": {
"type": "string",
"description": "The resource GUID property of the virtual network gateway connection resource."
Expand Down Expand Up @@ -2510,6 +2517,29 @@
],
"description": "An IPSec Policy configuration for a virtual network gateway connection."
},
"TrafficSelectorPolicy": {
"properties": {
"localAddressRanges": {
"type": "array",
"items": {
"type": "string"
},
"description": "A collection of local address spaces in CIDR format"
},
"remoteAddressRanges": {
"type": "array",
"items": {
"type": "string"
},
"description": "A collection of remote address spaces in CIDR format"
}
},
"required": [
"localAddressRanges",
"remoteAddressRanges"
],
"description": "An traffic selector policy for a virtual network gateway connection."
},
"ConnectionProtocol": {
"type": "string",
"description": "Gateway connection protocol.",
Expand Down Expand Up @@ -2727,6 +2757,13 @@
},
"description": "The IPSec Policies to be considered by this connection."
},
"trafficSelectorPolicies": {
ejdelrio marked this conversation as resolved.
Show resolved Hide resolved
"type": "array",
"items": {
"$ref": "#/definitions/TrafficSelectorPolicy"
},
"description": "The Traffic Selector Policies to be considered by this connection."
},
"resourceGuid": {
"type": "string",
"description": "The resource GUID property of the virtual network gateway connection resource."
Expand Down