BackfillPostBody

Object used for create backfill request.

Properties

NameTypeDescriptionNotes
dag_idstr
dag_run_confobject[optional]
from_datedatetime
max_active_runsint[optional] [default to 10]
reprocess_behaviorReprocessBehavior[optional]
run_backwardsbool[optional] [default to False]
to_datedatetime

Example

from airflow_client.client.models.backfill_post_body import BackfillPostBody

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

# convert the object into a dict
backfill_post_body_dict = backfill_post_body_instance.to_dict()
# create an instance of BackfillPostBody from a dict
backfill_post_body_from_dict = BackfillPostBody.from_dict(backfill_post_body_dict)

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