Module Values.MalwareSource

A list of malware related to a finding.

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

    The name of the malware that was observed. Length Constraints: Minimum of 1. Maximum of 64.

    *)
  2. type_ : MalwareType.t option;
    (*

    The type of the malware that was observed.

    *)
  3. path : NonEmptyString.t option;
    (*

    The file system path of the malware that was observed. Length Constraints: Minimum of 1. Maximum of 512.

    *)
  4. state : MalwareState.t option;
    (*

    The state of the malware that was observed.

    *)
}
Sourceval context_ : string
Sourceval make : ?type_:??? -> ?path:??? -> ?state:??? -> name:NonEmptyString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NonEmptyString.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