Skip to content

deleteNutanixSnapshots

v5.0-v8.0: Delete all snapshots of VM v8.1+: Delete all snapshots of virtual machine Supported in v5.0+ Delete all snapshots of a virtual machine.

Arguments

Argument Type Description
input (required) DeleteNutanixSnapshotsInput! Input for InternalDeleteNutanixSnapshots.

Returns

RequestSuccess!

Sample

mutation DeleteNutanixSnapshots($input: DeleteNutanixSnapshotsInput!) {
  deleteNutanixSnapshots(input: $input) {
    success
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "deleteNutanixSnapshots": {
      "success": true
    }
  }
}