HclListWorkflowRunResponseBody¶
- pydantic model openapi_client.models.hcl_list_workflow_run_response_body.HclListWorkflowRunResponseBody¶
Summary of a single Omics workflow run in a list response.
- Fields:
- field workflow_run_id: Optional[StrictStr] = None (alias 'WorkflowRunId')¶
Amorphic workflow run id.
- field workflow_run_status: Optional[StrictStr] = None (alias 'WorkflowRunStatus')¶
Run status (e.g. pending, running, completed, failed, cancelled).
- field message: Optional[StrictStr] = None (alias 'Message')¶
- field workflow_run_name: Optional[StrictStr] = None (alias 'WorkflowRunName')¶
- field started_on: Optional[StrictStr] = None (alias 'StartedOn')¶
- field storage_capacity: Optional[StrictInt] = None (alias 'StorageCapacity')¶
- field workflow_run_params: Optional[Dict[str, Any]] = None (alias 'WorkflowRunParams')¶
- field workflow_run_log_level: Optional[StrictStr] = None (alias 'WorkflowRunLogLevel')¶
- field completed_on: Optional[StrictStr] = None (alias 'CompletedOn')¶
- field started_by: Optional[StrictStr] = None (alias 'StartedBy')¶
- to_str()¶
Returns the string representation of the model using alias
- Return type:
str
- to_json()¶
Returns the JSON representation of the model using alias
- Return type:
str
- classmethod from_json(json_str)¶
Create an instance of HclListWorkflowRunResponseBody from a JSON string
- Return type:
Optional[Self]
- to_dict()¶
Return the dictionary representation of the model using alias.
This has the following differences from calling pydantic’s self.model_dump(by_alias=True):
None is only added to the output dict for nullable fields that were set at model initialization. Other fields with value None are ignored.
- Return type:
Dict[str,Any]
- classmethod from_dict(obj)¶
Create an instance of HclListWorkflowRunResponseBody from a dict
- Return type:
Optional[Self]