Skip to content

updateGlacierTarget

Edit a target of type Glacier on a Rubrik cluster.

Arguments

Argument Type Description
input (required) UpdateGlacierTargetInput! Input for updating an existing Glacier target.

Returns

Target!

Sample

mutation UpdateGlacierTarget($input: UpdateGlacierTargetInput!) {
  updateGlacierTarget(input: $input) {
    clusterName
    consumedBytes
    failedTasks
    id
    isActive
    isArchived
    isComplianceImmutabilitySupported
    locationConnectionStatus
    locationScope
    name
    readerRetrievalMethod
    runningTasks
    status
    targetType
    upgradeStatus
  }
}
{
  "input": {
    "id": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "updateGlacierTarget": {
      "clusterName": "example-string",
      "consumedBytes": 0,
      "failedTasks": 0,
      "id": "example-string",
      "isActive": true
    }
  }
}