@danp The POST /vbds endpoint allows configuring both "RW" or "RO" and a bootable Boolean.
If I need to mount an OS installation ISO and a separate provisioning VDI to the same VM, I assume I must execute two distinct POST /vbds requests:
For the CD-ROM (ISO): Set "mode": "RO" and "bootable": true.
For the provisioning VDI: Set "mode": "RW" and "bootable": false.
Would this work in mounting my OS .iso to my VM in the CD-ROM and also mount the VDI to the vm so it will read it on first boot?
{
"VM": "VM-UUID",
"VDI": "VDI-UUID",
"bootable": false,
"mode": "RW"
}