Skip to content

batchMountNutanixVm

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) BatchMountNutanixVmInput! Input for V1BatchMountNutanixVm.

Returns

BatchMountNutanixVmReply!

Sample

mutation BatchMountNutanixVm($input: BatchMountNutanixVmInput!) {
  batchMountNutanixVm(input: $input)
}
{
  "input": {
    "config": {
      "snapshots": [
        {
          "mountConfig": {
            "shouldDisableMigration": true
          },
          "vmId": "example-string"
        }
      ]
    }
  }
}
{
  "data": {
    "batchMountNutanixVm": {
      "output": {}
    }
  }
}