windmill-api 1.519.1__py3-none-any.whl → 1.520.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of windmill-api might be problematic. Click here for more details.

Files changed (264) hide show
  1. windmill_api/api/job/get_job_updates_sse.py +9 -0
  2. windmill_api/api/job/openai_sync_flow_by_path.py +2 -2
  3. windmill_api/api/job/openai_sync_script_by_path.py +2 -2
  4. windmill_api/api/job/restart_flow_at_step.py +2 -2
  5. windmill_api/api/job/run_flow_by_path.py +2 -2
  6. windmill_api/api/job/run_script_by_path.py +2 -2
  7. windmill_api/api/job/run_wait_result_flow_by_path.py +2 -2
  8. windmill_api/api/job/run_wait_result_script_by_path.py +2 -2
  9. windmill_api/models/completed_job.py +1 -1
  10. windmill_api/models/completed_job_args.py +1 -1
  11. windmill_api/models/create_gcp_trigger_json_body.py +2 -1
  12. windmill_api/models/create_gcp_trigger_json_body_error_handler_args.py +1 -1
  13. windmill_api/models/create_http_trigger_json_body.py +2 -1
  14. windmill_api/models/create_http_trigger_json_body_error_handler_args.py +1 -1
  15. windmill_api/models/create_http_triggers_json_body_item.py +2 -1
  16. windmill_api/models/create_http_triggers_json_body_item_error_handler_args.py +1 -1
  17. windmill_api/models/create_kafka_trigger_json_body.py +2 -1
  18. windmill_api/models/create_kafka_trigger_json_body_error_handler_args.py +1 -1
  19. windmill_api/models/create_mqtt_trigger_json_body.py +2 -1
  20. windmill_api/models/create_mqtt_trigger_json_body_error_handler_args.py +1 -1
  21. windmill_api/models/create_nats_trigger_json_body.py +2 -1
  22. windmill_api/models/create_nats_trigger_json_body_error_handler_args.py +1 -1
  23. windmill_api/models/create_postgres_trigger_json_body.py +2 -1
  24. windmill_api/models/create_postgres_trigger_json_body_error_handler_args.py +1 -1
  25. windmill_api/models/create_resource.py +3 -3
  26. windmill_api/models/create_resource_json_body.py +3 -3
  27. windmill_api/models/create_schedule_json_body.py +27 -24
  28. windmill_api/models/create_schedule_json_body_args.py +1 -1
  29. windmill_api/models/create_schedule_json_body_on_failure_extra_args.py +1 -1
  30. windmill_api/models/create_schedule_json_body_on_recovery_extra_args.py +1 -1
  31. windmill_api/models/create_schedule_json_body_on_success_extra_args.py +1 -1
  32. windmill_api/models/create_schedule_json_body_retry.py +2 -1
  33. windmill_api/models/create_sqs_trigger_json_body.py +2 -1
  34. windmill_api/models/create_sqs_trigger_json_body_error_handler_args.py +1 -1
  35. windmill_api/models/create_variable.py +7 -7
  36. windmill_api/models/create_variable_json_body.py +7 -7
  37. windmill_api/models/create_websocket_trigger_json_body.py +4 -2
  38. windmill_api/models/create_websocket_trigger_json_body_error_handler_args.py +1 -1
  39. windmill_api/models/create_websocket_trigger_json_body_initial_messages_item_type_1_runnable_result.py +2 -1
  40. windmill_api/models/create_websocket_trigger_json_body_initial_messages_item_type_1_runnable_result_args.py +1 -1
  41. windmill_api/models/create_websocket_trigger_json_body_url_runnable_args.py +1 -1
  42. windmill_api/models/delete_completed_job_response_200.py +1 -1
  43. windmill_api/models/delete_completed_job_response_200_args.py +1 -1
  44. windmill_api/models/edit_error_handler_json_body.py +2 -1
  45. windmill_api/models/edit_error_handler_json_body_error_handler_extra_args.py +1 -1
  46. windmill_api/models/edit_http_trigger.py +1 -1
  47. windmill_api/models/edit_http_trigger_error_handler_args.py +1 -1
  48. windmill_api/models/edit_kafka_trigger.py +1 -1
  49. windmill_api/models/edit_kafka_trigger_error_handler_args.py +1 -1
  50. windmill_api/models/edit_mqtt_trigger.py +1 -1
  51. windmill_api/models/edit_mqtt_trigger_error_handler_args.py +1 -1
  52. windmill_api/models/edit_nats_trigger.py +1 -1
  53. windmill_api/models/edit_nats_trigger_error_handler_args.py +1 -1
  54. windmill_api/models/edit_postgres_trigger.py +2 -1
  55. windmill_api/models/edit_postgres_trigger_error_handler_args.py +1 -1
  56. windmill_api/models/edit_resource.py +10 -2
  57. windmill_api/models/edit_schedule.py +23 -20
  58. windmill_api/models/edit_schedule_args.py +1 -1
  59. windmill_api/models/edit_schedule_on_failure_extra_args.py +1 -1
  60. windmill_api/models/edit_schedule_on_recovery_extra_args.py +1 -1
  61. windmill_api/models/edit_schedule_on_success_extra_args.py +1 -1
  62. windmill_api/models/edit_schedule_retry.py +2 -1
  63. windmill_api/models/edit_sqs_trigger.py +1 -1
  64. windmill_api/models/edit_sqs_trigger_error_handler_args.py +1 -1
  65. windmill_api/models/edit_variable.py +4 -4
  66. windmill_api/models/edit_websocket_trigger.py +4 -2
  67. windmill_api/models/edit_websocket_trigger_error_handler_args.py +1 -1
  68. windmill_api/models/edit_websocket_trigger_initial_messages_item_type_1_runnable_result.py +2 -1
  69. windmill_api/models/edit_websocket_trigger_initial_messages_item_type_1_runnable_result_args.py +1 -1
  70. windmill_api/models/edit_websocket_trigger_url_runnable_args.py +1 -1
  71. windmill_api/models/error_handler.py +11 -0
  72. windmill_api/models/extended_jobs_jobs_item_type_0.py +1 -1
  73. windmill_api/models/extended_jobs_jobs_item_type_0_args.py +1 -1
  74. windmill_api/models/extended_jobs_jobs_item_type_1.py +1 -1
  75. windmill_api/models/extended_jobs_jobs_item_type_1_args.py +1 -1
  76. windmill_api/models/flow_preview.py +1 -1
  77. windmill_api/models/flow_preview_args.py +1 -1
  78. windmill_api/models/gcp_trigger.py +1 -1
  79. windmill_api/models/gcp_trigger_data.py +1 -1
  80. windmill_api/models/gcp_trigger_data_error_handler_args.py +1 -1
  81. windmill_api/models/gcp_trigger_error_handler_args.py +1 -1
  82. windmill_api/models/get_completed_job_response_200.py +1 -1
  83. windmill_api/models/get_completed_job_response_200_args.py +1 -1
  84. windmill_api/models/get_gcp_trigger_response_200.py +2 -1
  85. windmill_api/models/get_gcp_trigger_response_200_error_handler_args.py +1 -1
  86. windmill_api/models/get_http_trigger_response_200.py +2 -1
  87. windmill_api/models/get_http_trigger_response_200_error_handler_args.py +1 -1
  88. windmill_api/models/get_job_response_200_type_0.py +1 -1
  89. windmill_api/models/get_job_response_200_type_0_args.py +1 -1
  90. windmill_api/models/get_job_response_200_type_1.py +1 -1
  91. windmill_api/models/get_job_response_200_type_1_args.py +1 -1
  92. windmill_api/models/get_kafka_trigger_response_200.py +2 -1
  93. windmill_api/models/get_kafka_trigger_response_200_error_handler_args.py +1 -1
  94. windmill_api/models/get_mqtt_trigger_response_200.py +2 -1
  95. windmill_api/models/get_mqtt_trigger_response_200_error_handler_args.py +1 -1
  96. windmill_api/models/get_nats_trigger_response_200.py +2 -1
  97. windmill_api/models/get_nats_trigger_response_200_error_handler_args.py +1 -1
  98. windmill_api/models/get_postgres_trigger_response_200.py +2 -1
  99. windmill_api/models/get_postgres_trigger_response_200_error_handler_args.py +1 -1
  100. windmill_api/models/get_schedule_response_200.py +7 -4
  101. windmill_api/models/get_schedule_response_200_args.py +1 -1
  102. windmill_api/models/get_schedule_response_200_on_failure_extra_args.py +1 -1
  103. windmill_api/models/get_schedule_response_200_on_recovery_extra_args.py +1 -1
  104. windmill_api/models/get_schedule_response_200_on_success_extra_args.py +1 -1
  105. windmill_api/models/get_settings_response_200.py +2 -1
  106. windmill_api/models/get_settings_response_200_error_handler_extra_args.py +1 -1
  107. windmill_api/models/get_sqs_trigger_response_200.py +2 -1
  108. windmill_api/models/get_sqs_trigger_response_200_error_handler_args.py +1 -1
  109. windmill_api/models/get_suspended_job_flow_response_200_job_type_0.py +1 -1
  110. windmill_api/models/get_suspended_job_flow_response_200_job_type_0_args.py +1 -1
  111. windmill_api/models/get_suspended_job_flow_response_200_job_type_1.py +1 -1
  112. windmill_api/models/get_suspended_job_flow_response_200_job_type_1_args.py +1 -1
  113. windmill_api/models/get_websocket_trigger_response_200.py +4 -2
  114. windmill_api/models/get_websocket_trigger_response_200_error_handler_args.py +1 -1
  115. windmill_api/models/get_websocket_trigger_response_200_initial_messages_item_type_1_runnable_result.py +2 -1
  116. windmill_api/models/get_websocket_trigger_response_200_initial_messages_item_type_1_runnable_result_args.py +1 -1
  117. windmill_api/models/get_websocket_trigger_response_200_url_runnable_args.py +1 -1
  118. windmill_api/models/http_trigger.py +1 -1
  119. windmill_api/models/http_trigger_error_handler_args.py +1 -1
  120. windmill_api/models/job_type_0_args.py +1 -1
  121. windmill_api/models/job_type_1_args.py +1 -1
  122. windmill_api/models/kafka_trigger.py +1 -1
  123. windmill_api/models/kafka_trigger_error_handler_args.py +1 -1
  124. windmill_api/models/list_completed_jobs_response_200_item.py +1 -1
  125. windmill_api/models/list_completed_jobs_response_200_item_args.py +1 -1
  126. windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0.py +1 -1
  127. windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_args.py +1 -1
  128. windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1.py +1 -1
  129. windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_args.py +1 -1
  130. windmill_api/models/list_gcp_triggers_response_200_item.py +2 -1
  131. windmill_api/models/list_gcp_triggers_response_200_item_error_handler_args.py +1 -1
  132. windmill_api/models/list_http_triggers_response_200_item.py +2 -1
  133. windmill_api/models/list_http_triggers_response_200_item_error_handler_args.py +1 -1
  134. windmill_api/models/list_jobs_response_200_item_type_0.py +1 -1
  135. windmill_api/models/list_jobs_response_200_item_type_0_args.py +1 -1
  136. windmill_api/models/list_jobs_response_200_item_type_1.py +1 -1
  137. windmill_api/models/list_jobs_response_200_item_type_1_args.py +1 -1
  138. windmill_api/models/list_kafka_triggers_response_200_item.py +2 -1
  139. windmill_api/models/list_kafka_triggers_response_200_item_error_handler_args.py +1 -1
  140. windmill_api/models/list_mqtt_triggers_response_200_item.py +2 -1
  141. windmill_api/models/list_mqtt_triggers_response_200_item_error_handler_args.py +1 -1
  142. windmill_api/models/list_nats_triggers_response_200_item.py +2 -1
  143. windmill_api/models/list_nats_triggers_response_200_item_error_handler_args.py +1 -1
  144. windmill_api/models/list_postgres_triggers_response_200_item.py +2 -1
  145. windmill_api/models/list_postgres_triggers_response_200_item_error_handler_args.py +1 -1
  146. windmill_api/models/list_queue_response_200_item.py +1 -1
  147. windmill_api/models/list_queue_response_200_item_args.py +1 -1
  148. windmill_api/models/list_schedules_response_200_item.py +7 -4
  149. windmill_api/models/list_schedules_response_200_item_args.py +1 -1
  150. windmill_api/models/list_schedules_response_200_item_on_failure_extra_args.py +1 -1
  151. windmill_api/models/list_schedules_response_200_item_on_recovery_extra_args.py +1 -1
  152. windmill_api/models/list_schedules_response_200_item_on_success_extra_args.py +1 -1
  153. windmill_api/models/list_schedules_with_jobs_response_200_item.py +7 -4
  154. windmill_api/models/list_schedules_with_jobs_response_200_item_args.py +1 -1
  155. windmill_api/models/list_schedules_with_jobs_response_200_item_on_failure_extra_args.py +1 -1
  156. windmill_api/models/list_schedules_with_jobs_response_200_item_on_recovery_extra_args.py +1 -1
  157. windmill_api/models/list_schedules_with_jobs_response_200_item_on_success_extra_args.py +1 -1
  158. windmill_api/models/list_sqs_triggers_response_200_item.py +2 -1
  159. windmill_api/models/list_sqs_triggers_response_200_item_error_handler_args.py +1 -1
  160. windmill_api/models/list_websocket_triggers_response_200_item.py +4 -2
  161. windmill_api/models/list_websocket_triggers_response_200_item_error_handler_args.py +1 -1
  162. windmill_api/models/list_websocket_triggers_response_200_item_initial_messages_item_type_1_runnable_result.py +2 -1
  163. windmill_api/models/list_websocket_triggers_response_200_item_initial_messages_item_type_1_runnable_result_args.py +1 -1
  164. windmill_api/models/list_websocket_triggers_response_200_item_url_runnable_args.py +1 -1
  165. windmill_api/models/mqtt_trigger.py +1 -1
  166. windmill_api/models/mqtt_trigger_error_handler_args.py +1 -1
  167. windmill_api/models/nats_trigger.py +1 -1
  168. windmill_api/models/nats_trigger_error_handler_args.py +1 -1
  169. windmill_api/models/new_http_trigger.py +1 -1
  170. windmill_api/models/new_http_trigger_error_handler_args.py +1 -1
  171. windmill_api/models/new_kafka_trigger.py +1 -1
  172. windmill_api/models/new_kafka_trigger_error_handler_args.py +1 -1
  173. windmill_api/models/new_mqtt_trigger.py +1 -1
  174. windmill_api/models/new_mqtt_trigger_error_handler_args.py +1 -1
  175. windmill_api/models/new_nats_trigger.py +1 -1
  176. windmill_api/models/new_nats_trigger_error_handler_args.py +1 -1
  177. windmill_api/models/new_postgres_trigger.py +2 -1
  178. windmill_api/models/new_postgres_trigger_error_handler_args.py +1 -1
  179. windmill_api/models/new_schedule.py +25 -24
  180. windmill_api/models/new_schedule_args.py +1 -1
  181. windmill_api/models/new_schedule_on_failure_extra_args.py +1 -1
  182. windmill_api/models/new_schedule_on_recovery_extra_args.py +1 -1
  183. windmill_api/models/new_schedule_on_success_extra_args.py +1 -1
  184. windmill_api/models/new_schedule_retry.py +2 -1
  185. windmill_api/models/new_sqs_trigger.py +1 -1
  186. windmill_api/models/new_sqs_trigger_error_handler_args.py +1 -1
  187. windmill_api/models/new_websocket_trigger.py +4 -2
  188. windmill_api/models/new_websocket_trigger_error_handler_args.py +1 -1
  189. windmill_api/models/new_websocket_trigger_initial_messages_item_type_1_runnable_result.py +2 -1
  190. windmill_api/models/new_websocket_trigger_initial_messages_item_type_1_runnable_result_args.py +1 -1
  191. windmill_api/models/new_websocket_trigger_url_runnable_args.py +1 -1
  192. windmill_api/models/openai_sync_flow_by_path_json_body.py +1 -1
  193. windmill_api/models/openai_sync_script_by_path_json_body.py +1 -1
  194. windmill_api/models/postgres_trigger.py +1 -1
  195. windmill_api/models/postgres_trigger_error_handler_args.py +1 -1
  196. windmill_api/models/preview.py +1 -1
  197. windmill_api/models/preview_args.py +1 -1
  198. windmill_api/models/queued_job.py +1 -1
  199. windmill_api/models/queued_job_args.py +1 -1
  200. windmill_api/models/restart_flow_at_step_json_body.py +1 -1
  201. windmill_api/models/run_code_workflow_task_json_body.py +1 -1
  202. windmill_api/models/run_code_workflow_task_json_body_args.py +1 -1
  203. windmill_api/models/run_flow_by_path_json_body.py +1 -1
  204. windmill_api/models/run_flow_preview_json_body.py +1 -1
  205. windmill_api/models/run_flow_preview_json_body_args.py +1 -1
  206. windmill_api/models/run_script_by_path_json_body.py +1 -1
  207. windmill_api/models/run_script_preview_json_body.py +1 -1
  208. windmill_api/models/run_script_preview_json_body_args.py +1 -1
  209. windmill_api/models/run_wait_result_flow_by_path_json_body.py +1 -1
  210. windmill_api/models/run_wait_result_script_by_path_json_body.py +1 -1
  211. windmill_api/models/schedule.py +4 -4
  212. windmill_api/models/schedule_args.py +1 -1
  213. windmill_api/models/schedule_on_failure_extra_args.py +1 -1
  214. windmill_api/models/schedule_on_recovery_extra_args.py +1 -1
  215. windmill_api/models/schedule_on_success_extra_args.py +1 -1
  216. windmill_api/models/schedule_w_jobs.py +7 -4
  217. windmill_api/models/schedule_w_jobs_args.py +1 -1
  218. windmill_api/models/schedule_w_jobs_on_failure_extra_args.py +1 -1
  219. windmill_api/models/schedule_w_jobs_on_recovery_extra_args.py +1 -1
  220. windmill_api/models/schedule_w_jobs_on_success_extra_args.py +1 -1
  221. windmill_api/models/script_args.py +1 -1
  222. windmill_api/models/sqs_trigger.py +1 -1
  223. windmill_api/models/sqs_trigger_error_handler_args.py +1 -1
  224. windmill_api/models/test_websocket_connection_json_body.py +2 -1
  225. windmill_api/models/test_websocket_connection_json_body_url_runnable_args.py +1 -1
  226. windmill_api/models/update_gcp_trigger_json_body.py +2 -1
  227. windmill_api/models/update_gcp_trigger_json_body_error_handler_args.py +1 -1
  228. windmill_api/models/update_http_trigger_json_body.py +2 -1
  229. windmill_api/models/update_http_trigger_json_body_error_handler_args.py +1 -1
  230. windmill_api/models/update_kafka_trigger_json_body.py +2 -1
  231. windmill_api/models/update_kafka_trigger_json_body_error_handler_args.py +1 -1
  232. windmill_api/models/update_mqtt_trigger_json_body.py +2 -1
  233. windmill_api/models/update_mqtt_trigger_json_body_error_handler_args.py +1 -1
  234. windmill_api/models/update_nats_trigger_json_body.py +2 -1
  235. windmill_api/models/update_nats_trigger_json_body_error_handler_args.py +1 -1
  236. windmill_api/models/update_postgres_trigger_json_body.py +2 -1
  237. windmill_api/models/update_postgres_trigger_json_body_error_handler_args.py +1 -1
  238. windmill_api/models/update_resource_json_body.py +10 -2
  239. windmill_api/models/update_schedule_json_body.py +23 -20
  240. windmill_api/models/update_schedule_json_body_args.py +1 -1
  241. windmill_api/models/update_schedule_json_body_on_failure_extra_args.py +1 -1
  242. windmill_api/models/update_schedule_json_body_on_recovery_extra_args.py +1 -1
  243. windmill_api/models/update_schedule_json_body_on_success_extra_args.py +1 -1
  244. windmill_api/models/update_schedule_json_body_retry.py +2 -1
  245. windmill_api/models/update_sqs_trigger_json_body.py +2 -1
  246. windmill_api/models/update_sqs_trigger_json_body_error_handler_args.py +1 -1
  247. windmill_api/models/update_variable_json_body.py +4 -4
  248. windmill_api/models/update_websocket_trigger_json_body.py +4 -2
  249. windmill_api/models/update_websocket_trigger_json_body_error_handler_args.py +1 -1
  250. windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_type_1_runnable_result.py +2 -1
  251. windmill_api/models/update_websocket_trigger_json_body_initial_messages_item_type_1_runnable_result_args.py +1 -1
  252. windmill_api/models/update_websocket_trigger_json_body_url_runnable_args.py +1 -1
  253. windmill_api/models/websocket_trigger.py +2 -2
  254. windmill_api/models/websocket_trigger_error_handler_args.py +1 -1
  255. windmill_api/models/websocket_trigger_initial_message_type_1_runnable_result_args.py +1 -1
  256. windmill_api/models/websocket_trigger_initial_messages_item_type_1_runnable_result.py +1 -1
  257. windmill_api/models/websocket_trigger_initial_messages_item_type_1_runnable_result_args.py +1 -1
  258. windmill_api/models/websocket_trigger_url_runnable_args.py +1 -1
  259. windmill_api/models/workflow_task.py +1 -1
  260. windmill_api/models/workflow_task_args.py +1 -1
  261. {windmill_api-1.519.1.dist-info → windmill_api-1.520.0.dist-info}/METADATA +1 -1
  262. {windmill_api-1.519.1.dist-info → windmill_api-1.520.0.dist-info}/RECORD +264 -263
  263. {windmill_api-1.519.1.dist-info → windmill_api-1.520.0.dist-info}/LICENSE +0 -0
  264. {windmill_api-1.519.1.dist-info → windmill_api-1.520.0.dist-info}/WHEEL +0 -0
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="RunCodeWorkflowTaskJsonBodyArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class RunCodeWorkflowTaskJsonBodyArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="RunFlowByPathJsonBody")
8
8
 
