Skip to content

removeDisk

Marks the disk removed and updates cluster metadata.

Arguments

Argument Type Description
input (required) RemoveDiskInput! Input for InternalRemoveDisk.

Returns

ResponseSuccess!

Sample

mutation RemoveDisk($input: RemoveDiskInput!) {
  removeDisk(input: $input) {
    success
  }
}
{
  "input": {
    "diskId": "example-string",
    "id": "example-string"
  }
}
{
  "data": {
    "removeDisk": {
      "success": true
    }
  }
}