BulkDAGRunClearBody

Request body for the bulk clear Dag Runs endpoint.

Properties

NameTypeDescriptionNotes
dag_runsList[BulkDAGRunBody][optional]
dry_runbool[optional] [default to True]
notestr[optional]
only_failedbool[optional] [default to False]
only_newboolOnly queue newly added tasks in the latest Dag version without clearing existing tasks.[optional] [default to False]
partition_date_enddatetime[optional]
partition_date_startdatetime[optional]
partition_keystr[optional]
run_on_latest_versionbool[optional]

Example

from airflow_client.client.models.bulk_dag_run_clear_body import BulkDAGRunClearBody

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

# convert the object into a dict
bulk_dag_run_clear_body_dict = bulk_dag_run_clear_body_instance.to_dict()
# create an instance of BulkDAGRunClearBody from a dict
bulk_dag_run_clear_body_from_dict = BulkDAGRunClearBody.from_dict(bulk_dag_run_clear_body_dict)

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