Skip to content

batchMountHypervVm

Mount snapshots from multiple virtual machines Supported in v7.0+ Mounts a batch of snapshots from a group of specified virtual machines.

Arguments

Argument Type Description
input (required) BatchMountHypervVmInput! Input for V1BatchMountHypervVm.

Returns

BatchMountHypervVmReply!

Sample

mutation BatchMountHypervVm($input: BatchMountHypervVmInput!) {
  batchMountHypervVm(input: $input)
}
{
  "input": {
    "clusterUuid": "example-string",
    "config": {
      "snapshots": [
        {
          "mountConfig": {},
          "vmId": "example-string"
        }
      ]
    }
  }
}
{
  "data": {
    "batchMountHypervVm": {
      "failedRequests": [
        {
          "error": "example-string",
          "vmId": "example-string"
        }
      ],
      "successfulRequests": [
        {
          "vmId": "example-string"
        }
      ]
    }
  }
}