Skip to content

deleteK8sProtectionSet

Delete a Kubernetes protection set Supported in v9.1+ Deletes a Kubernetes protection set by specifying the protection set ID.

Arguments

Argument Type Description
input (required) DeleteK8sProtectionSetInput! Input for V1DeleteK8sProtectionSet.

Returns

ResponseSuccess!

Sample

mutation DeleteK8sProtectionSet($input: DeleteK8sProtectionSetInput!) {
  deleteK8sProtectionSet(input: $input) {
    success
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "deleteK8sProtectionSet": {
      "success": true
    }
  }
}