Module Values.UpdateFindingInputSource

Input for updating an existing security finding.

Sourcetype nonrec t = {
  1. findingId : String_.t;
    (*

    The unique identifier of the finding to update.

    *)
  2. agentSpaceId : String_.t;
    (*

    The unique identifier of the agent space that contains the finding.

    *)
  3. riskLevel : RiskLevel.t option;
    (*

    The updated risk level for the finding.

    *)
  4. status : FindingStatus.t option;
    (*

    The updated status for the finding.

    *)
}
Sourceval context_ : string
Sourceval make : ?riskLevel:??? -> ?status:??? -> findingId:String_.t -> agentSpaceId:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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