Module Values_0.JobProcessDetailsSource

The job process details.

Sourcetype nonrec t = {
  1. processingTargets : ProcessingTargetNameList.t option;
    (*

    The target devices to which the job execution is being rolled out. This value will be null after the job execution has finished rolling out to all the target devices.

    *)
  2. numberOfCanceledThings : CanceledThings.t option;
    (*

    The number of things that cancelled the job.

    *)
  3. numberOfSucceededThings : SucceededThings.t option;
    (*

    The number of things which successfully completed the job.

    *)
  4. numberOfFailedThings : FailedThings.t option;
    (*

    The number of things that failed executing the job.

    *)
  5. numberOfRejectedThings : RejectedThings.t option;
    (*

    The number of things that rejected the job.

    *)
  6. numberOfQueuedThings : QueuedThings.t option;
    (*

    The number of things that are awaiting execution of the job.

    *)
  7. numberOfInProgressThings : InProgressThings.t option;
    (*

    The number of things currently executing the job.

    *)
  8. numberOfRemovedThings : RemovedThings.t option;
    (*

    The number of things that are no longer scheduled to execute the job because they have been deleted or have been removed from the group that was a target of the job.

    *)
  9. numberOfTimedOutThings : TimedOutThings.t option;
    (*

    The number of things whose job execution status is TIMED_OUT.

    *)
}
Sourceval make : ?processingTargets:??? -> ?numberOfCanceledThings:??? -> ?numberOfSucceededThings:??? -> ?numberOfFailedThings:??? -> ?numberOfRejectedThings:??? -> ?numberOfQueuedThings:??? -> ?numberOfInProgressThings:??? -> ?numberOfRemovedThings:??? -> ?numberOfTimedOutThings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of CanceledThings.t | `List of [> `String of ProcessingTargetName.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