Skip to content

Commit 65cd33c

Browse files
author
Bowen Xu
committed
Adding IsVMInStandbyPool boolean property in VirtualMachineInstanceView
This change introduces a boolean property in VirtualMachineInstanceView to indicate whether a VM is in or out of Standby Pool, which is currently a preview feature.
1 parent a8eef6d commit 65cd33c

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2023-09-01/examples/virtualMachineExamples/VirtualMachine_Get_InstanceView.json

+1
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@
119119
}
120120
]
121121
},
122+
"isVMInStandbyPool": false,
122123
"statuses": [
123124
{
124125
"code": "ProvisioningState/succeeded",

specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2023-09-01/examples/virtualMachineExamples/VirtualMachine_List_MaximumSet_Gen.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,8 @@
807807
"time": "2022-01-14T16:43:41.657Z"
808808
}
809809
]
810-
}
810+
},
811+
"isVMInStandbyPool": false
811812
},
812813
"licenseType": "aaaaaaaaaaaaaa",
813814
"extensionsTimeBudget": "aaaaaaaaaaaaaaaaaaaaaa",

specification/compute/resource-manager/Microsoft.Compute/ComputeRP/stable/2023-09-01/virtualMachine.json

+5
Original file line numberDiff line numberDiff line change
@@ -3024,6 +3024,11 @@
30243024
"patchStatus": {
30253025
"$ref": "#/definitions/VirtualMachinePatchStatus",
30263026
"description": "[Preview Feature] The status of virtual machine patch operations."
3027+
},
3028+
"isVMInStandbyPool": {
3029+
"type": "boolean",
3030+
"readOnly": true,
3031+
"description": "[Preview Feature] Specifies whether the VM is currently in or out of the Standby Pool."
30273032
}
30283033
},
30293034
"description": "The instance view of a virtual machine."

0 commit comments

Comments
 (0)