Module Values.RunSummarySource

A summary of the runs in a batch.

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

    The number of pending runs.

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

    The number of starting runs.

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

    The number of running runs.

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

    The number of stopping runs.

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

    The number of completed runs.

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

    The number of deleted runs.

    *)
  7. failedRunCount : Integer.t option;
    (*

    The number of failed runs.

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

    The number of cancelled runs.

    *)
}
Sourceval make : ?pendingRunCount:??? -> ?startingRunCount:??? -> ?runningRunCount:??? -> ?stoppingRunCount:??? -> ?completedRunCount:??? -> ?deletedRunCount:??? -> ?failedRunCount:??? -> ?cancelledRunCount:??? -> 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