VmHardwareCdromCreateSpec
The Cdrom.CreateSpec structure provides a specification for the configuration of a newly-created virtual CD-ROM device.
Properties
Flag indicating whether the guest can connect and disconnect the device. Defaults to false if unset.
Physical resource backing for the virtual CD-ROM device. If unset, defaults to automatic detection of a suitable host device.
Address for attaching the device to a virtual IDE adapter. If unset, the server will choose an available address; if none is available, the request will fail.
Address for attaching the device to a virtual SATA adapter. If unset, the server will choose an available address; if none is available, the request will fail.
Flag indicating whether the virtual device should be connected whenever the virtual machine is powered on. Defaults to false if unset.
The Cdrom.HostBusAdapterType enumerated type defines the valid types of host bus adapters that may be used for attaching a Cdrom to a virtual machine.
IDE : Cdrom is attached to an IDE adapter.
SATA : Cdrom is attached to a SATA adapter.
Possible values are: IDE , SATA
JSON Example
{
"allow_guest_control": false,
"backing": {
"device_access_type": "EMULATION",
"host_device": "string",
"iso_file": "string",
"type": "ISO_FILE"
},
"ide": {
"master": false,
"primary": false
},
"sata": {
"bus": 0,
"unit": 0
},
"start_connected": false,
"type": "IDE"
}