PatchTaskInstanceBody

Request body for Clear Task Instances endpoint.

Properties

NameTypeDescriptionNotes
include_downstreambool[optional] [default to False]
include_futurebool[optional] [default to False]
include_pastbool[optional] [default to False]
include_upstreambool[optional] [default to False]
new_stateTaskInstanceState[optional]
notestr[optional]

Example

from airflow_client.client.models.patch_task_instance_body import PatchTaskInstanceBody

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

# convert the object into a dict
patch_task_instance_body_dict = patch_task_instance_body_instance.to_dict()
# create an instance of PatchTaskInstanceBody from a dict
patch_task_instance_body_from_dict = PatchTaskInstanceBody.from_dict(patch_task_instance_body_dict)

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