Skip to content

updateAgentDeploymentSetting

Change the Rubrik Backup Service deployment setting Supported in v5.0+ Modify the global setting for automatic deployment of the Rubrik Backup Service to virtual machines.

Arguments

Argument Type Description
input (required) UpdateVmAgentDeploymentSettingInput! Input for InternalUpdateVmAgentDeploymentSetting.

Returns

AgentDeploymentSettings!

Sample

mutation UpdateAgentDeploymentSetting($input: UpdateVmAgentDeploymentSettingInput!) {
  updateAgentDeploymentSetting(input: $input) {
    guestCredentialId
    isAutomatic
  }
}
{
  "input": {
    "clusterUuid": "example-string",
    "settings": {
      "isAutomatic": true
    }
  }
}
{
  "data": {
    "updateAgentDeploymentSetting": {
      "guestCredentialId": "example-string",
      "isAutomatic": true
    }
  }
}