Module Values.StepSearchSummarySource

The details of a step search.

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

    The step ID.

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

    The job ID.

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

    The queue ID.

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

    The step name.

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

    The life cycle status.

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

    The life cycle status message.

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

    The task run status for the job. PENDING–pending and waiting for resources. READY–ready to be processed. ASSIGNED–assigned and will run next on a worker. SCHEDULED–scheduled to be 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.

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

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

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

    The number of tasks running on the job.

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

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

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

    The date and time the resource was created.

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

    The user or system that created 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. updatedAt : UpdatedAt.t option;
    (*

    The date and time the resource was updated.

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

    The user or system that updated this resource.

    *)
  17. parameterSpace : ParameterSpace.t option;
    (*

    The parameters and combination expressions for the search.

    *)
}
Sourceval make : ?stepId:??? -> ?jobId:??? -> ?queueId:??? -> ?name:??? -> ?lifecycleStatus:??? -> ?lifecycleStatusMessage:??? -> ?taskRunStatus:??? -> ?targetTaskRunStatus:??? -> ?taskRunStatusCounts:??? -> ?taskFailureRetryCount:??? -> ?createdAt:??? -> ?createdBy:??? -> ?startedAt:??? -> ?endedAt:??? -> ?updatedAt:??? -> ?updatedBy:??? -> ?parameterSpace:??? -> 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 * [> `List of [> `Structure of (string * [> `Enum of string | `String of StepParameterName.t | `Structure of (string * [> `Enum of string | `Integer of DefaultTaskCount.t ]) list ]) list ] list | `String of CombinationExpression.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