Skip to content

bulkUpdateRansomwareInvestigationStatus

Set whether Ransomware Investigation is enabled or not in bulk.

Arguments

Argument Type Description
input (required) BulkUpdateRansomwareInvestigationEnabledInput! Request to bulk enable or disable Ransomware Investigation.

Returns

Void

Sample

mutation BulkUpdateRansomwareInvestigationStatus($input: BulkUpdateRansomwareInvestigationEnabledInput!) {
  bulkUpdateRansomwareInvestigationStatus(input: $input)
}
{
  "input": {
    "entities": [
      {
        "entityId": "example-string",
        "entityType": "CDM_CLUSTER"
      }
    ],
    "isRansomwareMonitoringEnabled": true
  }
}
{
  "data": {
    "bulkUpdateRansomwareInvestigationStatus": "example-string"
  }
}