Module Values.BatchGetTaskItemSource

The details of a task returned in a batch get operation.

Sourcetype nonrec t = {
  1. farmId : FarmId.t option;
    (*

    The farm ID of the task.

    *)
  2. queueId : QueueId.t option;
    (*

    The queue ID of the task.

    *)
  3. jobId : JobId.t option;
    (*

    The job ID of the task.

    *)
  4. stepId : StepId.t option;
    (*

    The step ID of the task.

    *)
  5. taskId : TaskId.t option;
    (*

    The task ID.

    *)
  6. createdAt : CreatedAt.t option;
    (*

    The date and time the resource was created.

    *)
  7. createdBy : CreatedBy.t option;
    (*

    The user or system that created this resource.

    *)
  8. runStatus : TaskRunStatus.t option;
    (*

    The run status of the task.

    *)
  9. targetRunStatus : TaskTargetRunStatus.t option;
    (*

    The run status with which to start the task.

    *)
  10. failureRetryCount : TaskRetryCount.t option;
    (*

    The number of times the task failed and was retried.

    *)
  11. startedAt : StartedAt.t option;
    (*

    The date and time the resource started running.

    *)
  12. endedAt : EndedAt.t option;
    (*

    The date and time the resource ended running.

    *)
  13. updatedAt : UpdatedAt.t option;
    (*

    The date and time the resource was updated.

    *)
  14. updatedBy : UpdatedBy.t option;
    (*

    The user or system that updated this resource.

    *)
  15. latestSessionActionId : SessionActionId.t option;
    (*

    The latest session action for the task.

    *)
  16. parameters : TaskParameters.t option;
    (*

    The parameters for the task.

    *)
}
Sourceval make : ?farmId:??? -> ?queueId:??? -> ?jobId:??? -> ?stepId:??? -> ?taskId:??? -> ?createdAt:??? -> ?createdBy:??? -> ?runStatus:??? -> ?targetRunStatus:??? -> ?failureRetryCount:??? -> ?startedAt:??? -> ?endedAt:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?latestSessionActionId:??? -> ?parameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of TaskRetryCount.t | `Map of ([> `String of String_.t ] * [> `Structure of (string * [> `String of IntString.t ]) list ]) list | `String of FarmId.t | `Timestamp of CreatedAt.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