Skip to content

migrateNutanixMountV1

Relocate a Nutanix virtual machine to another storage container Supported in v6.0+ Initiate a request to migrate the virtual disks of a specified Nutanix Live Mount to another storage container. The destination storage container has been specified when the Live Mount was created. The Live Mount will be deleted when the relocation succeeds.

Arguments

Argument Type Description
input (required) MigrateNutanixMountV1Input! Input for V1CreateNutanixVmMountMigration.

Returns

AsyncRequestStatus!

Sample

mutation MigrateNutanixMountV1($input: MigrateNutanixMountV1Input!) {
  migrateNutanixMountV1(input: $input) {
    endTime
    id
    nodeId
    progress
    result
    startTime
    status
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "migrateNutanixMountV1": {
      "endTime": "2024-01-01T00:00:00.000Z",
      "id": "example-string",
      "nodeId": "example-string",
      "progress": 0.0,
      "result": "example-string",
      "startTime": "2024-01-01T00:00:00.000Z",
      "error": {
        "message": "example-string"
      },
      "links": [
        {
          "href": "example-string",
          "rel": "example-string"
        }
      ]
    }
  }
}