Module Values.CertificateSource

Information about the certificate.

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

    The identifier of the certificate.

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

    The state of the certificate.

    *)
  3. stateReason : CertificateStateReason.t option;
    (*

    Describes a state change for the certificate.

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

    The common name for the certificate.

    *)
  5. registeredDateTime : CertificateRegisteredDateTime.t option;
    (*

    The date and time that the certificate was registered.

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

    The date and time when the certificate will expire.

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

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

    *)
  8. clientCertAuthSettings : ClientCertAuthSettings.t option;
    (*

    A ClientCertAuthSettings object that contains client certificate authentication settings.

    *)
}
Sourceval make : ?certificateId:??? -> ?state:??? -> ?stateReason:??? -> ?commonName:??? -> ?registeredDateTime:??? -> ?expiryDateTime:??? -> ?type_:??? -> ?clientCertAuthSettings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CertificateId.t | `Structure of (string * [> `String of OCSPUrl.t ]) list | `Timestamp of CertificateRegisteredDateTime.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