Module Values.CertificateInfoSource

Contains general information about a certificate.

Sourcetype nonrec t = {
  1. certificateId : CertificateId.t option;
    (*

    The identifier of the certificate.

    *)
  2. commonName : CertificateCN.t option;
    (*

    The common name for the certificate.

    *)
  3. state : CertificateState.t option;
    (*

    The state of the certificate.

    *)
  4. expiryDateTime : CertificateExpiryDateTime.t option;
    (*

    The date and time when the certificate will expire.

    *)
  5. type_ : CertificateType.t option;
    (*

    The function that the registered certificate performs. Valid values include ClientLDAPS or ClientCertAuth. The default value is ClientLDAPS.

    *)
}
Sourceval make : ?certificateId:??? -> ?commonName:??? -> ?state:??? -> ?expiryDateTime:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CertificateId.t | `Timestamp of CertificateExpiryDateTime.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t