LoadBalancerBackendAddressPoolListResult

Response for ListBackendAddressPool API service call.

AzureCloudInfrastructureMicrosoftNetworking

Properties

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

JSON Schema

azure-networking-services-load-balancer-backend-address-pool-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-load-balancer-backend-address-pool-list-result-schema.json",
  "title": "LoadBalancerBackendAddressPoolListResult",
  "description": "Response for ListBackendAddressPool API service call.",
  "properties": {
    "nextLink": {
      "description": "The URL to get the next set of results.",
      "readOnly": true,
      "type": "string"
    },
    "value": {
      "description": "A list of backend address pools in a load balancer.",
      "items": {
        "$ref": "#/definitions/BackendAddressPool"
      },
      "type": "array"
    }
  },
  "type": "object"
}