Skip to content

updateAutoEnablePolicyClusterConfig

Update Rubrik cluster configuration to enable or not enable the Auto-enabled Data Discovery Policies feature.

Arguments

Argument Type Description
input (required) UpdateAutoEnablePolicyClusterConfigInput! Rubrik cluster configuration to enable or not enable the Auto-enabled Data Discovery Policies feature.

Returns

UpdateAutoEnablePolicyClusterConfigReply!

Sample

mutation UpdateAutoEnablePolicyClusterConfig($input: UpdateAutoEnablePolicyClusterConfigInput!) {
  updateAutoEnablePolicyClusterConfig(input: $input) {
    id
    name
    type
    version
  }
}
{
  "input": {}
}
{
  "data": {
    "updateAutoEnablePolicyClusterConfig": {
      "id": "00000000-0000-0000-0000-000000000000",
      "name": "example-string",
      "type": "Cloud",
      "version": "example-string",
      "datagovAutoEnablePolicyConfig": {
        "clusterId": "example-string",
        "enabled": true
      }
    }
  }
}