Module Values.GitHubRepositoryMetadataSource

Contains metadata about a GitHub repository that is integrated with the service.

Sourcetype nonrec t = {
  1. name : ProviderResourceName.t option;
    (*

    The name of the GitHub repository.

    *)
  2. providerResourceId : ProviderResourceId.t option;
    (*

    The provider-specific resource identifier for the GitHub repository.

    *)
  3. owner : GitHubOwner.t option;
    (*

    The owner of the GitHub repository.

    *)
  4. accessType : AccessType.t option;
    (*

    The access type of the GitHub repository. Valid values are PRIVATE and PUBLIC.

    *)
}
Sourceval make : ?name:??? -> ?providerResourceId:??? -> ?owner:??? -> ?accessType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ProviderResourceName.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