| Name |
Type |
Description |
Notes |
| dag_display_name |
str |
|
|
| dag_id |
str |
|
|
| dag_run_id |
str |
|
|
| dag_version |
DagVersionResponse |
|
[optional] |
| duration |
float |
|
[optional] |
| end_date |
datetime |
|
[optional] |
| executor |
str |
|
[optional] |
| executor_config |
str |
|
|
| hostname |
str |
|
[optional] |
| id |
UUID |
|
|
| logical_date |
datetime |
|
[optional] |
| map_index |
int |
|
|
| max_tries |
int |
|
|
| note |
str |
|
[optional] |
| operator |
str |
|
[optional] |
| operator_name |
str |
|
[optional] |
| pid |
int |
|
[optional] |
| pool |
str |
|
|
| pool_slots |
int |
|
|
| priority_weight |
int |
|
[optional] |
| queue |
str |
|
[optional] |
| queued_when |
datetime |
|
[optional] |
| rendered_fields |
Dict[str, object] |
|
[optional] |
| rendered_map_index |
str |
|
[optional] |
| run_after |
datetime |
|
|
| scheduled_when |
datetime |
|
[optional] |
| start_date |
datetime |
|
[optional] |
| state |
TaskInstanceState |
|
[optional] |
| task_display_name |
str |
|
|
| task_id |
str |
|
|
| trigger |
TriggerResponse |
|
[optional] |
| triggerer_job |
JobResponse |
|
[optional] |
| try_number |
int |
|
|
| unixname |
str |
|
[optional] |
from airflow_client.client.models.task_instances_inner import TaskInstancesInner
# TODO update the JSON string below
json = "{}"
# create an instance of TaskInstancesInner from a JSON string
task_instances_inner_instance = TaskInstancesInner.from_json(json)
# print the JSON string representation of the object
print(TaskInstancesInner.to_json())
# convert the object into a dict
task_instances_inner_dict = task_instances_inner_instance.to_dict()
# create an instance of TaskInstancesInner from a dict
task_instances_inner_from_dict = TaskInstancesInner.from_dict(task_instances_inner_dict)
[Back to Model list] [Back to API list] [Back to README]