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

Add type "Local gateway" to virtualNetworkGateway #10802

Merged
Merged
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 @@ -2291,7 +2291,8 @@
"description": "The type of this virtual network gateway.",
"enum": [
"Vpn",
"ExpressRoute"
"ExpressRoute",
"LocalGateway"
],
"x-ms-enum": {
"name": "VirtualNetworkGatewayType",
Expand Down Expand Up @@ -2373,6 +2374,14 @@
"type": "string",
"readOnly": true,
"description": "The IP address allocated by the gateway to which dns requests can be sent."
},
"virtualNetworkExtendedLocationResourceId": {
"type": "string",
"description": "MAS FIJI customer vnet resource id. VirtualNetworkGateway of type local gateway is associated with the customer vnet."
},
"extendedLocation": {
"description": "The extended location of type local virtual network gateway.",
"$ref": "#/definitions/ExtendedLocation"
}
},
"description": "VirtualNetworkGateway properties."
Expand Down Expand Up @@ -2750,6 +2759,30 @@
},
"description": "Gateway routing details."
},
"ExtendedLocation": {
"properties": {
"name": {
"type": "string",
"description": "Name of extended location."
},
"type": {
"type": "string",
"description": "Type of extended location.",
"enum": [
"EdgeZone"
],
"x-ms-enum": {
"name": "ExtendedLocationType",
"modelAsString": true
}
}
},
"required": [
"name",
"type"
],
"description": "The extended location of type local virtual network gateway."
},
"VirtualNetworkGateway": {
"properties": {
"properties": {
Expand Down