Module Values.GitHubConfigurationSource

Configuration for GitHub repository integration.

Sourcetype nonrec t = {
  1. repoName : String_.t;
    (*

    Associated Github repo name

    *)
  2. repoId : String_.t;
    (*

    Associated Github repo ID

    *)
  3. owner : String_.t;
    (*

    The GitHub repository owner name.

    *)
  4. ownerType : GithubRepoOwnerType.t;
  5. instanceIdentifier : String_.t option;
    (*

    GitHub instance identifier (e.g., github.com or github.enterprise.com)

    *)
}
Sourceval context_ : string
Sourceval make : ?instanceIdentifier:??? -> repoName:String_.t -> repoId:String_.t -> owner:String_.t -> ownerType:GithubRepoOwnerType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of 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