9
9
  @_attrs_define
10
10
  class RunFlowByPathJsonBody:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -19,7 +19,7 @@ class RunFlowPreviewJsonBody:
19
19
  """
20
20
  Attributes:
21
21
  value (RunFlowPreviewJsonBodyValue):
22
- args (RunFlowPreviewJsonBodyArgs):
22
+ args (RunFlowPreviewJsonBodyArgs): The arguments to pass to the script or flow
23
23
  path (Union[Unset, str]):
24
24
  tag (Union[Unset, str]):
25
25
  restarted_from (Union[Unset, RunFlowPreviewJsonBodyRestartedFrom]):
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="RunFlowPreviewJsonBodyArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class RunFlowPreviewJsonBodyArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="RunScriptByPathJsonBody")
8
8
 
9
9
  @_attrs_define
10
10
  class RunScriptByPathJsonBody:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -18,7 +18,7 @@ T = TypeVar("T", bound="RunScriptPreviewJsonBody")
18
18
  class RunScriptPreviewJsonBody:
19
19
  """
20
20
  Attributes:
21
- args (RunScriptPreviewJsonBodyArgs):
21
+ args (RunScriptPreviewJsonBodyArgs): The arguments to pass to the script or flow
22
22
  content (Union[Unset, str]):
23
23
  path (Union[Unset, str]):
