Skip to content

[Test] Add properties in VirtualNetworkPeeringPropertiesFormat #3686

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

Open
wants to merge 1 commit into
base: release-Microsoft.Network-2022-09-01
Choose a base branch
from
Open
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 @@ -1678,10 +1678,36 @@
"$ref": "./network.json#/definitions/SubResource",
"description": "The reference to the remote virtual network. The remote virtual network can be in the same or different region (preview). See here to register for the preview and learn more (https://docs.microsoft.com/en-us/azure/virtual-network/virtual-network-create-peering)."
},
"localAddressSpace": {
"$ref": "#/definitions/AddressSpace",
"description": "The local address space of the local virtual network that is peered."
},
"localVirtualNetworkAddressSpace": {
"$ref": "#/definitions/AddressSpace",
"description": "The current local address space of the local virtual network that is peered."
},
"remoteAddressSpace": {
"$ref": "#/definitions/AddressSpace",
"description": "The reference to the address space peered with the remote virtual network."
},
"peerCompleteVnets": {
"type": "boolean",
"description": "Whether complete virtual network address space is peered."
},
"localSubnetNames": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of local subnet names that are subnet peered with remote virtual network."
},
"remoteSubnetNames": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of remote subnet names from remote virtual network that are subnet peered."
},
"remoteVirtualNetworkAddressSpace": {
"$ref": "#/definitions/AddressSpace",
"description": "The reference to the current address space of the remote virtual network."
Expand Down