OBJECT

AddClusterCertificateReply

Description

Supported in v5.1+

link GraphQL Schema definition

  • type AddClusterCertificateReply {
  • # Required. Supported in v5.1+
  • # ID of the certificate.
  • certId: String!
  • # Supported in v5.1+
  • # User-friendly description for the certificate.
  • description: String
  • # Required. Supported in v5.1+
  • # The expiration date for the certificate.
  • expiration: DateTime
  • # Required. Supported in v5.1+
  • # v5.1-v6.0: A Boolean value that specifies whether or not the certificate is
  • # associated with a stored private key. When this value is 'true,' the private key
  • # for the certificate is stored. When this value is 'false,' the private key for
  • # the certificate is not stored.
  • # v7.0+: A Boolean value specifying whether the certificate is be added to the
  • # trust store. When the value is 'true' the certificate is added to the trust
  • # store. when the value is 'false', the certificate is not added to trust store.
  • hasKey: Boolean!
  • # Required. Supported in v5.1+
  • # Display name for the certificate.
  • name: String!
  • # Required. Supported in v5.1+
  • # The certificates, in PEM format.
  • pemFile: String!
  • # Required. Supported in v5.1+
  • # A list of components using the certificate.
  • usedBy: String!
  • # Supported in v7.0+
  • # A Boolean value that specifies whether or not the certificate is added to the
  • # trust store. when the value is 'true,' the certificate is added to the trust
  • # store. when this value is 'false,' the certificate is not added to trust store.
  • isTrusted: Boolean
  • }