Skip to content

clusterCsr

Get the cluster certificate signing request Supported in v7.0+ Returns the certificate signing request generated from the private key of the Rubrik cluster.

Arguments

Argument Type Description
input (required) GetClusterCsrInput! Input for V1GetClusterCsr.

Returns

ClusterCsr!

Sample

query ClusterCsr($input: GetClusterCsrInput!) {
  clusterCsr(input: $input) {
    csr
  }
}
{
  "input": {
    "id": "example-string"
  }
}
{
  "data": {
    "clusterCsr": {
      "csr": "example-string"
    }
  }
}