Module Values.ImageScanFindingSource

Contains information about an image scan finding.

Sourcetype nonrec t = {
  1. name : FindingName.t option;
    (*

    The name associated with the finding, usually a CVE number.

    *)
  2. description : FindingDescription.t option;
    (*

    The description of the finding.

    *)
  3. uri : Url.t option;
    (*

    A link containing additional details about the security vulnerability.

    *)
  4. severity : FindingSeverity.t option;
    (*

    The finding severity.

    *)
  5. attributes : AttributeList.t option;
    (*

    A collection of attributes of the host from which the finding is generated.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?uri:??? -> ?severity:??? -> ?attributes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of AttributeKey.t ]) list ] list | `String of FindingName.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