windmill-api 1.457.1__py3-none-any.whl → 1.458.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.
- windmill_api/models/completed_job.py +8 -0
- windmill_api/models/create_http_trigger_json_body.py +7 -0
- windmill_api/models/delete_completed_job_response_200.py +8 -0
- windmill_api/models/edit_http_trigger.py +7 -0
- windmill_api/models/exists_route_json_body.py +11 -1
- windmill_api/models/extended_jobs_jobs_item_type_0.py +8 -0
- windmill_api/models/extended_jobs_jobs_item_type_1.py +8 -0
- windmill_api/models/get_completed_job_response_200.py +8 -0
- windmill_api/models/get_http_trigger_response_200.py +7 -0
- windmill_api/models/get_job_response_200_type_0.py +8 -0
- windmill_api/models/get_job_response_200_type_1.py +8 -0
- windmill_api/models/get_suspended_job_flow_response_200_job_type_0.py +8 -0
- windmill_api/models/get_suspended_job_flow_response_200_job_type_1.py +8 -0
- windmill_api/models/http_trigger.py +7 -0
- windmill_api/models/list_completed_jobs_response_200_item.py +8 -0
- windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0.py +8 -0
- windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1.py +8 -0
- windmill_api/models/list_http_triggers_response_200_item.py +7 -0
- windmill_api/models/list_jobs_response_200_item_type_0.py +8 -0
- windmill_api/models/list_jobs_response_200_item_type_1.py +8 -0
- windmill_api/models/list_queue_response_200_item.py +8 -0
- windmill_api/models/new_http_trigger.py +7 -0
- windmill_api/models/queued_job.py +8 -0
- windmill_api/models/update_http_trigger_json_body.py +7 -0
- {windmill_api-1.457.1.dist-info → windmill_api-1.458.0.dist-info}/METADATA +1 -1
- {windmill_api-1.457.1.dist-info → windmill_api-1.458.0.dist-info}/RECORD +28 -28
- {windmill_api-1.457.1.dist-info → windmill_api-1.458.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.457.1.dist-info → windmill_api-1.458.0.dist-info}/WHEEL +0 -0
|
@@ -57,6 +57,7 @@ class CompletedJob:
|
|
|
57
57
|
labels (Union[Unset, List[str]]):
|
|
58
58
|
self_wait_time_ms (Union[Unset, float]):
|
|
59
59
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
60
|
+
preprocessed (Union[Unset, bool]):
|
|
60
61
|
"""
|
|
61
62
|
|
|
62
63
|
id: str
|
|
@@ -93,6 +94,7 @@ class CompletedJob:
|
|
|
93
94
|
labels: Union[Unset, List[str]] = UNSET
|
|
94
95
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
95
96
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
97
|
+
preprocessed: Union[Unset, bool] = UNSET
|
|
96
98
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
97
99
|
|
|
98
100
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -148,6 +150,7 @@ class CompletedJob:
|
|
|
148
150
|
|
|
149
151
|
self_wait_time_ms = self.self_wait_time_ms
|
|
150
152
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
153
|
+
preprocessed = self.preprocessed
|
|
151
154
|
|
|
152
155
|
field_dict: Dict[str, Any] = {}
|
|
153
156
|
field_dict.update(self.additional_properties)
|
|
@@ -209,6 +212,8 @@ class CompletedJob:
|
|
|
209
212
|
field_dict["self_wait_time_ms"] = self_wait_time_ms
|
|
210
213
|
if aggregate_wait_time_ms is not UNSET:
|
|
211
214
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
215
|
+
if preprocessed is not UNSET:
|
|
216
|
+
field_dict["preprocessed"] = preprocessed
|
|
212
217
|
|
|
213
218
|
return field_dict
|
|
214
219
|
|
|
@@ -307,6 +312,8 @@ class CompletedJob:
|
|
|
307
312
|
|
|
308
313
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
309
314
|
|
|
315
|
+
preprocessed = d.pop("preprocessed", UNSET)
|
|
316
|
+
|
|
310
317
|
completed_job = cls(
|
|
311
318
|
id=id,
|
|
312
319
|
created_by=created_by,
|
|
@@ -342,6 +349,7 @@ class CompletedJob:
|
|
|
342
349
|
labels=labels,
|
|
343
350
|
self_wait_time_ms=self_wait_time_ms,
|
|
344
351
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
352
|
+
preprocessed=preprocessed,
|
|
345
353
|
)
|
|
346
354
|
|
|
347
355
|
completed_job.additional_properties = d
|
|
@@ -24,6 +24,7 @@ class CreateHttpTriggerJsonBody:
|
|
|
24
24
|
http_method (CreateHttpTriggerJsonBodyHttpMethod):
|
|
25
25
|
is_async (bool):
|
|
26
26
|
requires_auth (bool):
|
|
27
|
+
is_static_website (bool):
|
|
27
28
|
static_asset_config (Union[Unset, CreateHttpTriggerJsonBodyStaticAssetConfig]):
|
|
28
29
|
"""
|
|
29
30
|
|
|
@@ -34,6 +35,7 @@ class CreateHttpTriggerJsonBody:
|
|
|
34
35
|
http_method: CreateHttpTriggerJsonBodyHttpMethod
|
|
35
36
|
is_async: bool
|
|
36
37
|
requires_auth: bool
|
|
38
|
+
is_static_website: bool
|
|
37
39
|
static_asset_config: Union[Unset, "CreateHttpTriggerJsonBodyStaticAssetConfig"] = UNSET
|
|
38
40
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
39
41
|
|
|
@@ -46,6 +48,7 @@ class CreateHttpTriggerJsonBody:
|
|
|
46
48
|
|
|
47
49
|
is_async = self.is_async
|
|
48
50
|
requires_auth = self.requires_auth
|
|
51
|
+
is_static_website = self.is_static_website
|
|
49
52
|
static_asset_config: Union[Unset, Dict[str, Any]] = UNSET
|
|
50
53
|
if not isinstance(self.static_asset_config, Unset):
|
|
51
54
|
static_asset_config = self.static_asset_config.to_dict()
|
|
@@ -61,6 +64,7 @@ class CreateHttpTriggerJsonBody:
|
|
|
61
64
|
"http_method": http_method,
|
|
62
65
|
"is_async": is_async,
|
|
63
66
|
"requires_auth": requires_auth,
|
|
67
|
+
"is_static_website": is_static_website,
|
|
64
68
|
}
|
|
65
69
|
)
|
|
66
70
|
if static_asset_config is not UNSET:
|
|
@@ -89,6 +93,8 @@ class CreateHttpTriggerJsonBody:
|
|
|
89
93
|
|
|
90
94
|
requires_auth = d.pop("requires_auth")
|
|
91
95
|
|
|
96
|
+
is_static_website = d.pop("is_static_website")
|
|
97
|
+
|
|
92
98
|
_static_asset_config = d.pop("static_asset_config", UNSET)
|
|
93
99
|
static_asset_config: Union[Unset, CreateHttpTriggerJsonBodyStaticAssetConfig]
|
|
94
100
|
if isinstance(_static_asset_config, Unset):
|
|
@@ -104,6 +110,7 @@ class CreateHttpTriggerJsonBody:
|
|
|
104
110
|
http_method=http_method,
|
|
105
111
|
is_async=is_async,
|
|
106
112
|
requires_auth=requires_auth,
|
|
113
|
+
is_static_website=is_static_website,
|
|
107
114
|
static_asset_config=static_asset_config,
|
|
108
115
|
)
|
|
109
116
|
|
|
@@ -57,6 +57,7 @@ class DeleteCompletedJobResponse200:
|
|
|
57
57
|
labels (Union[Unset, List[str]]):
|
|
58
58
|
self_wait_time_ms (Union[Unset, float]):
|
|
59
59
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
60
|
+
preprocessed (Union[Unset, bool]):
|
|
60
61
|
"""
|
|
61
62
|
|
|
62
63
|
id: str
|
|
@@ -93,6 +94,7 @@ class DeleteCompletedJobResponse200:
|
|
|
93
94
|
labels: Union[Unset, List[str]] = UNSET
|
|
94
95
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
95
96
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
97
|
+
preprocessed: Union[Unset, bool] = UNSET
|
|
96
98
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
97
99
|
|
|
98
100
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -148,6 +150,7 @@ class DeleteCompletedJobResponse200:
|
|
|
148
150
|
|
|
149
151
|
self_wait_time_ms = self.self_wait_time_ms
|
|
150
152
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
153
|
+
preprocessed = self.preprocessed
|
|
151
154
|
|
|
152
155
|
field_dict: Dict[str, Any] = {}
|
|
153
156
|
field_dict.update(self.additional_properties)
|
|
@@ -209,6 +212,8 @@ class DeleteCompletedJobResponse200:
|
|
|
209
212
|
field_dict["self_wait_time_ms"] = self_wait_time_ms
|
|
210
213
|
if aggregate_wait_time_ms is not UNSET:
|
|
211
214
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
215
|
+
if preprocessed is not UNSET:
|
|
216
|
+
field_dict["preprocessed"] = preprocessed
|
|
212
217
|
|
|
213
218
|
return field_dict
|
|
214
219
|
|
|
@@ -307,6 +312,8 @@ class DeleteCompletedJobResponse200:
|
|
|
307
312
|
|
|
308
313
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
309
314
|
|
|
315
|
+
preprocessed = d.pop("preprocessed", UNSET)
|
|
316
|
+
|
|
310
317
|
delete_completed_job_response_200 = cls(
|
|
311
318
|
id=id,
|
|
312
319
|
created_by=created_by,
|
|
@@ -342,6 +349,7 @@ class DeleteCompletedJobResponse200:
|
|
|
342
349
|
labels=labels,
|
|
343
350
|
self_wait_time_ms=self_wait_time_ms,
|
|
344
351
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
352
|
+
preprocessed=preprocessed,
|
|
345
353
|
)
|
|
346
354
|
|
|
347
355
|
delete_completed_job_response_200.additional_properties = d
|
|
@@ -23,6 +23,7 @@ class EditHttpTrigger:
|
|
|
23
23
|
http_method (EditHttpTriggerHttpMethod):
|
|
24
24
|
is_async (bool):
|
|
25
25
|
requires_auth (bool):
|
|
26
|
+
is_static_website (bool):
|
|
26
27
|
route_path (Union[Unset, str]):
|
|
27
28
|
static_asset_config (Union[Unset, EditHttpTriggerStaticAssetConfig]):
|
|
28
29
|
"""
|
|
@@ -33,6 +34,7 @@ class EditHttpTrigger:
|
|
|
33
34
|
http_method: EditHttpTriggerHttpMethod
|
|
34
35
|
is_async: bool
|
|
35
36
|
requires_auth: bool
|
|
37
|
+
is_static_website: bool
|
|
36
38
|
route_path: Union[Unset, str] = UNSET
|
|
37
39
|
static_asset_config: Union[Unset, "EditHttpTriggerStaticAssetConfig"] = UNSET
|
|
38
40
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
@@ -45,6 +47,7 @@ class EditHttpTrigger:
|
|
|
45
47
|
|
|
46
48
|
is_async = self.is_async
|
|
47
49
|
requires_auth = self.requires_auth
|
|
50
|
+
is_static_website = self.is_static_website
|
|
48
51
|
route_path = self.route_path
|
|
49
52
|
static_asset_config: Union[Unset, Dict[str, Any]] = UNSET
|
|
50
53
|
if not isinstance(self.static_asset_config, Unset):
|
|
@@ -60,6 +63,7 @@ class EditHttpTrigger:
|
|
|
60
63
|
"http_method": http_method,
|
|
61
64
|
"is_async": is_async,
|
|
62
65
|
"requires_auth": requires_auth,
|
|
66
|
+
"is_static_website": is_static_website,
|
|
63
67
|
}
|
|
64
68
|
)
|
|
65
69
|
if route_path is not UNSET:
|
|
@@ -86,6 +90,8 @@ class EditHttpTrigger:
|
|
|
86
90
|
|
|
87
91
|
requires_auth = d.pop("requires_auth")
|
|
88
92
|
|
|
93
|
+
is_static_website = d.pop("is_static_website")
|
|
94
|
+
|
|
89
95
|
route_path = d.pop("route_path", UNSET)
|
|
90
96
|
|
|
91
97
|
_static_asset_config = d.pop("static_asset_config", UNSET)
|
|
@@ -102,6 +108,7 @@ class EditHttpTrigger:
|
|
|
102
108
|
http_method=http_method,
|
|
103
109
|
is_async=is_async,
|
|
104
110
|
requires_auth=requires_auth,
|
|
111
|
+
is_static_website=is_static_website,
|
|
105
112
|
route_path=route_path,
|
|
106
113
|
static_asset_config=static_asset_config,
|
|
107
114
|
)
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
from typing import Any, Dict, List, Type, TypeVar
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar, Union
|
|
2
2
|
|
|
3
3
|
from attrs import define as _attrs_define
|
|
4
4
|
from attrs import field as _attrs_field
|
|
5
5
|
|
|
6
6
|
from ..models.exists_route_json_body_http_method import ExistsRouteJsonBodyHttpMethod
|
|
7
|
+
from ..types import UNSET, Unset
|
|
7
8
|
|
|
8
9
|
T = TypeVar("T", bound="ExistsRouteJsonBody")
|
|
9
10
|
|
|
@@ -14,16 +15,20 @@ class ExistsRouteJsonBody:
|
|
|
14
15
|
Attributes:
|
|
15
16
|
route_path (str):
|
|
16
17
|
http_method (ExistsRouteJsonBodyHttpMethod):
|
|
18
|
+
trigger_path (Union[Unset, str]):
|
|
17
19
|
"""
|
|
18
20
|
|
|
19
21
|
route_path: str
|
|
20
22
|
http_method: ExistsRouteJsonBodyHttpMethod
|
|
23
|
+
trigger_path: Union[Unset, str] = UNSET
|
|
21
24
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
22
25
|
|
|
23
26
|
def to_dict(self) -> Dict[str, Any]:
|
|
24
27
|
route_path = self.route_path
|
|
25
28
|
http_method = self.http_method.value
|
|
26
29
|
|
|
30
|
+
trigger_path = self.trigger_path
|
|
31
|
+
|
|
27
32
|
field_dict: Dict[str, Any] = {}
|
|
28
33
|
field_dict.update(self.additional_properties)
|
|
29
34
|
field_dict.update(
|
|
@@ -32,6 +37,8 @@ class ExistsRouteJsonBody:
|
|
|
32
37
|
"http_method": http_method,
|
|
33
38
|
}
|
|
34
39
|
)
|
|
40
|
+
if trigger_path is not UNSET:
|
|
41
|
+
field_dict["trigger_path"] = trigger_path
|
|
35
42
|
|
|
36
43
|
return field_dict
|
|
37
44
|
|
|
@@ -42,9 +49,12 @@ class ExistsRouteJsonBody:
|
|
|
42
49
|
|
|
43
50
|
http_method = ExistsRouteJsonBodyHttpMethod(d.pop("http_method"))
|
|
44
51
|
|
|
52
|
+
trigger_path = d.pop("trigger_path", UNSET)
|
|
53
|
+
|
|
45
54
|
exists_route_json_body = cls(
|
|
46
55
|
route_path=route_path,
|
|
47
56
|
http_method=http_method,
|
|
57
|
+
trigger_path=trigger_path,
|
|
48
58
|
)
|
|
49
59
|
|
|
50
60
|
exists_route_json_body.additional_properties = d
|
|
@@ -58,6 +58,7 @@ class ExtendedJobsJobsItemType0:
|
|
|
58
58
|
labels (Union[Unset, List[str]]):
|
|
59
59
|
self_wait_time_ms (Union[Unset, float]):
|
|
60
60
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
61
|
+
preprocessed (Union[Unset, bool]):
|
|
61
62
|
type (Union[Unset, ExtendedJobsJobsItemType0Type]):
|
|
62
63
|
"""
|
|
63
64
|
|
|
@@ -95,6 +96,7 @@ class ExtendedJobsJobsItemType0:
|
|
|
95
96
|
labels: Union[Unset, List[str]] = UNSET
|
|
96
97
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
97
98
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
99
|
+
preprocessed: Union[Unset, bool] = UNSET
|
|
98
100
|
type: Union[Unset, ExtendedJobsJobsItemType0Type] = UNSET
|
|
99
101
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
100
102
|
|
|
@@ -151,6 +153,7 @@ class ExtendedJobsJobsItemType0:
|
|
|
151
153
|
|
|
152
154
|
self_wait_time_ms = self.self_wait_time_ms
|
|
153
155
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
156
|
+
preprocessed = self.preprocessed
|
|
154
157
|
type: Union[Unset, str] = UNSET
|
|
155
158
|
if not isinstance(self.type, Unset):
|
|
156
159
|
type = self.type.value
|
|
@@ -215,6 +218,8 @@ class ExtendedJobsJobsItemType0:
|
|
|
215
218
|
field_dict["self_wait_time_ms"] = self_wait_time_ms
|
|
216
219
|
if aggregate_wait_time_ms is not UNSET:
|
|
217
220
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
221
|
+
if preprocessed is not UNSET:
|
|
222
|
+
field_dict["preprocessed"] = preprocessed
|
|
218
223
|
if type is not UNSET:
|
|
219
224
|
field_dict["type"] = type
|
|
220
225
|
|
|
@@ -315,6 +320,8 @@ class ExtendedJobsJobsItemType0:
|
|
|
315
320
|
|
|
316
321
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
317
322
|
|
|
323
|
+
preprocessed = d.pop("preprocessed", UNSET)
|
|
324
|
+
|
|
318
325
|
_type = d.pop("type", UNSET)
|
|
319
326
|
type: Union[Unset, ExtendedJobsJobsItemType0Type]
|
|
320
327
|
if isinstance(_type, Unset):
|
|
@@ -357,6 +364,7 @@ class ExtendedJobsJobsItemType0:
|
|
|
357
364
|
labels=labels,
|
|
358
365
|
self_wait_time_ms=self_wait_time_ms,
|
|
359
366
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
367
|
+
preprocessed=preprocessed,
|
|
360
368
|
type=type,
|
|
361
369
|
)
|
|
362
370
|
|
|
@@ -56,6 +56,7 @@ class ExtendedJobsJobsItemType1:
|
|
|
56
56
|
self_wait_time_ms (Union[Unset, float]):
|
|
57
57
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
58
58
|
suspend (Union[Unset, float]):
|
|
59
|
+
preprocessed (Union[Unset, bool]):
|
|
59
60
|
type (Union[Unset, ExtendedJobsJobsItemType1Type]):
|
|
60
61
|
"""
|
|
61
62
|
|
|
@@ -91,6 +92,7 @@ class ExtendedJobsJobsItemType1:
|
|
|
91
92
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
92
93
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
93
94
|
suspend: Union[Unset, float] = UNSET
|
|
95
|
+
preprocessed: Union[Unset, bool] = UNSET
|
|
94
96
|
type: Union[Unset, ExtendedJobsJobsItemType1Type] = UNSET
|
|
95
97
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
96
98
|
|
|
@@ -152,6 +154,7 @@ class ExtendedJobsJobsItemType1:
|
|
|
152
154
|
self_wait_time_ms = self.self_wait_time_ms
|
|
153
155
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
154
156
|
suspend = self.suspend
|
|
157
|
+
preprocessed = self.preprocessed
|
|
155
158
|
type: Union[Unset, str] = UNSET
|
|
156
159
|
if not isinstance(self.type, Unset):
|
|
157
160
|
type = self.type.value
|
|
@@ -217,6 +220,8 @@ class ExtendedJobsJobsItemType1:
|
|
|
217
220
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
218
221
|
if suspend is not UNSET:
|
|
219
222
|
field_dict["suspend"] = suspend
|
|
223
|
+
if preprocessed is not UNSET:
|
|
224
|
+
field_dict["preprocessed"] = preprocessed
|
|
220
225
|
if type is not UNSET:
|
|
221
226
|
field_dict["type"] = type
|
|
222
227
|
|
|
@@ -333,6 +338,8 @@ class ExtendedJobsJobsItemType1:
|
|
|
333
338
|
|
|
334
339
|
suspend = d.pop("suspend", UNSET)
|
|
335
340
|
|
|
341
|
+
preprocessed = d.pop("preprocessed", UNSET)
|
|
342
|
+
|
|
336
343
|
_type = d.pop("type", UNSET)
|
|
337
344
|
type: Union[Unset, ExtendedJobsJobsItemType1Type]
|
|
338
345
|
if isinstance(_type, Unset):
|
|
@@ -373,6 +380,7 @@ class ExtendedJobsJobsItemType1:
|
|
|
373
380
|
self_wait_time_ms=self_wait_time_ms,
|
|
374
381
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
375
382
|
suspend=suspend,
|
|
383
|
+
preprocessed=preprocessed,
|
|
376
384
|
type=type,
|
|
377
385
|
)
|
|
378
386
|
|
|
@@ -57,6 +57,7 @@ class GetCompletedJobResponse200:
|
|
|
57
57
|
labels (Union[Unset, List[str]]):
|
|
58
58
|
self_wait_time_ms (Union[Unset, float]):
|
|
59
59
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
60
|
+
preprocessed (Union[Unset, bool]):
|
|
60
61
|
"""
|
|
61
62
|
|
|
62
63
|
id: str
|
|
@@ -93,6 +94,7 @@ class GetCompletedJobResponse200:
|
|
|
93
94
|
labels: Union[Unset, List[str]] = UNSET
|
|
94
95
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
95
96
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
97
|
+
preprocessed: Union[Unset, bool] = UNSET
|
|
96
98
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
97
99
|
|
|
98
100
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -148,6 +150,7 @@ class GetCompletedJobResponse200:
|
|
|
148
150
|
|
|
149
151
|
self_wait_time_ms = self.self_wait_time_ms
|
|
150
152
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
153
|
+
preprocessed = self.preprocessed
|
|
151
154
|
|
|
152
155
|
field_dict: Dict[str, Any] = {}
|
|
153
156
|
field_dict.update(self.additional_properties)
|
|
@@ -209,6 +212,8 @@ class GetCompletedJobResponse200:
|
|
|
209
212
|
field_dict["self_wait_time_ms"] = self_wait_time_ms
|
|
210
213
|
if aggregate_wait_time_ms is not UNSET:
|
|
211
214
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
215
|
+
if preprocessed is not UNSET:
|
|
216
|
+
field_dict["preprocessed"] = preprocessed
|
|
212
217
|
|
|
213
218
|
return field_dict
|
|
214
219
|
|
|
@@ -307,6 +312,8 @@ class GetCompletedJobResponse200:
|
|
|
307
312
|
|
|
308
313
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
309
314
|
|
|
315
|
+
preprocessed = d.pop("preprocessed", UNSET)
|
|
316
|
+
|
|
310
317
|
get_completed_job_response_200 = cls(
|
|
311
318
|
id=id,
|
|
312
319
|
created_by=created_by,
|
|
@@ -342,6 +349,7 @@ class GetCompletedJobResponse200:
|
|
|
342
349
|
labels=labels,
|
|
343
350
|
self_wait_time_ms=self_wait_time_ms,
|
|
344
351
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
352
|
+
preprocessed=preprocessed,
|
|
345
353
|
)
|
|
346
354
|
|
|
347
355
|
get_completed_job_response_200.additional_properties = d
|
|
@@ -27,6 +27,7 @@ class GetHttpTriggerResponse200:
|
|
|
27
27
|
http_method (GetHttpTriggerResponse200HttpMethod):
|
|
28
28
|
is_async (bool):
|
|
29
29
|
requires_auth (bool):
|
|
30
|
+
is_static_website (bool):
|
|
30
31
|
email (str):
|
|
31
32
|
extra_perms (GetHttpTriggerResponse200ExtraPerms):
|
|
32
33
|
workspace_id (str):
|
|
@@ -42,6 +43,7 @@ class GetHttpTriggerResponse200:
|
|
|
42
43
|
http_method: GetHttpTriggerResponse200HttpMethod
|
|
43
44
|
is_async: bool
|
|
44
45
|
requires_auth: bool
|
|
46
|
+
is_static_website: bool
|
|
45
47
|
email: str
|
|
46
48
|
extra_perms: "GetHttpTriggerResponse200ExtraPerms"
|
|
47
49
|
workspace_id: str
|
|
@@ -59,6 +61,7 @@ class GetHttpTriggerResponse200:
|
|
|
59
61
|
|
|
60
62
|
is_async = self.is_async
|
|
61
63
|
requires_auth = self.requires_auth
|
|
64
|
+
is_static_website = self.is_static_website
|
|
62
65
|
email = self.email
|
|
63
66
|
extra_perms = self.extra_perms.to_dict()
|
|
64
67
|
|
|
@@ -81,6 +84,7 @@ class GetHttpTriggerResponse200:
|
|
|
81
84
|
"http_method": http_method,
|
|
82
85
|
"is_async": is_async,
|
|
83
86
|
"requires_auth": requires_auth,
|
|
87
|
+
"is_static_website": is_static_website,
|
|
84
88
|
"email": email,
|
|
85
89
|
"extra_perms": extra_perms,
|
|
86
90
|
"workspace_id": workspace_id,
|
|
@@ -115,6 +119,8 @@ class GetHttpTriggerResponse200:
|
|
|
115
119
|
|
|
116
120
|
requires_auth = d.pop("requires_auth")
|
|
117
121
|
|
|
122
|
+
is_static_website = d.pop("is_static_website")
|
|
123
|
+
|
|
118
124
|
email = d.pop("email")
|
|
119
125
|
|
|
120
126
|
extra_perms = GetHttpTriggerResponse200ExtraPerms.from_dict(d.pop("extra_perms"))
|
|
@@ -140,6 +146,7 @@ class GetHttpTriggerResponse200:
|
|
|
140
146
|
http_method=http_method,
|
|
141
147
|
is_async=is_async,
|
|
142
148
|
requires_auth=requires_auth,
|
|
149
|
+
is_static_website=is_static_website,
|
|
143
150
|
email=email,
|
|
144
151
|
extra_perms=extra_perms,
|
|
145
152
|
workspace_id=workspace_id,
|
|
@@ -58,6 +58,7 @@ class GetJobResponse200Type0:
|
|
|
58
58
|
labels (Union[Unset, List[str]]):
|
|
59
59
|
self_wait_time_ms (Union[Unset, float]):
|
|
60
60
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
61
|
+
preprocessed (Union[Unset, bool]):
|
|
61
62
|
type (Union[Unset, GetJobResponse200Type0Type]):
|
|
62
63
|
"""
|
|
63
64
|
|
|
@@ -95,6 +96,7 @@ class GetJobResponse200Type0:
|
|
|
95
96
|
labels: Union[Unset, List[str]] = UNSET
|
|
96
97
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
97
98
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
99
|
+
preprocessed: Union[Unset, bool] = UNSET
|
|
98
100
|
type: Union[Unset, GetJobResponse200Type0Type] = UNSET
|
|
99
101
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
100
102
|
|
|
@@ -151,6 +153,7 @@ class GetJobResponse200Type0:
|
|
|
151
153
|
|
|
152
154
|
self_wait_time_ms = self.self_wait_time_ms
|
|
153
155
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
156
|
+
preprocessed = self.preprocessed
|
|
154
157
|
type: Union[Unset, str] = UNSET
|
|
155
158
|
if not isinstance(self.type, Unset):
|
|
156
159
|
type = self.type.value
|
|
@@ -215,6 +218,8 @@ class GetJobResponse200Type0:
|
|
|
215
218
|
field_dict["self_wait_time_ms"] = self_wait_time_ms
|
|
216
219
|
if aggregate_wait_time_ms is not UNSET:
|
|
217
220
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
221
|
+
if preprocessed is not UNSET:
|
|
222
|
+
field_dict["preprocessed"] = preprocessed
|
|
218
223
|
if type is not UNSET:
|
|
219
224
|
field_dict["type"] = type
|
|
220
225
|
|
|
@@ -315,6 +320,8 @@ class GetJobResponse200Type0:
|
|
|
315
320
|
|
|
316
321
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
317
322
|
|
|
323
|
+
preprocessed = d.pop("preprocessed", UNSET)
|
|
324
|
+
|
|
318
325
|
_type = d.pop("type", UNSET)
|
|
319
326
|
type: Union[Unset, GetJobResponse200Type0Type]
|
|
320
327
|
if isinstance(_type, Unset):
|
|
@@ -357,6 +364,7 @@ class GetJobResponse200Type0:
|
|
|
357
364
|
labels=labels,
|
|
358
365
|
self_wait_time_ms=self_wait_time_ms,
|
|
359
366
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
367
|
+
preprocessed=preprocessed,
|
|
360
368
|
type=type,
|
|
361
369
|
)
|
|
362
370
|
|
|
@@ -56,6 +56,7 @@ class GetJobResponse200Type1:
|
|
|
56
56
|
self_wait_time_ms (Union[Unset, float]):
|
|
57
57
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
58
58
|
suspend (Union[Unset, float]):
|
|
59
|
+
preprocessed (Union[Unset, bool]):
|
|
59
60
|
type (Union[Unset, GetJobResponse200Type1Type]):
|
|
60
61
|
"""
|
|
61
62
|
|
|
@@ -91,6 +92,7 @@ class GetJobResponse200Type1:
|
|
|
91
92
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
92
93
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
93
94
|
suspend: Union[Unset, float] = UNSET
|
|
95
|
+
preprocessed: Union[Unset, bool] = UNSET
|
|
94
96
|
type: Union[Unset, GetJobResponse200Type1Type] = UNSET
|
|
95
97
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
96
98
|
|
|
@@ -152,6 +154,7 @@ class GetJobResponse200Type1:
|
|
|
152
154
|
self_wait_time_ms = self.self_wait_time_ms
|
|
153
155
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
154
156
|
suspend = self.suspend
|
|
157
|
+
preprocessed = self.preprocessed
|
|
155
158
|
type: Union[Unset, str] = UNSET
|
|
156
159
|
if not isinstance(self.type, Unset):
|
|
157
160
|
type = self.type.value
|
|
@@ -217,6 +220,8 @@ class GetJobResponse200Type1:
|
|
|
217
220
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
218
221
|
if suspend is not UNSET:
|
|
219
222
|
field_dict["suspend"] = suspend
|
|
223
|
+
if preprocessed is not UNSET:
|
|
224
|
+
field_dict["preprocessed"] = preprocessed
|
|
220
225
|
if type is not UNSET:
|
|
221
226
|
field_dict["type"] = type
|
|
222
227
|
|
|
@@ -333,6 +338,8 @@ class GetJobResponse200Type1:
|
|
|
333
338
|
|
|
334
339
|
suspend = d.pop("suspend", UNSET)
|
|
335
340
|
|
|
341
|
+
preprocessed = d.pop("preprocessed", UNSET)
|
|
342
|
+
|
|
336
343
|
_type = d.pop("type", UNSET)
|
|
337
344
|
type: Union[Unset, GetJobResponse200Type1Type]
|
|
338
345
|
if isinstance(_type, Unset):
|
|
@@ -373,6 +380,7 @@ class GetJobResponse200Type1:
|
|
|
373
380
|
self_wait_time_ms=self_wait_time_ms,
|
|
374
381
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
375
382
|
suspend=suspend,
|
|
383
|
+
preprocessed=preprocessed,
|
|
376
384
|
type=type,
|
|
377
385
|
)
|
|
378
386
|
|
|
@@ -66,6 +66,7 @@ class GetSuspendedJobFlowResponse200JobType0:
|
|
|
66
66
|
labels (Union[Unset, List[str]]):
|
|
67
67
|
self_wait_time_ms (Union[Unset, float]):
|
|
68
68
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
69
|
+
preprocessed (Union[Unset, bool]):
|
|
69
70
|
type (Union[Unset, GetSuspendedJobFlowResponse200JobType0Type]):
|
|
70
71
|
"""
|
|
71
72
|
|
|
@@ -103,6 +104,7 @@ class GetSuspendedJobFlowResponse200JobType0:
|
|
|
103
104
|
labels: Union[Unset, List[str]] = UNSET
|
|
104
105
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
105
106
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
107
|
+
preprocessed: Union[Unset, bool] = UNSET
|
|
106
108
|
type: Union[Unset, GetSuspendedJobFlowResponse200JobType0Type] = UNSET
|
|
107
109
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
108
110
|
|
|
@@ -159,6 +161,7 @@ class GetSuspendedJobFlowResponse200JobType0:
|
|
|
159
161
|
|
|
160
162
|
self_wait_time_ms = self.self_wait_time_ms
|
|
161
163
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
164
|
+
preprocessed = self.preprocessed
|
|
162
165
|
type: Union[Unset, str] = UNSET
|
|
163
166
|
if not isinstance(self.type, Unset):
|
|
164
167
|
type = self.type.value
|
|
@@ -223,6 +226,8 @@ class GetSuspendedJobFlowResponse200JobType0:
|
|
|
223
226
|
field_dict["self_wait_time_ms"] = self_wait_time_ms
|
|
224
227
|
if aggregate_wait_time_ms is not UNSET:
|
|
225
228
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
229
|
+
if preprocessed is not UNSET:
|
|
230
|
+
field_dict["preprocessed"] = preprocessed
|
|
226
231
|
if type is not UNSET:
|
|
227
232
|
field_dict["type"] = type
|
|
228
233
|
|
|
@@ -329,6 +334,8 @@ class GetSuspendedJobFlowResponse200JobType0:
|
|
|
329
334
|
|
|
330
335
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
331
336
|
|
|
337
|
+
preprocessed = d.pop("preprocessed", UNSET)
|
|
338
|
+
|
|
332
339
|
_type = d.pop("type", UNSET)
|
|
333
340
|
type: Union[Unset, GetSuspendedJobFlowResponse200JobType0Type]
|
|
334
341
|
if isinstance(_type, Unset):
|
|
@@ -371,6 +378,7 @@ class GetSuspendedJobFlowResponse200JobType0:
|
|
|
371
378
|
labels=labels,
|
|
372
379
|
self_wait_time_ms=self_wait_time_ms,
|
|
373
380
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
381
|
+
preprocessed=preprocessed,
|
|
374
382
|
type=type,
|
|
375
383
|
)
|
|
376
384
|
|
|
@@ -64,6 +64,7 @@ class GetSuspendedJobFlowResponse200JobType1:
|
|
|
64
64
|
self_wait_time_ms (Union[Unset, float]):
|
|
65
65
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
66
66
|
suspend (Union[Unset, float]):
|
|
67
|
+
preprocessed (Union[Unset, bool]):
|
|
67
68
|
type (Union[Unset, GetSuspendedJobFlowResponse200JobType1Type]):
|
|
68
69
|
"""
|
|
69
70
|
|
|
@@ -99,6 +100,7 @@ class GetSuspendedJobFlowResponse200JobType1:
|
|
|
99
100
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
100
101
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
101
102
|
suspend: Union[Unset, float] = UNSET
|
|
103
|
+
preprocessed: Union[Unset, bool] = UNSET
|
|
102
104
|
type: Union[Unset, GetSuspendedJobFlowResponse200JobType1Type] = UNSET
|
|
103
105
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
104
106
|
|
|
@@ -160,6 +162,7 @@ class GetSuspendedJobFlowResponse200JobType1:
|
|
|
160
162
|
self_wait_time_ms = self.self_wait_time_ms
|
|
161
163
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
162
164
|
suspend = self.suspend
|
|
165
|
+
preprocessed = self.preprocessed
|
|
163
166
|
type: Union[Unset, str] = UNSET
|
|
164
167
|
if not isinstance(self.type, Unset):
|
|
165
168
|
type = self.type.value
|
|
@@ -225,6 +228,8 @@ class GetSuspendedJobFlowResponse200JobType1:
|
|
|
225
228
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
226
229
|
if suspend is not UNSET:
|
|
227
230
|
field_dict["suspend"] = suspend
|
|
231
|
+
if preprocessed is not UNSET:
|
|
232
|
+
field_dict["preprocessed"] = preprocessed
|
|
228
233
|
if type is not UNSET:
|
|
229
234
|
field_dict["type"] = type
|
|
230
235
|
|
|
@@ -347,6 +352,8 @@ class GetSuspendedJobFlowResponse200JobType1:
|
|
|
347
352
|
|
|
348
353
|
suspend = d.pop("suspend", UNSET)
|
|
349
354
|
|
|
355
|
+
preprocessed = d.pop("preprocessed", UNSET)
|
|
356
|
+
|
|
350
357
|
_type = d.pop("type", UNSET)
|
|
351
358
|
type: Union[Unset, GetSuspendedJobFlowResponse200JobType1Type]
|
|
352
359
|
if isinstance(_type, Unset):
|
|
@@ -387,6 +394,7 @@ class GetSuspendedJobFlowResponse200JobType1:
|
|
|
387
394
|
self_wait_time_ms=self_wait_time_ms,
|
|
388
395
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
389
396
|
suspend=suspend,
|
|
397
|
+
preprocessed=preprocessed,
|
|
390
398
|
type=type,
|
|
391
399
|
)
|
|
392
400
|
|
|
@@ -27,6 +27,7 @@ class HttpTrigger:
|
|
|
27
27
|
http_method (HttpTriggerHttpMethod):
|
|
28
28
|
is_async (bool):
|
|
29
29
|
requires_auth (bool):
|
|
30
|
+
is_static_website (bool):
|
|
30
31
|
email (str):
|
|
31
32
|
extra_perms (HttpTriggerExtraPerms):
|
|
32
33
|
workspace_id (str):
|
|
@@ -42,6 +43,7 @@ class HttpTrigger:
|
|
|
42
43
|
http_method: HttpTriggerHttpMethod
|
|
43
44
|
is_async: bool
|
|
44
45
|
requires_auth: bool
|
|
46
|
+
is_static_website: bool
|
|
45
47
|
email: str
|
|
46
48
|
extra_perms: "HttpTriggerExtraPerms"
|
|
47
49
|
workspace_id: str
|
|
@@ -59,6 +61,7 @@ class HttpTrigger:
|
|
|
59
61
|
|
|
60
62
|
is_async = self.is_async
|
|
61
63
|
requires_auth = self.requires_auth
|
|
64
|
+
is_static_website = self.is_static_website
|
|
62
65
|
email = self.email
|
|
63
66
|
extra_perms = self.extra_perms.to_dict()
|
|
64
67
|
|
|
@@ -81,6 +84,7 @@ class HttpTrigger:
|
|
|
81
84
|
"http_method": http_method,
|
|
82
85
|
"is_async": is_async,
|
|
83
86
|
"requires_auth": requires_auth,
|
|
87
|
+
"is_static_website": is_static_website,
|
|
84
88
|
"email": email,
|
|
85
89
|
"extra_perms": extra_perms,
|
|
86
90
|
"workspace_id": workspace_id,
|
|
@@ -113,6 +117,8 @@ class HttpTrigger:
|
|
|
113
117
|
|
|
114
118
|
requires_auth = d.pop("requires_auth")
|
|
115
119
|
|
|
120
|
+
is_static_website = d.pop("is_static_website")
|
|
121
|
+
|
|
116
122
|
email = d.pop("email")
|
|
117
123
|
|
|
118
124
|
extra_perms = HttpTriggerExtraPerms.from_dict(d.pop("extra_perms"))
|
|
@@ -138,6 +144,7 @@ class HttpTrigger:
|
|
|
138
144
|
http_method=http_method,
|
|
139
145
|
is_async=is_async,
|
|
140
146
|
requires_auth=requires_auth,
|
|
147
|
+
is_static_website=is_static_website,
|
|
141
148
|
email=email,
|
|
142
149
|
extra_perms=extra_perms,
|
|
143
150
|
workspace_id=workspace_id,
|