VmDiskUpdate Data Type

Properties
name data type constraints description
devicePath string  
fullDevicePath string  
cbtId string  
backupRule string  
controllerId string  
slot string  
present boolean required
bootable boolean required
type VirtualMachineDiskType  
supported boolean required
name string required, max size: 255, min size: 1
size number required, min: 0
virtualMachine NameAndGuid required

Example

{
  "devicePath" : "...",
  "fullDevicePath" : "...",
  "cbtId" : "...",
  "backupRule" : "...",
  "controllerId" : "...",
  "slot" : "...",
  "present" : true,
  "bootable" : true,
  "type" : "GCP_PERSISTENT",
  "supported" : true,
  "name" : "...",
  "size" : 12345,
  "virtualMachine" : {
    "guid" : "f8f73bf9-2445-4bce-a7dd-753be3b40a67",
    "name" : "Entity name"
  }
}