Azure Networking · Schema

VirtualNetworkListResult

Response for the ListVirtualNetworks API service call.

AzureCloudInfrastructureMicrosoftNetworking

Properties

Name Type Description
value array A list of virtual networks in a resource group.
nextLink string The URL to get the next set of results.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-networking-virtualnetworklistresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualNetworkListResult",
  "title": "VirtualNetworkListResult",
  "type": "object",
  "description": "Response for the ListVirtualNetworks API service call.",
  "properties": {
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VirtualNetwork"
      },
      "description": "A list of virtual networks in a resource group."
    },
    "nextLink": {
      "type": "string",
      "description": "The URL to get the next set of results."
    }
  }
}