Module Values.CustomConnectorProfileCredentialsSource

The connector-specific profile credentials that are required when using the custom connector.

Sourcetype nonrec t = {
  1. authenticationType : AuthenticationType.t;
    (*

    The authentication type that the custom connector uses for authenticating while creating a connector profile.

    *)
  2. basic : BasicAuthCredentials.t option;
    (*

    The basic credentials that are required for the authentication of the user.

    *)
  3. oauth2 : OAuth2Credentials.t option;
    (*

    The OAuth 2.0 credentials required for the authentication of the user.

    *)
  4. apiKey : ApiKeyCredentials.t option;
    (*

    The API keys required for the authentication of the user.

    *)
  5. custom : CustomAuthCredentials.t option;
    (*

    If the connector uses the custom authentication mechanism, this holds the required credentials.

    *)
}
Sourceval context_ : string
Sourceval make : ?basic:??? -> ?oauth2:??? -> ?apiKey:??? -> ?custom:??? -> authenticationType:AuthenticationType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Map of ([> `String of CredentialsMapKey.t ] * [> `String of CredentialsMapValue.t ]) list | `String of Username.t | `Structure of (string * [> `String of AuthCode.t ]) 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