Module Values_0.ReadClientCredentialsGrantMetadataSource

Read-only metadata for OAuth2 client credentials grant authentication configuration.

Sourcetype nonrec t = {
  1. baseEndpoint : Endpoint.t option;
    (*

    The base endpoint URL for the OAuth2 client credentials grant flow.

    *)
  2. readClientCredentialsDetails : ReadClientCredentialsDetails.t option;
    (*

    The read-only client credentials configuration details.

    *)
  3. clientCredentialsSource : ClientCredentialsSource.t option;
    (*

    The source of client credentials for the OAuth2 client credentials grant flow.

    *)
}
Sourceval make : ?baseEndpoint:??? -> ?readClientCredentialsDetails:??? -> ?clientCredentialsSource:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Endpoint.t | `Structure of (string * [> `Structure of (string * [> `String of ClientId.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