Module Values.AuthenticationConfigSource

Contains information about the authentication config that the connector supports.

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

    Indicates whether basic authentication is supported by the connector.

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

    Indicates whether API key authentication is supported by the connector

    *)
  3. isOAuth2Supported : Boolean.t option;
    (*

    Indicates whether OAuth 2.0 authentication is supported by the connector.

    *)
  4. isCustomAuthSupported : Boolean.t option;
    (*

    Indicates whether custom authentication is supported by the connector

    *)
  5. oAuth2Defaults : OAuth2Defaults.t option;
    (*

    Contains the default values required for OAuth 2.0 authentication.

    *)
  6. customAuthConfigs : CustomAuthConfigList.t option;
    (*

    Contains information required for custom authentication.

    *)
}
Sourceval make : ?isBasicAuthSupported:??? -> ?isApiKeyAuthSupported:??? -> ?isOAuth2Supported:??? -> ?isCustomAuthSupported:??? -> ?oAuth2Defaults:??? -> ?customAuthConfigs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of ConnectorSuppliedValue.t ] list | `String of Key.t ]) list ] list | `String of CustomAuthenticationType.t ]) list ] list | `Structure of (string * [> `List of [> `Enum of string | `String of OAuthScope.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of ConnectorSuppliedValue.t ] list | `String of Key.t ]) list ] list ]) 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