Skip to content

deleteUnmanagedSnapshots

Deletes the snapshots of an unmanaged object using the object IDs.

Arguments

Argument Type Description
input (required) DeleteUnmanagedSnapshotsInput! Input to delete unmanaged snapshots.

Returns

RequestSuccess!

Sample

mutation DeleteUnmanagedSnapshots($input: DeleteUnmanagedSnapshotsInput!) {
  deleteUnmanagedSnapshots(input: $input) {
    success
  }
}
{
  "input": {
    "snapshotIds": [
      "00000000-0000-0000-0000-000000000000"
    ]
  }
}
{
  "data": {
    "deleteUnmanagedSnapshots": {
      "success": true
    }
  }
}