Skip to content

batchInstantRecoverHypervVm

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

Arguments

Argument Type Description
input (required) BatchInstantRecoverHypervVmInput! Input for V1BatchInstantRecoverHypervVm.

Returns

BatchInstantRecoverHypervVmReply!

Sample

mutation BatchInstantRecoverHypervVm($input: BatchInstantRecoverHypervVmInput!) {
  batchInstantRecoverHypervVm(input: $input)
}
{
  "input": {
    "clusterUuid": "example-string",
    "config": {
      "snapshots": [
        {
          "instantRecoveryConfig": {},
          "vmId": "example-string"
        }
      ]
    }
  }
}
{
  "data": {
    "batchInstantRecoverHypervVm": {
      "failedRequests": [
        {
          "error": "example-string",
          "vmId": "example-string"
        }
      ],
      "successfulRequests": [
        {
          "vmId": "example-string"
        }
      ]
    }
  }
}