Skip to content

markAgentSecondaryCertificate

Mark a certificate to be added to agents Supported in v5.3+ Mark a secondary cluster certificate to be asynchronously synced to all Rubrik Backup Service instances for which this cluster is the primary.

Arguments

Argument Type Description
input (required) MarkAgentSecondaryCertificateInput! Input for V1MarkAgentSecondaryCertificate.

Returns

MarkAgentSecondaryCertificateReply!

Sample

mutation MarkAgentSecondaryCertificate($input: MarkAgentSecondaryCertificateInput!) {
  markAgentSecondaryCertificate(input: $input) {
    certId
    clusterUuid
    isAgentEnabled
    name
  }
}
{
  "input": {
    "certId": "example-string",
    "clusterUuid": "example-string"
  }
}
{
  "data": {
    "markAgentSecondaryCertificate": {
      "certId": "example-string",
      "clusterUuid": "example-string",
      "isAgentEnabled": true,
      "name": "example-string"
    }
  }
}