Module Values.JobProgressSummarySource

Describes the total number of tasks that the specified job has started, the number of tasks that succeeded, and the number of tasks that failed.

Sourcetype nonrec t = {
  1. totalNumberOfTasks : JobTotalNumberOfTasks.t option;
  2. numberOfTasksSucceeded : JobNumberOfTasksSucceeded.t option;
  3. numberOfTasksFailed : JobNumberOfTasksFailed.t option;
  4. timers : JobTimers.t option;
    (*

    The JobTimers attribute of a job's progress summary.

    *)
}
Sourceval make : ?totalNumberOfTasks:??? -> ?numberOfTasksSucceeded:??? -> ?numberOfTasksFailed:??? -> ?timers:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of JobTotalNumberOfTasks.t | `Structure of (string * [> `Long of JobTimeInStateSeconds.t ]) list ]) 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