Module Values.RepositorySyncDefinitionSource

A repository sync definition.

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

    The repository branch.

    *)
  2. directory : String_.t option;
    (*

    The directory in the repository.

    *)
  3. parent : String_.t option;
    (*

    The resource that is synced from.

    *)
  4. target : String_.t option;
    (*

    The resource that is synced to.

    *)
}
Sourceval make : ?branch:??? -> ?directory:??? -> ?parent:??? -> ?target:??? -> unit -> t
Sourceval to_value : t -> [> `Structure 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