Skip to content

agentDeploymentSetting

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

Arguments

Argument Type Description
input (required) GetVmAgentDeploymentSettingInput! Input for InternalGetVmAgentDeploymentSetting.

Returns

AgentDeploymentSettings!

Sample

query AgentDeploymentSetting($input: GetVmAgentDeploymentSettingInput!) {
  agentDeploymentSetting(input: $input) {
    guestCredentialId
    isAutomatic
  }
}
{
  "input": {
    "clusterUuid": "example-string"
  }
}
{
  "data": {
    "agentDeploymentSetting": {
      "guestCredentialId": "example-string",
      "isAutomatic": true
    }
  }
}