Module Values.AutomationRulesFindingFieldsUpdateSource

Identifies the finding fields that the automation rule action updates when a finding matches the defined criteria.

Sourcetype nonrec t = {
  1. note : NoteUpdate.t option;
  2. severity : SeverityUpdate.t option;
  3. verificationState : VerificationState.t option;
    (*

    The rule action updates the VerificationState field of a finding.

    *)
  4. confidence : RatioScale.t option;
    (*

    The rule action updates the Confidence field of a finding.

    *)
  5. criticality : RatioScale.t option;
    (*

    The rule action updates the Criticality field of a finding.

    *)
  6. types : TypeList.t option;
    (*

    The rule action updates the Types field of a finding.

    *)
  7. userDefinedFields : FieldMap.t option;
    (*

    The rule action updates the UserDefinedFields field of a finding.

    *)
  8. workflow : WorkflowUpdate.t option;
  9. relatedFindings : RelatedFindingList.t option;
    (*

    The rule action updates the RelatedFindings field of a finding.

    *)
}
Sourceval make : ?note:??? -> ?severity:??? -> ?verificationState:??? -> ?confidence:??? -> ?criticality:??? -> ?types:??? -> ?userDefinedFields:??? -> ?workflow:??? -> ?relatedFindings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of RatioScale.t | `List of [> `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `Map of ([> `String of NonEmptyString.t ] * [> `String of NonEmptyString.t ]) list | `Structure of (string * [> `Double of Double.t | `Enum of string | `Integer of RatioScale.t | `String of NonEmptyString.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