Module Values.ImageScanningConfigurationSource

The image scanning configuration for a repository.

Sourcetype nonrec t = {
  1. scanOnPush : ScanOnPushFlag.t option;
    (*

    The setting that determines whether images are scanned after being pushed to a repository. If set to true, images will be scanned after being pushed. If this parameter is not specified, it will default to false and images will not be scanned unless a scan is manually started with the API_StartImageScan API.

    *)
}
Sourceval make : ?scanOnPush:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of ScanOnPushFlag.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