24
24
  script_hash (Union[Unset, str]):
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="RunScriptPreviewJsonBodyArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class RunScriptPreviewJsonBodyArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="RunWaitResultFlowByPathJsonBody")
8
8
 
9
9
  @_attrs_define
10
10
  class RunWaitResultFlowByPathJsonBody:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="RunWaitResultScriptByPathJsonBody")
8
8
 
9
9
  @_attrs_define
10
10
  class RunWaitResultScriptByPathJsonBody:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -33,17 +33,17 @@ class Schedule:
33
33
  is_flow (bool):
34
34
  extra_perms (ScheduleExtraPerms):
35
35
  email (str):
36
- args (Union[Unset, ScheduleArgs]):
36
+ args (Union[Unset, ScheduleArgs]): The arguments to pass to the script or flow
37
37
  error (Union[Unset, str]):
38
38
  on_failure (Union[Unset, str]):
39
39
  on_failure_times (Union[Unset, float]):
40
40
  on_failure_exact (Union[Unset, bool]):
41
- on_failure_extra_args (Union[Unset, ScheduleOnFailureExtraArgs]):
41
+ on_failure_extra_args (Union[Unset, ScheduleOnFailureExtraArgs]): The arguments to pass to the script or flow
42
42
  on_recovery (Union[Unset, str]):
