windmill-api 1.519.2__py3-none-any.whl → 1.520.1__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.2.dist-info → windmill_api-1.520.1.dist-info}/METADATA +1 -1
  262. {windmill_api-1.519.2.dist-info → windmill_api-1.520.1.dist-info}/RECORD +264 -263
  263. {windmill_api-1.519.2.dist-info → windmill_api-1.520.1.dist-info}/LICENSE +0 -0
  264. {windmill_api-1.519.2.dist-info → windmill_api-1.520.1.dist-info}/WHEEL +0 -0
@@ -14,6 +14,7 @@ def _get_kwargs(
14
14
  *,
15
15
  running: Union[Unset, None, bool] = UNSET,
16
16
  log_offset: Union[Unset, None, int] = UNSET,
17
+ stream_offset: Union[Unset, None, int] = UNSET,
17
18
  get_progress: Union[Unset, None, bool] = UNSET,
18
19
  only_result: Union[Unset, None, bool] = UNSET,
19
20
  no_logs: Union[Unset, None, bool] = UNSET,
@@ -25,6 +26,8 @@ def _get_kwargs(
25
26
 
26
27
  params["log_offset"] = log_offset
27
28
 
29
+ params["stream_offset"] = stream_offset
30
+
28
31
  params["get_progress"] = get_progress
29
32
 
30
33
  params["only_result"] = only_result
@@ -66,6 +69,7 @@ def sync_detailed(
66
69
  client: Union[AuthenticatedClient, Client],
67
70
  running: Union[Unset, None, bool] = UNSET,
68
71
  log_offset: Union[Unset, None, int] = UNSET,
72
+ stream_offset: Union[Unset, None, int] = UNSET,
69
73
  get_progress: Union[Unset, None, bool] = UNSET,
70
74
  only_result: Union[Unset, None, bool] = UNSET,
71
75
  no_logs: Union[Unset, None, bool] = UNSET,
@@ -77,6 +81,7 @@ def sync_detailed(
77
81
  id (str):
78
82
  running (Union[Unset, None, bool]):
79
83
  log_offset (Union[Unset, None, int]):
84
+ stream_offset (Union[Unset, None, int]):
80
85
  get_progress (Union[Unset, None, bool]):
81
86
  only_result (Union[Unset, None, bool]):
82
87
  no_logs (Union[Unset, None, bool]):
@@ -94,6 +99,7 @@ def sync_detailed(
94
99
  id=id,
95
100
  running=running,
96
101
  log_offset=log_offset,
102
+ stream_offset=stream_offset,
97
103
  get_progress=get_progress,
98
104
  only_result=only_result,
99
105
  no_logs=no_logs,
@@ -113,6 +119,7 @@ async def asyncio_detailed(
113
119
  client: Union[AuthenticatedClient, Client],
114
120
  running: Union[Unset, None, bool] = UNSET,
115
121
  log_offset: Union[Unset, None, int] = UNSET,
122
+ stream_offset: Union[Unset, None, int] = UNSET,
116
123
  get_progress: Union[Unset, None, bool] = UNSET,
117
124
  only_result: Union[Unset, None, bool] = UNSET,
118
125
  no_logs: Union[Unset, None, bool] = UNSET,
@@ -124,6 +131,7 @@ async def asyncio_detailed(
124
131
  id (str):
125
132
  running (Union[Unset, None, bool]):
126
133
  log_offset (Union[Unset, None, int]):
134
+ stream_offset (Union[Unset, None, int]):
127
135
  get_progress (Union[Unset, None, bool]):
128
136
  only_result (Union[Unset, None, bool]):
129
137
  no_logs (Union[Unset, None, bool]):
@@ -141,6 +149,7 @@ async def asyncio_detailed(
141
149
  id=id,
142
150
  running=running,
143
151
  log_offset=log_offset,
152
+ stream_offset=stream_offset,
144
153
  get_progress=get_progress,
145
154
  only_result=only_result,
146
155
  no_logs=no_logs,
@@ -78,7 +78,7 @@ def sync_detailed(
78
78
  include_header (Union[Unset, None, str]):
79
79
  queue_limit (Union[Unset, None, str]):
80
80
  job_id (Union[Unset, None, str]):
81
- json_body (OpenaiSyncFlowByPathJsonBody):
81
+ json_body (OpenaiSyncFlowByPathJsonBody): The arguments to pass to the script or flow
82
82
 
83
83
  Raises:
84
84
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -122,7 +122,7 @@ async def asyncio_detailed(
122
122
  include_header (Union[Unset, None, str]):
123
123
  queue_limit (Union[Unset, None, str]):
124
124
  job_id (Union[Unset, None, str]):
125
- json_body (OpenaiSyncFlowByPathJsonBody):
125
+ json_body (OpenaiSyncFlowByPathJsonBody): The arguments to pass to the script or flow
126
126
 
127
127
  Raises:
128
128
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -83,7 +83,7 @@ def sync_detailed(
83
83
  job_id (Union[Unset, None, str]):
84
84
  include_header (Union[Unset, None, str]):
85
85
  queue_limit (Union[Unset, None, str]):
86
- json_body (OpenaiSyncScriptByPathJsonBody):
86
+ json_body (OpenaiSyncScriptByPathJsonBody): The arguments to pass to the script or flow
87
87
 
88
88
  Raises:
89
89
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -130,7 +130,7 @@ async def asyncio_detailed(
130
130
  job_id (Union[Unset, None, str]):
131
131
  include_header (Union[Unset, None, str]):
132
132
  queue_limit (Union[Unset, None, str]):
133
- json_body (OpenaiSyncScriptByPathJsonBody):
133
+ json_body (OpenaiSyncScriptByPathJsonBody): The arguments to pass to the script or flow
134
134
 
135
135
  Raises:
136
136
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -109,7 +109,7 @@ def sync_detailed(
109
109
  job_id (Union[Unset, None, str]):
110
110
  include_header (Union[Unset, None, str]):
111
111
  invisible_to_owner (Union[Unset, None, bool]):
112
- json_body (RestartFlowAtStepJsonBody):
112
+ json_body (RestartFlowAtStepJsonBody): The arguments to pass to the script or flow
113
113
 
114
114
  Raises:
115
115
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -171,7 +171,7 @@ async def asyncio_detailed(
171
171
  job_id (Union[Unset, None, str]):
172
172
  include_header (Union[Unset, None, str]):
173
173
  invisible_to_owner (Union[Unset, None, bool]):
174
- json_body (RestartFlowAtStepJsonBody):
174
+ json_body (RestartFlowAtStepJsonBody): The arguments to pass to the script or flow
175
175
 
176
176
  Raises:
177
177
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -106,7 +106,7 @@ def sync_detailed(
106
106
  job_id (Union[Unset, None, str]):
107
107
  include_header (Union[Unset, None, str]):
108
108
  invisible_to_owner (Union[Unset, None, bool]):
109
- json_body (RunFlowByPathJsonBody):
109
+ json_body (RunFlowByPathJsonBody): The arguments to pass to the script or flow
110
110
 
111
111
  Raises:
112
112
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -165,7 +165,7 @@ async def asyncio_detailed(
165
165
  job_id (Union[Unset, None, str]):
166
166
  include_header (Union[Unset, None, str]):
167
167
  invisible_to_owner (Union[Unset, None, bool]):
168
- json_body (RunFlowByPathJsonBody):
168
+ json_body (RunFlowByPathJsonBody): The arguments to pass to the script or flow
169
169
 
170
170
  Raises:
171
171
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -106,7 +106,7 @@ def sync_detailed(
106
106
  cache_ttl (Union[Unset, None, str]):
107
107
  job_id (Union[Unset, None, str]):
108
108
  invisible_to_owner (Union[Unset, None, bool]):
109
- json_body (RunScriptByPathJsonBody):
109
+ json_body (RunScriptByPathJsonBody): The arguments to pass to the script or flow
110
110
 
111
111
  Raises:
112
112
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -165,7 +165,7 @@ async def asyncio_detailed(
165
165
  cache_ttl (Union[Unset, None, str]):
166
166
  job_id (Union[Unset, None, str]):
167
167
  invisible_to_owner (Union[Unset, None, bool]):
168
- json_body (RunScriptByPathJsonBody):
168
+ json_body (RunScriptByPathJsonBody): The arguments to pass to the script or flow
169
169
 
170
170
  Raises:
171
171
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -78,7 +78,7 @@ def sync_detailed(
78
78
  include_header (Union[Unset, None, str]):
79
79
  queue_limit (Union[Unset, None, str]):
80
80
  job_id (Union[Unset, None, str]):
81
- json_body (RunWaitResultFlowByPathJsonBody):
81
+ json_body (RunWaitResultFlowByPathJsonBody): The arguments to pass to the script or flow
82
82
 
83
83
  Raises:
84
84
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -122,7 +122,7 @@ async def asyncio_detailed(
122
122
  include_header (Union[Unset, None, str]):
123
123
  queue_limit (Union[Unset, None, str]):
124
124
  job_id (Union[Unset, None, str]):
125
- json_body (RunWaitResultFlowByPathJsonBody):
125
+ json_body (RunWaitResultFlowByPathJsonBody): The arguments to pass to the script or flow
126
126
 
127
127
  Raises:
128
128
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -93,7 +93,7 @@ def sync_detailed(
93
93
  job_id (Union[Unset, None, str]):
94
94
  include_header (Union[Unset, None, str]):
95
95
  queue_limit (Union[Unset, None, str]):
96
- json_body (RunWaitResultScriptByPathJsonBody):
96
+ json_body (RunWaitResultScriptByPathJsonBody): The arguments to pass to the script or flow
97
97
 
98
98
  Raises:
99
99
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -146,7 +146,7 @@ async def asyncio_detailed(
146
146
  job_id (Union[Unset, None, str]):
147
147
  include_header (Union[Unset, None, str]):
148
148
  queue_limit (Union[Unset, None, str]):
149
- json_body (RunWaitResultScriptByPathJsonBody):
149
+ json_body (RunWaitResultScriptByPathJsonBody): The arguments to pass to the script or flow
150
150
 
151
151
  Raises:
152
152
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -42,7 +42,7 @@ class CompletedJob:
42
42
  parent_job (Union[Unset, str]):
43
43
  script_path (Union[Unset, str]):
44
44
  script_hash (Union[Unset, str]):
45
- args (Union[Unset, CompletedJobArgs]):
45
+ args (Union[Unset, CompletedJobArgs]): The arguments to pass to the script or flow
46
46
  result (Union[Unset, Any]):
47
47
  logs (Union[Unset, str]):
48
48
  deleted (Union[Unset, bool]):
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="CompletedJobArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CompletedJobArgs:
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 CreateGcpTriggerJsonBody:
33
33
  delivery_config (Union[Unset, CreateGcpTriggerJsonBodyDeliveryConfig]):
34
34
  enabled (Union[Unset, bool]):
35
35
  error_handler_path (Union[Unset, str]):
36
- error_handler_args (Union[Unset, CreateGcpTriggerJsonBodyErrorHandlerArgs]):
36
+ error_handler_args (Union[Unset, CreateGcpTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the script
37
+ or flow
37
38
  retry (Union[Unset, CreateGcpTriggerJsonBodyRetry]):
38
39
  """
39
40
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="CreateGcpTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CreateGcpTriggerJsonBodyErrorHandlerArgs:
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 CreateHttpTriggerJsonBody:
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, CreateHttpTriggerJsonBodyErrorHandlerArgs]):
39
+ error_handler_args (Union[Unset, CreateHttpTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the
40
+ script or flow
40
41
  retry (Union[Unset, CreateHttpTriggerJsonBodyRetry]):
41
42
  """
42
43
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="CreateHttpTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CreateHttpTriggerJsonBodyErrorHandlerArgs:
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
 
@@ -42,7 +42,8 @@ class CreateHttpTriggersJsonBodyItem:
42
42
  wrap_body (Union[Unset, bool]):
43
43
  raw_string (Union[Unset, bool]):
44
44
  error_handler_path (Union[Unset, str]):
45
- error_handler_args (Union[Unset, CreateHttpTriggersJsonBodyItemErrorHandlerArgs]):
45
+ error_handler_args (Union[Unset, CreateHttpTriggersJsonBodyItemErrorHandlerArgs]): The arguments to pass to the
46
+ script or flow
46
47
  retry (Union[Unset, CreateHttpTriggersJsonBodyItemRetry]):
47
48
  """
48
49
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="CreateHttpTriggersJsonBodyItemErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CreateHttpTriggersJsonBodyItemErrorHandlerArgs:
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
 
@@ -25,7 +25,8 @@ class CreateKafkaTriggerJsonBody:
25
25
  topics (List[str]):
26
26
  enabled (Union[Unset, bool]):
27
27
  error_handler_path (Union[Unset, str]):
28
- error_handler_args (Union[Unset, CreateKafkaTriggerJsonBodyErrorHandlerArgs]):
28
+ error_handler_args (Union[Unset, CreateKafkaTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the
29
+ script or flow
29
30
  retry (Union[Unset, CreateKafkaTriggerJsonBodyRetry]):
30
31
  """
31
32
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="CreateKafkaTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CreateKafkaTriggerJsonBodyErrorHandlerArgs:
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 CreateMqttTriggerJsonBody:
34
34
  client_version (Union[Unset, CreateMqttTriggerJsonBodyClientVersion]):
35
35
  enabled (Union[Unset, bool]):
36
36
  error_handler_path (Union[Unset, str]):
37
- error_handler_args (Union[Unset, CreateMqttTriggerJsonBodyErrorHandlerArgs]):
37
+ error_handler_args (Union[Unset, CreateMqttTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the
38
+ script or flow
38
39
  retry (Union[Unset, CreateMqttTriggerJsonBodyRetry]):
39
40
  """
40
41
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="CreateMqttTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CreateMqttTriggerJsonBodyErrorHandlerArgs:
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
 
@@ -27,7 +27,8 @@ class CreateNatsTriggerJsonBody:
27
27
  consumer_name (Union[Unset, str]):
28
28
  enabled (Union[Unset, bool]):
29
29
  error_handler_path (Union[Unset, str]):
30
- error_handler_args (Union[Unset, CreateNatsTriggerJsonBodyErrorHandlerArgs]):
30
+ error_handler_args (Union[Unset, CreateNatsTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the
31
+ script or flow
31
32
  retry (Union[Unset, CreateNatsTriggerJsonBodyRetry]):
32
33
  """
33
34
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="CreateNatsTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CreateNatsTriggerJsonBodyErrorHandlerArgs:
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 CreatePostgresTriggerJsonBody:
29
29
  publication_name (Union[Unset, str]):
30
30
  publication (Union[Unset, CreatePostgresTriggerJsonBodyPublication]):
31
31
  error_handler_path (Union[Unset, str]):
32
- error_handler_args (Union[Unset, CreatePostgresTriggerJsonBodyErrorHandlerArgs]):
32
+ error_handler_args (Union[Unset, CreatePostgresTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the
33
+ script or flow
33
34
  retry (Union[Unset, CreatePostgresTriggerJsonBodyRetry]):
34
35
  """
35
36
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="CreatePostgresTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CreatePostgresTriggerJsonBodyErrorHandlerArgs:
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="CreateResource")
12
12
  class CreateResource:
13
13
  """
14
14
  Attributes:
15
- path (str):
15
+ path (str): The path to the resource
16
16
  value (Any):
17
- resource_type (str):
18
- description (Union[Unset, str]):
17
+ resource_type (str): The resource_type associated with the resource
18
+ description (Union[Unset, str]): The description of the resource
19
19
  """
20
20
 
21
21
  path: str
@@ -12,10 +12,10 @@ T = TypeVar("T", bound="CreateResourceJsonBody")
12
12
  class CreateResourceJsonBody:
13
13
  """
14
14
  Attributes:
15
- path (str):
15
+ path (str): The path to the resource
16
16
  value (Any):
17
- resource_type (str):
18
- description (Union[Unset, str]):
17
+ resource_type (str): The resource_type associated with the resource
18
+ description (Union[Unset, str]): The description of the resource
19
19
  """
20
20
 
21
21
  path: str
@@ -22,30 +22,33 @@ T = TypeVar("T", bound="CreateScheduleJsonBody")
22
22
  class CreateScheduleJsonBody:
23
23
  """
24
24
  Attributes:
25
- path (str):
26
- schedule (str):
27
- timezone (str):
28
- script_path (str):
29
- is_flow (bool):
30
- args (CreateScheduleJsonBodyArgs):
31
- enabled (Union[Unset, bool]):
32
- on_failure (Union[Unset, str]):
33
- on_failure_times (Union[Unset, float]):
34
- on_failure_exact (Union[Unset, bool]):
35
- on_failure_extra_args (Union[Unset, CreateScheduleJsonBodyOnFailureExtraArgs]):
36
- on_recovery (Union[Unset, str]):
37
- on_recovery_times (Union[Unset, float]):
38
- on_recovery_extra_args (Union[Unset, CreateScheduleJsonBodyOnRecoveryExtraArgs]):
39
- on_success (Union[Unset, str]):
40
- on_success_extra_args (Union[Unset, CreateScheduleJsonBodyOnSuccessExtraArgs]):
41
- ws_error_handler_muted (Union[Unset, bool]):
42
- retry (Union[Unset, CreateScheduleJsonBodyRetry]):
43
- no_flow_overlap (Union[Unset, bool]):
44
- summary (Union[Unset, str]):
45
- description (Union[Unset, str]):
46
- tag (Union[Unset, str]):
47
- paused_until (Union[Unset, datetime.datetime]):
48
- cron_version (Union[Unset, str]):
25
+ path (str): The path where the schedule will be created
26
+ schedule (str): The cron schedule to trigger the script or flow. Should include seconds.
27
+ timezone (str): The timezone to use for the cron schedule
28
+ script_path (str): The path to the script or flow to trigger
29
+ is_flow (bool): Whether the schedule is for a flow
30
+ args (CreateScheduleJsonBodyArgs): The arguments to pass to the script or flow
31
+ enabled (Union[Unset, bool]): Whether the schedule is enabled
32
+ on_failure (Union[Unset, str]): The path to the script or flow to trigger on failure
33
+ on_failure_times (Union[Unset, float]): The number of times to retry on failure
34
+ on_failure_exact (Union[Unset, bool]): Whether the schedule should only run on the exact time
35
+ on_failure_extra_args (Union[Unset, CreateScheduleJsonBodyOnFailureExtraArgs]): The arguments to pass to the
36
+ script or flow
37
+ on_recovery (Union[Unset, str]): The path to the script or flow to trigger on recovery
38
+ on_recovery_times (Union[Unset, float]): The number of times to retry on recovery
39
+ on_recovery_extra_args (Union[Unset, CreateScheduleJsonBodyOnRecoveryExtraArgs]): The arguments to pass to the
40
+ script or flow
41
+ on_success (Union[Unset, str]): The path to the script or flow to trigger on success
42
+ on_success_extra_args (Union[Unset, CreateScheduleJsonBodyOnSuccessExtraArgs]): The arguments to pass to the
43
+ script or flow
44
+ ws_error_handler_muted (Union[Unset, bool]): Whether the WebSocket error handler is muted
45
+ retry (Union[Unset, CreateScheduleJsonBodyRetry]): The retry configuration for the schedule
46
+ no_flow_overlap (Union[Unset, bool]): Whether the schedule should not run if a flow is already running
47
+ summary (Union[Unset, str]): The summary of the schedule
48
+ description (Union[Unset, str]): The description of the schedule
49
+ tag (Union[Unset, str]): The tag of the schedule
50
+ paused_until (Union[Unset, datetime.datetime]): The date and time the schedule will be paused until
51
+ cron_version (Union[Unset, str]): The version of the cron schedule to use (last is v2)
49
52
  """
50
53
 
51
54
  path: str
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="CreateScheduleJsonBodyArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CreateScheduleJsonBodyArgs:
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="CreateScheduleJsonBodyOnFailureExtraArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CreateScheduleJsonBodyOnFailureExtraArgs:
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="CreateScheduleJsonBodyOnRecoveryExtraArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CreateScheduleJsonBodyOnRecoveryExtraArgs:
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="CreateScheduleJsonBodyOnSuccessExtraArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CreateScheduleJsonBodyOnSuccessExtraArgs:
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="CreateScheduleJsonBodyRetry")
15
15
 
16
16
  @_attrs_define
17
17
  class CreateScheduleJsonBodyRetry:
18
- """
18
+ """The retry configuration for the schedule
19
+
19
20
  Attributes:
20
21
  constant (Union[Unset, CreateScheduleJsonBodyRetryConstant]):
21
22
  exponential (Union[Unset, CreateScheduleJsonBodyRetryExponential]):
@@ -27,7 +27,8 @@ class CreateSqsTriggerJsonBody:
27
27
  message_attributes (Union[Unset, List[str]]):
28
28
  enabled (Union[Unset, bool]):
29
29
  error_handler_path (Union[Unset, str]):
30
- error_handler_args (Union[Unset, CreateSqsTriggerJsonBodyErrorHandlerArgs]):
30
+ error_handler_args (Union[Unset, CreateSqsTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the script
31
+ or flow
31
32
  retry (Union[Unset, CreateSqsTriggerJsonBodyRetry]):
32
33
  """
33
34
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="CreateSqsTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CreateSqsTriggerJsonBodyErrorHandlerArgs:
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
 
@@ -14,13 +14,13 @@ T = TypeVar("T", bound="CreateVariable")
14
14
  class CreateVariable:
15
15
  """
16
16
  Attributes:
17
- path (str):
18
- value (str):
19
- is_secret (bool):
20
- description (str):
21
- account (Union[Unset, int]):
22
- is_oauth (Union[Unset, bool]):
23
- expires_at (Union[Unset, datetime.datetime]):
17
+ path (str): The path to the variable
18
+ value (str): The value of the variable
19
+ is_secret (bool): Whether the variable is a secret
20
+ description (str): The description of the variable
21
+ account (Union[Unset, int]): The account identifier
22
+ is_oauth (Union[Unset, bool]): Whether the variable is an OAuth variable
23
+ expires_at (Union[Unset, datetime.datetime]): The expiration date of the variable
24
24
  """
25
25
 
26
26
  path: str
@@ -14,13 +14,13 @@ T = TypeVar("T", bound="CreateVariableJsonBody")
14
14
  class CreateVariableJsonBody:
15
15
  """
16
16
  Attributes:
17
- path (str):
18
- value (str):
19
- is_secret (bool):
20
- description (str):
21
- account (Union[Unset, int]):
22
- is_oauth (Union[Unset, bool]):
23
- expires_at (Union[Unset, datetime.datetime]):
17
+ path (str): The path to the variable
18
+ value (str): The value of the variable
19
+ is_secret (bool): Whether the variable is a secret
20
+ description (str): The description of the variable
21
+ account (Union[Unset, int]): The account identifier
22
+ is_oauth (Union[Unset, bool]): Whether the variable is an OAuth variable
23
+ expires_at (Union[Unset, datetime.datetime]): The expiration date of the variable
24
24
  """
25
25
 
26
26
  path: str
@@ -38,9 +38,11 @@ class CreateWebsocketTriggerJsonBody:
38
38
  enabled (Union[Unset, bool]):
39
39
  initial_messages (Union[Unset, List[Union['CreateWebsocketTriggerJsonBodyInitialMessagesItemType0',
40
40
  'CreateWebsocketTriggerJsonBodyInitialMessagesItemType1']]]):
41
- url_runnable_args (Union[Unset, CreateWebsocketTriggerJsonBodyUrlRunnableArgs]):
41
+ url_runnable_args (Union[Unset, CreateWebsocketTriggerJsonBodyUrlRunnableArgs]): The arguments to pass to the
42
+ script or flow
42
43
  error_handler_path (Union[Unset, str]):
43
- error_handler_args (Union[Unset, CreateWebsocketTriggerJsonBodyErrorHandlerArgs]):
44
+ error_handler_args (Union[Unset, CreateWebsocketTriggerJsonBodyErrorHandlerArgs]): The arguments to pass to the
45
+ script or flow
44
46
  retry (Union[Unset, CreateWebsocketTriggerJsonBodyRetry]):
45
47
  """
46
48
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="CreateWebsocketTriggerJsonBodyErrorHandlerArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CreateWebsocketTriggerJsonBodyErrorHandlerArgs:
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 CreateWebsocketTriggerJsonBodyInitialMessagesItemType1RunnableResult:
17
17
  """
18
18
  Attributes:
19
19
  path (str):
20
- args (CreateWebsocketTriggerJsonBodyInitialMessagesItemType1RunnableResultArgs):
20
+ args (CreateWebsocketTriggerJsonBodyInitialMessagesItemType1RunnableResultArgs): The arguments to pass to the
21
+ script or flow
21
22
  is_flow (bool):
22
23
  """
23
24
 
@@ -8,7 +8,7 @@ T = TypeVar("T", bound="CreateWebsocketTriggerJsonBodyInitialMessagesItemType1Ru
8
8
 
9
9
  @_attrs_define
10
10
  class CreateWebsocketTriggerJsonBodyInitialMessagesItemType1RunnableResultArgs:
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="CreateWebsocketTriggerJsonBodyUrlRunnableArgs")
8
8
 
9
9
  @_attrs_define
10
10
  class CreateWebsocketTriggerJsonBodyUrlRunnableArgs:
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