Values.CustomConnectorProfileCredentialsSourceThe connector-specific profile credentials that are required when using the custom connector.
type nonrec t = {authenticationType : AuthenticationType.t;The authentication type that the custom connector uses for authenticating while creating a connector profile.
*)basic : BasicAuthCredentials.t option;The basic credentials that are required for the authentication of the user.
*)oauth2 : OAuth2Credentials.t option;The OAuth 2.0 credentials required for the authentication of the user.
*)apiKey : ApiKeyCredentials.t option;The API keys required for the authentication of the user.
*)custom : CustomAuthCredentials.t option;If the connector uses the custom authentication mechanism, this holds the required credentials.
*)}val make :
?basic:??? ->
?oauth2:??? ->
?apiKey:??? ->
?custom:??? ->
authenticationType:AuthenticationType.t ->
unit ->
tval 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 ]