Module Values.VulnerabilityIdAggregationSource

Includes counts of image and pipeline resource findings by vulnerability.

Sourcetype nonrec t = {
  1. vulnerabilityId : NonEmptyString.t option;
    (*

    The vulnerability Id for this set of counts.

    *)
  2. severityCounts : SeverityCounts.t option;
    (*

    Counts by severity level for medium severity and higher level findings, plus a total for all of the findings for the specified vulnerability.

    *)
}
Sourceval make : ?vulnerabilityId:??? -> ?severityCounts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Long of SeverityCountNumber.t ]) 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