windmill-api 1.561.0__py3-none-any.whl → 1.563.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.

@@ -6,21 +6,29 @@ import httpx
6
6
  from ... import errors
7
7
  from ...client import AuthenticatedClient, Client
8
8
  from ...models.get_git_commit_hash_response_200 import GetGitCommitHashResponse200
9
- from ...types import Response
9
+ from ...types import UNSET, Response, Unset
10
10
 
11
11
 
12
12
  def _get_kwargs(
13
13
  workspace: str,
14
14
  path: str,
15
+ *,
16
+ git_ssh_identity: Union[Unset, None, str] = UNSET,
15
17
  ) -> Dict[str, Any]:
16
18
  pass
17
19
 
20
+ params: Dict[str, Any] = {}
21
+ params["git_ssh_identity"] = git_ssh_identity
22
+
23
+ params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
24
+
18
25
  return {
19
26
  "method": "get",
20
27
  "url": "/w/{workspace}/resources/git_commit_hash/{path}".format(
21
28
  workspace=workspace,
22
29
  path=path,
23
30
  ),
31
+ "params": params,
24
32
  }
25
33
 
26
34
 
@@ -53,12 +61,14 @@ def sync_detailed(
53
61
  path: str,
54
62
  *,
55
63
  client: Union[AuthenticatedClient, Client],
64
+ git_ssh_identity: Union[Unset, None, str] = UNSET,
56
65
  ) -> Response[GetGitCommitHashResponse200]:
57
66
  """get git repository latest commit hash
58
67
 
59
68
  Args:
60
69
  workspace (str):
61
70
  path (str):
71
+ git_ssh_identity (Union[Unset, None, str]):
62
72
 
63
73
  Raises:
64
74
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -71,6 +81,7 @@ def sync_detailed(
71
81
  kwargs = _get_kwargs(
72
82
  workspace=workspace,
73
83
  path=path,
84
+ git_ssh_identity=git_ssh_identity,
74
85
  )
75
86
 
76
87
  response = client.get_httpx_client().request(
@@ -85,12 +96,14 @@ def sync(
85
96
  path: str,
86
97
  *,
87
98
  client: Union[AuthenticatedClient, Client],
99
+ git_ssh_identity: Union[Unset, None, str] = UNSET,
88
100
  ) -> Optional[GetGitCommitHashResponse200]:
89
101
  """get git repository latest commit hash
90
102
 
91
103
  Args:
92
104
  workspace (str):
93
105
  path (str):
106
+ git_ssh_identity (Union[Unset, None, str]):
94
107
 
95
108
  Raises:
96
109
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -104,6 +117,7 @@ def sync(
104
117
  workspace=workspace,
105
118
  path=path,
106
119
  client=client,
120
+ git_ssh_identity=git_ssh_identity,
107
121
  ).parsed
108
122
 
109
123
 
@@ -112,12 +126,14 @@ async def asyncio_detailed(
112
126
  path: str,
113
127
  *,
114
128
  client: Union[AuthenticatedClient, Client],
129
+ git_ssh_identity: Union[Unset, None, str] = UNSET,
115
130
  ) -> Response[GetGitCommitHashResponse200]:
116
131
  """get git repository latest commit hash
117
132
 
118
133
  Args:
119
134
  workspace (str):
120
135
  path (str):
136
+ git_ssh_identity (Union[Unset, None, str]):
121
137
 
122
138
  Raises:
123
139
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -130,6 +146,7 @@ async def asyncio_detailed(
130
146
  kwargs = _get_kwargs(
131
147
  workspace=workspace,
132
148
  path=path,
149
+ git_ssh_identity=git_ssh_identity,
133
150
  )
134
151
 
135
152
  response = await client.get_async_httpx_client().request(**kwargs)
@@ -142,12 +159,14 @@ async def asyncio(
142
159
  path: str,
143
160
  *,
144
161
  client: Union[AuthenticatedClient, Client],
162
+ git_ssh_identity: Union[Unset, None, str] = UNSET,
145
163
  ) -> Optional[GetGitCommitHashResponse200]:
146
164
  """get git repository latest commit hash
147
165
 
148
166
  Args:
149
167
  workspace (str):
150
168
  path (str):
169
+ git_ssh_identity (Union[Unset, None, str]):
151
170
 
152
171
  Raises:
153
172
  errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -162,5 +181,6 @@ async def asyncio(
162
181
  workspace=workspace,
163
182
  path=path,
164
183
  client=client,
184
+ git_ssh_identity=git_ssh_identity,
165
185
  )
166
186
  ).parsed
@@ -5,6 +5,7 @@ from attrs import field as _attrs_field
5
5
 
6
6
  from ..models.create_http_trigger_json_body_authentication_method import CreateHttpTriggerJsonBodyAuthenticationMethod
7
7
  from ..models.create_http_trigger_json_body_http_method import CreateHttpTriggerJsonBodyHttpMethod
8
+ from ..models.create_http_trigger_json_body_request_type import CreateHttpTriggerJsonBodyRequestType
8
9
  from ..types import UNSET, Unset
9
10
 
10
11
  if TYPE_CHECKING:
@@ -25,7 +26,6 @@ class CreateHttpTriggerJsonBody:
25
26
  route_path (str):
26
27
  is_flow (bool):
27
28
  http_method (CreateHttpTriggerJsonBodyHttpMethod):
28
- is_async (bool):
29
29
  authentication_method (CreateHttpTriggerJsonBodyAuthenticationMethod):
30
30
  is_static_website (bool):
31
31
  workspaced_route (Union[Unset, bool]):
@@ -33,6 +33,8 @@ class CreateHttpTriggerJsonBody:
33
33
  description (Union[Unset, str]):
34
34
  static_asset_config (Union[Unset, CreateHttpTriggerJsonBodyStaticAssetConfig]):
35
35
  authentication_resource_path (Union[Unset, str]):
36
+ is_async (Union[Unset, bool]): Deprecated, use request_type instead
37
+ request_type (Union[Unset, CreateHttpTriggerJsonBodyRequestType]):
36
38
  wrap_body (Union[Unset, bool]):
37
39
  raw_string (Union[Unset, bool]):
38
40
  error_handler_path (Union[Unset, str]):
@@ -46,7 +48,6 @@ class CreateHttpTriggerJsonBody:
46
48
  route_path: str
47
49
  is_flow: bool
48
50
  http_method: CreateHttpTriggerJsonBodyHttpMethod
49
- is_async: bool
50
51
  authentication_method: CreateHttpTriggerJsonBodyAuthenticationMethod
51
52
  is_static_website: bool
52
53
  workspaced_route: Union[Unset, bool] = UNSET
@@ -54,6 +55,8 @@ class CreateHttpTriggerJsonBody:
54
55
  description: Union[Unset, str] = UNSET
55
56
  static_asset_config: Union[Unset, "CreateHttpTriggerJsonBodyStaticAssetConfig"] = UNSET
56
57
  authentication_resource_path: Union[Unset, str] = UNSET
58
+ is_async: Union[Unset, bool] = UNSET
59
+ request_type: Union[Unset, CreateHttpTriggerJsonBodyRequestType] = UNSET
57
60
  wrap_body: Union[Unset, bool] = UNSET
58
61
  raw_string: Union[Unset, bool] = UNSET
59
62
  error_handler_path: Union[Unset, str] = UNSET
@@ -68,7 +71,6 @@ class CreateHttpTriggerJsonBody:
68
71
  is_flow = self.is_flow
69
72
  http_method = self.http_method.value
70
73
 
71
- is_async = self.is_async
72
74
  authentication_method = self.authentication_method.value
73
75
 
74
76
  is_static_website = self.is_static_website
@@ -80,6 +82,11 @@ class CreateHttpTriggerJsonBody:
80
82
  static_asset_config = self.static_asset_config.to_dict()
81
83
 
82
84
  authentication_resource_path = self.authentication_resource_path
85
+ is_async = self.is_async
86
+ request_type: Union[Unset, str] = UNSET
87
+ if not isinstance(self.request_type, Unset):
88
+ request_type = self.request_type.value
89
+
83
90
  wrap_body = self.wrap_body
84
91
  raw_string = self.raw_string
85
92
  error_handler_path = self.error_handler_path
@@ -100,7 +107,6 @@ class CreateHttpTriggerJsonBody:
100
107
  "route_path": route_path,
101
108
  "is_flow": is_flow,
102
109
  "http_method": http_method,
103
- "is_async": is_async,
104
110
  "authentication_method": authentication_method,
105
111
  "is_static_website": is_static_website,
106
112
  }
@@ -115,6 +121,10 @@ class CreateHttpTriggerJsonBody:
115
121
  field_dict["static_asset_config"] = static_asset_config
116
122
  if authentication_resource_path is not UNSET:
117
123
  field_dict["authentication_resource_path"] = authentication_resource_path
124
+ if is_async is not UNSET:
125
+ field_dict["is_async"] = is_async
126
+ if request_type is not UNSET:
127
+ field_dict["request_type"] = request_type
118
128
  if wrap_body is not UNSET:
119
129
  field_dict["wrap_body"] = wrap_body
