Skip to content

updateAgentDeploymentSettingInBatch

Change the Rubrik Backup Service deployment setting in batch.

Arguments

Argument Type Description
input (required) UpdateAgentDeploymentSettingInBatchInput! List of Rubrik Backup Service deployment settings.

Returns

UpdateAgentDeploymentSettingInBatchReply!

Sample

mutation UpdateAgentDeploymentSettingInBatch($input: UpdateAgentDeploymentSettingInBatchInput!) {
  updateAgentDeploymentSettingInBatch(input: $input)
}
{
  "input": {
    "requests": [
      {
        "clusterUuid": "example-string",
        "settings": {
          "isAutomatic": true
        }
      }
    ]
  }
}
{
  "data": {
    "updateAgentDeploymentSettingInBatch": {
      "settings": [
        {}
      ]
    }
  }
}