Skip to content

assignProtection

Assign protection to cassandra objects.

Arguments

Argument Type Description
input (required) AssignProtectionInput! Arguments for protection backup.

Returns

SlaAssignResult!

Sample

mutation AssignProtection($input: AssignProtectionInput!) {
  assignProtection(input: $input) {
    success
  }
}
{
  "input": {
    "backupInput": {},
    "globalSlaAssignType": "doNotProtect",
    "objectIds": [
      "00000000-0000-0000-0000-000000000000"
    ]
  }
}
{
  "data": {
    "assignProtection": {
      "success": true
    }
  }
}