Skip to content

unmountDisk

Unmount selected disks.

Arguments

Argument Type Description
input (required) UnmountDiskInput! Input required to unmount disks.

Returns

Void

Sample

mutation UnmountDisk($input: UnmountDiskInput!) {
  unmountDisk(input: $input)
}
{
  "input": {
    "liveMountId": 0,
    "mountIds": [
      0
    ],
    "targetWorkloadId": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "unmountDisk": "example-string"
  }
}