43
43
  on_recovery_times (Union[Unset, float]):
44
- on_recovery_extra_args (Union[Unset, ScheduleOnRecoveryExtraArgs]):
44
+ on_recovery_extra_args (Union[Unset, ScheduleOnRecoveryExtraArgs]): The arguments to pass to the script or flow
45
45
  on_success (Union[Unset, str]):
46
- on_success_extra_args (Union[Unset, ScheduleOnSuccessExtraArgs]):
46
+ on_success_extra_args (Union[Unset, ScheduleOnSuccessExtraArgs]): The arguments to pass to the script or flow
47
47
  ws_error_handler_muted (Union[Unset, bool]):
48
48
  retry (Union[Unset, ScheduleRetry]):
49
49
  summary (Union[Unset, str]):
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="ScheduleArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class ScheduleArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="ScheduleOnFailureExtraArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class ScheduleOnFailureExtraArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="ScheduleOnRecoveryExtraArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class ScheduleOnRecoveryExtraArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="ScheduleOnSuccessExtraArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class ScheduleOnSuccessExtraArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -34,17 +34,20 @@ class ScheduleWJobs:
34
34
  is_flow (bool):
35
35
  extra_perms (ScheduleWJobsExtraPerms):
36
36
  email (str):
37
- args (Union[Unset, ScheduleWJobsArgs]):
37
+ args (Union[Unset, ScheduleWJobsArgs]): The arguments to pass to the script or flow
38
38
  error (Union[Unset, str]):
