Module Values.StepSummarySource

The details for a step.

Sourcetype nonrec t = {
  1. stepId : StepId.t option;
    (*

    The step ID.

    *)
  2. name : StepName.t option;
    (*

    The name of the step.

    *)
  3. lifecycleStatus : StepLifecycleStatus.t option;
    (*

    The life cycle status.

    *)
  4. lifecycleStatusMessage : String_.t option;
    (*

    A message that describes the lifecycle of the step.

    *)
  5. taskRunStatus : TaskRunStatus.t option;
    (*

    The task run status for the job. PENDING–pending and waiting for resources. READY–ready to process. ASSIGNED–assigned and will run next on a worker. SCHEDULED–scheduled to run on a worker. INTERRUPTING–being interrupted. RUNNING–running on a worker. SUSPENDED–the task is suspended. CANCELED–the task has been canceled. FAILED–the task has failed. SUCCEEDED–the task has succeeded.

    *)
  6. taskRunStatusCounts : TaskRunStatusCounts.t option;
    (*

    The number of tasks running on the job.

    *)
  7. taskFailureRetryCount : TaskFailureRetryCount.t option;
    (*

    The total number of times tasks from the step failed and were retried.

    *)
  8. targetTaskRunStatus : StepTargetTaskRunStatus.t option;
    (*

    The task status to update the job's tasks to.

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

    The date and time the resource was created.

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

    The user or system that created this resource.

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

    The date and time the resource was updated.

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

    The user or system that updated this resource.

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

    The date and time the resource started running.

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

    The date and time the resource ended running.

    *)
  15. dependencyCounts : DependencyCounts.t option;
    (*

    The number of dependencies for the step.

    *)
}
Sourceval make : ?stepId:??? -> ?name:??? -> ?lifecycleStatus:??? -> ?lifecycleStatusMessage:??? -> ?taskRunStatus:??? -> ?taskRunStatusCounts:??? -> ?taskFailureRetryCount:??? -> ?targetTaskRunStatus:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?startedAt:??? -> ?endedAt:??? -> ?dependencyCounts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of TaskFailureRetryCount.t | `Map of ([> `Enum of string ] * [> `Integer of Integer.t ]) list | `String of StepId.t | `Structure of (string * [> `Integer of Integer.t ]) list | `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