Module Values.UpdateTemplateSyncConfigInputSource

Update template sync configuration parameters, except for the templateName and templateType. Repository details (branch, name, and provider) should be of a linked repository. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository.

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

    The repository branch for your template.

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

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

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

    The repository provider.

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

    A subdirectory path to your template bundle version. When included, limits the template bundle search to this repository directory.

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

    The synced template name.

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

    The synced template type.

    *)
}
Sourceval context_ : string
Sourceval make : ?subdirectory:??? -> branch:GitBranchName.t -> repositoryName:RepositoryName.t -> repositoryProvider:RepositoryProvider.t -> templateName:ResourceName.t -> templateType:TemplateType.t -> 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