OBJECT

GlobalCertificate

Description

Information about a certificate on Rubrik Security Cloud.

link GraphQL Schema definition

  • type GlobalCertificate {
  • # The ID of the certificate.
  • certificateId: String!
  • # The display name of the certificate.
  • name: String!
  • # The description of the certificate.
  • description: String!
  • # Specifies whether the certificate has a private key.
  • hasKey: Boolean!
  • # The expiration date of the certificate.
  • expiringAt: DateTime
  • # The certificate in raw PEM format.
  • certificate: String!
  • # To whom the certificate was issued.
  • issuedTo: String!
  • # The issuer of the certificate.
  • issuedBy: String!
  • # The date on which the certificate was issued.
  • issuedOn: DateTime
  • # Specifies if the certificate is signed by a Certificate Authority.
  • isCaSigned: Boolean!
  • # The expiration status of the certificate.
  • status: GlobalCertificateStatus!
  • # The SHA-1 fingerprint of the certificate, in hexadecimal format.
  • sha1Fingerprint: String!
  • # The SHA-256 fingerprint of the certificate, in hexadecimal format.
  • sha256Fingerprint: String!
  • # The serial number of the certificate, in hexadecimal format.
  • serialNumber: String!
  • # Specifies whether the certificate was imported directly from Rubrik CDM.
  • isCdmBorn: Boolean!
  • # The FID of the certificate.
  • certificateFid: UUID!
  • # The Rubrik clusters to which the certificate has been uploaded.
  • clusters: [CertificateClusterInfo!]
  • # The usages for the certificate on Rubrik clusters.
  • cdmUsages: [CdmCertificateUsageInfo!]!
  • # The usages for the certificate on Rubrik Security Cloud.
  • usages: [CertificateUsageInfo!]!
  • # The organization to which the certificate has been assigned.
  • org: Org
  • }