Module Values.ReplicationRuleSource

An array of objects representing the replication destinations and repository filters for a replication configuration.

Sourcetype nonrec t = {
  1. destinations : ReplicationDestinationList.t;
    (*

    An array of objects representing the destination for a replication rule.

    *)
  2. repositoryFilters : RepositoryFilterList.t option;
    (*

    An array of objects representing the filters for a replication rule. Specifying a repository filter for a replication rule provides a method for controlling which repositories in a private registry are replicated.

    *)
}
Sourceval context_ : string
Sourceval make : ?repositoryFilters:??? -> destinations:ReplicationDestinationList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of Region.t ]) list ] list ]) 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