Azure Networking · Schema
BackendAddressPool
Pool of backend IP addresses.
AzureCloudInfrastructureMicrosoftNetworking
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Resource ID. |
| name | string | The name of the resource. |
| properties | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BackendAddressPool",
"title": "BackendAddressPool",
"type": "object",
"description": "Pool of backend IP addresses.",
"properties": {
"id": {
"type": "string",
"description": "Resource ID."
},
"name": {
"type": "string",
"description": "The name of the resource."
},
"properties": {
"type": "object",
"properties": {
"loadBalancerBackendAddresses": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the backend address."
},
"properties": {
"type": "object",
"properties": {
"virtualNetwork": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"description": "Reference to an existing virtual network."
},
"ipAddress": {
"type": "string",
"description": "IP address belonging to the referenced virtual network."
}
}
}
}
},
"description": "An array of backend addresses."
},
"provisioningState": {
"type": "string",
"readOnly": true,
"description": "The provisioning state of the backend address pool resource."
}
}
}
}
}