120
130
  if raw_string is not UNSET:
@@ -147,8 +157,6 @@ class CreateHttpTriggerJsonBody:
147
157
 
148
158
  http_method = CreateHttpTriggerJsonBodyHttpMethod(d.pop("http_method"))
149
159
 
150
- is_async = d.pop("is_async")
151
-
152
160
  authentication_method = CreateHttpTriggerJsonBodyAuthenticationMethod(d.pop("authentication_method"))
153
161
 
154
162
  is_static_website = d.pop("is_static_website")
@@ -168,6 +176,15 @@ class CreateHttpTriggerJsonBody:
168
176
 
169
177
  authentication_resource_path = d.pop("authentication_resource_path", UNSET)
170
178
 
179
+ is_async = d.pop("is_async", UNSET)
180
+
181
+ _request_type = d.pop("request_type", UNSET)
182
+ request_type: Union[Unset, CreateHttpTriggerJsonBodyRequestType]
183
+ if isinstance(_request_type, Unset):
184
+ request_type = UNSET
185
+ else:
186
+ request_type = CreateHttpTriggerJsonBodyRequestType(_request_type)
187
+
171
188
  wrap_body = d.pop("wrap_body", UNSET)
172
189
 
173
190
  raw_string = d.pop("raw_string", UNSET)
@@ -194,7 +211,6 @@ class CreateHttpTriggerJsonBody:
194
211
  route_path=route_path,
195
212
  is_flow=is_flow,
196
213
  http_method=http_method,
197
- is_async=is_async,
198
214
  authentication_method=authentication_method,
199
215
  is_static_website=is_static_website,
200
216
  workspaced_route=workspaced_route,
@@ -202,6 +218,8 @@ class CreateHttpTriggerJsonBody:
202
218
  description=description,
203
219
  static_asset_config=static_asset_config,
204
220
  authentication_resource_path=authentication_resource_path,
221
+ is_async=is_async,
222
+ request_type=request_type,
205
223
  wrap_body=wrap_body,
206
224
  raw_string=raw_string,
207
225
  error_handler_path=error_handler_path,
@@ -0,0 +1,10 @@
1
+ from enum import Enum
2
+
3
+
4
+ class CreateHttpTriggerJsonBodyRequestType(str, Enum):
5
+ ASYNC = "async"
6
+ SYNC = "sync"
7
+ SYNC_SSE = "sync_sse"
8
+
9
+ def __str__(self) -> str:
10
+ return str(self.value)
@@ -7,6 +7,7 @@ from ..models.create_http_triggers_json_body_item_authentication_method import (
7
7
  CreateHttpTriggersJsonBodyItemAuthenticationMethod,
8
8
  )
9
9
  from ..models.create_http_triggers_json_body_item_http_method import CreateHttpTriggersJsonBodyItemHttpMethod
10
+ from ..models.create_http_triggers_json_body_item_request_type import CreateHttpTriggersJsonBodyItemRequestType
10
11
  from ..types import UNSET, Unset
11
12
 
12
13
  if TYPE_CHECKING:
@@ -31,7 +32,6 @@ class CreateHttpTriggersJsonBodyItem:
31
32
  route_path (str):
32
33
  is_flow (bool):
33
34
  http_method (CreateHttpTriggersJsonBodyItemHttpMethod):
34
- is_async (bool):
35
35
  authentication_method (CreateHttpTriggersJsonBodyItemAuthenticationMethod):
36
36
  is_static_website (bool):
37
37
  workspaced_route (Union[Unset, bool]):
@@ -39,6 +39,8 @@ class CreateHttpTriggersJsonBodyItem:
39
39
  description (Union[Unset, str]):
40
40
  static_asset_config (Union[Unset, CreateHttpTriggersJsonBodyItemStaticAssetConfig]):
41
41
  authentication_resource_path (Union[Unset, str]):
42
+ is_async (Union[Unset, bool]): Deprecated, use request_type instead
43
+ request_type (Union[Unset, CreateHttpTriggersJsonBodyItemRequestType]):
42
44
  wrap_body (Union[Unset, bool]):
43
45
  raw_string (Union[Unset, bool]):
44
46
  error_handler_path (Union[Unset, str]):
@@ -52,7 +54,6 @@ class CreateHttpTriggersJsonBodyItem:
52
54
  route_path: str
53
55
  is_flow: bool
54
56
  http_method: CreateHttpTriggersJsonBodyItemHttpMethod
55
- is_async: bool
56
57
  authentication_method: CreateHttpTriggersJsonBodyItemAuthenticationMethod
57
58
  is_static_website: bool
58
59
  workspaced_route: Union[Unset, bool] = UNSET
@@ -60,6 +61,8 @@ class CreateHttpTriggersJsonBodyItem:
60
61
  description: Union[Unset, str] = UNSET
61
62
  static_asset_config: Union[Unset, "CreateHttpTriggersJsonBodyItemStaticAssetConfig"] = UNSET
62
63
  authentication_resource_path: Union[Unset, str] = UNSET
64
+ is_async: Union[Unset, bool] = UNSET
65
+ request_type: Union[Unset, CreateHttpTriggersJsonBodyItemRequestType] = UNSET
63
66
  wrap_body: Union[Unset, bool] = UNSET
64
67
  raw_string: Union[Unset, bool] = UNSET
65
68
  error_handler_path: Union[Unset, str] = UNSET
@@ -74,7 +77,6 @@ class CreateHttpTriggersJsonBodyItem:
74
77
  is_flow = self.is_flow
75
78
  http_method = self.http_method.value
76
79
 
77
- is_async = self.is_async
78
80
  authentication_method = self.authentication_method.value
79
81
 
80
82
  is_static_website = self.is_static_website
@@ -86,6 +88,11 @@ class CreateHttpTriggersJsonBodyItem:
86
88
  static_asset_config = self.static_asset_config.to_dict()
87
89
 
88
90
  authentication_resource_path = self.authentication_resource_path
91
+ is_async = self.is_async
92
+ request_type: Union[Unset, str] = UNSET
93
+ if not isinstance(self.request_type, Unset):
94
+ request_type = self.request_type.value
95
+
89
96
  wrap_body = self.wrap_body
90
97
  raw_string = self.raw_string
91
98
  error_handler_path = self.error_handler_path
@@ -106,7 +113,6 @@ class CreateHttpTriggersJsonBodyItem:
106
113
  "route_path": route_path,
107
114
  "is_flow": is_flow,
108
115
  "http_method": http_method,
109
- "is_async": is_async,
110
116
  "authentication_method": authentication_method,
111
117
  "is_static_website": is_static_website,
112
118
  }
@@ -121,6 +127,10 @@ class CreateHttpTriggersJsonBodyItem:
121
127
  field_dict["static_asset_config"] = static_asset_config
122
128
  if authentication_resource_path is not UNSET:
123
129
  field_dict["authentication_resource_path"] = authentication_resource_path
130
+ if is_async is not UNSET:
131
+ field_dict["is_async"] = is_async
132
+ if request_type is not UNSET:
133
+ field_dict["request_type"] = request_type
124
134
  if wrap_body is not UNSET:
125
135
  field_dict["wrap_body"] = wrap_body
126
136
  if raw_string is not UNSET:
@@ -155,8 +165,6 @@ class CreateHttpTriggersJsonBodyItem:
155
165
 
156
166
  http_method = CreateHttpTriggersJsonBodyItemHttpMethod(d.pop("http_method"))
157
167
 
158
- is_async = d.pop("is_async")
159
-
160
168
  authentication_method = CreateHttpTriggersJsonBodyItemAuthenticationMethod(d.pop("authentication_method"))
161
169
 
162
170
  is_static_website = d.pop("is_static_website")
@@ -176,6 +184,15 @@ class CreateHttpTriggersJsonBodyItem:
176
184
 
177
185
  authentication_resource_path = d.pop("authentication_resource_path", UNSET)
178
186
 
187
+ is_async = d.pop("is_async", UNSET)
188
+
189
+ _request_type = d.pop("request_type", UNSET)
190
+ request_type: Union[Unset, CreateHttpTriggersJsonBodyItemRequestType]
191
+ if isinstance(_request_type, Unset):
192
+ request_type = UNSET
193
+ else:
194
+ request_type = CreateHttpTriggersJsonBodyItemRequestType(_request_type)
195
+
179
196
  wrap_body = d.pop("wrap_body", UNSET)
180
197
 
181
198
  raw_string = d.pop("raw_string", UNSET)
@@ -202,7 +219,6 @@ class CreateHttpTriggersJsonBodyItem:
202
219
  route_path=route_path,
203
220
  is_flow=is_flow,
204
221
  http_method=http_method,
205
- is_async=is_async,
206
222
  authentication_method=authentication_method,
207
223
  is_static_website=is_static_website,
208
224
  workspaced_route=workspaced_route,
@@ -210,6 +226,8 @@ class CreateHttpTriggersJsonBodyItem:
210
226
  description=description,
211
227
  static_asset_config=static_asset_config,
212
228
  authentication_resource_path=authentication_resource_path,
229
+ is_async=is_async,
230
+ request_type=request_type,
213
231
  wrap_body=wrap_body,
