class documentation
class WorkflowExecutionDescription(WorkflowExecution): (source)
Constructor: WorkflowExecutionDescription._from_raw_description(description, namespace, converter)
Description for a single workflow execution run.
| Async Method | static |
Gets the general fixed details for this workflow execution that may appear in UI/CLI. This can be in Temporal markdown format and can span multiple lines. |
| Async Method | static |
Gets the single-line fixed summary for this workflow execution that may appear in UI/CLI. This can be in single-line Temporal markdown format. |
| Class Variable | raw |
Underlying protobuf description. |
| Async Static Method | _from |
Undocumented |
| Async Method | _decode |
Internal method to decode metadata lazily. |
| Instance Variable | _metadata |
Undocumented |
| Instance Variable | _static |
Undocumented |
| Instance Variable | _static |
Undocumented |
Inherited from WorkflowExecution:
| Async Method | memo |
Workflow's memo values, converted without type hints. |
| Async Method | memo |
Memo value for the given key, optional default, and optional type hint. |
| Class Variable | close |
When the workflow was closed if closed. |
| Class Variable | execution |
When this workflow run started or should start. |
| Class Variable | history |
Number of events in the history. |
| Class Variable | id |
ID for the workflow. |
| Class Variable | namespace |
Namespace for the workflow. |
| Class Variable | parent |
ID for the parent workflow if this was started as a child. |
| Class Variable | parent |
Run ID for the parent workflow if this was started as a child. |
| Class Variable | raw |
Underlying protobuf info. |
| Class Variable | root |
ID for the root workflow. |
| Class Variable | root |
Run ID for the root workflow. |
| Class Variable | run |
Run ID for this workflow run. |
| Class Variable | search |
Current set of search attributes if any. |
| Class Variable | start |
When the workflow was created. |
| Class Variable | status |
Status for the workflow. |
| Class Variable | task |
Task queue for the workflow. |
| Class Variable | typed |
Current set of search attributes if any. |
| Class Variable | workflow |
Type name for the workflow. |
| Property | data |
Data converter for the workflow. |
| Class Method | _from |
Undocumented |
| Class Variable | _context |
Undocumented |
Gets the general fixed details for this workflow execution that may appear in UI/CLI. This can be in Temporal markdown format and can span multiple lines.
Gets the single-line fixed summary for this workflow execution that may appear in UI/CLI. This can be in single-line Temporal markdown format.
@staticmethod
async def _from_raw_description(description:
async def _from_raw_description(description:
temporalio.api.workflowservice.v1.DescribeWorkflowExecutionResponse, namespace: str, converter: temporalio.converter.DataConverter) -> WorkflowExecutionDescription:
(source)
¶
Undocumented