Module Values_0.TaskStatisticsSource

Statistics for the checks performed during the audit.

Sourcetype nonrec t = {
  1. totalChecks : TotalChecksCount.t option;
    (*

    The number of checks in this audit.

    *)
  2. inProgressChecks : InProgressChecksCount.t option;
    (*

    The number of checks in progress.

    *)
  3. waitingForDataCollectionChecks : WaitingForDataCollectionChecksCount.t option;
    (*

    The number of checks waiting for data collection.

    *)
  4. compliantChecks : CompliantChecksCount.t option;
    (*

    The number of checks that found compliant resources.

    *)
  5. nonCompliantChecks : NonCompliantChecksCount.t option;
    (*

    The number of checks that found noncompliant resources.

    *)
  6. failedChecks : FailedChecksCount.t option;
    (*

    The number of checks.

    *)
  7. canceledChecks : CanceledChecksCount.t option;
    (*

    The number of checks that did not run because the audit was canceled.

    *)
}
Sourceval make : ?totalChecks:??? -> ?inProgressChecks:??? -> ?waitingForDataCollectionChecks:??? -> ?compliantChecks:??? -> ?nonCompliantChecks:??? -> ?failedChecks:??? -> ?canceledChecks:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of TotalChecksCount.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