Module Values.PagerDutyOAuthClientCredentialsConfigSource

OAuth client credentials configuration for PagerDuty.

Sourcetype nonrec t = {
  1. clientName : PagerDutyOAuthClientCredentialsConfigClientNameString.t option;
    (*

    User friendly OAuth client name specified by end user.

    *)
  2. clientId : ClientId.t;
    (*

    OAuth client ID for authenticating with the service.

    *)
  3. exchangeParameters : ExchangeParameters.t option;
    (*

    OAuth token exchange parameters for authenticating with the service.

    *)
  4. clientSecret : ClientSecret.t;
    (*

    OAuth client secret for authenticating with the service.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientName:??? -> ?exchangeParameters:??? -> clientId:ClientId.t -> clientSecret:ClientSecret.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `String of ExchangeParameterValue.t ]) list | `String of PagerDutyOAuthClientCredentialsConfigClientNameString.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