Reference documentation and code samples for the Google Cloud Ai Platform V1 Client class State.
Specifies state of TaskExecution
Protobuf type google.cloud.aiplatform.v1.PipelineTaskDetail.State
Namespace
Google \ Cloud \ AIPlatform \ V1 \ PipelineTaskDetailMethods
static::name
| Parameter | |
|---|---|
| Name | Description |
value |
mixed
|
static::value
| Parameter | |
|---|---|
| Name | Description |
name |
mixed
|
Constants
STATE_UNSPECIFIED
Value: 0Unspecified.
Generated from protobuf enum STATE_UNSPECIFIED = 0;
PENDING
Value: 1Specifies pending state for the task.
Generated from protobuf enum PENDING = 1;
RUNNING
Value: 2Specifies task is being executed.
Generated from protobuf enum RUNNING = 2;
SUCCEEDED
Value: 3Specifies task completed successfully.
Generated from protobuf enum SUCCEEDED = 3;
CANCEL_PENDING
Value: 4Specifies Task cancel is in pending state.
Generated from protobuf enum CANCEL_PENDING = 4;
CANCELLING
Value: 5Specifies task is being cancelled.
Generated from protobuf enum CANCELLING = 5;
CANCELLED
Value: 6Specifies task was cancelled.
Generated from protobuf enum CANCELLED = 6;
FAILED
Value: 7Specifies task failed.
Generated from protobuf enum FAILED = 7;
SKIPPED
Value: 8Specifies task was skipped due to cache hit.
Generated from protobuf enum SKIPPED = 8;
NOT_TRIGGERED
Value: 9Specifies that the task was not triggered because the task's trigger
policy is not satisfied. The trigger policy is specified in the
condition field of
PipelineJob.pipeline_spec.
Generated from protobuf enum NOT_TRIGGERED = 9;