Module Values.TemplateSyncConfigSource

The detail data for a template sync configuration.

Sourcetype nonrec t = {
  1. branch : GitBranchName.t option;
    (*

    The repository branch.

    *)
  2. repositoryName : RepositoryName.t option;
    (*

    The repository name (for example, myrepos/myrepo).

    *)
  3. repositoryProvider : RepositoryProvider.t option;
    (*

    The repository provider.

    *)
  4. subdirectory : Subdirectory.t option;
    (*

    A subdirectory path to your template bundle version.

    *)
  5. templateName : ResourceName.t option;
    (*

    The template name.

    *)
  6. templateType : TemplateType.t option;
    (*

    The template type.

    *)
}
Sourceval make : ?branch:??? -> ?repositoryName:??? -> ?repositoryProvider:??? -> ?subdirectory:??? -> ?templateName:??? -> ?templateType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GitBranchName.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