Skip to content

clusterCertificates

Get all certificates Supported in v5.1+ Get all certificates.

Arguments

Argument Type Description
input (required) QueryCertificatesInput! Input for V1QueryCertificates.

Returns

CertificateSummaryListResponse!

Sample

query ClusterCertificates($input: QueryCertificatesInput!) {
  clusterCertificates(input: $input) {
    hasMore
    nextCursor
    total
  }
}
{
  "input": {
    "clusterUuid": "example-string"
  }
}
{
  "data": {
    "clusterCertificates": {
      "hasMore": true,
      "nextCursor": "example-string",
      "total": 0,
      "data": [
        {
          "certId": "example-string",
          "description": "example-string",
          "expiration": "2024-01-01T00:00:00.000Z",
          "hasKey": true,
          "isInternal": true,
          "isTrusted": true
        }
      ]
    }
  }
}