DAGDetailsResponse

Specific serializer for DAG Details responses.

Properties

NameTypeDescriptionNotes
asset_expressionobject[optional]
bundle_namestr[optional]
bundle_versionstr[optional]
catchupbool
concurrencyintReturn max_active_tasks as concurrency. Deprecated: Use max_active_tasks instead.[readonly]
dag_display_namestr
dag_idstr
dag_run_timeoutstr[optional]
default_argsobject[optional]
descriptionstr[optional]
doc_mdstr[optional]
end_datedatetime[optional]
file_tokenstrReturn file token.[readonly]
filelocstr
has_import_errorsbool
has_task_concurrency_limitsbool
is_pausedbool
is_paused_upon_creationbool[optional]
is_stalebool
last_expireddatetime[optional]
last_parse_durationfloat[optional]
last_parseddatetime[optional]
last_parsed_timedatetime[optional]
latest_dag_versionDagVersionResponse[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]
owner_linksDict[str, str][optional]
ownersList[str]
paramsobject[optional]
relative_filelocstr[optional]
render_template_as_native_objbool
start_datedatetime[optional]
tagsList[DagTagResponse]
template_search_pathList[str][optional]
timetable_descriptionstr[optional]
timetable_summarystr[optional]
timezonestr[optional]

Example

from airflow_client.client.models.dag_details_response import DAGDetailsResponse

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

# convert the object into a dict
dag_details_response_dict = dag_details_response_instance.to_dict()
# create an instance of DAGDetailsResponse from a dict
dag_details_response_from_dict = DAGDetailsResponse.from_dict(dag_details_response_dict)

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