Module Values.AutomationRulesFindingFieldsUpdateV2Source

Allows you to define the structure for modifying specific fields in security findings.

Sourcetype nonrec t = {
  1. severityId : Integer.t option;
    (*

    The severity level to be assigned to findings that match the automation rule criteria.

    *)
  2. comment : NonEmptyString.t option;
    (*

    Notes or contextual information for findings that are modified by the automation rule.

    *)
  3. statusId : Integer.t option;
    (*

    The status to be applied to findings that match automation rule criteria.

    *)
}
Sourceval make : ?severityId:??? -> ?comment:??? -> ?statusId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `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