VirtualNetworkPeeringListResult

Response for ListSubnets API service call. Retrieves all subnets that belong to a virtual network.

AzureCloudInfrastructureMicrosoftNetworking

Properties

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

JSON Schema

azure-networking-services-virtual-network-peering-list-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-networking-services/refs/heads/main/json-schema/azure-networking-services-virtual-network-peering-list-result-schema.json",
  "title": "VirtualNetworkPeeringListResult",
  "description": "Response for ListSubnets API service call. Retrieves all subnets that belong to a virtual network.",
  "properties": {
    "nextLink": {
      "description": "The URL to get the next set of results.",
      "type": "string"
    },
    "value": {
      "description": "The peerings in a virtual network.",
      "items": {
        "$ref": "#/definitions/VirtualNetworkPeering"
      },
      "type": "array"
    }
  },
  "type": "object"
}