BackfillResponse

Base serializer for Backfill.

Properties

NameTypeDescriptionNotes
completed_atdatetime[optional]
created_atdatetime
dag_idstr
dag_run_confobject
from_datedatetime
idint
is_pausedbool
max_active_runsint
reprocess_behaviorReprocessBehavior
to_datedatetime
updated_atdatetime

Example

from airflow_client.client.models.backfill_response import BackfillResponse

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

# convert the object into a dict
backfill_response_dict = backfill_response_instance.to_dict()
# create an instance of BackfillResponse from a dict
backfill_response_from_dict = BackfillResponse.from_dict(backfill_response_dict)

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