Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Latest commit

 

History

History
30 lines (21 loc) · 1.18 KB

File metadata and controls

30 lines (21 loc) · 1.18 KB

UpdateTaskInstance

Properties

Name Type Description Notes
dry_run bool If set, don't actually run this operation. The response will contain the task instance planned to be affected, but won't be modified in any way. [optional] [default to True]
new_state UpdateTaskState [optional]

Example

from titanium_airflow_client.models.update_task_instance import UpdateTaskInstance

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

# convert the object into a dict
update_task_instance_dict = update_task_instance_instance.to_dict()
# create an instance of UpdateTaskInstance from a dict
update_task_instance_from_dict = UpdateTaskInstance.from_dict(update_task_instance_dict)

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