DAGResponse

DAG serializer for responses.

Properties

NameTypeDescriptionNotes
bundle_namestr[optional]
bundle_versionstr[optional]
dag_display_namestr
dag_idstr
descriptionstr[optional]
file_tokenstrReturn file token.[readonly]
filelocstr
has_import_errorsbool
has_task_concurrency_limitsbool
is_pausedbool
is_stalebool
last_expireddatetime[optional]
last_parse_durationfloat[optional]
last_parsed_timedatetime[optional]
max_active_runsint[optional]
max_active_tasksint
max_consecutive_failed_dag_runsint
next_dagrun_data_interval_enddatetime[optional]
next_dagrun_data_interval_startdatetime[optional]
next_dagrun_logical_datedatetime[optional]
next_dagrun_run_afterdatetime[optional]
ownersList[str]
relative_filelocstr[optional]
tagsList[DagTagResponse]
timetable_descriptionstr[optional]
timetable_summarystr[optional]

Example

from airflow_client.client.models.dag_response import DAGResponse

# TODO update the JSON string below
json = "{}"
# create an instance of DAGResponse from a JSON string
dag_response_instance = DAGResponse.from_json(json)
# print the JSON string representation of the object
print(DAGResponse.to_json())

# convert the object into a dict
dag_response_dict = dag_response_instance.to_dict()
# create an instance of DAGResponse from a dict
dag_response_from_dict = DAGResponse.from_dict(dag_response_dict)

[Back to Model list] [Back to API list] [Back to README]