Skip to content
Merged
Show file tree
Hide file tree
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
Expand Up @@ -13,6 +13,9 @@
"id": "/subscriptions/26fe00f8-9173-4872-9134-bb1d2e00343a/resourceGroups/dummyRG/providers/Microsoft.ContainerService/managedClusters/round/agentPools/nodepool1/machines/aks-nodepool1-25481572-vmss000000",
"name": "aks-nodepool1-25481572-vmss000000",
"type": "Microsoft.ContainerService/managedClusters/agentPools/machines",
"zones": [
"1"
],
"properties": {
"network": {
"ipAddresses": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
"id": "/subscriptions/26fe00f8-9173-4872-9134-bb1d2e00343a/resourceGroups/dummyRG/providers/Microsoft.ContainerService/managedClusters/round/agentPools/nodepool1/machines/aks-nodepool1-25481572-vmss000000",
"name": "aks-nodepool1-25481572-vmss000000",
"type": "Microsoft.ContainerService/managedClusters/agentPools/machines",
"zones": [
"1"
],
"properties": {
"network": {
"ipAddresses": [
Expand Down
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 @@ -8116,6 +8116,14 @@
],
"description": "A machine. Contains details about the underlying virtual machine. A machine may be visible here but not in kubectl get nodes; if so it may be because the machine has not been registered with the Kubernetes API Server yet.",
"properties": {
"zones": {
"type": "array",
"items": {
"type": "string"
},
"readOnly": true,
"description": "The Availability zone in which machine is located."
},
"properties": {
"$ref": "#/definitions/MachineProperties",
"description": "The properties of the machine"
Expand Down
Loading