Module Values.RegistryScanningRuleSource

The details of a scanning rule for a private registry.

Sourcetype nonrec t = {
  1. scanFrequency : ScanFrequency.t;
    (*

    The frequency that scans are performed at for a private registry. When the ENHANCED scan type is specified, the supported scan frequencies are CONTINUOUS_SCAN and SCAN_ON_PUSH. When the BASIC scan type is specified, the SCAN_ON_PUSH scan frequency is supported. If scan on push is not specified, then the MANUAL scan frequency is set by default.

    *)
  2. repositoryFilters : ScanningRepositoryFilterList.t;
    (*

    The repository filters associated with the scanning configuration for a private registry.

    *)
}
Sourceval context_ : string
Sourceval make : scanFrequency:ScanFrequency.t -> repositoryFilters:ScanningRepositoryFilterList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of ScanningRepositoryFilterValue.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