Module Values_3.VerifiedAccessInstanceUserTrustProviderClientConfigurationSource

Describes the trust provider.

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

    The trust provider type.

    *)
  2. scopes : Values_0.String_.t option;
    (*

    The set of user claims to be requested from the IdP.

    *)
  3. issuer : Values_0.String_.t option;
    (*

    The OIDC issuer identifier of the IdP.

    *)
  4. authorizationEndpoint : Values_0.String_.t option;
    (*

    The authorization endpoint of the IdP.

    *)
  5. publicSigningKeyEndpoint : Values_0.String_.t option;
    (*

    The public signing key endpoint.

    *)
  6. tokenEndpoint : Values_0.String_.t option;
    (*

    The token endpoint of the IdP.

    *)
  7. userInfoEndpoint : Values_0.String_.t option;
    (*

    The user info endpoint of the IdP.

    *)
  8. clientId : Values_0.String_.t option;
    (*

    The OAuth 2.0 client identifier.

    *)
  9. clientSecret : Values_0.ClientSecretType.t option;
    (*

    The OAuth 2.0 client secret.

    *)
  10. pkceEnabled : Values_0.Boolean.t option;
    (*

    Indicates whether Proof of Key Code Exchange (PKCE) is enabled.

    *)
}
Sourceval make : ?type_:??? -> ?scopes:??? -> ?issuer:??? -> ?authorizationEndpoint:??? -> ?publicSigningKeyEndpoint:??? -> ?tokenEndpoint:??? -> ?userInfoEndpoint:??? -> ?clientId:??? -> ?clientSecret:??? -> ?pkceEnabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `String of Values_0.String_.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