Azure Kubernetes Service · Schema
AgentPoolAvailableVersions
The available agent pool versions.
AzureCloudContainersDevOpsKubernetesOrchestration
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The ID of the agent pool version list. |
| name | string | The name of the agent pool version list. |
| type | string | The resource type. |
| properties | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AgentPoolAvailableVersions",
"title": "AgentPoolAvailableVersions",
"type": "object",
"description": "The available agent pool versions.",
"properties": {
"id": {
"type": "string",
"readOnly": true,
"description": "The ID of the agent pool version list.",
"example": "abc123"
},
"name": {
"type": "string",
"readOnly": true,
"description": "The name of the agent pool version list.",
"example": "Example Title"
},
"type": {
"type": "string",
"readOnly": true,
"description": "The resource type.",
"example": "example_value"
},
"properties": {
"type": "object",
"properties": {
"agentPoolVersions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"default": {
"type": "boolean",
"description": "Whether this version is the default."
},
"kubernetesVersion": {
"type": "string",
"description": "The Kubernetes version."
},
"isPreview": {
"type": "boolean",
"description": "Whether this version is in preview."
}
}
}
}
},
"example": "example_value"
}
}
}