VMware · Schema
VMInfo
Detailed virtual machine configuration and state
Cloud ComputingContainer ManagementHybrid CloudInfrastructureVirtualization
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Display name of the virtual machine |
| identity | object | VM identity information |
| power_state | string | |
| guest_OS | string | Configured guest operating system |
| boot | object | |
| disks | object | Map of disk identifier to disk configuration |
| nics | object | Map of NIC identifier to NIC configuration |
| cdroms | object | Map of CD-ROM identifier to CD-ROM configuration |
| parallel_ports | object | |
| serial_ports | object | |
| floppy_drives | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "VMInfo",
"type": "object",
"description": "Detailed virtual machine configuration and state",
"properties": {
"name": {
"type": "string",
"description": "Display name of the virtual machine"
},
"identity": {
"type": "object",
"description": "VM identity information"
},
"power_state": {
"type": "string"
},
"guest_OS": {
"type": "string",
"description": "Configured guest operating system"
},
"boot": {
"type": "object"
},
"disks": {
"type": "object",
"description": "Map of disk identifier to disk configuration"
},
"nics": {
"type": "object",
"description": "Map of NIC identifier to NIC configuration"
},
"cdroms": {
"type": "object",
"description": "Map of CD-ROM identifier to CD-ROM configuration"
},
"parallel_ports": {
"type": "object"
},
"serial_ports": {
"type": "object"
},
"floppy_drives": {
"type": "object"
}
}
}