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 to 2020-07-01 #11231

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
d37ad0c
Add virtual hub bgp connections subresources virtualRouterPeerAdverti…
litchiyangMSFT Aug 12, 2020
a9f762d
Add examples
litchiyangMSFT Aug 12, 2020
f6f42c4
Change name of operationid
litchiyangMSFT Aug 13, 2020
34bc612
change output of advertised route
litchiyangMSFT Aug 13, 2020
6e1e330
Merge branch 'network-july-release' of https://github.com/Azure/azure…
litchiyangMSFT Sep 9, 2020
b8e22cc
Add PUT InboundSecurityRules for NVA
litchiyangMSFT Aug 7, 2020
f998a9a
merge
litchiyangMSFT Aug 12, 2020
d035911
Add examples
litchiyangMSFT Aug 12, 2020
8577f7a
merge
litchiyangMSFT Aug 13, 2020
676b2f6
merge
litchiyangMSFT Aug 13, 2020
4dc41ce
change output of advertised route
litchiyangMSFT Aug 13, 2020
c4cf388
Merge branch 'network-july-release' of https://github.com/Azure/azure…
litchiyangMSFT Sep 15, 2020
7881279
Add type local to virtualNetworkGateway
litchiyangMSFT Sep 16, 2020
ef256aa
fix bug
litchiyangMSFT Sep 16, 2020
0df8f1c
fix bug
litchiyangMSFT Sep 16, 2020
895f8e6
fix typo
litchiyangMSFT Sep 16, 2020
69f08e4
fix bug and add requirements
litchiyangMSFT Sep 17, 2020
4bb5071
Add Enum
litchiyangMSFT Sep 17, 2020
d7ff365
fix bug
litchiyangMSFT Sep 17, 2020
645360e
Merge branch 'network-july-release' of https://github.com/Azure/azure…
litchiyangMSFT Oct 14, 2020
077982a
Add InboundSecurityRule, virtualRouterPeerAdvertisedRoute and virtual…
litchiyangMSFT Oct 14, 2020
091f8b8
prettier
litchiyangMSFT Oct 14, 2020
395fb88
Add to 0701
litchiyangMSFT Oct 16, 2020
f99609c
Merge branch 'network-july-release' of https://github.com/Azure/azure…
litchiyangMSFT Oct 16, 2020
a4b72d4
Update virtualNetworkGateway.json
litchiyangMSFT Oct 16, 2020
4140100
Revert "Update virtualNetworkGateway.json"
litchiyangMSFT Oct 16, 2020
c24b402
Change description
litchiyangMSFT Oct 16, 2020
43d1081
change names
litchiyangMSFT Oct 16, 2020
d5b48f5
change name to match
litchiyangMSFT Oct 16, 2020
6beb960
match
litchiyangMSFT Oct 16, 2020
17d1510
change definition
litchiyangMSFT Oct 19, 2020
81f85b0
change reference
litchiyangMSFT Oct 19, 2020
86a32da
change ref
litchiyangMSFT Oct 19, 2020
fc331fd
delete from 0601
litchiyangMSFT Oct 19, 2020
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,8 +2291,7 @@
"description": "The type of this virtual network gateway.",
"enum": [
"Vpn",
"ExpressRoute",
"LocalGateway"
"ExpressRoute"
],
"x-ms-enum": {
"name": "VirtualNetworkGatewayType",
Expand Down Expand Up @@ -2374,14 +2373,6 @@
"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 @@ -2759,30 +2750,6 @@
},
"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
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,15 @@
"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": {
"readOnly": true,
"description": "The extended location of type local virtual network gateway.",
"$ref": "./network.json#/definitions/ExtendedLocation"
}
},
"description": "VirtualNetworkGateway properties."
Expand Down