214
232
  raw_string=raw_string,
215
233
  error_handler_path=error_handler_path,
@@ -0,0 +1,10 @@
1
+ from enum import Enum
2
+
3
+
4
+ class CreateHttpTriggersJsonBodyItemRequestType(str, Enum):
5
+ ASYNC = "async"
6
+ SYNC = "sync"
7
+ SYNC_SSE = "sync_sse"
8
+
9
+ def __str__(self) -> str:
10
+ return str(self.value)
@@ -5,6 +5,7 @@ from attrs import field as _attrs_field
5
5
 
6
6
  from ..models.edit_http_trigger_authentication_method import EditHttpTriggerAuthenticationMethod
7
7
  from ..models.edit_http_trigger_http_method import EditHttpTriggerHttpMethod
8
+ from ..models.edit_http_trigger_request_type import EditHttpTriggerRequestType
8
9
  from ..types import UNSET, Unset
9
10
 
10
11
  if TYPE_CHECKING:
@@ -24,7 +25,6 @@ class EditHttpTrigger:
24
25
  script_path (str):
25
26
  is_flow (bool):
26
27
  http_method (EditHttpTriggerHttpMethod):
27
- is_async (bool):
28
28
  authentication_method (EditHttpTriggerAuthenticationMethod):
29
29
  is_static_website (bool):
30
30
  route_path (Union[Unset, str]):
@@ -33,6 +33,8 @@ class EditHttpTrigger:
33
33
  workspaced_route (Union[Unset, bool]):
34
34
  static_asset_config (Union[Unset, EditHttpTriggerStaticAssetConfig]):
35
35
  authentication_resource_path (Union[Unset, str]):
36
+ is_async (Union[Unset, bool]): Deprecated, use request_type instead
37
+ request_type (Union[Unset, EditHttpTriggerRequestType]):
36
38
  wrap_body (Union[Unset, bool]):
37
39
  raw_string (Union[Unset, bool]):
38
40
  error_handler_path (Union[Unset, str]):
@@ -44,7 +46,6 @@ class EditHttpTrigger:
44
46
  script_path: str
45
47
  is_flow: bool
46
48
  http_method: EditHttpTriggerHttpMethod
47
- is_async: bool
48
49
  authentication_method: EditHttpTriggerAuthenticationMethod
49
50
  is_static_website: bool
50
51
  route_path: Union[Unset, str] = UNSET
@@ -53,6 +54,8 @@ class EditHttpTrigger:
53
54
  workspaced_route: Union[Unset, bool] = UNSET
54
55
  static_asset_config: Union[Unset, "EditHttpTriggerStaticAssetConfig"] = UNSET
55
56
  authentication_resource_path: Union[Unset, str] = UNSET
57
+ is_async: Union[Unset, bool] = UNSET
58
+ request_type: Union[Unset, EditHttpTriggerRequestType] = UNSET
56
59
  wrap_body: Union[Unset, bool] = UNSET
57
60
  raw_string: Union[Unset, bool] = UNSET
58
61
  error_handler_path: Union[Unset, str] = UNSET
@@ -66,7 +69,6 @@ class EditHttpTrigger:
66
69
  is_flow = self.is_flow
67
70
  http_method = self.http_method.value
68
71
 
69
- is_async = self.is_async
70
72
  authentication_method = self.authentication_method.value
71
73
 
72
74
  is_static_website = self.is_static_website
@@ -79,6 +81,11 @@ class EditHttpTrigger:
79
81
  static_asset_config = self.static_asset_config.to_dict()
80
82
 
81
83
  authentication_resource_path = self.authentication_resource_path
84
+ is_async = self.is_async
85
+ request_type: Union[Unset, str] = UNSET
86
+ if not isinstance(self.request_type, Unset):
87
+ request_type = self.request_type.value
88
+
82
89
  wrap_body = self.wrap_body
83
90
  raw_string = self.raw_string
84
91
  error_handler_path = self.error_handler_path
@@ -98,7 +105,6 @@ class EditHttpTrigger:
98
105
  "script_path": script_path,
99
106
  "is_flow": is_flow,
100
107
  "http_method": http_method,
101
- "is_async": is_async,
102
108
  "authentication_method": authentication_method,
103
109
  "is_static_website": is_static_website,
104
110
  }
@@ -115,6 +121,10 @@ class EditHttpTrigger:
115
121
  field_dict["static_asset_config"] = static_asset_config
116
122
  if authentication_resource_path is not UNSET:
117
123
  field_dict["authentication_resource_path"] = authentication_resource_path
124
+ if is_async is not UNSET:
125
+ field_dict["is_async"] = is_async
126
+ if request_type is not UNSET:
127
+ field_dict["request_type"] = request_type
118
128
  if wrap_body is not UNSET:
119
129
  field_dict["wrap_body"] = wrap_body
120
130
  if raw_string is not UNSET:
@@ -143,8 +153,6 @@ class EditHttpTrigger:
143
153
 
144
154
  http_method = EditHttpTriggerHttpMethod(d.pop("http_method"))
145
155
 
146
- is_async = d.pop("is_async")
147
-
148
156
  authentication_method = EditHttpTriggerAuthenticationMethod(d.pop("authentication_method"))
149
157
 
150
158
  is_static_website = d.pop("is_static_website")
@@ -166,6 +174,15 @@ class EditHttpTrigger:
166
174
 
167
175
  authentication_resource_path = d.pop("authentication_resource_path", UNSET)
168
176
 
177
+ is_async = d.pop("is_async", UNSET)
178
+
179
+ _request_type = d.pop("request_type", UNSET)
180
+ request_type: Union[Unset, EditHttpTriggerRequestType]
181
+ if isinstance(_request_type, Unset):
182
+ request_type = UNSET
183
+ else:
184
+ request_type = EditHttpTriggerRequestType(_request_type)
185
+
169
186
  wrap_body = d.pop("wrap_body", UNSET)
170
187
 
171
188
  raw_string = d.pop("raw_string", UNSET)
@@ -191,7 +208,6 @@ class EditHttpTrigger:
191
208
  script_path=script_path,
192
209
  is_flow=is_flow,
193
210
  http_method=http_method,
194
- is_async=is_async,
195
211
  authentication_method=authentication_method,
196
212
  is_static_website=is_static_website,
197
213
  route_path=route_path,
@@ -200,6 +216,8 @@ class EditHttpTrigger:
200
216
  workspaced_route=workspaced_route,
201
217
  static_asset_config=static_asset_config,
202
218
  authentication_resource_path=authentication_resource_path,
219
+ is_async=is_async,
220
+ request_type=request_type,
203
221
  wrap_body=wrap_body,
204
222
  raw_string=raw_string,
205
223
  error_handler_path=error_handler_path,
@@ -0,0 +1,10 @@
1
+ from enum import Enum
2
+
3
+
4
+ class EditHttpTriggerRequestType(str, Enum):
5
+ ASYNC = "async"
6
+ SYNC = "sync"
7
+ SYNC_SSE = "sync_sse"
8
+
9
+ def __str__(self) -> str:
10
+ return str(self.value)
@@ -7,6 +7,7 @@ from dateutil.parser import isoparse
7
7
 
8
8
  from ..models.get_http_trigger_response_200_authentication_method import GetHttpTriggerResponse200AuthenticationMethod
9
9
  from ..models.get_http_trigger_response_200_http_method import GetHttpTriggerResponse200HttpMethod
10
+ from ..models.get_http_trigger_response_200_request_type import GetHttpTriggerResponse200RequestType
10
11
  from ..types import UNSET, Unset
11
12
 
12
13
  if TYPE_CHECKING:
@@ -25,7 +26,7 @@ class GetHttpTriggerResponse200:
25
26
  Attributes:
26
27
  route_path (str):
27
28
  http_method (GetHttpTriggerResponse200HttpMethod):
28
- is_async (bool):
29
+ request_type (GetHttpTriggerResponse200RequestType):
29
30
  authentication_method (GetHttpTriggerResponse200AuthenticationMethod):
30
31
  is_static_website (bool):
31
32
  workspaced_route (bool):
@@ -51,7 +52,7 @@ class GetHttpTriggerResponse200:
51
52
 
52
53
  route_path: str
53
54
  http_method: GetHttpTriggerResponse200HttpMethod
54
- is_async: bool
55
+ request_type: GetHttpTriggerResponse200RequestType
55
56
  authentication_method: GetHttpTriggerResponse200AuthenticationMethod
56
57
  is_static_website: bool
57
58
  workspaced_route: bool
@@ -78,7 +79,8 @@ class GetHttpTriggerResponse200:
78
79
  route_path = self.route_path
79
80
  http_method = self.http_method.value
80
81
 
81
- is_async = self.is_async
82
+ request_type = self.request_type.value
83
+
82
84
  authentication_method = self.authentication_method.value
83
85
 
84
86
  is_static_website = self.is_static_website
