Skip to content

deleteStorageArrays

Delete storage arrays from Rubrik clusters.

Arguments

Argument Type Description
input (required) DeleteStorageArraysInput! List of Storage arrays to delete.

Returns

DeleteStorageArraysReply!

Sample

mutation DeleteStorageArrays($input: DeleteStorageArraysInput!) {
  deleteStorageArrays(input: $input)
}
{
  "input": {
    "inputs": [
      {
        "clusterUuid": "example-string",
        "id": "example-string"
      }
    ]
  }
}
{
  "data": {
    "deleteStorageArrays": {
      "responses": [
        {
          "errorMessage": "example-string",
          "id": "example-string"
        }
      ]
    }
  }
}