Module Values.ReplicationTaskAssessmentRunResultStatisticSource

The object containing the result statistics for a completed assessment run.

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

    The number of individual assessments that successfully passed all checks in the assessment run.

    *)
  2. failed : Integer.t option;
    (*

    The number of individual assessments that failed to meet the criteria defined in the assessment run.

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

    The number of individual assessments that encountered a critical error and could not complete properly.

    *)
  4. warning : Integer.t option;
    (*

    Indicates that the recent completed AssessmentRun triggered a warning.

    *)
  5. cancelled : Integer.t option;
    (*

    The number of individual assessments that were cancelled during the assessment run.

    *)
  6. skipped : Integer.t option;
    (*

    The number of individual assessments that were skipped during the assessment run.

    *)
}
Sourceval make : ?passed:??? -> ?failed:??? -> ?error:??? -> ?warning:??? -> ?cancelled:??? -> ?skipped:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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