Module Values.GitHubLocationSource

Information about the location of application artifacts stored in GitHub.

Sourcetype nonrec t = {
  1. repository : Repository.t option;
    (*

    The GitHub account and repository pair that stores a reference to the commit that represents the bundled artifacts for the application revision. Specified as account/repository.

    *)
  2. commitId : CommitId.t option;
    (*

    The SHA1 commit ID of the GitHub commit that represents the bundled artifacts for the application revision.

    *)
}
Sourceval make : ?repository:??? -> ?commitId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Repository.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