39
39
  on_failure (Union[Unset, str]):
40
40
  on_failure_times (Union[Unset, float]):
41
41
  on_failure_exact (Union[Unset, bool]):
42
- on_failure_extra_args (Union[Unset, ScheduleWJobsOnFailureExtraArgs]):
42
+ on_failure_extra_args (Union[Unset, ScheduleWJobsOnFailureExtraArgs]): The arguments to pass to the script or
43
+ flow
43
44
  on_recovery (Union[Unset, str]):
44
45
  on_recovery_times (Union[Unset, float]):
45
- on_recovery_extra_args (Union[Unset, ScheduleWJobsOnRecoveryExtraArgs]):
46
+ on_recovery_extra_args (Union[Unset, ScheduleWJobsOnRecoveryExtraArgs]): The arguments to pass to the script or
47
+ flow
46
48
  on_success (Union[Unset, str]):
47
- on_success_extra_args (Union[Unset, ScheduleWJobsOnSuccessExtraArgs]):
49
+ on_success_extra_args (Union[Unset, ScheduleWJobsOnSuccessExtraArgs]): The arguments to pass to the script or
50
+ flow
48
51
  ws_error_handler_muted (Union[Unset, bool]):
49
52
  retry (Union[Unset, ScheduleWJobsRetry]):
