INPUT_OBJECT

QueryCertificatesInput

link GraphQL Schema definition

  • input QueryCertificatesInput {
  • # Required. UUID used to identify the cluster the request goes to.
  • clusterUuid: String!
  • # Search certificates by description.
  • description: String
  • # Specifies which certificate usages to exclude.
  • excludeUsages: [ExcludeUsages!]
  • # Search certificates by expiration.
  • expiration: String
  • # Search certificates by whether or not they contain a private key.
  • hasKey: Boolean
  • # Specifies whether to include expired certificates. The default is false.
  • includeExpired: Boolean
  • # Filter certificates based on whether they are internal to the system. If set to
  • # true, returns both internal and non-internal certificates. If set to false or
  • # omitted, returns only non-internal certificates.
  • isInternal: Boolean
  • # Search certificates according to whether or not they are added to truststore.
  • # The default is false.
  • isTrusted: Boolean
  • # Search by certificate name.
  • name: String
  • # Filters certificates based on their certificate value. Only certificates
  • # matching the provided value will be returned.
  • pemFile: String
  • # Attribute by which the list of certificates is sorted.
  • sortBy: V1QueryCertificatesRequestSortBy
  • # Sort order, either ascending or descending.
  • sortOrder: V1QueryCertificatesRequestSortOrder
  • }

link Require by