Module Values.DataCollectionDetailsSource

Detailed information about an assessment.

Sourcetype nonrec t = {
  1. completionTime : TimeStamp.t option;
    (*

    The time the assessment completes.

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

    The number of failed servers in the assessment.

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

    The number of servers with the assessment status IN_PROGESS.

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

    The total number of servers in the assessment.

    *)
  5. startTime : TimeStamp.t option;
    (*

    The start time of assessment.

    *)
  6. status : AssessmentStatus.t option;
    (*

    The status of the assessment.

    *)
  7. statusMessage : AssessmentStatusMessage.t option;
    (*

    The status message of the assessment.

    *)
  8. success : Integer.t option;
    (*

    The number of successful servers in the assessment.

    *)
}
Sourceval make : ?completionTime:??? -> ?failed:??? -> ?inProgress:??? -> ?servers:??? -> ?startTime:??? -> ?status:??? -> ?statusMessage:??? -> ?success:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of AssessmentStatusMessage.t | `Timestamp of TimeStamp.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