Module Values.OnPremiseConfigurationSource

Provides the configuration information to connect to GitHub Enterprise Server (on premises).

Sourcetype nonrec t = {
  1. hostUrl : Url.t;
    (*

    The GitHub host URL or API endpoint URL. For example, https://on-prem-host-url/api/v3/

    *)
  2. organizationName : OrganizationName.t;
    (*

    The name of the organization of the GitHub Enterprise Server (on-premises) 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.

    *)
  3. sslCertificateS3Path : S3Path.t;
    (*

    The path to the SSL certificate stored in an Amazon S3 bucket. You use this to connect to GitHub if you require a secure SSL connection. You can simply generate a self-signed X509 certificate on any computer using OpenSSL. For an example of using OpenSSL to create an X509 certificate, see Create and sign an X509 certificate.

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