Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{

Check notice on line 1 in specification/containerservice/resource-manager/Microsoft.ContainerService/aks/stable/2025-04-01/managedClusters.json

View workflow job for this annotation

GitHub Actions / TypeSpec Requirement

Brownfield services will soon be required to convert from OpenAPI to TypeSpec. See https://aka.ms/azsdk/typespec.
"swagger": "2.0",
"info": {
"title": "ContainerServiceClient",
Expand Down Expand Up @@ -3590,6 +3590,10 @@
},
"virtualMachineNodesStatus": {
"$ref": "#/definitions/VirtualMachineNodesStatus"
},
"status": {
"$ref": "#/definitions/AgentPoolStatus",
"description": "Contains read-only information about the Agent Pool."
}
},
"description": "Properties for the container service agent pool profile."
Expand Down Expand Up @@ -5249,6 +5253,10 @@
"bootstrapProfile": {
"$ref": "#/definitions/ManagedClusterBootstrapProfile",
"description": "Profile of the cluster bootstrap configuration."
},
"status": {
"$ref": "#/definitions/ManagedClusterStatus",
"description": "Contains read-only information about the Managed Cluster."
}
},
"description": "Properties of the managed cluster."
Expand Down Expand Up @@ -6219,6 +6227,30 @@
},
"description": "An error response from the Container service."
},
"ManagedClusterStatus": {
"type": "object",
"properties": {
"provisioningError": {
"$ref": "#/definitions/CloudErrorBody",
"title": "The error details information of the managed cluster.",
"readOnly": true,
"description": "Preserves the detailed info of failure. If there was no error, this field is omitted."
}
},
"description": "Contains read-only information about the Managed Cluster."
},
"AgentPoolStatus": {
"type": "object",
"properties": {
"provisioningError": {
"$ref": "#/definitions/CloudErrorBody",
"title": "The error detail information of the agent pool.",
"readOnly": true,
"description": "Preserves the detailed info of failure. If there was no error, this field is omitted."
}
},
"description": "Contains read-only information about the Agent Pool."
},
"CloudErrorBody": {
"type": "object",
"x-ms-external": true,
Expand Down
Loading