Skip to content

enableThreatMonitoring

Enable or disable Threat Monitoring on a Rubrik cluster. Supports CDM clusters, Cloud Direct clusters, and Active Directory workload-type enablement.

Arguments

Argument Type Description
input (required) EnableThreatMonitoringInput! Configuration to enable or disable Threat Monitoring.

Returns

Void

Sample

mutation EnableThreatMonitoring($input: EnableThreatMonitoringInput!) {
  enableThreatMonitoring(input: $input)
}
{
  "input": {
    "status": {
      "enabled": true,
      "entityId": "example-string",
      "entityType": "ACTIVE_DIRECTORY"
    }
  }
}
{
  "data": {
    "enableThreatMonitoring": "example-string"
  }
}