windmill-api 1.457.0__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.0.dist-info → windmill_api-1.458.0.dist-info}/METADATA +1 -1
- {windmill_api-1.457.0.dist-info → windmill_api-1.458.0.dist-info}/RECORD +28 -28
- {windmill_api-1.457.0.dist-info → windmill_api-1.458.0.dist-info}/LICENSE +0 -0
- {windmill_api-1.457.0.dist-info → windmill_api-1.458.0.dist-info}/WHEEL +0 -0
|
@@ -57,6 +57,7 @@ class ListCompletedJobsResponse200Item:
|
|
|
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 ListCompletedJobsResponse200Item:
|
|
|
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 ListCompletedJobsResponse200Item:
|
|
|
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 ListCompletedJobsResponse200Item:
|
|
|
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
|
|
|
@@ -309,6 +314,8 @@ class ListCompletedJobsResponse200Item:
|
|
|
309
314
|
|
|
310
315
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
311
316
|
|
|
317
|
+
preprocessed = d.pop("preprocessed", UNSET)
|
|
318
|
+
|
|
312
319
|
list_completed_jobs_response_200_item = cls(
|
|
313
320
|
id=id,
|
|
314
321
|
created_by=created_by,
|
|
@@ -344,6 +351,7 @@ class ListCompletedJobsResponse200Item:
|
|
|
344
351
|
labels=labels,
|
|
345
352
|
self_wait_time_ms=self_wait_time_ms,
|
|
346
353
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
354
|
+
preprocessed=preprocessed,
|
|
347
355
|
)
|
|
348
356
|
|
|
349
357
|
list_completed_jobs_response_200_item.additional_properties = d
|
|
@@ -68,6 +68,7 @@ class ListExtendedJobsResponse200JobsItemType0:
|
|
|
68
68
|
labels (Union[Unset, List[str]]):
|
|
69
69
|
self_wait_time_ms (Union[Unset, float]):
|
|
70
70
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
71
|
+
preprocessed (Union[Unset, bool]):
|
|
71
72
|
type (Union[Unset, ListExtendedJobsResponse200JobsItemType0Type]):
|
|
72
73
|
"""
|
|
73
74
|
|
|
@@ -105,6 +106,7 @@ class ListExtendedJobsResponse200JobsItemType0:
|
|
|
105
106
|
labels: Union[Unset, List[str]] = UNSET
|
|
106
107
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
107
108
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
109
|
+
preprocessed: Union[Unset, bool] = UNSET
|
|
108
110
|
type: Union[Unset, ListExtendedJobsResponse200JobsItemType0Type] = UNSET
|
|
109
111
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
110
112
|
|
|
@@ -161,6 +163,7 @@ class ListExtendedJobsResponse200JobsItemType0:
|
|
|
161
163
|
|
|
162
164
|
self_wait_time_ms = self.self_wait_time_ms
|
|
163
165
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
166
|
+
preprocessed = self.preprocessed
|
|
164
167
|
type: Union[Unset, str] = UNSET
|
|
165
168
|
if not isinstance(self.type, Unset):
|
|
166
169
|
type = self.type.value
|
|
@@ -225,6 +228,8 @@ class ListExtendedJobsResponse200JobsItemType0:
|
|
|
225
228
|
field_dict["self_wait_time_ms"] = self_wait_time_ms
|
|
226
229
|
if aggregate_wait_time_ms is not UNSET:
|
|
227
230
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
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
|
|
|
@@ -331,6 +336,8 @@ class ListExtendedJobsResponse200JobsItemType0:
|
|
|
331
336
|
|
|
332
337
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
333
338
|
|
|
339
|
+
preprocessed = d.pop("preprocessed", UNSET)
|
|
340
|
+
|
|
334
341
|
_type = d.pop("type", UNSET)
|
|
335
342
|
type: Union[Unset, ListExtendedJobsResponse200JobsItemType0Type]
|
|
336
343
|
if isinstance(_type, Unset):
|
|
@@ -373,6 +380,7 @@ class ListExtendedJobsResponse200JobsItemType0:
|
|
|
373
380
|
labels=labels,
|
|
374
381
|
self_wait_time_ms=self_wait_time_ms,
|
|
375
382
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
383
|
+
preprocessed=preprocessed,
|
|
376
384
|
type=type,
|
|
377
385
|
)
|
|
378
386
|
|
|
@@ -66,6 +66,7 @@ class ListExtendedJobsResponse200JobsItemType1:
|
|
|
66
66
|
self_wait_time_ms (Union[Unset, float]):
|
|
67
67
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
68
68
|
suspend (Union[Unset, float]):
|
|
69
|
+
preprocessed (Union[Unset, bool]):
|
|
69
70
|
type (Union[Unset, ListExtendedJobsResponse200JobsItemType1Type]):
|
|
70
71
|
"""
|
|
71
72
|
|
|
@@ -101,6 +102,7 @@ class ListExtendedJobsResponse200JobsItemType1:
|
|
|
101
102
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
102
103
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
103
104
|
suspend: Union[Unset, float] = UNSET
|
|
105
|
+
preprocessed: Union[Unset, bool] = UNSET
|
|
104
106
|
type: Union[Unset, ListExtendedJobsResponse200JobsItemType1Type] = UNSET
|
|
105
107
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
106
108
|
|
|
@@ -162,6 +164,7 @@ class ListExtendedJobsResponse200JobsItemType1:
|
|
|
162
164
|
self_wait_time_ms = self.self_wait_time_ms
|
|
163
165
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
164
166
|
suspend = self.suspend
|
|
167
|
+
preprocessed = self.preprocessed
|
|
165
168
|
type: Union[Unset, str] = UNSET
|
|
166
169
|
if not isinstance(self.type, Unset):
|
|
167
170
|
type = self.type.value
|
|
@@ -227,6 +230,8 @@ class ListExtendedJobsResponse200JobsItemType1:
|
|
|
227
230
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
228
231
|
if suspend is not UNSET:
|
|
229
232
|
field_dict["suspend"] = suspend
|
|
233
|
+
if preprocessed is not UNSET:
|
|
234
|
+
field_dict["preprocessed"] = preprocessed
|
|
230
235
|
if type is not UNSET:
|
|
231
236
|
field_dict["type"] = type
|
|
232
237
|
|
|
@@ -349,6 +354,8 @@ class ListExtendedJobsResponse200JobsItemType1:
|
|
|
349
354
|
|
|
350
355
|
suspend = d.pop("suspend", UNSET)
|
|
351
356
|
|
|
357
|
+
preprocessed = d.pop("preprocessed", UNSET)
|
|
358
|
+
|
|
352
359
|
_type = d.pop("type", UNSET)
|
|
353
360
|
type: Union[Unset, ListExtendedJobsResponse200JobsItemType1Type]
|
|
354
361
|
if isinstance(_type, Unset):
|
|
@@ -389,6 +396,7 @@ class ListExtendedJobsResponse200JobsItemType1:
|
|
|
389
396
|
self_wait_time_ms=self_wait_time_ms,
|
|
390
397
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
391
398
|
suspend=suspend,
|
|
399
|
+
preprocessed=preprocessed,
|
|
392
400
|
type=type,
|
|
393
401
|
)
|
|
394
402
|
|
|
@@ -29,6 +29,7 @@ class ListHttpTriggersResponse200Item:
|
|
|
29
29
|
http_method (ListHttpTriggersResponse200ItemHttpMethod):
|
|
30
30
|
is_async (bool):
|
|
31
31
|
requires_auth (bool):
|
|
32
|
+
is_static_website (bool):
|
|
32
33
|
email (str):
|
|
33
34
|
extra_perms (ListHttpTriggersResponse200ItemExtraPerms):
|
|
34
35
|
workspace_id (str):
|
|
@@ -44,6 +45,7 @@ class ListHttpTriggersResponse200Item:
|
|
|
44
45
|
http_method: ListHttpTriggersResponse200ItemHttpMethod
|
|
45
46
|
is_async: bool
|
|
46
47
|
requires_auth: bool
|
|
48
|
+
is_static_website: bool
|
|
47
49
|
email: str
|
|
48
50
|
extra_perms: "ListHttpTriggersResponse200ItemExtraPerms"
|
|
49
51
|
workspace_id: str
|
|
@@ -61,6 +63,7 @@ class ListHttpTriggersResponse200Item:
|
|
|
61
63
|
|
|
62
64
|
is_async = self.is_async
|
|
63
65
|
requires_auth = self.requires_auth
|
|
66
|
+
is_static_website = self.is_static_website
|
|
64
67
|
email = self.email
|
|
65
68
|
extra_perms = self.extra_perms.to_dict()
|
|
66
69
|
|
|
@@ -83,6 +86,7 @@ class ListHttpTriggersResponse200Item:
|
|
|
83
86
|
"http_method": http_method,
|
|
84
87
|
"is_async": is_async,
|
|
85
88
|
"requires_auth": requires_auth,
|
|
89
|
+
"is_static_website": is_static_website,
|
|
86
90
|
"email": email,
|
|
87
91
|
"extra_perms": extra_perms,
|
|
88
92
|
"workspace_id": workspace_id,
|
|
@@ -117,6 +121,8 @@ class ListHttpTriggersResponse200Item:
|
|
|
117
121
|
|
|
118
122
|
requires_auth = d.pop("requires_auth")
|
|
119
123
|
|
|
124
|
+
is_static_website = d.pop("is_static_website")
|
|
125
|
+
|
|
120
126
|
email = d.pop("email")
|
|
121
127
|
|
|
122
128
|
extra_perms = ListHttpTriggersResponse200ItemExtraPerms.from_dict(d.pop("extra_perms"))
|
|
@@ -142,6 +148,7 @@ class ListHttpTriggersResponse200Item:
|
|
|
142
148
|
http_method=http_method,
|
|
143
149
|
is_async=is_async,
|
|
144
150
|
requires_auth=requires_auth,
|
|
151
|
+
is_static_website=is_static_website,
|
|
145
152
|
email=email,
|
|
146
153
|
extra_perms=extra_perms,
|
|
147
154
|
workspace_id=workspace_id,
|
|
@@ -58,6 +58,7 @@ class ListJobsResponse200ItemType0:
|
|
|
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, ListJobsResponse200ItemType0Type]):
|
|
62
63
|
"""
|
|
63
64
|
|
|
@@ -95,6 +96,7 @@ class ListJobsResponse200ItemType0:
|
|
|
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, ListJobsResponse200ItemType0Type] = UNSET
|
|
99
101
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
100
102
|
|
|
@@ -151,6 +153,7 @@ class ListJobsResponse200ItemType0:
|
|
|
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 ListJobsResponse200ItemType0:
|
|
|
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 ListJobsResponse200ItemType0:
|
|
|
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, ListJobsResponse200ItemType0Type]
|
|
320
327
|
if isinstance(_type, Unset):
|
|
@@ -357,6 +364,7 @@ class ListJobsResponse200ItemType0:
|
|
|
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 ListJobsResponse200ItemType1:
|
|
|
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, ListJobsResponse200ItemType1Type]):
|
|
60
61
|
"""
|
|
61
62
|
|
|
@@ -91,6 +92,7 @@ class ListJobsResponse200ItemType1:
|
|
|
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, ListJobsResponse200ItemType1Type] = UNSET
|
|
95
97
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
96
98
|
|
|
@@ -152,6 +154,7 @@ class ListJobsResponse200ItemType1:
|
|
|
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 ListJobsResponse200ItemType1:
|
|
|
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 ListJobsResponse200ItemType1:
|
|
|
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, ListJobsResponse200ItemType1Type]
|
|
338
345
|
if isinstance(_type, Unset):
|
|
@@ -373,6 +380,7 @@ class ListJobsResponse200ItemType1:
|
|
|
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
|
|
|
@@ -55,6 +55,7 @@ class ListQueueResponse200Item:
|
|
|
55
55
|
self_wait_time_ms (Union[Unset, float]):
|
|
56
56
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
57
57
|
suspend (Union[Unset, float]):
|
|
58
|
+
preprocessed (Union[Unset, bool]):
|
|
58
59
|
"""
|
|
59
60
|
|
|
60
61
|
id: str
|
|
@@ -89,6 +90,7 @@ class ListQueueResponse200Item:
|
|
|
89
90
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
90
91
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
91
92
|
suspend: Union[Unset, float] = UNSET
|
|
93
|
+
preprocessed: Union[Unset, bool] = UNSET
|
|
92
94
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
93
95
|
|
|
94
96
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -149,6 +151,7 @@ class ListQueueResponse200Item:
|
|
|
149
151
|
self_wait_time_ms = self.self_wait_time_ms
|
|
150
152
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
151
153
|
suspend = self.suspend
|
|
154
|
+
preprocessed = self.preprocessed
|
|
152
155
|
|
|
153
156
|
field_dict: Dict[str, Any] = {}
|
|
154
157
|
field_dict.update(self.additional_properties)
|
|
@@ -211,6 +214,8 @@ class ListQueueResponse200Item:
|
|
|
211
214
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
212
215
|
if suspend is not UNSET:
|
|
213
216
|
field_dict["suspend"] = suspend
|
|
217
|
+
if preprocessed is not UNSET:
|
|
218
|
+
field_dict["preprocessed"] = preprocessed
|
|
214
219
|
|
|
215
220
|
return field_dict
|
|
216
221
|
|
|
@@ -325,6 +330,8 @@ class ListQueueResponse200Item:
|
|
|
325
330
|
|
|
326
331
|
suspend = d.pop("suspend", UNSET)
|
|
327
332
|
|
|
333
|
+
preprocessed = d.pop("preprocessed", UNSET)
|
|
334
|
+
|
|
328
335
|
list_queue_response_200_item = cls(
|
|
329
336
|
id=id,
|
|
330
337
|
running=running,
|
|
@@ -358,6 +365,7 @@ class ListQueueResponse200Item:
|
|
|
358
365
|
self_wait_time_ms=self_wait_time_ms,
|
|
359
366
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
360
367
|
suspend=suspend,
|
|
368
|
+
preprocessed=preprocessed,
|
|
361
369
|
)
|
|
362
370
|
|
|
363
371
|
list_queue_response_200_item.additional_properties = d
|
|
@@ -24,6 +24,7 @@ class NewHttpTrigger:
|
|
|
24
24
|
http_method (NewHttpTriggerHttpMethod):
|
|
25
25
|
is_async (bool):
|
|
26
26
|
requires_auth (bool):
|
|
27
|
+
is_static_website (bool):
|
|
27
28
|
static_asset_config (Union[Unset, NewHttpTriggerStaticAssetConfig]):
|
|
28
29
|
"""
|
|
29
30
|
|
|
@@ -34,6 +35,7 @@ class NewHttpTrigger:
|
|
|
34
35
|
http_method: NewHttpTriggerHttpMethod
|
|
35
36
|
is_async: bool
|
|
36
37
|
requires_auth: bool
|
|
38
|
+
is_static_website: bool
|
|
37
39
|
static_asset_config: Union[Unset, "NewHttpTriggerStaticAssetConfig"] = UNSET
|
|
38
40
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
39
41
|
|
|
@@ -46,6 +48,7 @@ class NewHttpTrigger:
|
|
|
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 NewHttpTrigger:
|
|
|
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:
|
|
@@ -87,6 +91,8 @@ class NewHttpTrigger:
|
|
|
87
91
|
|
|
88
92
|
requires_auth = d.pop("requires_auth")
|
|
89
93
|
|
|
94
|
+
is_static_website = d.pop("is_static_website")
|
|
95
|
+
|
|
90
96
|
_static_asset_config = d.pop("static_asset_config", UNSET)
|
|
91
97
|
static_asset_config: Union[Unset, NewHttpTriggerStaticAssetConfig]
|
|
92
98
|
if isinstance(_static_asset_config, Unset):
|
|
@@ -102,6 +108,7 @@ class NewHttpTrigger:
|
|
|
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
|
static_asset_config=static_asset_config,
|
|
106
113
|
)
|
|
107
114
|
|
|
@@ -55,6 +55,7 @@ class QueuedJob:
|
|
|
55
55
|
self_wait_time_ms (Union[Unset, float]):
|
|
56
56
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
57
57
|
suspend (Union[Unset, float]):
|
|
58
|
+
preprocessed (Union[Unset, bool]):
|
|
58
59
|
"""
|
|
59
60
|
|
|
60
61
|
id: str
|
|
@@ -89,6 +90,7 @@ class QueuedJob:
|
|
|
89
90
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
90
91
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
91
92
|
suspend: Union[Unset, float] = UNSET
|
|
93
|
+
preprocessed: Union[Unset, bool] = UNSET
|
|
92
94
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
93
95
|
|
|
94
96
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -149,6 +151,7 @@ class QueuedJob:
|
|
|
149
151
|
self_wait_time_ms = self.self_wait_time_ms
|
|
150
152
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
151
153
|
suspend = self.suspend
|
|
154
|
+
preprocessed = self.preprocessed
|
|
152
155
|
|
|
153
156
|
field_dict: Dict[str, Any] = {}
|
|
154
157
|
field_dict.update(self.additional_properties)
|
|
@@ -211,6 +214,8 @@ class QueuedJob:
|
|
|
211
214
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
212
215
|
if suspend is not UNSET:
|
|
213
216
|
field_dict["suspend"] = suspend
|
|
217
|
+
if preprocessed is not UNSET:
|
|
218
|
+
field_dict["preprocessed"] = preprocessed
|
|
214
219
|
|
|
215
220
|
return field_dict
|
|
216
221
|
|
|
@@ -325,6 +330,8 @@ class QueuedJob:
|
|
|
325
330
|
|
|
326
331
|
suspend = d.pop("suspend", UNSET)
|
|
327
332
|
|
|
333
|
+
preprocessed = d.pop("preprocessed", UNSET)
|
|
334
|
+
|
|
328
335
|
queued_job = cls(
|
|
329
336
|
id=id,
|
|
330
337
|
running=running,
|
|
@@ -358,6 +365,7 @@ class QueuedJob:
|
|
|
358
365
|
self_wait_time_ms=self_wait_time_ms,
|
|
359
366
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
360
367
|
suspend=suspend,
|
|
368
|
+
preprocessed=preprocessed,
|
|
361
369
|
)
|
|
362
370
|
|
|
363
371
|
queued_job.additional_properties = d
|
|
@@ -23,6 +23,7 @@ class UpdateHttpTriggerJsonBody:
|
|
|
23
23
|
http_method (UpdateHttpTriggerJsonBodyHttpMethod):
|
|
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, UpdateHttpTriggerJsonBodyStaticAssetConfig]):
|
|
28
29
|
"""
|
|
@@ -33,6 +34,7 @@ class UpdateHttpTriggerJsonBody:
|
|
|
33
34
|
http_method: UpdateHttpTriggerJsonBodyHttpMethod
|
|
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, "UpdateHttpTriggerJsonBodyStaticAssetConfig"] = UNSET
|
|
38
40
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
@@ -45,6 +47,7 @@ class UpdateHttpTriggerJsonBody:
|
|
|
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 UpdateHttpTriggerJsonBody:
|
|
|
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:
|
|
@@ -88,6 +92,8 @@ class UpdateHttpTriggerJsonBody:
|
|
|
88
92
|
|
|
89
93
|
requires_auth = d.pop("requires_auth")
|
|
90
94
|
|
|
95
|
+
is_static_website = d.pop("is_static_website")
|
|
96
|
+
|
|
91
97
|
route_path = d.pop("route_path", UNSET)
|
|
92
98
|
|
|
93
99
|
_static_asset_config = d.pop("static_asset_config", UNSET)
|
|
@@ -104,6 +110,7 @@ class UpdateHttpTriggerJsonBody:
|
|
|
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
|
route_path=route_path,
|
|
108
115
|
static_asset_config=static_asset_config,
|
|
109
116
|
)
|