Skip to content

updateStorageArrays

Update storage arrays in Rubrik clusters.

Arguments

Argument Type Description
input (required) UpdateStorageArraysInput! List of storage arrays to update.

Returns

UpdateStorageArraysReply!

Sample

mutation UpdateStorageArrays($input: UpdateStorageArraysInput!) {
  updateStorageArrays(input: $input)
}
{
  "input": {
    "configs": [
      {
        "clusterUuid": "example-string",
        "definition": {
          "arrayType": "STORAGE_ARRAY_TYPE_DELL_EMC_POWER_STORE",
          "hostname": "example-string",
          "password": "example-string",
          "username": "example-string"
        },
        "id": "example-string"
      }
    ]
  }
}
{
  "data": {
    "updateStorageArrays": {
      "responses": [
        {
          "errorMessage": "example-string",
          "hostname": "example-string",
          "id": "example-string"
        }
      ]
    }
  }
}