| Name |
Type |
Description |
Notes |
| task_instances |
List[TaskInstanceResponse] |
|
|
| total_entries |
int |
|
|
| bundle_version |
str |
|
[optional] |
| conf |
Dict[str, object] |
|
[optional] |
| dag_display_name |
str |
|
|
| dag_id |
str |
|
|
| dag_run_id |
str |
|
|
| dag_versions |
List[DagVersionResponse] |
|
|
| data_interval_end |
datetime |
|
[optional] |
| data_interval_start |
datetime |
|
[optional] |
| duration |
float |
|
[optional] |
| end_date |
datetime |
|
[optional] |
| last_scheduling_decision |
datetime |
|
[optional] |
| logical_date |
datetime |
|
[optional] |
| note |
str |
|
[optional] |
| queued_at |
datetime |
|
[optional] |
| run_after |
datetime |
|
|
| run_type |
DagRunType |
|
|
| start_date |
datetime |
|
[optional] |
| state |
DagRunState |
|
|
| triggered_by |
DagRunTriggeredByType |
|
[optional] |
| triggering_user_name |
str |
|
[optional] |
from airflow_client.client.models.response_clear_dag_run import ResponseClearDagRun
# TODO update the JSON string below
json = "{}"
# create an instance of ResponseClearDagRun from a JSON string
response_clear_dag_run_instance = ResponseClearDagRun.from_json(json)
# print the JSON string representation of the object
print(ResponseClearDagRun.to_json())
# convert the object into a dict
response_clear_dag_run_dict = response_clear_dag_run_instance.to_dict()
# create an instance of ResponseClearDagRun from a dict
response_clear_dag_run_from_dict = ResponseClearDagRun.from_dict(response_clear_dag_run_dict)
[Back to Model list] [Back to API list] [Back to README]