Module Values.AdvancedSecurityOptionsSource

Specifies the advanced security configuration: whether advanced security is enabled, whether the internal database option is enabled.

Sourcetype nonrec t = {
  1. enabled : Boolean.t option;
    (*

    True if advanced security is enabled.

    *)
  2. internalUserDatabaseEnabled : Boolean.t option;
    (*

    True if the internal user database is enabled.

    *)
  3. sAMLOptions : SAMLOptionsOutput.t option;
    (*

    Describes the SAML application configured for a domain.

    *)
  4. anonymousAuthDisableDate : DisableTimestamp.t option;
    (*

    Specifies the Anonymous Auth Disable Date when Anonymous Auth is enabled.

    *)
  5. anonymousAuthEnabled : Boolean.t option;
    (*

    True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.

    *)
}
Sourceval make : ?enabled:??? -> ?internalUserDatabaseEnabled:??? -> ?sAMLOptions:??? -> ?anonymousAuthDisableDate:??? -> ?anonymousAuthEnabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of IntegerClass.t | `String of String_.t | `Structure of (string * [> `String of SAMLMetadata.t ]) list ]) list | `Timestamp of DisableTimestamp.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