ResourceWrapper
No overview available.
Attributes
| Attribute | Type | Description |
|---|---|---|
| Phase | flyteIdl.TaskExecution_Phase | The current phase of the task execution, indicating its status. |
| Outputs | *task.Outputs | The outputs generated by the task execution, if any. |
| Message | string | A human-readable message providing additional information about the task execution status. |
| LogLinks | []*flyteIdl.TaskLog | A list of links to logs associated with the task execution. |
| CustomInfo | *structpb.Struct | Custom information provided by the task, stored as a structured protobuf object. |
| ConnectorID | string | The identifier of the connector used for this task, if it's a connector-based task. |
| IsConnectorApp | bool | A boolean indicating whether this task execution is part of a connector application. |
| ConnectorEndpoint | string | The endpoint URL for the connector associated with this task execution. |
Methods
IsTerminal()
@classmethod
def IsTerminal() - > bool
Checks if the resource is in a terminal state. Callers use this to determine if further processing or waiting for state changes is necessary.
Returns
| Type | Description |
|---|---|
bool | True if the resource's phase indicates a terminal state, False otherwise. |