50
53
  summary (Union[Unset, str]):
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="ScheduleWJobsArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class ScheduleWJobsArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="ScheduleWJobsOnFailureExtraArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class ScheduleWJobsOnFailureExtraArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="ScheduleWJobsOnRecoveryExtraArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class ScheduleWJobsOnRecoveryExtraArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="ScheduleWJobsOnSuccessExtraArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class ScheduleWJobsOnSuccessExtraArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="ScriptArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class ScriptArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -38,7 +38,7 @@ class SqsTrigger:
38
38
  last_server_ping (Union[Unset, datetime.datetime]):
39
39
  error (Union[Unset, str]):
40
40
  error_handler_path (Union[Unset, str]):
41
- error_handler_args (Union[Unset, SqsTriggerErrorHandlerArgs]):
41
+ error_handler_args (Union[Unset, SqsTriggerErrorHandlerArgs]): The arguments to pass to the script or flow
42
42
  retry (Union[Unset, SqsTriggerRetry]):
43
43
  """
44
44
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="SqsTriggerErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class SqsTriggerErrorHandlerArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -20,7 +20,8 @@ class TestWebsocketConnectionJsonBody:
20
20
  Attributes:
21
21
  url (str):
22
22
  can_return_message (bool):
23
- url_runnable_args (Union[Unset, TestWebsocketConnectionJsonBodyUrlRunnableArgs]):
23
+ url_runnable_args (Union[Unset, TestWebsocketConnectionJsonBodyUrlRunnableArgs]): The arguments to pass to the
24
+ script or flow
24
25
  """
25
26
 
26
27
  url: str
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="TestWebsocketConnectionJsonBodyUrlRunnableArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class TestWebsocketConnectionJsonBodyUrlRunnableArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -33,7 +33,8 @@ class UpdateGcpTriggerJsonBody:
33
33
  delivery_config (Union[Unset, UpdateGcpTriggerJsonBodyDeliveryConfig]):
34
34
  enabled (Union[Unset, bool]):
35
35
  error_handler_path (Union[Unset, str]):
