windmill-api 1.440.1__py3-none-any.whl → 1.450.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 (231) hide show
  1. windmill_api/api/capture/{get_capture.py → delete_capture.py} +12 -14
  2. windmill_api/api/capture/get_capture_configs.py +186 -0
  3. windmill_api/api/capture/list_captures.py +241 -0
  4. windmill_api/api/capture/ping_capture_config.py +121 -0
  5. windmill_api/api/capture/set_capture_config.py +107 -0
  6. windmill_api/api/input_/get_input_history.py +15 -0
  7. windmill_api/api/job/get_slack_approval_payload.py +171 -0
  8. windmill_api/api/nats_trigger/__init__.py +0 -0
  9. windmill_api/api/nats_trigger/create_nats_trigger.py +105 -0
  10. windmill_api/api/{capture/create_capture.py → nats_trigger/delete_nats_trigger.py} +4 -6
  11. windmill_api/api/nats_trigger/exists_nats_trigger.py +160 -0
  12. windmill_api/api/nats_trigger/get_nats_trigger.py +166 -0
  13. windmill_api/api/nats_trigger/list_nats_triggers.py +237 -0
  14. windmill_api/api/nats_trigger/set_nats_trigger_enabled.py +113 -0
  15. windmill_api/api/nats_trigger/update_nats_trigger.py +113 -0
  16. windmill_api/api/postgres_trigger/__init__.py +0 -0
  17. windmill_api/api/postgres_trigger/create_postgres_publication.py +121 -0
  18. windmill_api/api/postgres_trigger/create_postgres_replication_slot.py +113 -0
  19. windmill_api/api/postgres_trigger/create_postgres_trigger.py +105 -0
  20. windmill_api/api/postgres_trigger/create_template_script.py +105 -0
  21. windmill_api/api/postgres_trigger/delete_postgres_publication.py +109 -0
  22. windmill_api/api/postgres_trigger/delete_postgres_replication_slot.py +113 -0
  23. windmill_api/api/{capture/update_capture.py → postgres_trigger/delete_postgres_trigger.py} +4 -6
  24. windmill_api/api/postgres_trigger/exists_postgres_trigger.py +160 -0
  25. windmill_api/api/postgres_trigger/get_postgres_publication.py +180 -0
  26. windmill_api/api/postgres_trigger/get_postgres_trigger.py +166 -0
  27. windmill_api/api/postgres_trigger/get_template_script.py +101 -0
  28. windmill_api/api/postgres_trigger/is_valid_postgres_configuration.py +160 -0
  29. windmill_api/api/postgres_trigger/list_postgres_publication.py +161 -0
  30. windmill_api/api/postgres_trigger/list_postgres_replication_slot.py +171 -0
  31. windmill_api/api/postgres_trigger/list_postgres_triggers.py +237 -0
  32. windmill_api/api/postgres_trigger/set_postgres_trigger_enabled.py +113 -0
  33. windmill_api/api/postgres_trigger/update_postgres_publication.py +121 -0
  34. windmill_api/api/postgres_trigger/update_postgres_trigger.py +113 -0
  35. windmill_api/api/teams/__init__.py +0 -0
  36. windmill_api/api/teams/sync_teams.py +131 -0
  37. windmill_api/api/worker/get_custom_tags.py +50 -4
  38. windmill_api/api/workspace/change_workspace_color.py +105 -0
  39. windmill_api/api/workspace/get_threshold_alert.py +152 -0
  40. windmill_api/api/workspace/set_threshold_alert.py +105 -0
  41. windmill_api/api/workspace/update_operator_settings.py +109 -0
  42. windmill_api/models/add_granular_acls_kind.py +2 -0
  43. windmill_api/models/archive_script_by_hash_response_200.py +8 -0
  44. windmill_api/models/archive_script_by_hash_response_200_kind.py +1 -0
  45. windmill_api/models/archive_script_by_hash_response_200_language.py +1 -0
  46. windmill_api/models/capture.py +94 -0
  47. windmill_api/models/capture_config.py +95 -0
  48. windmill_api/models/capture_config_trigger_kind.py +13 -0
  49. windmill_api/models/capture_trigger_kind.py +13 -0
  50. windmill_api/models/change_workspace_color_json_body.py +58 -0
  51. windmill_api/models/channel_info.py +80 -0
  52. windmill_api/models/completed_job_language.py +1 -0
  53. windmill_api/models/create_nats_trigger_json_body.py +120 -0
  54. windmill_api/models/create_postgres_publication_json_body.py +90 -0
  55. windmill_api/models/create_postgres_publication_json_body_table_to_track_item.py +86 -0
  56. windmill_api/models/create_postgres_publication_json_body_table_to_track_item_table_to_track_item.py +79 -0
  57. windmill_api/models/create_postgres_replication_slot_json_body.py +58 -0
  58. windmill_api/models/create_postgres_trigger_json_body.py +125 -0
  59. windmill_api/models/create_postgres_trigger_json_body_publication.py +92 -0
  60. windmill_api/models/create_postgres_trigger_json_body_publication_table_to_track_item.py +86 -0
  61. windmill_api/models/create_postgres_trigger_json_body_publication_table_to_track_item_table_to_track_item.py +79 -0
  62. windmill_api/models/create_script_json_body.py +8 -0
  63. windmill_api/models/create_script_json_body_kind.py +1 -0
  64. windmill_api/models/create_script_json_body_language.py +1 -0
  65. windmill_api/models/create_template_script_json_body.py +90 -0
  66. windmill_api/models/create_template_script_json_body_language.py +8 -0
  67. windmill_api/models/create_template_script_json_body_relations_item.py +86 -0
  68. windmill_api/models/create_template_script_json_body_relations_item_table_to_track_item.py +79 -0
  69. windmill_api/models/create_websocket_trigger_json_body.py +42 -29
  70. windmill_api/models/create_workspace.py +8 -0
  71. windmill_api/models/create_workspace_json_body.py +8 -0
  72. windmill_api/models/delete_completed_job_response_200_language.py +1 -0
  73. windmill_api/models/delete_postgres_replication_slot_json_body.py +58 -0
  74. windmill_api/models/delete_script_by_hash_response_200.py +8 -0
  75. windmill_api/models/delete_script_by_hash_response_200_kind.py +1 -0
  76. windmill_api/models/delete_script_by_hash_response_200_language.py +1 -0
  77. windmill_api/models/edit_nats_trigger.py +112 -0
  78. windmill_api/models/edit_postgres_trigger.py +123 -0
  79. windmill_api/models/edit_postgres_trigger_publication.py +90 -0
  80. windmill_api/models/edit_postgres_trigger_publication_table_to_track_item.py +86 -0
  81. windmill_api/models/edit_postgres_trigger_publication_table_to_track_item_table_to_track_item.py +79 -0
  82. windmill_api/models/edit_websocket_trigger.py +35 -21
  83. windmill_api/models/extended_jobs_jobs_item_type_0_language.py +1 -0
  84. windmill_api/models/extended_jobs_jobs_item_type_1_language.py +1 -0
  85. windmill_api/models/flow_metadata.py +8 -0
  86. windmill_api/models/flow_module_value_2_type_0_language.py +1 -0
  87. windmill_api/models/get_capture_configs_response_200_item.py +95 -0
  88. windmill_api/models/get_capture_configs_response_200_item_trigger_kind.py +13 -0
  89. windmill_api/models/get_capture_configs_runnable_kind.py +9 -0
  90. windmill_api/models/get_completed_job_response_200_language.py +1 -0
  91. windmill_api/models/get_flow_by_path_response_200.py +8 -0
  92. windmill_api/models/get_flow_by_path_with_draft_response_200_draft.py +8 -0
  93. windmill_api/models/get_flow_version_response_200.py +8 -0
  94. windmill_api/models/get_granular_acls_kind.py +2 -0
  95. windmill_api/models/get_http_trigger_response_200.py +36 -36
  96. windmill_api/models/get_job_response_200_type_0_language.py +1 -0
  97. windmill_api/models/get_job_response_200_type_1_language.py +1 -0
  98. windmill_api/models/get_nats_trigger_response_200.py +196 -0
  99. windmill_api/models/get_nats_trigger_response_200_extra_perms.py +44 -0
  100. windmill_api/models/get_postgres_publication_response_200.py +90 -0
  101. windmill_api/models/get_postgres_publication_response_200_table_to_track_item.py +86 -0
  102. windmill_api/models/get_postgres_publication_response_200_table_to_track_item_table_to_track_item.py +79 -0
  103. windmill_api/models/get_postgres_trigger_response_200.py +178 -0
  104. windmill_api/models/get_postgres_trigger_response_200_extra_perms.py +44 -0
  105. windmill_api/models/get_premium_info_response_200.py +7 -0
  106. windmill_api/models/get_script_by_hash_response_200.py +8 -0
  107. windmill_api/models/get_script_by_hash_response_200_kind.py +1 -0
  108. windmill_api/models/get_script_by_hash_response_200_language.py +1 -0
  109. windmill_api/models/get_script_by_path_response_200.py +8 -0
  110. windmill_api/models/get_script_by_path_response_200_kind.py +1 -0
  111. windmill_api/models/get_script_by_path_response_200_language.py +1 -0
  112. windmill_api/models/get_script_by_path_with_draft_response_200.py +8 -0
  113. windmill_api/models/get_script_by_path_with_draft_response_200_draft.py +8 -0
  114. windmill_api/models/get_script_by_path_with_draft_response_200_draft_kind.py +1 -0
  115. windmill_api/models/get_script_by_path_with_draft_response_200_draft_language.py +1 -0
  116. windmill_api/models/get_script_by_path_with_draft_response_200_kind.py +1 -0
  117. windmill_api/models/get_script_by_path_with_draft_response_200_language.py +1 -0
  118. windmill_api/models/get_settings_response_200.py +27 -0
  119. windmill_api/models/get_settings_response_200_operator_settings.py +114 -0
  120. windmill_api/models/get_suspended_job_flow_response_200_job_type_0_language.py +1 -0
  121. windmill_api/models/get_suspended_job_flow_response_200_job_type_1_language.py +1 -0
  122. windmill_api/models/get_threshold_alert_response_200.py +75 -0
  123. windmill_api/models/get_triggers_count_of_flow_response_200.py +16 -0
  124. windmill_api/models/get_triggers_count_of_script_response_200.py +16 -0
  125. windmill_api/models/get_used_triggers_response_200.py +14 -0
  126. windmill_api/models/get_websocket_trigger_response_200.py +89 -76
  127. windmill_api/models/http_trigger.py +36 -36
  128. windmill_api/models/job_type_0_language.py +1 -0
  129. windmill_api/models/job_type_1_language.py +1 -0
  130. windmill_api/models/language.py +8 -0
  131. windmill_api/models/list_captures_response_200_item.py +94 -0
  132. windmill_api/models/list_captures_response_200_item_trigger_kind.py +13 -0
  133. windmill_api/models/list_captures_runnable_kind.py +9 -0
  134. windmill_api/models/list_captures_trigger_kind.py +13 -0
  135. windmill_api/models/list_completed_jobs_response_200_item_language.py +1 -0
  136. windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_language.py +1 -0
  137. windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_language.py +1 -0
  138. windmill_api/models/list_http_triggers_response_200_item.py +36 -36
  139. windmill_api/models/list_jobs_response_200_item_type_0_language.py +1 -0
  140. windmill_api/models/list_jobs_response_200_item_type_1_language.py +1 -0
  141. windmill_api/models/list_nats_triggers_response_200_item.py +196 -0
  142. windmill_api/models/list_nats_triggers_response_200_item_extra_perms.py +44 -0
  143. windmill_api/models/list_postgres_replication_slot_response_200_item.py +66 -0
  144. windmill_api/models/list_postgres_triggers_response_200_item.py +182 -0
  145. windmill_api/models/list_postgres_triggers_response_200_item_extra_perms.py +44 -0
  146. windmill_api/models/list_queue_response_200_item_language.py +1 -0
  147. windmill_api/models/list_scripts_response_200_item.py +8 -0
  148. windmill_api/models/list_scripts_response_200_item_kind.py +1 -0
  149. windmill_api/models/list_scripts_response_200_item_language.py +1 -0
  150. windmill_api/models/list_user_workspaces_response_200_workspaces_item.py +39 -1
  151. windmill_api/models/list_user_workspaces_response_200_workspaces_item_operator_settings.py +114 -0
  152. windmill_api/models/list_websocket_triggers_response_200_item.py +89 -76
  153. windmill_api/models/list_workspaces_as_super_admin_response_200_item.py +8 -0
  154. windmill_api/models/list_workspaces_response_200_item.py +8 -0
  155. windmill_api/models/nats_trigger.py +196 -0
  156. windmill_api/models/nats_trigger_extra_perms.py +44 -0
  157. windmill_api/models/new_nats_trigger.py +120 -0
  158. windmill_api/models/new_postgres_trigger.py +125 -0
  159. windmill_api/models/new_postgres_trigger_publication.py +90 -0
  160. windmill_api/models/new_postgres_trigger_publication_table_to_track_item.py +86 -0
  161. windmill_api/models/new_postgres_trigger_publication_table_to_track_item_table_to_track_item.py +79 -0
  162. windmill_api/models/new_script.py +8 -0
  163. windmill_api/models/new_script_kind.py +1 -0
  164. windmill_api/models/new_script_language.py +1 -0
  165. windmill_api/models/new_script_with_draft.py +8 -0
  166. windmill_api/models/new_script_with_draft_draft.py +8 -0
  167. windmill_api/models/new_script_with_draft_draft_kind.py +1 -0
  168. windmill_api/models/new_script_with_draft_draft_language.py +1 -0
  169. windmill_api/models/new_script_with_draft_kind.py +1 -0
  170. windmill_api/models/new_script_with_draft_language.py +1 -0
  171. windmill_api/models/new_websocket_trigger.py +36 -26
  172. windmill_api/models/open_flow_w_path.py +8 -0
  173. windmill_api/models/operator_settings.py +114 -0
  174. windmill_api/models/ping_capture_config_runnable_kind.py +9 -0
  175. windmill_api/models/ping_capture_config_trigger_kind.py +13 -0
  176. windmill_api/models/postgres_trigger.py +178 -0
  177. windmill_api/models/postgres_trigger_extra_perms.py +44 -0
  178. windmill_api/models/preview_language.py +1 -0
  179. windmill_api/models/publication_data.py +86 -0
  180. windmill_api/models/publication_data_table_to_track_item.py +84 -0
  181. windmill_api/models/publication_data_table_to_track_item_table_to_track_item.py +79 -0
  182. windmill_api/models/queued_job_language.py +1 -0
  183. windmill_api/models/raw_script_for_dependencies_language.py +1 -0
  184. windmill_api/models/raw_script_language.py +1 -0
  185. windmill_api/models/relations.py +80 -0
  186. windmill_api/models/relations_table_to_track_item.py +79 -0
  187. windmill_api/models/remove_granular_acls_kind.py +2 -0
  188. windmill_api/models/run_raw_script_dependencies_json_body_raw_scripts_item_language.py +1 -0
  189. windmill_api/models/run_script_preview_json_body_language.py +1 -0
  190. windmill_api/models/script.py +8 -0
  191. windmill_api/models/script_kind.py +1 -0
  192. windmill_api/models/script_lang.py +25 -0
  193. windmill_api/models/script_language.py +1 -0
  194. windmill_api/models/set_capture_config_json_body.py +97 -0
  195. windmill_api/models/set_capture_config_json_body_trigger_config.py +44 -0
  196. windmill_api/models/set_capture_config_json_body_trigger_kind.py +13 -0
  197. windmill_api/models/set_nats_trigger_enabled_json_body.py +58 -0
  198. windmill_api/models/set_postgres_trigger_enabled_json_body.py +58 -0
  199. windmill_api/models/set_threshold_alert_json_body.py +58 -0
  200. windmill_api/models/slot.py +58 -0
  201. windmill_api/models/slot_list.py +66 -0
  202. windmill_api/models/sync_teams_response_200_item.py +87 -0
  203. windmill_api/models/sync_teams_response_200_item_channels_item.py +80 -0
  204. windmill_api/models/table_to_track_item.py +79 -0
  205. windmill_api/models/team_info.py +87 -0
  206. windmill_api/models/team_info_channels_item.py +80 -0
  207. windmill_api/models/template_script.py +90 -0
  208. windmill_api/models/template_script_language.py +8 -0
  209. windmill_api/models/template_script_relations_item.py +82 -0
  210. windmill_api/models/template_script_relations_item_table_to_track_item.py +79 -0
  211. windmill_api/models/trigger_extra_property.py +95 -0
  212. windmill_api/models/trigger_extra_property_extra_perms.py +44 -0
  213. windmill_api/models/triggers_count.py +16 -0
  214. windmill_api/models/update_nats_trigger_json_body.py +112 -0
  215. windmill_api/models/update_operator_settings_json_body.py +114 -0
  216. windmill_api/models/update_postgres_publication_json_body.py +90 -0
  217. windmill_api/models/update_postgres_publication_json_body_table_to_track_item.py +86 -0
  218. windmill_api/models/update_postgres_publication_json_body_table_to_track_item_table_to_track_item.py +79 -0
  219. windmill_api/models/update_postgres_trigger_json_body.py +123 -0
  220. windmill_api/models/update_postgres_trigger_json_body_publication.py +92 -0
  221. windmill_api/models/update_postgres_trigger_json_body_publication_table_to_track_item.py +86 -0
  222. windmill_api/models/update_postgres_trigger_json_body_publication_table_to_track_item_table_to_track_item.py +79 -0
  223. windmill_api/models/update_websocket_trigger_json_body.py +40 -24
  224. windmill_api/models/user_workspace_list_workspaces_item.py +37 -1
  225. windmill_api/models/user_workspace_list_workspaces_item_operator_settings.py +114 -0
  226. windmill_api/models/websocket_trigger.py +83 -73
  227. windmill_api/models/workspace.py +8 -0
  228. {windmill_api-1.440.1.dist-info → windmill_api-1.450.1.dist-info}/METADATA +1 -1
  229. {windmill_api-1.440.1.dist-info → windmill_api-1.450.1.dist-info}/RECORD +231 -100
  230. {windmill_api-1.440.1.dist-info → windmill_api-1.450.1.dist-info}/LICENSE +0 -0
  231. {windmill_api-1.440.1.dist-info → windmill_api-1.450.1.dist-info}/WHEEL +0 -0
