Module: Google::Cloud::AIPlatform::V1::PipelineTaskDetail::State
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/pipeline_job.rb
Overview
Specifies state of TaskExecution
Constant Summary collapse
- STATE_UNSPECIFIED =
Unspecified.
0- PENDING =
Specifies pending state for the task.
1- RUNNING =
Specifies task is being executed.
2- SUCCEEDED =
Specifies task completed successfully.
3- CANCEL_PENDING =
Specifies Task cancel is in pending state.
4- CANCELLING =
Specifies task is being cancelled.
5- CANCELLED =
Specifies task was cancelled.
6- FAILED =
Specifies task failed.
7- SKIPPED =
Specifies task was skipped due to cache hit.
8- NOT_TRIGGERED =
Specifies that the task was not triggered because the task's trigger policy is not satisfied. The trigger policy is specified in the
conditionfield of PipelineJob.pipeline_spec. 9