36
- error_handler_args (Union[Unset, UpdateGcpTriggerJsonBodyErrorHandlerArgs]):
36
+ error_handler_args (Union[Unset, UpdateGcpTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the script
37
+ or flow
37
38
  retry (Union[Unset, UpdateGcpTriggerJsonBodyRetry]):
38
39
  """
39
40
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="UpdateGcpTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class UpdateGcpTriggerJsonBodyErrorHandlerArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -36,7 +36,8 @@ class UpdateHttpTriggerJsonBody:
36
36
  wrap_body (Union[Unset, bool]):
37
37
  raw_string (Union[Unset, bool]):
38
38
  error_handler_path (Union[Unset, str]):
39
- error_handler_args (Union[Unset, UpdateHttpTriggerJsonBodyErrorHandlerArgs]):
39
+ error_handler_args (Union[Unset, UpdateHttpTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the
40
+ script or flow
40
41
  retry (Union[Unset, UpdateHttpTriggerJsonBodyRetry]):
41
42
  """
42
43
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="UpdateHttpTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class UpdateHttpTriggerJsonBodyErrorHandlerArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -24,7 +24,8 @@ class UpdateKafkaTriggerJsonBody:
24
24
  script_path (str):
25
25
  is_flow (bool):
26
26
  error_handler_path (Union[Unset, str]):
27
- error_handler_args (Union[Unset, UpdateKafkaTriggerJsonBodyErrorHandlerArgs]):
27
+ error_handler_args (Union[Unset, UpdateKafkaTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the
28
+ script or flow
28
29
  retry (Union[Unset, UpdateKafkaTriggerJsonBodyRetry]):
29
30
  """
30
31
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="UpdateKafkaTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class UpdateKafkaTriggerJsonBodyErrorHandlerArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -34,7 +34,8 @@ class UpdateMqttTriggerJsonBody:
34
34
  v5_config (Union[Unset, UpdateMqttTriggerJsonBodyV5Config]):
35
35
  client_version (Union[Unset, UpdateMqttTriggerJsonBodyClientVersion]):
36
36
  error_handler_path (Union[Unset, str]):
37
- error_handler_args (Union[Unset, UpdateMqttTriggerJsonBodyErrorHandlerArgs]):
37
+ error_handler_args (Union[Unset, UpdateMqttTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the
38
+ script or flow
38
39
  retry (Union[Unset, UpdateMqttTriggerJsonBodyRetry]):
39
40
  """
40
41
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="UpdateMqttTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class UpdateMqttTriggerJsonBodyErrorHandlerArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -26,7 +26,8 @@ class UpdateNatsTriggerJsonBody:
26
26
  stream_name (Union[Unset, str]):
27
27
  consumer_name (Union[Unset, str]):
28
28
  error_handler_path (Union[Unset, str]):
29
- error_handler_args (Union[Unset, UpdateNatsTriggerJsonBodyErrorHandlerArgs]):
29
+ error_handler_args (Union[Unset, UpdateNatsTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the
30
+ script or flow
30
31
  retry (Union[Unset, UpdateNatsTriggerJsonBodyRetry]):
31
32
  """
32
33
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="UpdateNatsTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class UpdateNatsTriggerJsonBodyErrorHandlerArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -29,7 +29,8 @@ class UpdatePostgresTriggerJsonBody:
29
29
  postgres_resource_path (str):
30
30
  publication (Union[Unset, UpdatePostgresTriggerJsonBodyPublication]):
31
31
  error_handler_path (Union[Unset, str]):
32
- error_handler_args (Union[Unset, UpdatePostgresTriggerJsonBodyErrorHandlerArgs]):
32
+ error_handler_args (Union[Unset, UpdatePostgresTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the
33
+ script or flow
33
34
  retry (Union[Unset, UpdatePostgresTriggerJsonBodyRetry]):
34
35
  """
35
36
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="UpdatePostgresTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class UpdatePostgresTriggerJsonBodyErrorHandlerArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -12,20 +12,23 @@ T = TypeVar("T", bound="UpdateResourceJsonBody")
12
12
  class UpdateResourceJsonBody:
13
13
  """
14
14
  Attributes:
15
- path (Union[Unset, str]):
16
- description (Union[Unset, str]):
15
+ path (Union[Unset, str]): The path to the resource
16
+ description (Union[Unset, str]): The new description of the resource
17
17
  value (Union[Unset, Any]):
18
+ resource_type (Union[Unset, str]): The new resource_type to be associated with the resource
18
19
  """
19
20
 
20
21
  path: Union[Unset, str] = UNSET
21
22
  description: Union[Unset, str] = UNSET
22
23
  value: Union[Unset, Any] = UNSET
24
+ resource_type: Union[Unset, str] = UNSET
23
25
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
24
26
 
25
27
  def to_dict(self) -> Dict[str, Any]:
26
28
  path = self.path
27
29
  description = self.description
28
30
  value = self.value
31
+ resource_type = self.resource_type
29
32
 
30
33
  field_dict: Dict[str, Any] = {}
31
34
  field_dict.update(self.additional_properties)
@@ -36,6 +39,8 @@ class UpdateResourceJsonBody:
36
39
  field_dict["description"] = description
37
40
  if value is not UNSET:
38
41
  field_dict["value"] = value
42
+ if resource_type is not UNSET:
43
+ field_dict["resource_type"] = resource_type
39
44
 
40
45
  return field_dict
41
46
 
@@ -48,10 +53,13 @@ class UpdateResourceJsonBody:
48
53
 
49
54
  value = d.pop("value", UNSET)
50
55
 
56
+ resource_type = d.pop("resource_type", UNSET)
57
+
51
58
  update_resource_json_body = cls(
52
59
  path=path,
53
60
  description=description,
54
61
  value=value,
62
+ resource_type=resource_type,
55
63
  )
56
64
 
57
65
  update_resource_json_body.additional_properties = d
@@ -22,26 +22,29 @@ T = TypeVar("T", bound="UpdateScheduleJsonBody")
22
22
  class UpdateScheduleJsonBody:
23
23
  """
24
24
  Attributes:
25
- schedule (str):
26
- timezone (str):
27
- args (UpdateScheduleJsonBodyArgs):
28
- on_failure (Union[Unset, str]):
29
- on_failure_times (Union[Unset, float]):
30
- on_failure_exact (Union[Unset, bool]):
31
- on_failure_extra_args (Union[Unset, UpdateScheduleJsonBodyOnFailureExtraArgs]):
32
- on_recovery (Union[Unset, str]):
33
- on_recovery_times (Union[Unset, float]):
34
- on_recovery_extra_args (Union[Unset, UpdateScheduleJsonBodyOnRecoveryExtraArgs]):
35
- on_success (Union[Unset, str]):
36
- on_success_extra_args (Union[Unset, UpdateScheduleJsonBodyOnSuccessExtraArgs]):
37
- ws_error_handler_muted (Union[Unset, bool]):
38
- retry (Union[Unset, UpdateScheduleJsonBodyRetry]):
39
- no_flow_overlap (Union[Unset, bool]):
40
- summary (Union[Unset, str]):
41
- description (Union[Unset, str]):
42
- tag (Union[Unset, str]):
43
- paused_until (Union[Unset, datetime.datetime]):
44
- cron_version (Union[Unset, str]):
25
+ schedule (str): The cron schedule to trigger the script or flow. Should include seconds.
26
+ timezone (str): The timezone to use for the cron schedule
27
+ args (UpdateScheduleJsonBodyArgs): The arguments to pass to the script or flow
28
+ on_failure (Union[Unset, str]): The path to the script or flow to trigger on failure
29
+ on_failure_times (Union[Unset, float]): The number of times to retry on failure
30
+ on_failure_exact (Union[Unset, bool]): Whether the schedule should only run on the exact time
31
+ on_failure_extra_args (Union[Unset, UpdateScheduleJsonBodyOnFailureExtraArgs]): The arguments to pass to the
32
+ script or flow
33
+ on_recovery (Union[Unset, str]): The path to the script or flow to trigger on recovery
34
+ on_recovery_times (Union[Unset, float]): The number of times to retry on recovery
35
+ on_recovery_extra_args (Union[Unset, UpdateScheduleJsonBodyOnRecoveryExtraArgs]): The arguments to pass to the
36
+ script or flow
37
+ on_success (Union[Unset, str]): The path to the script or flow to trigger on success
38
+ on_success_extra_args (Union[Unset, UpdateScheduleJsonBodyOnSuccessExtraArgs]): The arguments to pass to the
39
+ script or flow
40
+ ws_error_handler_muted (Union[Unset, bool]): Whether the WebSocket error handler is muted
41
+ retry (Union[Unset, UpdateScheduleJsonBodyRetry]): The retry configuration for the schedule
42
+ no_flow_overlap (Union[Unset, bool]): Whether the schedule should not run if a flow is already running
43
+ summary (Union[Unset, str]): The summary of the schedule
44
+ description (Union[Unset, str]): The description of the schedule
45
+ tag (Union[Unset, str]): The tag of the schedule
46
+ paused_until (Union[Unset, datetime.datetime]): The date and time the schedule will be paused until
47
+ cron_version (Union[Unset, str]): The version of the cron schedule to use (last is v2)
45
48
  """
46
49
 
47
50
  schedule: str
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="UpdateScheduleJsonBodyArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class UpdateScheduleJsonBodyArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="UpdateScheduleJsonBodyOnFailureExtraArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class UpdateScheduleJsonBodyOnFailureExtraArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="UpdateScheduleJsonBodyOnRecoveryExtraArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class UpdateScheduleJsonBodyOnRecoveryExtraArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="UpdateScheduleJsonBodyOnSuccessExtraArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class UpdateScheduleJsonBodyOnSuccessExtraArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -15,7 +15,8 @@ T = TypeVar("T", bound="UpdateScheduleJsonBodyRetry")
15
15
 
16
16
  @_attrs_define
17
17
  class UpdateScheduleJsonBodyRetry:
18
- """
18
+ """The retry configuration for the schedule
19
+
19
20
  Attributes:
20
21
  constant (Union[Unset, UpdateScheduleJsonBodyRetryConstant]):
21
22
  exponential (Union[Unset, UpdateScheduleJsonBodyRetryExponential]):
@@ -27,7 +27,8 @@ class UpdateSqsTriggerJsonBody:
27
27
  enabled (bool):
28
28
  message_attributes (Union[Unset, List[str]]):
29
29
  error_handler_path (Union[Unset, str]):
30
- error_handler_args (Union[Unset, UpdateSqsTriggerJsonBodyErrorHandlerArgs]):
30
+ error_handler_args (Union[Unset, UpdateSqsTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the script
31
+ or flow
31
32
  retry (Union[Unset, UpdateSqsTriggerJsonBodyRetry]):
32
33
  """
33
34
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="UpdateSqsTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class UpdateSqsTriggerJsonBodyErrorHandlerArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -12,10 +12,10 @@ T = TypeVar("T", bound="UpdateVariableJsonBody")
12
12
  class UpdateVariableJsonBody:
13
13
  """
14
14
  Attributes:
15
- path (Union[Unset, str]):
16
- value (Union[Unset, str]):
17
- is_secret (Union[Unset, bool]):
18
- description (Union[Unset, str]):
15
+ path (Union[Unset, str]): The path to the variable
16
+ value (Union[Unset, str]): The new value of the variable
17
+ is_secret (Union[Unset, bool]): Whether the variable is a secret
18
+ description (Union[Unset, str]): The new description of the variable
19
19
  """
20
20
 
21
21
  path: Union[Unset, str] = UNSET
@@ -37,9 +37,11 @@ class UpdateWebsocketTriggerJsonBody:
37
37
  can_return_message (bool):
38
38
  initial_messages (Union[Unset, List[Union['UpdateWebsocketTriggerJsonBodyInitialMessagesItemType0',
39
39
  'UpdateWebsocketTriggerJsonBodyInitialMessagesItemType1']]]):
40
- url_runnable_args (Union[Unset, UpdateWebsocketTriggerJsonBodyUrlRunnableArgs]):
40
+ url_runnable_args (Union[Unset, UpdateWebsocketTriggerJsonBodyUrlRunnableArgs]): The arguments to pass to the
41
+ script or flow
41
42
  error_handler_path (Union[Unset, str]):
42
- error_handler_args (Union[Unset, UpdateWebsocketTriggerJsonBodyErrorHandlerArgs]):
43
+ error_handler_args (Union[Unset, UpdateWebsocketTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the
44
+ script or flow
43
45
  retry (Union[Unset, UpdateWebsocketTriggerJsonBodyRetry]):
44
46
  """
45
47
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="UpdateWebsocketTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class UpdateWebsocketTriggerJsonBodyErrorHandlerArgs:
11
- """ """
11
+ """The arguments to pass to the script or flow"""
12
12
 
13
13
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
14
14
 
@@ -17,7 +17,8 @@ class UpdateWebsocketTriggerJsonBodyInitialMessagesItemType1RunnableResult:
17
17
  """
18
18
  Attributes:
19
19
  path (str):
20
- args (UpdateWebsocketTriggerJsonBodyInitialMessagesItemType1RunnableResultArgs):
20
+ args (UpdateWebsocketTriggerJsonBodyInitialMessagesItemType1RunnableResultArgs): The arguments to pass to the
21
+ script or flow
21
22
  is_flow (bool):
22
23
  """
23
24