@@ -5,15 +5,27 @@ import httpx
5
5
 
6
6
  from ... import errors
7
7
  from ...client import AuthenticatedClient, Client
8
- from ...types import Response
8
+ from ...types import UNSET, Response, Unset
9
9
 
10
10
 
11
- def _get_kwargs() -> Dict[str, Any]:
11
+ def _get_kwargs(
12
+ *,
13
+ workspace: Union[Unset, None, str] = UNSET,
14
+ show_workspace_restriction: Union[Unset, None, bool] = UNSET,
15
+ ) -> Dict[str, Any]:
12
16
  pass
13
17
 
18
+ params: Dict[str, Any] = {}
19
+ params["workspace"] = workspace
20
+
21
+ params["show_workspace_restriction"] = show_workspace_restriction
22
+
23
+ params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
24
+
14
25
  return {
15
26
  "method": "get",
16
27
  "url": "/workers/custom_tags",
28
+ "params": params,
17
29
  }
18
30
 
19
31
 
@@ -40,9 +52,15 @@ def _build_response(*, client: Union[AuthenticatedClient, Client], response: htt
40
52
  def sync_detailed(
41
53
  *,
42
54
  client: Union[AuthenticatedClient, Client],
55
+ workspace: Union[Unset, None, str] = UNSET,
56
+ show_workspace_restriction: Union[Unset, None, bool] = UNSET,
43
57
  ) -> Response[List[str]]:
44
58
  """get all instance custom tags (tags are used to dispatch jobs to different worker groups)
45
59
 
60
+ Args:
61
+ workspace (Union[Unset, None, str]):
62
+ show_workspace_restriction (Union[Unset, None, bool]):
63
+
46
64
  Raises:
47
65
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
48
66
  httpx.TimeoutException: If the request takes longer than Client.timeout.
@@ -51,7 +69,10 @@ def sync_detailed(
51
69
  Response[List[str]]
52
70
  """
53
71
 
54
- kwargs = _get_kwargs()
72
+ kwargs = _get_kwargs(
73
+ workspace=workspace,
74
+ show_workspace_restriction=show_workspace_restriction,
75
+ )
55
76
 
56
77
  response = client.get_httpx_client().request(
57
78
  **kwargs,
@@ -63,9 +84,15 @@ def sync_detailed(
63
84
  def sync(
64
85
  *,
65
86
  client: Union[AuthenticatedClient, Client],
87
+ workspace: Union[Unset, None, str] = UNSET,
88
+ show_workspace_restriction: Union[Unset, None, bool] = UNSET,
66
89
  ) -> Optional[List[str]]:
67
90
  """get all instance custom tags (tags are used to dispatch jobs to different worker groups)
68
91
 
92
+ Args:
93
+ workspace (Union[Unset, None, str]):
94
+ show_workspace_restriction (Union[Unset, None, bool]):
95
+
69
96
  Raises:
70
97
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
71
98
  httpx.TimeoutException: If the request takes longer than Client.timeout.
@@ -76,15 +103,23 @@ def sync(
76
103
 
77
104
  return sync_detailed(
78
105
  client=client,
106
+ workspace=workspace,
107
+ show_workspace_restriction=show_workspace_restriction,
79
108
  ).parsed
80
109
 
81
110
 
82
111
  async def asyncio_detailed(
83
112
  *,
84
113
  client: Union[AuthenticatedClient, Client],
114
+ workspace: Union[Unset, None, str] = UNSET,
115
+ show_workspace_restriction: Union[Unset, None, bool] = UNSET,
85
116
  ) -> Response[List[str]]:
86
117
  """get all instance custom tags (tags are used to dispatch jobs to different worker groups)
87
118
 
119
+ Args:
120
+ workspace (Union[Unset, None, str]):
121
+ show_workspace_restriction (Union[Unset, None, bool]):
122
+
88
123
  Raises:
89
124
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
90
125
  httpx.TimeoutException: If the request takes longer than Client.timeout.
@@ -93,7 +128,10 @@ async def asyncio_detailed(
93
128
  Response[List[str]]
94
129
  """
95
130
 
96
- kwargs = _get_kwargs()
131
+ kwargs = _get_kwargs(
132
+ workspace=workspace,
133
+ show_workspace_restriction=show_workspace_restriction,
134
+ )
97
135
 
98
136
  response = await client.get_async_httpx_client().request(**kwargs)
99
137
 
@@ -103,9 +141,15 @@ async def asyncio_detailed(
103
141
  async def asyncio(
104
142
  *,
105
143
  client: Union[AuthenticatedClient, Client],
144
+ workspace: Union[Unset, None, str] = UNSET,
145
+ show_workspace_restriction: Union[Unset, None, bool] = UNSET,
106
146
  ) -> Optional[List[str]]:
107
147
  """get all instance custom tags (tags are used to dispatch jobs to different worker groups)
108
148
 
149
+ Args:
150
+ workspace (Union[Unset, None, str]):
151
+ show_workspace_restriction (Union[Unset, None, bool]):
152
+
109
153
  Raises:
110
154
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
111
155
  httpx.TimeoutException: If the request takes longer than Client.timeout.
@@ -117,5 +161,7 @@ async def asyncio(
117
161
  return (
118
162
  await asyncio_detailed(
119
163
  client=client,
164
+ workspace=workspace,
165
+ show_workspace_restriction=show_workspace_restriction,
120
166
  )
121
167
  ).parsed
@@ -0,0 +1,105 @@
1
+ from http import HTTPStatus
2
+ from typing import Any, Dict, Optional, Union
3
+
4
+ import httpx
5
+
6
+ from ... import errors
7
+ from ...client import AuthenticatedClient, Client
8
+ from ...models.change_workspace_color_json_body import ChangeWorkspaceColorJsonBody
9
+ from ...types import Response
10
+
11
+
12
+ def _get_kwargs(
13
+ workspace: str,
14
+ *,
15
+ json_body: ChangeWorkspaceColorJsonBody,
16
+ ) -> Dict[str, Any]:
17
+ pass
18
+
19
+ json_json_body = json_body.to_dict()
20
+
21
+ return {
22
+ "method": "post",
23
+ "url": "/w/{workspace}/workspaces/change_workspace_color".format(
24
+ workspace=workspace,
25
+ ),
26
+ "json": json_json_body,
27
+ }
28
+
29
+
30
+ def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[Any]:
31
+ if client.raise_on_unexpected_status:
32
+ raise errors.UnexpectedStatus(response.status_code, response.content)
33
+ else:
34
+ return None
35
+
36
+
37
+ def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[Any]:
38
+ return Response(
39
+ status_code=HTTPStatus(response.status_code),
40
+ content=response.content,
41
+ headers=response.headers,
42
+ parsed=_parse_response(client=client, response=response),
43
+ )
44
+
45
+
46
+ def sync_detailed(
47
+ workspace: str,
48
+ *,
49
+ client: Union[AuthenticatedClient, Client],
50
+ json_body: ChangeWorkspaceColorJsonBody,
51
+ ) -> Response[Any]:
52
+ """change workspace id
53
+
54
+ Args:
55
+ workspace (str):
56
+ json_body (ChangeWorkspaceColorJsonBody):
57
+
58
+ Raises:
59
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
60
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
61
+
62
+ Returns:
63
+ Response[Any]
64
+ """
65
+
66
+ kwargs = _get_kwargs(
67
+ workspace=workspace,
68
+ json_body=json_body,
69
+ )
70
+
71
+ response = client.get_httpx_client().request(
72
+ **kwargs,
73
+ )
74
+
75
+ return _build_response(client=client, response=response)
76
+
77
+
78
+ async def asyncio_detailed(
79
+ workspace: str,
80
+ *,
81
+ client: Union[AuthenticatedClient, Client],
82
+ json_body: ChangeWorkspaceColorJsonBody,
83
+ ) -> Response[Any]:
84
+ """change workspace id
85
+
86
+ Args:
87
+ workspace (str):
88
+ json_body (ChangeWorkspaceColorJsonBody):
89
+
90
+ Raises:
91
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
92
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
93
+
94
+ Returns:
95
+ Response[Any]
96
+ """
97
+
98
+ kwargs = _get_kwargs(
99
+ workspace=workspace,
100
+ json_body=json_body,
101
+ )
102
+
103
+ response = await client.get_async_httpx_client().request(**kwargs)
104
+
105
+ return _build_response(client=client, response=response)
@@ -0,0 +1,152 @@
1
+ from http import HTTPStatus
2
+ from typing import Any, Dict, Optional, Union
3
+
4
+ import httpx
5
+
6
+ from ... import errors
7
+ from ...client import AuthenticatedClient, Client
8
+ from ...models.get_threshold_alert_response_200 import GetThresholdAlertResponse200
9
+ from ...types import Response
10
+
11
+
12
+ def _get_kwargs(
13
+ workspace: str,
14
+ ) -> Dict[str, Any]:
15
+ pass
16
+
17
+ return {
18
+ "method": "get",
19
+ "url": "/w/{workspace}/workspaces/threshold_alert".format(
20
+ workspace=workspace,
21
+ ),
22
+ }
23
+
24
+
25
+ def _parse_response(
26
+ *, client: Union[AuthenticatedClient, Client], response: httpx.Response
27
+ ) -> Optional[GetThresholdAlertResponse200]:
28
+ if response.status_code == HTTPStatus.OK:
29
+ response_200 = GetThresholdAlertResponse200.from_dict(response.json())
30
+
31
+ return response_200
32
+ if client.raise_on_unexpected_status:
33
+ raise errors.UnexpectedStatus(response.status_code, response.content)
34
+ else:
35
+ return None
36
+
37
+
38
+ def _build_response(
39
+ *, client: Union[AuthenticatedClient, Client], response: httpx.Response
40
+ ) -> Response[GetThresholdAlertResponse200]:
41
+ return Response(
42
+ status_code=HTTPStatus(response.status_code),
43
+ content=response.content,
44
+ headers=response.headers,
45
+ parsed=_parse_response(client=client, response=response),
46
+ )
47
+
48
+
49
+ def sync_detailed(
50
+ workspace: str,
51
+ *,
52
+ client: Union[AuthenticatedClient, Client],
53
+ ) -> Response[GetThresholdAlertResponse200]:
54
+ """get threshold alert info
55
+
56
+ Args:
57
+ workspace (str):
58
+
59
+ Raises:
60
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
61
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
62
+
63
+ Returns:
64
+ Response[GetThresholdAlertResponse200]
65
+ """
66
+
67
+ kwargs = _get_kwargs(
68
+ workspace=workspace,
69
+ )
70
+
71
+ response = client.get_httpx_client().request(
72
+ **kwargs,
73
+ )
74
+
75
+ return _build_response(client=client, response=response)
76
+
77
+
78
+ def sync(
79
+ workspace: str,
80
+ *,
81
+ client: Union[AuthenticatedClient, Client],
82
+ ) -> Optional[GetThresholdAlertResponse200]:
83
+ """get threshold alert info
84
+
85
+ Args:
86
+ workspace (str):
87
+
88
+ Raises:
89
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
90
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
91
+
92
+ Returns:
93
+ GetThresholdAlertResponse200
94
+ """
95
+
96
+ return sync_detailed(
97
+ workspace=workspace,
98
+ client=client,
99
+ ).parsed
100
+
101
+
102
+ async def asyncio_detailed(
103
+ workspace: str,
104
+ *,
105
+ client: Union[AuthenticatedClient, Client],
106
+ ) -> Response[GetThresholdAlertResponse200]:
107
+ """get threshold alert info
108
+
109
+ Args:
110
+ workspace (str):
111
+
112
+ Raises:
113
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
114
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
115
+
116
+ Returns:
117
+ Response[GetThresholdAlertResponse200]
118
+ """
119
+
120
+ kwargs = _get_kwargs(
121
+ workspace=workspace,
122
+ )
123
+
124
+ response = await client.get_async_httpx_client().request(**kwargs)
125
+
126
+ return _build_response(client=client, response=response)
127
+
128
+
129
+ async def asyncio(
130
+ workspace: str,
131
+ *,
132
+ client: Union[AuthenticatedClient, Client],
133
+ ) -> Optional[GetThresholdAlertResponse200]:
134
+ """get threshold alert info
135
+
136
+ Args:
137
+ workspace (str):
138
+
139
+ Raises:
140
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
141
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
142
+
143
+ Returns:
144
+ GetThresholdAlertResponse200
145
+ """
146
+
147
+ return (
148
+ await asyncio_detailed(
149
+ workspace=workspace,
150
+ client=client,
151
+ )
152
+ ).parsed
@@ -0,0 +1,105 @@
1
+ from http import HTTPStatus
2
+ from typing import Any, Dict, Optional, Union
3
+
4
+ import httpx
5
+
6
+ from ... import errors
7
+ from ...client import AuthenticatedClient, Client
8
+ from ...models.set_threshold_alert_json_body import SetThresholdAlertJsonBody
9
+ from ...types import Response
10
+
11
+
12
+ def _get_kwargs(
13
+ workspace: str,
14
+ *,
15
+ json_body: SetThresholdAlertJsonBody,
16
+ ) -> Dict[str, Any]:
17
+ pass
18
+
19
+ json_json_body = json_body.to_dict()
20
+
21
+ return {
22
+ "method": "post",
23
+ "url": "/w/{workspace}/workspaces/threshold_alert".format(
24
+ workspace=workspace,
25
+ ),
26
+ "json": json_json_body,
27
+ }
28
+
29
+
30
+ def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[Any]:
31
+ if client.raise_on_unexpected_status:
32
+ raise errors.UnexpectedStatus(response.status_code, response.content)
33
+ else:
34
+ return None
35
+
36
+
37
+ def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[Any]:
38
+ return Response(
39
+ status_code=HTTPStatus(response.status_code),
40
+ content=response.content,
41
+ headers=response.headers,
42
+ parsed=_parse_response(client=client, response=response),
43
+ )
44
+
45
+
46
+ def sync_detailed(
47
+ workspace: str,
48
+ *,
49
+ client: Union[AuthenticatedClient, Client],
50
+ json_body: SetThresholdAlertJsonBody,
51
+ ) -> Response[Any]:
52
+ """set threshold alert info
53
+
54
+ Args:
55
+ workspace (str):
56
+ json_body (SetThresholdAlertJsonBody):
57
+
58
+ Raises:
59
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
60
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
61
+
62
+ Returns:
63
+ Response[Any]
64
+ """
65
+
66
+ kwargs = _get_kwargs(
67
+ workspace=workspace,
68
+ json_body=json_body,
69
+ )
70
+
71
+ response = client.get_httpx_client().request(
72
+ **kwargs,
73
+ )
74
+
75
+ return _build_response(client=client, response=response)
76
+
77
+
78
+ async def asyncio_detailed(
79
+ workspace: str,
80
+ *,
81
+ client: Union[AuthenticatedClient, Client],
82
+ json_body: SetThresholdAlertJsonBody,
83
+ ) -> Response[Any]:
84
+ """set threshold alert info
85
+
86
+ Args:
87
+ workspace (str):
88
+ json_body (SetThresholdAlertJsonBody):
89
+
90
+ Raises:
91
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
92
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
93
+
94
+ Returns:
95
+ Response[Any]
96
+ """
97
+
98
+ kwargs = _get_kwargs(
99
+ workspace=workspace,
100
+ json_body=json_body,
101
+ )
102
+
103
+ response = await client.get_async_httpx_client().request(**kwargs)
104
+
105
+ return _build_response(client=client, response=response)
@@ -0,0 +1,109 @@
1
+ from http import HTTPStatus
2
+ from typing import Any, Dict, Optional, Union
3
+
4
+ import httpx
5
+
6
+ from ... import errors
7
+ from ...client import AuthenticatedClient, Client
8
+ from ...models.update_operator_settings_json_body import UpdateOperatorSettingsJsonBody
9
+ from ...types import Response
10
+
11
+
12
+ def _get_kwargs(
13
+ workspace: str,
14
+ *,
15
+ json_body: Optional[UpdateOperatorSettingsJsonBody],
16
+ ) -> Dict[str, Any]:
17
+ pass
18
+
19
+ json_json_body = json_body.to_dict() if json_body else None
20
+
21
+ return {
22
+ "method": "post",
23
+ "url": "/w/{workspace}/workspaces/operator_settings".format(
24
+ workspace=workspace,
25
+ ),
26
+ "json": json_json_body,
27
+ }
28
+
29
+
30
+ def _parse_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Optional[Any]:
31
+ if client.raise_on_unexpected_status:
32
+ raise errors.UnexpectedStatus(response.status_code, response.content)
33
+ else:
34
+ return None
35
+
36
+
37
+ def _build_response(*, client: Union[AuthenticatedClient, Client], response: httpx.Response) -> Response[Any]:
38
+ return Response(
39
+ status_code=HTTPStatus(response.status_code),
40
+ content=response.content,
41
+ headers=response.headers,
42
+ parsed=_parse_response(client=client, response=response),
43
+ )
44
+
45
+
46
+ def sync_detailed(
47
+ workspace: str,
48
+ *,
49
+ client: Union[AuthenticatedClient, Client],
50
+ json_body: Optional[UpdateOperatorSettingsJsonBody],
51
+ ) -> Response[Any]:
52
+ """Update operator settings for a workspace
53
+
54
+ Updates the operator settings for a specific workspace. Requires workspace admin privileges.
55
+
56
+ Args:
57
+ workspace (str):
58
+ json_body (Optional[UpdateOperatorSettingsJsonBody]):
59
+
60
+ Raises:
61
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
62
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
63
+
64
+ Returns:
65
+ Response[Any]
66
+ """
67
+
68
+ kwargs = _get_kwargs(
69
+ workspace=workspace,
70
+ json_body=json_body,
71
+ )
72
+
73
+ response = client.get_httpx_client().request(
74
+ **kwargs,
75
+ )
76
+
77
+ return _build_response(client=client, response=response)
78
+
79
+
80
+ async def asyncio_detailed(
81
+ workspace: str,
82
+ *,
83
+ client: Union[AuthenticatedClient, Client],
84
+ json_body: Optional[UpdateOperatorSettingsJsonBody],
85
+ ) -> Response[Any]:
86
+ """Update operator settings for a workspace
87
+
88
+ Updates the operator settings for a specific workspace. Requires workspace admin privileges.
89
+
90
+ Args:
91
+ workspace (str):
92
+ json_body (Optional[UpdateOperatorSettingsJsonBody]):
93
+
94
+ Raises:
95
+ errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
96
+ httpx.TimeoutException: If the request takes longer than Client.timeout.
97
+
98
+ Returns:
99
+ Response[Any]
100
+ """
101
+
102
+ kwargs = _get_kwargs(
103
+ workspace=workspace,
104
+ json_body=json_body,
105
+ )
106
+
107
+ response = await client.get_async_httpx_client().request(**kwargs)
108
+
109
+ return _build_response(client=client, response=response)
@@ -8,6 +8,8 @@ class AddGranularAclsKind(str, Enum):
8
8
  GROUP = "group_"
9
9
  HTTP_TRIGGER = "http_trigger"
10
10
  KAFKA_TRIGGER = "kafka_trigger"
11
+ NATS_TRIGGER = "nats_trigger"
12
+ POSTGRES_TRIGGER = "postgres_trigger"
11
13
  RAW_APP = "raw_app"
12
14
  RESOURCE = "resource"
13
15
  SCHEDULE = "schedule"
@@ -59,6 +59,7 @@ class ArchiveScriptByHashResponse200:
59
59
  delete_after_use (Union[Unset, bool]):
60
60
  visible_to_runner_only (Union[Unset, bool]):
61
61
  codebase (Union[Unset, str]):
62
+ on_behalf_of_email (Union[Unset, str]):
62
63
  """
63
64
 
64
65
  hash_: str
@@ -98,6 +99,7 @@ class ArchiveScriptByHashResponse200:
98
99
  delete_after_use: Union[Unset, bool] = UNSET
99
100
  visible_to_runner_only: Union[Unset, bool] = UNSET
100
101
  codebase: Union[Unset, str] = UNSET
102
+ on_behalf_of_email: Union[Unset, str] = UNSET
101
103
  additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
102
104
 
103
105
  def to_dict(self) -> Dict[str, Any]:
@@ -151,6 +153,7 @@ class ArchiveScriptByHashResponse200:
151
153
  delete_after_use = self.delete_after_use
152
154
  visible_to_runner_only = self.visible_to_runner_only
153
155
  codebase = self.codebase
156
+ on_behalf_of_email = self.on_behalf_of_email
154
157
 
155
158
  field_dict: Dict[str, Any] = {}
156
159
  field_dict.update(self.additional_properties)
@@ -216,6 +219,8 @@ class ArchiveScriptByHashResponse200:
216
219
  field_dict["visible_to_runner_only"] = visible_to_runner_only
217
220
  if codebase is not UNSET:
218
221
  field_dict["codebase"] = codebase
222
+ if on_behalf_of_email is not UNSET:
223
+ field_dict["on_behalf_of_email"] = on_behalf_of_email
219
224
 
220
225
  return field_dict
221
226
 
@@ -304,6 +309,8 @@ class ArchiveScriptByHashResponse200:
304
309
 
305
310
  codebase = d.pop("codebase", UNSET)
306
311
 
312
+ on_behalf_of_email = d.pop("on_behalf_of_email", UNSET)
313
+
307
314
  archive_script_by_hash_response_200 = cls(
308
315
  hash_=hash_,
309
316
  path=path,
@@ -342,6 +349,7 @@ class ArchiveScriptByHashResponse200:
342
349
  delete_after_use=delete_after_use,
343
350
  visible_to_runner_only=visible_to_runner_only,
344
351
  codebase=codebase,
352
+ on_behalf_of_email=on_behalf_of_email,
345
353
  )
346
354
 
347
355
  archive_script_by_hash_response_200.additional_properties = d
@@ -5,6 +5,7 @@ class ArchiveScriptByHashResponse200Kind(str, Enum):
5
5
  APPROVAL = "approval"
6
6
  COMMAND = "command"
7
7
  FAILURE = "failure"
8
+ PREPROCESSOR = "preprocessor"
8
9
  SCRIPT = "script"
9
10
  TRIGGER = "trigger"
10
11
 
@@ -13,6 +13,7 @@ class ArchiveScriptByHashResponse200Language(str, Enum):
13
13
  MSSQL = "mssql"
14
14
  MYSQL = "mysql"
15
15
  NATIVETS = "nativets"
16
+ ORACLEDB = "oracledb"
16
17
  PHP = "php"
17
18
  POSTGRESQL = "postgresql"
18
19
  POWERSHELL = "powershell"