Module Values.RegisterCertificateRequestSource

Registers a certificate for a secure LDAP or client certificate authentication.

Sourcetype nonrec t = {
  1. directoryId : DirectoryId.t;
    (*

    The identifier of the directory.

    *)
  2. certificateData : CertificateData.t;
    (*

    The certificate PEM string that needs to be registered.

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

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

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

    A ClientCertAuthSettings object that contains client certificate authentication settings.

    *)
}
Sourceval context_ : string
Sourceval make : ?type_:??? -> ?clientCertAuthSettings:??? -> directoryId:DirectoryId.t -> certificateData:CertificateData.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DirectoryId.t | `Structure of (string * [> `String of OCSPUrl.t ]) list ]) 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