Skip to content

refreshStorageArrays

Refresh storage arrays in Rubrik clusters.

Arguments

Argument Type Description
input (required) RefreshStorageArraysInput! List of storage arrays to refresh.

Returns

RefreshStorageArraysReply!

Sample

mutation RefreshStorageArrays($input: RefreshStorageArraysInput!) {
  refreshStorageArrays(input: $input)
}
{
  "input": {
    "inputs": [
      {
        "clusterUuid": "example-string",
        "id": "example-string"
      }
    ]
  }
}
{
  "data": {
    "refreshStorageArrays": {
      "responses": [
        {
          "errorMessage": "example-string",
          "id": "example-string"
        }
      ]
    }
  }
}