Module Values.SaaSConfigurationSource

Provides the configuration information to connect to GitHub Enterprise Cloud (SaaS).

Sourcetype nonrec t = {
  1. organizationName : OrganizationName.t;
    (*

    The name of the organization of the GitHub Enterprise Cloud (SaaS) account you want to connect to. You can find your organization name by logging into GitHub desktop and selecting Your organizations under your profile picture dropdown.

    *)
  2. hostUrl : Url.t;
    (*

    The GitHub host URL or API endpoint URL. For example, https://api.github.com.

    *)
}
Sourceval context_ : string
Sourceval make : organizationName:OrganizationName.t -> hostUrl:Url.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of OrganizationName.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