Returns the specified Azure machine
GET/v1/cloudconfigs/azure/:configUid/machinePools/:machinePoolName/machines/:machineUid
Returns a Azure machine for the specified uid.
Request
Path Parameters
Cluster's cloud config uid
Machine pool name
Machine uid
Header Parameters
Scope the request to the specified project uid
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
- Array [
- ]
metadata object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
annotations object
Annotations are system generated key value metadata for the resource. As an input certain annotations like description can be set
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
labels object
Labels are key value data to organize and categorize resources. Providing spectro__tag as value for a label is considered as a kubernetes compliant tag
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
Name of the resource
UID is the unique identifier generated for the resource. This is not an input field for any request.
Populated by the system. Read-only.
spec object
Azure cloud VM definition spec
additionalTags object
availabilityZone object
Azure Machine Spec Availability zone
image object
Azure Machine Spec Image
nics object[]
osDisk objectrequired
managedDisk object
Possible values: [Linux
, Windows
]
Default value: Linux
status object
cloud machine status
health object
Machine health state
conditions object[]
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
Possible values: [Pending
, Provisioning
, Provisioned
, Running
, Deleting
, Deleted
, Failed
, Unknown
]
maintenanceStatus object
Machine maintenance status
{
"kind": "string",
"metadata": {
"annotations": {},
"creationTimestamp": "2023-12-01T21:31:48.266Z",
"deletionTimestamp": "2023-12-01T21:31:48.266Z",
"labels": {},
"lastModifiedTimestamp": "2023-12-01T21:31:48.266Z",
"name": "string",
"uid": "string"
},
"spec": {
"additionalTags": {},
"allocatePublicIP": true,
"availabilityZone": {
"enabled": true,
"id": "string"
},
"image": {
"gallery": "string",
"id": "string",
"name": "string",
"offer": "string",
"publisher": "string",
"resourceGroup": "string",
"sku": "string",
"subscriptionId": "string",
"version": "string"
},
"instanceType": "string",
"location": "string",
"nics": [
{
"index": 0,
"privateIPs": [
"string"
],
"publicIp": "string"
}
],
"osDisk": {
"diskSizeGB": 0,
"managedDisk": {
"storageAccountType": "string"
},
"osType": "Linux"
},
"sshPublicKey": "string"
},
"status": {
"health": {
"conditions": [
{
"message": "string",
"reason": "string",
"status": "string",
"type": "string"
}
],
"lastHeartBeatTimestamp": "2023-12-01T21:31:48.267Z",
"state": "string"
},
"instanceState": "Pending",
"maintenanceStatus": {
"action": "string",
"message": "string",
"state": "string"
}
}
}