Module Values.ClientAuthenticationSettingInfoSource

Contains information about a client authentication method for a directory.

Sourcetype nonrec t = {
  1. type_ : ClientAuthenticationType.t option;
    (*

    The type of client authentication for the specified directory. If no type is specified, a list of all client authentication types that are supported for the directory is retrieved.

    *)
  2. status : ClientAuthenticationStatus.t option;
    (*

    Whether the client authentication type is enabled or disabled for the specified directory.

    *)
  3. lastUpdatedDateTime : LastUpdatedDateTime.t option;
    (*

    The date and time when the status of the client authentication type was last updated.

    *)
}
Sourceval make : ?type_:??? -> ?status:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Timestamp of LastUpdatedDateTime.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