Skip to content

updateK8sProtectionSet

Update a Kubernetes protection set Supported in v9.1+ Updates a Kubernetes protection set with the specified properties.

Arguments

Argument Type Description
input (required) UpdateK8sProtectionSetInput! Input for V1UpdateK8sProtectionSet.

Returns

ResponseSuccess!

Sample

mutation UpdateK8sProtectionSet($input: UpdateK8sProtectionSetInput!) {
  updateK8sProtectionSet(input: $input) {
    success
  }
}
{
  "input": {
    "config": {},
    "id": "example-string"
  }
}
{
  "data": {
    "updateK8sProtectionSet": {
      "success": true
    }
  }
}