ResponseClearDagRun

Properties

NameTypeDescriptionNotes
task_instancesList[TaskInstanceResponse]
total_entriesint
bundle_versionstr[optional]
confobject
dag_display_namestr
dag_idstr
dag_run_idstr
dag_versionsList[DagVersionResponse]
data_interval_enddatetime[optional]
data_interval_startdatetime[optional]
end_datedatetime[optional]
last_scheduling_decisiondatetime[optional]
logical_datedatetime[optional]
notestr[optional]
queued_atdatetime[optional]
run_afterdatetime
run_typeDagRunType
start_datedatetime[optional]
stateDagRunState
triggered_byDagRunTriggeredByType[optional]

Example

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]