| 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] |
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]