Azure Networking · Schema

LoadBalancerListResult

Response for ListLoadBalancers API service call.

AzureCloudInfrastructureMicrosoftNetworking

Properties

Name Type Description
value array A list of load balancers 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-loadbalancerlistresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LoadBalancerListResult",
  "title": "LoadBalancerListResult",
  "type": "object",
  "description": "Response for ListLoadBalancers API service call.",
  "properties": {
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LoadBalancer"
      },
      "description": "A list of load balancers in a resource group."
    },
    "nextLink": {
      "type": "string",
      "readOnly": true,
      "description": "The URL to get the next set of results."
    }
  }
}