Azure Networking · Schema

VirtualNetworkPeeringListResult

Response for the ListVirtualNetworkPeerings API service call.

AzureCloudInfrastructureMicrosoftNetworking

Properties

Name Type Description
value array The peerings in a virtual network.
nextLink string The URL to get the next set of results.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-networking-virtualnetworkpeeringlistresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualNetworkPeeringListResult",
  "title": "VirtualNetworkPeeringListResult",
  "type": "object",
  "description": "Response for the ListVirtualNetworkPeerings API service call.",
  "properties": {
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VirtualNetworkPeering"
      },
      "description": "The peerings in a virtual network."
    },
    "nextLink": {
      "type": "string",
      "description": "The URL to get the next set of results."
    }
  }
}