DAGRunsBatchBody

List DAG Runs body for batch endpoint.

Properties

NameTypeDescriptionNotes
dag_idsList[str][optional]
end_date_gtdatetime[optional]
end_date_gtedatetime[optional]
end_date_ltdatetime[optional]
end_date_ltedatetime[optional]
logical_date_gtdatetime[optional]
logical_date_gtedatetime[optional]
logical_date_ltdatetime[optional]
logical_date_ltedatetime[optional]
order_bystr[optional]
page_limitint[optional] [default to 100]
page_offsetint[optional] [default to 0]
run_after_gtdatetime[optional]
run_after_gtedatetime[optional]
run_after_ltdatetime[optional]
run_after_ltedatetime[optional]
start_date_gtdatetime[optional]
start_date_gtedatetime[optional]
start_date_ltdatetime[optional]
start_date_ltedatetime[optional]
statesList[Optional[DagRunState]][optional]

Example

from airflow_client.client.models.dag_runs_batch_body import DAGRunsBatchBody

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

# convert the object into a dict
dag_runs_batch_body_dict = dag_runs_batch_body_instance.to_dict()
# create an instance of DAGRunsBatchBody from a dict
dag_runs_batch_body_from_dict = DAGRunsBatchBody.from_dict(dag_runs_batch_body_dict)

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