@@ -117,7 +119,7 @@ class GetHttpTriggerResponse200:
117
119
  {
118
120
  "route_path": route_path,
119
121
  "http_method": http_method,
120
- "is_async": is_async,
122
+ "request_type": request_type,
121
123
  "authentication_method": authentication_method,
122
124
  "is_static_website": is_static_website,
123
125
  "workspaced_route": workspaced_route,
@@ -164,7 +166,7 @@ class GetHttpTriggerResponse200:
164
166
 
165
167
  http_method = GetHttpTriggerResponse200HttpMethod(d.pop("http_method"))
166
168
 
167
- is_async = d.pop("is_async")
169
+ request_type = GetHttpTriggerResponse200RequestType(d.pop("request_type"))
168
170
 
169
171
  authentication_method = GetHttpTriggerResponse200AuthenticationMethod(d.pop("authentication_method"))
170
172
 
@@ -224,7 +226,7 @@ class GetHttpTriggerResponse200:
224
226
  get_http_trigger_response_200 = cls(
225
227
  route_path=route_path,
226
228
  http_method=http_method,
227
- is_async=is_async,
229
+ request_type=request_type,
228
230
  authentication_method=authentication_method,
229
231
  is_static_website=is_static_website,
230
232
  workspaced_route=workspaced_route,
@@ -0,0 +1,10 @@
1
+ from enum import Enum
2
+
3
+
4
+ class GetHttpTriggerResponse200RequestType(str, Enum):
5
+ ASYNC = "async"
6
+ SYNC = "sync"
7
+ SYNC_SSE = "sync_sse"
8
+
9
+ def __str__(self) -> str:
10
+ return str(self.value)
@@ -0,0 +1,10 @@
1
+ from enum import Enum
2
+
3
+
4
+ class HttpRequestType(str, Enum):
5
+ ASYNC = "async"
6
+ SYNC = "sync"
7
+ SYNC_SSE = "sync_sse"
8
+
9
+ def __str__(self) -> str:
10
+ return str(self.value)
@@ -7,6 +7,7 @@ from dateutil.parser import isoparse
7
7
 
8
8
  from ..models.http_trigger_authentication_method import HttpTriggerAuthenticationMethod
9
9
  from ..models.http_trigger_http_method import HttpTriggerHttpMethod
10
+ from ..models.http_trigger_request_type import HttpTriggerRequestType
10
11
  from ..types import UNSET, Unset
11
12
 
12
13
  if TYPE_CHECKING:
@@ -25,7 +26,7 @@ class HttpTrigger:
25
26
  Attributes:
26
27
  route_path (str):
27
28
  http_method (HttpTriggerHttpMethod):
28
- is_async (bool):
29
+ request_type (HttpTriggerRequestType):
29
30
  authentication_method (HttpTriggerAuthenticationMethod):
30
31
  is_static_website (bool):
31
32
  workspaced_route (bool):
@@ -50,7 +51,7 @@ class HttpTrigger:
50
51
 
51
52
  route_path: str
52
53
  http_method: HttpTriggerHttpMethod
53
- is_async: bool
54
+ request_type: HttpTriggerRequestType
54
55
  authentication_method: HttpTriggerAuthenticationMethod
55
56
  is_static_website: bool
56
57
  workspaced_route: bool
@@ -77,7 +78,8 @@ class HttpTrigger:
77
78
  route_path = self.route_path
78
79
  http_method = self.http_method.value
79
80
 
80
- is_async = self.is_async
81
+ request_type = self.request_type.value
82
+
81
83
  authentication_method = self.authentication_method.value
82
84
 
83
85
  is_static_website = self.is_static_website
@@ -116,7 +118,7 @@ class HttpTrigger:
116
118
  {
117
119
  "route_path": route_path,
118
120
  "http_method": http_method,
119
- "is_async": is_async,
121
+ "request_type": request_type,
120
122
  "authentication_method": authentication_method,
121
123
  "is_static_website": is_static_website,
122
124
  "workspaced_route": workspaced_route,
@@ -161,7 +163,7 @@ class HttpTrigger:
161
163
 
162
164
  http_method = HttpTriggerHttpMethod(d.pop("http_method"))
163
165
 
164
- is_async = d.pop("is_async")
166
+ request_type = HttpTriggerRequestType(d.pop("request_type"))
165
167
 
166
168
  authentication_method = HttpTriggerAuthenticationMethod(d.pop("authentication_method"))
167
169
 
@@ -221,7 +223,7 @@ class HttpTrigger:
221
223
  http_trigger = cls(
222
224
  route_path=route_path,
223
225
  http_method=http_method,
224
- is_async=is_async,
226
+ request_type=request_type,
225
227
  authentication_method=authentication_method,
226
228
  is_static_website=is_static_website,
227
229
  workspaced_route=workspaced_route,
@@ -0,0 +1,10 @@
1
+ from enum import Enum
2
+
3
+
4
+ class HttpTriggerRequestType(str, Enum):
5
+ ASYNC = "async"
6
+ SYNC = "sync"
7
+ SYNC_SSE = "sync_sse"
8
+
9
+ def __str__(self) -> str:
10
+ return str(self.value)
@@ -9,6 +9,7 @@ from ..models.list_http_triggers_response_200_item_authentication_method import
9
9
  ListHttpTriggersResponse200ItemAuthenticationMethod,
10
10
  )
11
11
  from ..models.list_http_triggers_response_200_item_http_method import ListHttpTriggersResponse200ItemHttpMethod
12
+ from ..models.list_http_triggers_response_200_item_request_type import ListHttpTriggersResponse200ItemRequestType
12
13
  from ..types import UNSET, Unset
13
14
 
14
15
  if TYPE_CHECKING:
@@ -31,7 +32,7 @@ class ListHttpTriggersResponse200Item:
31
32
  Attributes:
32
33
  route_path (str):
33
34
  http_method (ListHttpTriggersResponse200ItemHttpMethod):
34
- is_async (bool):
35
+ request_type (ListHttpTriggersResponse200ItemRequestType):
35
36
  authentication_method (ListHttpTriggersResponse200ItemAuthenticationMethod):
36
37
  is_static_website (bool):
37
38
  workspaced_route (bool):
@@ -57,7 +58,7 @@ class ListHttpTriggersResponse200Item:
57
58
 
58
59
  route_path: str
59
60
  http_method: ListHttpTriggersResponse200ItemHttpMethod
60
- is_async: bool
61
+ request_type: ListHttpTriggersResponse200ItemRequestType
61
62
  authentication_method: ListHttpTriggersResponse200ItemAuthenticationMethod
62
63
  is_static_website: bool
63
64
  workspaced_route: bool
@@ -84,7 +85,8 @@ class ListHttpTriggersResponse200Item:
84
85
  route_path = self.route_path
85
86
  http_method = self.http_method.value
86
87
 
87
- is_async = self.is_async
88
+ request_type = self.request_type.value
89
+
88
90
  authentication_method = self.authentication_method.value
89
91
 
90
92
  is_static_website = self.is_static_website
@@ -123,7 +125,7 @@ class ListHttpTriggersResponse200Item:
123
125
  {
124
126
  "route_path": route_path,
125
127
  "http_method": http_method,
126
- "is_async": is_async,
128
+ "request_type": request_type,
127
129
  "authentication_method": authentication_method,
128
130
  "is_static_website": is_static_website,
129
131
  "workspaced_route": workspaced_route,
@@ -172,7 +174,7 @@ class ListHttpTriggersResponse200Item:
172
174
 
173
175
  http_method = ListHttpTriggersResponse200ItemHttpMethod(d.pop("http_method"))
174
176
 
175
- is_async = d.pop("is_async")
177
+ request_type = ListHttpTriggersResponse200ItemRequestType(d.pop("request_type"))
176
178
 
177
179
  authentication_method = ListHttpTriggersResponse200ItemAuthenticationMethod(d.pop("authentication_method"))
178
180
 
@@ -232,7 +234,7 @@ class ListHttpTriggersResponse200Item:
232
234
  list_http_triggers_response_200_item = cls(
233
235
  route_path=route_path,
234
236
  http_method=http_method,
235
- is_async=is_async,
237
+ request_type=request_type,
236
238
  authentication_method=authentication_method,
237
239
  is_static_website=is_static_website,
238
240
  workspaced_route=workspaced_route,
@@ -0,0 +1,10 @@
1
+ from enum import Enum
2
+
3
+
4
+ class ListHttpTriggersResponse200ItemRequestType(str, Enum):
5
+ ASYNC = "async"
6
+ SYNC = "sync"
7
+ SYNC_SSE = "sync_sse"
8
+
9
+ def __str__(self) -> str:
10
+ return str(self.value)
@@ -5,6 +5,7 @@ from attrs import field as _attrs_field
5
5
 
6
6
  from ..models.new_http_trigger_authentication_method import NewHttpTriggerAuthenticationMethod
7
7
  from ..models.new_http_trigger_http_method import NewHttpTriggerHttpMethod
8
+ from ..models.new_http_trigger_request_type import NewHttpTriggerRequestType
8
9
  from ..types import UNSET, Unset
9
10
 
10
11
  if TYPE_CHECKING:
@@ -25,7 +26,6 @@ class NewHttpTrigger:
25
26
  route_path (str):
26
27
  is_flow (bool):
27
28
  http_method (NewHttpTriggerHttpMethod):
28
- is_async (bool):
29
29
  authentication_method (NewHttpTriggerAuthenticationMethod):
30
30
  is_static_website (bool):
31
31
  workspaced_route (Union[Unset, bool]):
@@ -33,6 +33,8 @@ class NewHttpTrigger:
33
33
  description (Union[Unset, str]):
34
34
  static_asset_config (Union[Unset, NewHttpTriggerStaticAssetConfig]):
35
35
  authentication_resource_path (Union[Unset, str]):
36
+ is_async (Union[Unset, bool]): Deprecated, use request_type instead
37
+ request_type (Union[Unset, NewHttpTriggerRequestType]):
36
38
  wrap_body (Union[Unset, bool]):
37
39
  raw_string (Union[Unset, bool]):
38
40
  error_handler_path (Union[Unset, str]):
@@ -45,7 +47,6 @@ class NewHttpTrigger:
45
47
  route_path: str
46
48
  is_flow: bool
47
49
  http_method: NewHttpTriggerHttpMethod
48
- is_async: bool
49
50
  authentication_method: NewHttpTriggerAuthenticationMethod
50
51
  is_static_website: bool
51
52
  workspaced_route: Union[Unset, bool] = UNSET
@@ -53,6 +54,8 @@ class NewHttpTrigger:
53
54
  description: Union[Unset, str] = UNSET
54
55
  static_asset_config: Union[Unset, "NewHttpTriggerStaticAssetConfig"] = UNSET
55
56
  authentication_resource_path: Union[Unset, str] = UNSET
57
+ is_async: Union[Unset, bool] = UNSET
58
+ request_type: Union[Unset, NewHttpTriggerRequestType] = UNSET
56
59
  wrap_body: Union[Unset, bool] = UNSET
57
60
  raw_string: Union[Unset, bool] = UNSET
58
61
  error_handler_path: Union[Unset, str] = UNSET
@@ -67,7 +70,6 @@ class NewHttpTrigger:
67
70
  is_flow = self.is_flow
68
71
  http_method = self.http_method.value
69
72
 
70
- is_async = self.is_async
71
73
  authentication_method = self.authentication_method.value
72
74
 
73
75
  is_static_website = self.is_static_website
@@ -79,6 +81,11 @@ class NewHttpTrigger:
79
81
  static_asset_config = self.static_asset_config.to_dict()
80
82
 
81
83
  authentication_resource_path = self.authentication_resource_path
84
+ is_async = self.is_async
85
+ request_type: Union[Unset, str] = UNSET
86
+ if not isinstance(self.request_type, Unset):
87
+ request_type = self.request_type.value
88
+
82
89
  wrap_body = self.wrap_body
83
90
  raw_string = self.raw_string
84
91
  error_handler_path = self.error_handler_path
@@ -99,7 +106,6 @@ class NewHttpTrigger:
99
106
  "route_path": route_path,
100
107
  "is_flow": is_flow,
101
108
  "http_method": http_method,
102
- "is_async": is_async,
103
109
  "authentication_method": authentication_method,
104
110
  "is_static_website": is_static_website,
105
111
  }
@@ -114,6 +120,10 @@ class NewHttpTrigger:
114
120
  field_dict["static_asset_config"] = static_asset_config
115
121
  if authentication_resource_path is not UNSET:
116
122
  field_dict["authentication_resource_path"] = authentication_resource_path
123
+ if is_async is not UNSET:
124
+ field_dict["is_async"] = is_async
125
+ if request_type is not UNSET:
126
+ field_dict["request_type"] = request_type
117
127
  if wrap_body is not UNSET:
118
128
  field_dict["wrap_body"] = wrap_body
119
129
  if raw_string is not UNSET:
@@ -144,8 +154,6 @@ class NewHttpTrigger:
144
154
 
145
155
  http_method = NewHttpTriggerHttpMethod(d.pop("http_method"))
146
156
 
147
- is_async = d.pop("is_async")
148
-
149
157
  authentication_method = NewHttpTriggerAuthenticationMethod(d.pop("authentication_method"))
150
158
 
151
159
  is_static_website = d.pop("is_static_website")
@@ -165,6 +173,15 @@ class NewHttpTrigger:
165
173
 
166
174
  authentication_resource_path = d.pop("authentication_resource_path", UNSET)
167
175
 
176
+ is_async = d.pop("is_async", UNSET)
177
+
178
+ _request_type = d.pop("request_type", UNSET)
179
+ request_type: Union[Unset, NewHttpTriggerRequestType]
180
+ if isinstance(_request_type, Unset):
181
+ request_type = UNSET
182
+ else:
183
+ request_type = NewHttpTriggerRequestType(_request_type)
184
+
168
185
  wrap_body = d.pop("wrap_body", UNSET)
169
186
 
170
187
  raw_string = d.pop("raw_string", UNSET)
@@ -191,7 +208,6 @@ class NewHttpTrigger:
191
208
  route_path=route_path,
192
209
  is_flow=is_flow,
193
210
  http_method=http_method,
194
- is_async=is_async,
195
211
  authentication_method=authentication_method,
196
212
  is_static_website=is_static_website,
197
213
  workspaced_route=workspaced_route,
@@ -199,6 +215,8 @@ class NewHttpTrigger:
199
215
  description=description,
200
216
  static_asset_config=static_asset_config,
201
217
  authentication_resource_path=authentication_resource_path,
218
+ is_async=is_async,
219
+ request_type=request_type,
202
220
  wrap_body=wrap_body,
203
221
  raw_string=raw_string,
204
222
  error_handler_path=error_handler_path,
@@ -0,0 +1,10 @@
1
+ from enum import Enum
2
+
3
+
4
+ class NewHttpTriggerRequestType(str, Enum):
5
+ ASYNC = "async"
6
+ SYNC = "sync"
7
+ SYNC_SSE = "sync_sse"
8
+
9
+ def __str__(self) -> str:
10
+ return str(self.value)
@@ -5,6 +5,7 @@ from attrs import field as _attrs_field
5
5
 
6
6
  from ..models.update_http_trigger_json_body_authentication_method import UpdateHttpTriggerJsonBodyAuthenticationMethod
7
7
  from ..models.update_http_trigger_json_body_http_method import UpdateHttpTriggerJsonBodyHttpMethod
8
+ from ..models.update_http_trigger_json_body_request_type import UpdateHttpTriggerJsonBodyRequestType
8
9
  from ..types import UNSET, Unset
9
10
 
10
11
  if TYPE_CHECKING:
@@ -24,7 +25,6 @@ class UpdateHttpTriggerJsonBody:
24
25
  script_path (str):
25
26
  is_flow (bool):
26
27
  http_method (UpdateHttpTriggerJsonBodyHttpMethod):
27
- is_async (bool):
28
28
  authentication_method (UpdateHttpTriggerJsonBodyAuthenticationMethod):
29
29
  is_static_website (bool):
30
30
  route_path (Union[Unset, str]):
@@ -33,6 +33,8 @@ class UpdateHttpTriggerJsonBody:
33
33
  workspaced_route (Union[Unset, bool]):
34
34
  static_asset_config (Union[Unset, UpdateHttpTriggerJsonBodyStaticAssetConfig]):
35
35
  authentication_resource_path (Union[Unset, str]):
36
+ is_async (Union[Unset, bool]): Deprecated, use request_type instead
37
+ request_type (Union[Unset, UpdateHttpTriggerJsonBodyRequestType]):
36
38
  wrap_body (Union[Unset, bool]):
37
39
  raw_string (Union[Unset, bool]):
38
40
  error_handler_path (Union[Unset, str]):
@@ -45,7 +47,6 @@ class UpdateHttpTriggerJsonBody:
45
47
  script_path: str
46
48
  is_flow: bool
47
49
  http_method: UpdateHttpTriggerJsonBodyHttpMethod
48
- is_async: bool
49
50
  authentication_method: UpdateHttpTriggerJsonBodyAuthenticationMethod
50
51
  is_static_website: bool
51
52
  route_path: Union[Unset, str] = UNSET
@@ -54,6 +55,8 @@ class UpdateHttpTriggerJsonBody:
54
55
  workspaced_route: Union[Unset, bool] = UNSET
55
56
  static_asset_config: Union[Unset, "UpdateHttpTriggerJsonBodyStaticAssetConfig"] = UNSET
56
57
  authentication_resource_path: Union[Unset, str] = UNSET
58
+ is_async: Union[Unset, bool] = UNSET
59
+ request_type: Union[Unset, UpdateHttpTriggerJsonBodyRequestType] = UNSET
57
60
  wrap_body: Union[Unset, bool] = UNSET
58
61
  raw_string: Union[Unset, bool] = UNSET
59
62
  error_handler_path: Union[Unset, str] = UNSET
@@ -67,7 +70,6 @@ class UpdateHttpTriggerJsonBody:
67
70
  is_flow = self.is_flow
68
71
  http_method = self.http_method.value
69
72
 
70
- is_async = self.is_async
71
73
  authentication_method = self.authentication_method.value
72
74
 
73
75
  is_static_website = self.is_static_website
@@ -80,6 +82,11 @@ class UpdateHttpTriggerJsonBody:
80
82
  static_asset_config = self.static_asset_config.to_dict()
81
83
 
82
84
  authentication_resource_path = self.authentication_resource_path
85
+ is_async = self.is_async
86
+ request_type: Union[Unset, str] = UNSET
87
+ if not isinstance(self.request_type, Unset):
88
+ request_type = self.request_type.value
89
+
83
90
  wrap_body = self.wrap_body
84
91
  raw_string = self.raw_string
85
92
  error_handler_path = self.error_handler_path
@@ -99,7 +106,6 @@ class UpdateHttpTriggerJsonBody:
99
106
  "script_path": script_path,
100
107
  "is_flow": is_flow,
101
108
  "http_method": http_method,
102
- "is_async": is_async,
103
109
  "authentication_method": authentication_method,
104
110
  "is_static_website": is_static_website,
105
111
  }
@@ -116,6 +122,10 @@ class UpdateHttpTriggerJsonBody:
116
122
  field_dict["static_asset_config"] = static_asset_config
117
123
  if authentication_resource_path is not UNSET:
118
124
  field_dict["authentication_resource_path"] = authentication_resource_path
125
+ if is_async is not UNSET:
126
+ field_dict["is_async"] = is_async
127
+ if request_type is not UNSET:
128
+ field_dict["request_type"] = request_type
119
129
  if wrap_body is not UNSET:
120
130
  field_dict["wrap_body"] = wrap_body
121
131
  if raw_string is not UNSET:
@@ -146,8 +156,6 @@ class UpdateHttpTriggerJsonBody:
146
156
 
147
157
  http_method = UpdateHttpTriggerJsonBodyHttpMethod(d.pop("http_method"))
148
158
 
149
- is_async = d.pop("is_async")
150
-
151
159
  authentication_method = UpdateHttpTriggerJsonBodyAuthenticationMethod(d.pop("authentication_method"))
152
160
 
153
161
  is_static_website = d.pop("is_static_website")
@@ -169,6 +177,15 @@ class UpdateHttpTriggerJsonBody:
169
177
 
170
178
  authentication_resource_path = d.pop("authentication_resource_path", UNSET)
171
179
 
180
+ is_async = d.pop("is_async", UNSET)
181
+
182
+ _request_type = d.pop("request_type", UNSET)
183
+ request_type: Union[Unset, UpdateHttpTriggerJsonBodyRequestType]
184
+ if isinstance(_request_type, Unset):
185
+ request_type = UNSET
186
+ else:
187
+ request_type = UpdateHttpTriggerJsonBodyRequestType(_request_type)
188
+
172
189
  wrap_body = d.pop("wrap_body", UNSET)
173
190
 
174
191
  raw_string = d.pop("raw_string", UNSET)
@@ -194,7 +211,6 @@ class UpdateHttpTriggerJsonBody:
194
211
  script_path=script_path,
195
212
  is_flow=is_flow,
196
213
  http_method=http_method,
197
- is_async=is_async,
198
214
  authentication_method=authentication_method,
199
215
  is_static_website=is_static_website,
200
216
  route_path=route_path,
@@ -203,6 +219,8 @@ class UpdateHttpTriggerJsonBody:
203
219
  workspaced_route=workspaced_route,
204
220
  static_asset_config=static_asset_config,
205
221
  authentication_resource_path=authentication_resource_path,
222
+ is_async=is_async,
223
+ request_type=request_type,
206
224
  wrap_body=wrap_body,
207
225
  raw_string=raw_string,
208
226
  error_handler_path=error_handler_path,
@@ -0,0 +1,10 @@
1
+ from enum import Enum
2
+
3
+
4
+ class UpdateHttpTriggerJsonBodyRequestType(str, Enum):
5
+ ASYNC = "async"
6
+ SYNC = "sync"
7
+ SYNC_SSE = "sync_sse"
8
+
9
+ def __str__(self) -> str:
10
+ return str(self.value)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: windmill-api
3
- Version: 1.561.0
3
+ Version: 1.563.0
4
4
  Summary: A client library for accessing Windmill API
5
5
  License: Apache-2.0
6
6
  Author: Ruben Fiszel
@@ -354,7 +354,7 @@ windmill_api/api/resource/delete_resources_bulk.py,sha256=fNhTCKbB2cm7S8Jdx8tkaN
354
354
  windmill_api/api/resource/exists_resource.py,sha256=U_ZQIBZcse84y5K-hB02xu2o4YTybmzz8gNDmHzKzYA,3792
355
355
  windmill_api/api/resource/exists_resource_type.py,sha256=gl1pJKWih3_Kir8bVqoU7UhYp1cYslLUNhOPfbz6Zyw,3817
356
356
  windmill_api/api/resource/file_resource_type_to_file_ext_map.py,sha256=89UxOgYrbklyOAKYF7vu2YbljsdkygGdq1Bi551JtXw,2444
357
- windmill_api/api/resource/get_git_commit_hash.py,sha256=7CAlXdjPRkhYSuPTatTOb1doYPtTCb9BEmUWUglOByE,4216
357
+ windmill_api/api/resource/get_git_commit_hash.py,sha256=krvgTFgK_Csp-a0TsfVWkX4PVZHOYeo3Bsle8S224bM,5089
358
358
  windmill_api/api/resource/get_resource.py,sha256=LKzjwsVtKAohJcIJW3SAWln-3Z9kWvzJL4VeCf2m2gQ,4037
359
359
  windmill_api/api/resource/get_resource_type.py,sha256=rNGMAJOEelZDL9TgMDXFyQDVNGzuCgOU4ufH5NKWg9w,4115
360
360
  windmill_api/api/resource/get_resource_value.py,sha256=dhiCGEDQSkdq6c07KIM_Kk14p7e_CTF58hoNL1e8To0,2516
@@ -963,19 +963,21 @@ windmill_api/models/create_gcp_trigger_json_body_retry_exponential.py,sha256=jr6
963
963
  windmill_api/models/create_gcp_trigger_json_body_retry_retry_if.py,sha256=iSywqFRcZcfPvLj-p-nDkq27YkMw520Uis6fmJkL9og,1560
964
964
  windmill_api/models/create_gcp_trigger_json_body_subscription_mode.py,sha256=hlquvYrp2ZeKRQ3ivrbObeAchk9HPAjSc4WM5uihtkQ,207
965
965
  windmill_api/models/create_group_json_body.py,sha256=KXgcsdIu7W99Ut5xbgH2911BEgrd-BxYAfN5r5TOyuw,1760
966
- windmill_api/models/create_http_trigger_json_body.py,sha256=Wt2xuSKXmPLPlZiZwLSvNEdORxNtbPNu5QdYqdcnHJw,9110
966
+ windmill_api/models/create_http_trigger_json_body.py,sha256=rtRvOG6b2s-nCw2rIN2KL895EpQdsb5HHG5V2w9J8e0,10067
967
967
  windmill_api/models/create_http_trigger_json_body_authentication_method.py,sha256=LjPtWr9A-WFWQY8KdURiqYvW0vFTNRflICjqbkv0vUY,312
968
968
  windmill_api/models/create_http_trigger_json_body_error_handler_args.py,sha256=47GJ11_Gdw0jpL2wZeP8VQDAkDb1Bfgx0U-G7pw2pLU,1420
969
969
  windmill_api/models/create_http_trigger_json_body_http_method.py,sha256=ZhVY_jUbOVXcckh4w56I0N9fGd0dYYYNViIhOM3495I,232
970
+ windmill_api/models/create_http_trigger_json_body_request_type.py,sha256=0I6WEh1C7pSzCGfYHByfYy16d3fADhP3LrEN_o3OHPc,205
970
971
  windmill_api/models/create_http_trigger_json_body_retry.py,sha256=FbA5zIe08gX-KZ7eOFKFqzUU8d3j_qRaL_4f9bCnlg8,4252
971
972
  windmill_api/models/create_http_trigger_json_body_retry_constant.py,sha256=Mc4APGve6wLT74-RWWd0DpTidZL-BiL5a9ObI6QJQEQ,1954
972
973
  windmill_api/models/create_http_trigger_json_body_retry_exponential.py,sha256=J5q5ocTEibrhDDrgEwCknLnSa6EYcUa_Ib_3iKd1ETk,2580
973
974
  windmill_api/models/create_http_trigger_json_body_retry_retry_if.py,sha256=7E4-JrRwCTKm5q_6YI3zS0wbeFGsthgPcJBXC7glZn8,1565
974
975
  windmill_api/models/create_http_trigger_json_body_static_asset_config.py,sha256=SqNzKOi6BLVpyb7Gb72V452jrnWh3KRijIwr5Eiwox4,2134
975
- windmill_api/models/create_http_triggers_json_body_item.py,sha256=8vsBwqBDoDDdvo4H6zkk6rRv6nQ8JZZjKwPGSoUWN_s,9384
976
+ windmill_api/models/create_http_triggers_json_body_item.py,sha256=Dkvleik6CgdGys9SjpOPpF23HNigy2TPTGqTR53Ut1A,10372
976
977
  windmill_api/models/create_http_triggers_json_body_item_authentication_method.py,sha256=CxT_urqmohlod14KHV0H5ykrzV0A80x8p4hTzVy2qiU,317
977
978
  windmill_api/models/create_http_triggers_json_body_item_error_handler_args.py,sha256=vxwO9ZngE3DHHmJ2gtV91HhgTpZll7_QylsOImBfAog,1448
978
979
  windmill_api/models/create_http_triggers_json_body_item_http_method.py,sha256=6QDXJnFs04v1UduAySZysTioISbVJ4c0X5uG7AYNP78,237
980
+ windmill_api/models/create_http_triggers_json_body_item_request_type.py,sha256=uLnrJj-vtuFPbNCB4quQ20RUet6yue9r5l-AAoxRP0s,210
979
981
  windmill_api/models/create_http_triggers_json_body_item_retry.py,sha256=kGc7UEx4MTatnpAfxFq0xgZmy1Xz63oktbr0syjAfuE,4498
980
982
  windmill_api/models/create_http_triggers_json_body_item_retry_constant.py,sha256=4MDIy9_--tRtSySr0EVBy25jzfNAakUitwThO57TL3M,1982
981
983
  windmill_api/models/create_http_triggers_json_body_item_retry_exponential.py,sha256=taVxCm5B5rWX5JD9rJ74QxbgoDuD7ao10sooMOlfOs8,2608
@@ -1277,10 +1279,11 @@ windmill_api/models/edit_git_sync_repository_json_body_repository.py,sha256=xIZP
1277
1279
  windmill_api/models/edit_git_sync_repository_json_body_repository_exclude_types_override_item.py,sha256=QaUyv4RBkzp_fHVYWe6GPqwBqOw8v4NMRhOIOl8xb1Q,484
1278
1280
  windmill_api/models/edit_git_sync_repository_json_body_repository_settings.py,sha256=671MhID6kQtUZb2WD0nVe0PpC0kdF62eI3viEP1qKOw,4061
1279
1281
  windmill_api/models/edit_git_sync_repository_json_body_repository_settings_include_type_item.py,sha256=mgSzsaSLeBFG_lVUwGIxARoP-VM_m5iMnzDxJOap_sc,483
1280
- windmill_api/models/edit_http_trigger.py,sha256=9dTHmFVLjpRn1qjW5TEr3PKbiVsnv1YS5rFHxYRz7MY,8748
1282
+ windmill_api/models/edit_http_trigger.py,sha256=e4vBv9nzaNGIuI_Al0UTToNlhmPE3fcC_5TCVrwBoJQ,9643
1281
1283
  windmill_api/models/edit_http_trigger_authentication_method.py,sha256=b_x86fwhQ-QEXNYQ5DX0nWPIcv_x7I9GrsxVSN8svVo,302
1282
1284
  windmill_api/models/edit_http_trigger_error_handler_args.py,sha256=60AJMT4BkFGDWokG1BqVBLUMvlGJzDc5r5uUi1RsD2w,1364
1283
1285
  windmill_api/models/edit_http_trigger_http_method.py,sha256=0ap4m_mxJpb5Fmr1DwT09OVC0nqwGcNvYgh0aoTRbq0,222
1286
+ windmill_api/models/edit_http_trigger_request_type.py,sha256=UIkyzr_-si1MMtwwT0W3b9ykRlWXuQePeZtEk2qT8Fs,195
1284
1287
  windmill_api/models/edit_http_trigger_retry.py,sha256=WS_VI2LItNCOAwPRBUB0LLj5RrMqHbYX-KhAkwTi3yc,3944
1285
1288
  windmill_api/models/edit_http_trigger_retry_constant.py,sha256=9OqKQmrIueCJKNnciDjZLa7kJ8_AF5w8V5PzfwOb3jM,1898
1286
1289
  windmill_api/models/edit_http_trigger_retry_exponential.py,sha256=ZDzNOVRski6sqMnC1wgNCb2XLc4rzO43zHyC72fJ874,2524
@@ -2531,11 +2534,12 @@ windmill_api/models/get_granular_acls_kind.py,sha256=UPlzrTHqvIF_GYudWoNuNMO17k0
2531
2534
  windmill_api/models/get_granular_acls_response_200.py,sha256=GBNLqaaap42IbGX8jniniFTUrtOFgiCLb5n5-2NKRIY,1297
2532
2535
  windmill_api/models/get_group_response_200.py,sha256=FKhClOF65VqXmEIW49y4W8zyMai0Sq_QjMuUG7wIoYY,3087
2533
2536
  windmill_api/models/get_group_response_200_extra_perms.py,sha256=q1U2BWdOWRzK3eHiZlTOS8o9ag5cFvBQFqVBHpDitBc,1315
2534
- windmill_api/models/get_http_trigger_response_200.py,sha256=Qd_KAeRqzYDXUugIW5wuSh-U893q5PH_dB1ow5-g5z4,10252
2537
+ windmill_api/models/get_http_trigger_response_200.py,sha256=vJyO2ic4Lqn7u674ePeGJq-hLvVP_Yn6wDyjMwoc-2o,10502
2535
2538
  windmill_api/models/get_http_trigger_response_200_authentication_method.py,sha256=27OTx0-AgIYmKrBsOZpCKKPmnT8OnFKruUcmmR7eSRw,312
2536
2539
  windmill_api/models/get_http_trigger_response_200_error_handler_args.py,sha256=CIlViIi6ujLPiKfoc0I4FWGrnwgkdO7TF2cA559vT5U,1420
2537
2540
  windmill_api/models/get_http_trigger_response_200_extra_perms.py,sha256=5UVrOgBBmWOUDmXGFKJqcUJ2Zb6Cv2cOKNBTDoMHfe4,1348
2538
2541
  windmill_api/models/get_http_trigger_response_200_http_method.py,sha256=SiFfXYbLQeIe2eshsdUkkiQbdmBRvE2msJwsKRc-prY,232
2542
+ windmill_api/models/get_http_trigger_response_200_request_type.py,sha256=1FwcrAz9aGEsfkSdoVAqpuNJ0IbFMm3AdS3EPghBBSI,205
2539
2543
  windmill_api/models/get_http_trigger_response_200_retry.py,sha256=BYpDZ3lDTq-qHRXxX_iO2RTDllpNu6y17HuY26SQbM0,4252
2540
2544
  windmill_api/models/get_http_trigger_response_200_retry_constant.py,sha256=XHOTKUbJL0XZjvJi37WFu3ND68dcGulS4Vu3_i1lShw,1954
2541
2545
  windmill_api/models/get_http_trigger_response_200_retry_exponential.py,sha256=UuRfXwoYjZohaZCfEsaSRPI3JirmrNu8aZ_SYh0NiYw,2580
@@ -3351,11 +3355,13 @@ windmill_api/models/global_whoami_response_200_login_type.py,sha256=grlKtkJE27qx
3351
3355
  windmill_api/models/group.py,sha256=yEfHcI9FEtk1tV6RS9B3r_vAPK0rqNCCLgIJoLAUZ8M,2890
3352
3356
  windmill_api/models/group_extra_perms.py,sha256=hn0wzgNVtx0HO3XwPsVOie8BJpV6-FypTN5u_851dvg,1236
3353
3357
  windmill_api/models/http_method.py,sha256=JQ01zN1w-a5wLW9fcb522rWrmwwJwAY0V5gnWDN_TjU,207
3354
- windmill_api/models/http_trigger.py,sha256=brO5qq3R1TBxR2fnsA-EwUcGzB_cBUNCuEDTAiPLW6E,9532
3358
+ windmill_api/models/http_request_type.py,sha256=Htcmz_J3LEfOZAaXtKjLiQ3cCqrNkQB2dpmzDaEskWo,184
3359
+ windmill_api/models/http_trigger.py,sha256=tKyq3L4b4x_1OVK277_817iA1no8NnhwFM36M150cfk,9709
3355
3360
  windmill_api/models/http_trigger_authentication_method.py,sha256=wFUsd7a-HE98BoadQk7kVOhZu4dev1JmMuLu21IqyZU,298
3356
3361
  windmill_api/models/http_trigger_error_handler_args.py,sha256=y_wgq9DBzQPmcb8lspXMhoEn3MpCFL2XbQkJnBBkZuk,1341
3357
3362
  windmill_api/models/http_trigger_extra_perms.py,sha256=zoXtrNWbIaURFZKJ2TJlzI3oScR9gJMuhvZdWxRqoGE,1269
3358
3363
  windmill_api/models/http_trigger_http_method.py,sha256=XqInjulsyRD4_aj3Qnao8L8iyoyQkmcciKvHDOW5xjU,218
3364
+ windmill_api/models/http_trigger_request_type.py,sha256=ESgcAFGyS7SXUk4eFz0YQ_W3zWIUOBr7NBjhlngrrso,191
3359
3365
  windmill_api/models/http_trigger_retry.py,sha256=Ek_SE5HSLvL-GIM0oUXwRxSikr2KOt8hqsi05tDKpVM,3819
3360
3366
  windmill_api/models/http_trigger_retry_constant.py,sha256=n_VGvDY7RzYG6IJOSumXozh-aXoGW0XNQN01I_dYWdo,1875
3361
3367
  windmill_api/models/http_trigger_retry_exponential.py,sha256=fab20JBEfB67nVcnvVCBnNXvtnlfN5vGQdwxq_ILai4,2501
@@ -4008,11 +4014,12 @@ windmill_api/models/list_global_settings_response_200_item.py,sha256=U8fLOxv7Tr1
4008
4014
  windmill_api/models/list_global_settings_response_200_item_value.py,sha256=BwZxPwY1kY_fl9sB6cg8dWtMPGLgKYUpx3ya1qDLcHc,1360
4009
4015
  windmill_api/models/list_groups_response_200_item.py,sha256=xtTEjbZ6Y6EDyMOfSJ0C-xnsZFFHpeDxt85OC-Dl5sw,3170
4010
4016
  windmill_api/models/list_groups_response_200_item_extra_perms.py,sha256=XQmY08M-IhwS1TigMZI7hEcnBJu2Gu13lsTg87xIeXk,1348
4011
- windmill_api/models/list_http_triggers_response_200_item.py,sha256=uoeloGHIYhhziWZ2SamAl-_uX20T27Uuj7cMkU-0cqI,10609
4017
+ windmill_api/models/list_http_triggers_response_200_item.py,sha256=KnRUw1sOh8mnLJw7qJufi95LmFZn0kjQTv498liSEVM,10890
4012
4018
  windmill_api/models/list_http_triggers_response_200_item_authentication_method.py,sha256=bTDFY2R5_XrnIinH8z7pqmRmOYPtQdIJGMdihl_f17w,318
4013
4019
  windmill_api/models/list_http_triggers_response_200_item_error_handler_args.py,sha256=DQSinUxX23PGQcHKUXboBLYY27NlKSdP-sYCwybNxzE,1453
4014
4020
  windmill_api/models/list_http_triggers_response_200_item_extra_perms.py,sha256=ZHjuezxB-TZOyqS74P_s--E9uC0jiHR-SFnTg2InGiQ,1381
4015
4021
  windmill_api/models/list_http_triggers_response_200_item_http_method.py,sha256=SQJQdl7yA0_V-lObcmCHc-_crescQPx9XNq4dY4x3is,238
4022
+ windmill_api/models/list_http_triggers_response_200_item_request_type.py,sha256=_D-6Ibi1yFYO-V8NAk_LzGzKZVpNqlIN8IJJeoqcwfQ,211
4016
4023
  windmill_api/models/list_http_triggers_response_200_item_retry.py,sha256=n2_DDaJ1nq8xFn6AufsZmbBqTe_F8sKKxFqq7k0SbF8,4544
4017
4024
  windmill_api/models/list_http_triggers_response_200_item_retry_constant.py,sha256=of9MhJiBvsAzsratiIULFrw4H0t25TJnW5KrqZi2ifE,1987
4018
4025
  windmill_api/models/list_http_triggers_response_200_item_retry_exponential.py,sha256=KnXwbBq8N-jQAX7AMdEeqWdhcpL0O9GSNbWfBqVKV2M,2613
@@ -4568,10 +4575,11 @@ windmill_api/models/new_email_trigger_retry.py,sha256=F4lqC4_iIYQjPjPnRxLSWO1OGU
4568
4575
  windmill_api/models/new_email_trigger_retry_constant.py,sha256=Mou4WQbyES3Gh0IZ_4s9jcivxJ5wNWzdG4sW-asoEnY,1898
4569
4576
  windmill_api/models/new_email_trigger_retry_exponential.py,sha256=x9GgELejOTP3oeglaNOMectZDcvhZn77RbFidW-QYpg,2524
4570
4577
  windmill_api/models/new_email_trigger_retry_retry_if.py,sha256=-xpZ1598nAXHOU260JtdHWlXzN2LjzXEnsUU6LxQs0k,1509
4571
- windmill_api/models/new_http_trigger.py,sha256=i6SXC1kt1FIomJmdWE8fUyhDF7GjgudVvEORYnhwnLA,8622
4578
+ windmill_api/models/new_http_trigger.py,sha256=30SOerbz7WC3lVTkydXIAuoy8bGGP5KcP7kQ_Lsl3SE,9511
4572
4579
  windmill_api/models/new_http_trigger_authentication_method.py,sha256=hEWgnSRV92738oCrJKzMYx-xe4y5G4kjc-bq6ud24Mo,301
4573
4580
  windmill_api/models/new_http_trigger_error_handler_args.py,sha256=QweCdSk_ZNSWfeaYBtazqykxK_QQpSQ-XQG4VHgOUdQ,1359
4574
4581
  windmill_api/models/new_http_trigger_http_method.py,sha256=QlXmwmePd0Cd-Y571W4w5fj9o1Wxu6C3V5yBOrwHx7g,221
4582
+ windmill_api/models/new_http_trigger_request_type.py,sha256=-cQhsz-xLj8mibS_5OpTh2GqsypFbKLjb9YpNsTElhY,194
4575
4583
  windmill_api/models/new_http_trigger_retry.py,sha256=bUHE0X94UHCk7TGYmd1NQukaSwf8TChV6asymgWZ-3I,3915
4576
4584
  windmill_api/models/new_http_trigger_retry_constant.py,sha256=l_i6v-KE08hDElgBrDBx6_Mpwxyb6aKZZq0Zv88W6r0,1893
4577
4585
  windmill_api/models/new_http_trigger_retry_exponential.py,sha256=nSYf59vQsCqP_jvv28IUtv8j4XbEfKUC3CtW8jCH5W0,2519
@@ -5385,10 +5393,11 @@ windmill_api/models/update_gcp_trigger_json_body_retry_exponential.py,sha256=2sb
5385
5393
  windmill_api/models/update_gcp_trigger_json_body_retry_retry_if.py,sha256=pbSPA_pfHv7EtZWXO_QCTDDOeDf8o6c6UwOlz--QKvY,1560
5386
5394
  windmill_api/models/update_gcp_trigger_json_body_subscription_mode.py,sha256=L97Z6hp19i5tbkkoUbdhQfoucqYKoHcg-iMVGVxViVw,207
5387
5395
  windmill_api/models/update_group_json_body.py,sha256=6HoxgdpSBftto-CgPVzh8beTX6oWROAaBf-tZQn5evI,1583
5388
- windmill_api/models/update_http_trigger_json_body.py,sha256=o3Ef0uhK1mw_XOZ3_-wRPsT2P7n2fNwDFpZ4L1pw17o,9197
5396
+ windmill_api/models/update_http_trigger_json_body.py,sha256=HEus9D0ZR79gvoKiAkv6E9opB3MTGqk1MjJ7rFbn68A,10154
5389
5397
  windmill_api/models/update_http_trigger_json_body_authentication_method.py,sha256=6pcKaox-FV_HvPxrwNI6kCUPdm4m5hOwwmMG2fDAPl4,312
5390
5398
  windmill_api/models/update_http_trigger_json_body_error_handler_args.py,sha256=oNLmRa07N_fOgy_x2DTxeBp6Sksp4BS7awXyljOxMO8,1420
5391
5399
  windmill_api/models/update_http_trigger_json_body_http_method.py,sha256=3VNz40Qjv2E3_r5cgVYUpNy2Y--0GWFOnVHeWP7LeZI,232
5400
+ windmill_api/models/update_http_trigger_json_body_request_type.py,sha256=9wk9jswbpCvcSDnZofM0rE340KKKWjKlOUhBv_Pli4I,205
5392
5401
  windmill_api/models/update_http_trigger_json_body_retry.py,sha256=P-vsbPVPxAm-hngid99MUFW5ZSnVCkJb1JMZpZNqVsY,4252
5393
5402
  windmill_api/models/update_http_trigger_json_body_retry_constant.py,sha256=PJi9mEEqFQtqcKvBF7MeD83OOisqCGXul7omhPdWgvM,1954
5394
5403
  windmill_api/models/update_http_trigger_json_body_retry_exponential.py,sha256=lp-Ulipcw3jwURQ5z2MB071gVe5WhyKPVErn9acnb3E,2580
@@ -5560,7 +5569,7 @@ windmill_api/models/workspace_invite.py,sha256=wp-J-VJLkXsfQzw1PdNPGQhETsFCFXh1e
5560
5569
  windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
5561
5570
  windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
5562
5571
  windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
5563
- windmill_api-1.561.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
5564
- windmill_api-1.561.0.dist-info/METADATA,sha256=3iSOysXUU8KmdM_TcGWueWw5p_Bp9uEJCgiV3eNAd7g,5023
5565
- windmill_api-1.561.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
5566
- windmill_api-1.561.0.dist-info/RECORD,,
5572
+ windmill_api-1.563.0.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
5573
+ windmill_api-1.563.0.dist-info/METADATA,sha256=goMjblB5fLdmVWyI8VB2LdTk5DgNV6wecpIAL0FGJOs,5023
5574
+ windmill_api-1.563.0.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
5575
+ windmill_api-1.563.0.dist-info/RECORD,,