Azure Networking · Schema

BackendAddressPoolListResult

Response for ListBackendAddressPools API service call.

AzureCloudInfrastructureMicrosoftNetworking

Properties

Name Type Description
value array A list of backend address pools.
nextLink string The URL to get the next set of results.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-networking-backendaddresspoollistresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BackendAddressPoolListResult",
  "title": "BackendAddressPoolListResult",
  "type": "object",
  "description": "Response for ListBackendAddressPools API service call.",
  "properties": {
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BackendAddressPool"
      },
      "description": "A list of backend address pools."
    },
    "nextLink": {
      "type": "string",
      "readOnly": true,
      "description": "The URL to get the next set of results."
    }
  }
}