Skip to content

patchNutanixMountV1

Change Nutanix Live Mount power status Supported in v6.0+ Changes the power status of a mounted Nutanix virtual machine.

Arguments

Argument Type Description
input (required) PatchNutanixMountV1Input! Input for V1PatchNutanixVmMount.

Returns

PatchNutanixMountV1Reply!

Sample

mutation PatchNutanixMountV1($input: PatchNutanixMountV1Input!) {
  patchNutanixMountV1(input: $input)
}
{
  "input": {
    "config": {
      "shouldPowerOn": true
    },
    "id": "example-string"
  }
}
{
  "data": {
    "patchNutanixMountV1": {
      "nutanixVmMountSummary": {
        "id": "example-string",
        "isReady": true,
        "migrationStatus": "example-string",
        "mountRequestId": "example-string",
        "mountStatus": "NUTANIX_VM_MOUNT_STATUS_DELETING",
        "mountedDate": "2024-01-01T00:00:00.000Z"
      }
    }
  }
}