windmill-api 1.401.0__py3-none-any.whl → 1.402.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of windmill-api might be problematic. Click here for more details.
- windmill_api/api/job/count_jobs_by_tag.py +177 -0
- windmill_api/models/count_jobs_by_tag_response_200_item.py +65 -0
- windmill_api/models/extended_jobs_jobs_item_type_1.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_1.py +8 -0
- windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1.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/list_workers_response_200_item.py +24 -0
- windmill_api/models/queued_job.py +8 -0
- windmill_api/models/worker_ping.py +24 -0
- {windmill_api-1.401.0.dist-info → windmill_api-1.402.1.dist-info}/METADATA +1 -1
- {windmill_api-1.401.0.dist-info → windmill_api-1.402.1.dist-info}/RECORD +15 -13
- {windmill_api-1.401.0.dist-info → windmill_api-1.402.1.dist-info}/LICENSE +0 -0
- {windmill_api-1.401.0.dist-info → windmill_api-1.402.1.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
from http import HTTPStatus
|
|
2
|
+
from typing import Any, Dict, List, Optional, Union
|
|
3
|
+
|
|
4
|
+
import httpx
|
|
5
|
+
|
|
6
|
+
from ... import errors
|
|
7
|
+
from ...client import AuthenticatedClient, Client
|
|
8
|
+
from ...models.count_jobs_by_tag_response_200_item import CountJobsByTagResponse200Item
|
|
9
|
+
from ...types import UNSET, Response, Unset
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def _get_kwargs(
|
|
13
|
+
*,
|
|
14
|
+
horizon_secs: Union[Unset, None, int] = UNSET,
|
|
15
|
+
workspace_id: Union[Unset, None, str] = UNSET,
|
|
16
|
+
) -> Dict[str, Any]:
|
|
17
|
+
pass
|
|
18
|
+
|
|
19
|
+
params: Dict[str, Any] = {}
|
|
20
|
+
params["horizon_secs"] = horizon_secs
|
|
21
|
+
|
|
22
|
+
params["workspace_id"] = workspace_id
|
|
23
|
+
|
|
24
|
+
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
25
|
+
|
|
26
|
+
return {
|
|
27
|
+
"method": "get",
|
|
28
|
+
"url": "/jobs/completed/count_by_tag",
|
|
29
|
+
"params": params,
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def _parse_response(
|
|
34
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
35
|
+
) -> Optional[List["CountJobsByTagResponse200Item"]]:
|
|
36
|
+
if response.status_code == HTTPStatus.OK:
|
|
37
|
+
response_200 = []
|
|
38
|
+
_response_200 = response.json()
|
|
39
|
+
for response_200_item_data in _response_200:
|
|
40
|
+
response_200_item = CountJobsByTagResponse200Item.from_dict(response_200_item_data)
|
|
41
|
+
|
|
42
|
+
response_200.append(response_200_item)
|
|
43
|
+
|
|
44
|
+
return response_200
|
|
45
|
+
if client.raise_on_unexpected_status:
|
|
46
|
+
raise errors.UnexpectedStatus(response.status_code, response.content)
|
|
47
|
+
else:
|
|
48
|
+
return None
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
def _build_response(
|
|
52
|
+
*, client: Union[AuthenticatedClient, Client], response: httpx.Response
|
|
53
|
+
) -> Response[List["CountJobsByTagResponse200Item"]]:
|
|
54
|
+
return Response(
|
|
55
|
+
status_code=HTTPStatus(response.status_code),
|
|
56
|
+
content=response.content,
|
|
57
|
+
headers=response.headers,
|
|
58
|
+
parsed=_parse_response(client=client, response=response),
|
|
59
|
+
)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
def sync_detailed(
|
|
63
|
+
*,
|
|
64
|
+
client: Union[AuthenticatedClient, Client],
|
|
65
|
+
horizon_secs: Union[Unset, None, int] = UNSET,
|
|
66
|
+
workspace_id: Union[Unset, None, str] = UNSET,
|
|
67
|
+
) -> Response[List["CountJobsByTagResponse200Item"]]:
|
|
68
|
+
"""Count jobs by tag
|
|
69
|
+
|
|
70
|
+
Args:
|
|
71
|
+
horizon_secs (Union[Unset, None, int]):
|
|
72
|
+
workspace_id (Union[Unset, None, str]):
|
|
73
|
+
|
|
74
|
+
Raises:
|
|
75
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
76
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
77
|
+
|
|
78
|
+
Returns:
|
|
79
|
+
Response[List['CountJobsByTagResponse200Item']]
|
|
80
|
+
"""
|
|
81
|
+
|
|
82
|
+
kwargs = _get_kwargs(
|
|
83
|
+
horizon_secs=horizon_secs,
|
|
84
|
+
workspace_id=workspace_id,
|
|
85
|
+
)
|
|
86
|
+
|
|
87
|
+
response = client.get_httpx_client().request(
|
|
88
|
+
**kwargs,
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
return _build_response(client=client, response=response)
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
def sync(
|
|
95
|
+
*,
|
|
96
|
+
client: Union[AuthenticatedClient, Client],
|
|
97
|
+
horizon_secs: Union[Unset, None, int] = UNSET,
|
|
98
|
+
workspace_id: Union[Unset, None, str] = UNSET,
|
|
99
|
+
) -> Optional[List["CountJobsByTagResponse200Item"]]:
|
|
100
|
+
"""Count jobs by tag
|
|
101
|
+
|
|
102
|
+
Args:
|
|
103
|
+
horizon_secs (Union[Unset, None, int]):
|
|
104
|
+
workspace_id (Union[Unset, None, str]):
|
|
105
|
+
|
|
106
|
+
Raises:
|
|
107
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
108
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
109
|
+
|
|
110
|
+
Returns:
|
|
111
|
+
List['CountJobsByTagResponse200Item']
|
|
112
|
+
"""
|
|
113
|
+
|
|
114
|
+
return sync_detailed(
|
|
115
|
+
client=client,
|
|
116
|
+
horizon_secs=horizon_secs,
|
|
117
|
+
workspace_id=workspace_id,
|
|
118
|
+
).parsed
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
async def asyncio_detailed(
|
|
122
|
+
*,
|
|
123
|
+
client: Union[AuthenticatedClient, Client],
|
|
124
|
+
horizon_secs: Union[Unset, None, int] = UNSET,
|
|
125
|
+
workspace_id: Union[Unset, None, str] = UNSET,
|
|
126
|
+
) -> Response[List["CountJobsByTagResponse200Item"]]:
|
|
127
|
+
"""Count jobs by tag
|
|
128
|
+
|
|
129
|
+
Args:
|
|
130
|
+
horizon_secs (Union[Unset, None, int]):
|
|
131
|
+
workspace_id (Union[Unset, None, str]):
|
|
132
|
+
|
|
133
|
+
Raises:
|
|
134
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
135
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
136
|
+
|
|
137
|
+
Returns:
|
|
138
|
+
Response[List['CountJobsByTagResponse200Item']]
|
|
139
|
+
"""
|
|
140
|
+
|
|
141
|
+
kwargs = _get_kwargs(
|
|
142
|
+
horizon_secs=horizon_secs,
|
|
143
|
+
workspace_id=workspace_id,
|
|
144
|
+
)
|
|
145
|
+
|
|
146
|
+
response = await client.get_async_httpx_client().request(**kwargs)
|
|
147
|
+
|
|
148
|
+
return _build_response(client=client, response=response)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
async def asyncio(
|
|
152
|
+
*,
|
|
153
|
+
client: Union[AuthenticatedClient, Client],
|
|
154
|
+
horizon_secs: Union[Unset, None, int] = UNSET,
|
|
155
|
+
workspace_id: Union[Unset, None, str] = UNSET,
|
|
156
|
+
) -> Optional[List["CountJobsByTagResponse200Item"]]:
|
|
157
|
+
"""Count jobs by tag
|
|
158
|
+
|
|
159
|
+
Args:
|
|
160
|
+
horizon_secs (Union[Unset, None, int]):
|
|
161
|
+
workspace_id (Union[Unset, None, str]):
|
|
162
|
+
|
|
163
|
+
Raises:
|
|
164
|
+
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
|
|
165
|
+
httpx.TimeoutException: If the request takes longer than Client.timeout.
|
|
166
|
+
|
|
167
|
+
Returns:
|
|
168
|
+
List['CountJobsByTagResponse200Item']
|
|
169
|
+
"""
|
|
170
|
+
|
|
171
|
+
return (
|
|
172
|
+
await asyncio_detailed(
|
|
173
|
+
client=client,
|
|
174
|
+
horizon_secs=horizon_secs,
|
|
175
|
+
workspace_id=workspace_id,
|
|
176
|
+
)
|
|
177
|
+
).parsed
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
from typing import Any, Dict, List, Type, TypeVar
|
|
2
|
+
|
|
3
|
+
from attrs import define as _attrs_define
|
|
4
|
+
from attrs import field as _attrs_field
|
|
5
|
+
|
|
6
|
+
T = TypeVar("T", bound="CountJobsByTagResponse200Item")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
@_attrs_define
|
|
10
|
+
class CountJobsByTagResponse200Item:
|
|
11
|
+
"""
|
|
12
|
+
Attributes:
|
|
13
|
+
tag (str):
|
|
14
|
+
count (int):
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
tag: str
|
|
18
|
+
count: int
|
|
19
|
+
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
20
|
+
|
|
21
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
22
|
+
tag = self.tag
|
|
23
|
+
count = self.count
|
|
24
|
+
|
|
25
|
+
field_dict: Dict[str, Any] = {}
|
|
26
|
+
field_dict.update(self.additional_properties)
|
|
27
|
+
field_dict.update(
|
|
28
|
+
{
|
|
29
|
+
"tag": tag,
|
|
30
|
+
"count": count,
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
return field_dict
|
|
35
|
+
|
|
36
|
+
@classmethod
|
|
37
|
+
def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
|
|
38
|
+
d = src_dict.copy()
|
|
39
|
+
tag = d.pop("tag")
|
|
40
|
+
|
|
41
|
+
count = d.pop("count")
|
|
42
|
+
|
|
43
|
+
count_jobs_by_tag_response_200_item = cls(
|
|
44
|
+
tag=tag,
|
|
45
|
+
count=count,
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
count_jobs_by_tag_response_200_item.additional_properties = d
|
|
49
|
+
return count_jobs_by_tag_response_200_item
|
|
50
|
+
|
|
51
|
+
@property
|
|
52
|
+
def additional_keys(self) -> List[str]:
|
|
53
|
+
return list(self.additional_properties.keys())
|
|
54
|
+
|
|
55
|
+
def __getitem__(self, key: str) -> Any:
|
|
56
|
+
return self.additional_properties[key]
|
|
57
|
+
|
|
58
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
59
|
+
self.additional_properties[key] = value
|
|
60
|
+
|
|
61
|
+
def __delitem__(self, key: str) -> None:
|
|
62
|
+
del self.additional_properties[key]
|
|
63
|
+
|
|
64
|
+
def __contains__(self, key: str) -> bool:
|
|
65
|
+
return key in self.additional_properties
|
|
@@ -55,6 +55,7 @@ class ExtendedJobsJobsItemType1:
|
|
|
55
55
|
priority (Union[Unset, int]):
|
|
56
56
|
self_wait_time_ms (Union[Unset, float]):
|
|
57
57
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
58
|
+
suspend (Union[Unset, float]):
|
|
58
59
|
type (Union[Unset, ExtendedJobsJobsItemType1Type]):
|
|
59
60
|
"""
|
|
60
61
|
|
|
@@ -89,6 +90,7 @@ class ExtendedJobsJobsItemType1:
|
|
|
89
90
|
priority: Union[Unset, int] = UNSET
|
|
90
91
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
91
92
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
93
|
+
suspend: Union[Unset, float] = UNSET
|
|
92
94
|
type: Union[Unset, ExtendedJobsJobsItemType1Type] = UNSET
|
|
93
95
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
94
96
|
|
|
@@ -149,6 +151,7 @@ class ExtendedJobsJobsItemType1:
|
|
|
149
151
|
priority = self.priority
|
|
150
152
|
self_wait_time_ms = self.self_wait_time_ms
|
|
151
153
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
154
|
+
suspend = self.suspend
|
|
152
155
|
type: Union[Unset, str] = UNSET
|
|
153
156
|
if not isinstance(self.type, Unset):
|
|
154
157
|
type = self.type.value
|
|
@@ -212,6 +215,8 @@ class ExtendedJobsJobsItemType1:
|
|
|
212
215
|
field_dict["self_wait_time_ms"] = self_wait_time_ms
|
|
213
216
|
if aggregate_wait_time_ms is not UNSET:
|
|
214
217
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
218
|
+
if suspend is not UNSET:
|
|
219
|
+
field_dict["suspend"] = suspend
|
|
215
220
|
if type is not UNSET:
|
|
216
221
|
field_dict["type"] = type
|
|
217
222
|
|
|
@@ -326,6 +331,8 @@ class ExtendedJobsJobsItemType1:
|
|
|
326
331
|
|
|
327
332
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
328
333
|
|
|
334
|
+
suspend = d.pop("suspend", UNSET)
|
|
335
|
+
|
|
329
336
|
_type = d.pop("type", UNSET)
|
|
330
337
|
type: Union[Unset, ExtendedJobsJobsItemType1Type]
|
|
331
338
|
if isinstance(_type, Unset):
|
|
@@ -365,6 +372,7 @@ class ExtendedJobsJobsItemType1:
|
|
|
365
372
|
priority=priority,
|
|
366
373
|
self_wait_time_ms=self_wait_time_ms,
|
|
367
374
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
375
|
+
suspend=suspend,
|
|
368
376
|
type=type,
|
|
369
377
|
)
|
|
370
378
|
|
|
@@ -55,6 +55,7 @@ class GetJobResponse200Type1:
|
|
|
55
55
|
priority (Union[Unset, int]):
|
|
56
56
|
self_wait_time_ms (Union[Unset, float]):
|
|
57
57
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
58
|
+
suspend (Union[Unset, float]):
|
|
58
59
|
type (Union[Unset, GetJobResponse200Type1Type]):
|
|
59
60
|
"""
|
|
60
61
|
|
|
@@ -89,6 +90,7 @@ class GetJobResponse200Type1:
|
|
|
89
90
|
priority: Union[Unset, int] = UNSET
|
|
90
91
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
91
92
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
93
|
+
suspend: Union[Unset, float] = UNSET
|
|
92
94
|
type: Union[Unset, GetJobResponse200Type1Type] = UNSET
|
|
93
95
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
94
96
|
|
|
@@ -149,6 +151,7 @@ class GetJobResponse200Type1:
|
|
|
149
151
|
priority = self.priority
|
|
150
152
|
self_wait_time_ms = self.self_wait_time_ms
|
|
151
153
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
154
|
+
suspend = self.suspend
|
|
152
155
|
type: Union[Unset, str] = UNSET
|
|
153
156
|
if not isinstance(self.type, Unset):
|
|
154
157
|
type = self.type.value
|
|
@@ -212,6 +215,8 @@ class GetJobResponse200Type1:
|
|
|
212
215
|
field_dict["self_wait_time_ms"] = self_wait_time_ms
|
|
213
216
|
if aggregate_wait_time_ms is not UNSET:
|
|
214
217
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
218
|
+
if suspend is not UNSET:
|
|
219
|
+
field_dict["suspend"] = suspend
|
|
215
220
|
if type is not UNSET:
|
|
216
221
|
field_dict["type"] = type
|
|
217
222
|
|
|
@@ -326,6 +331,8 @@ class GetJobResponse200Type1:
|
|
|
326
331
|
|
|
327
332
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
328
333
|
|
|
334
|
+
suspend = d.pop("suspend", UNSET)
|
|
335
|
+
|
|
329
336
|
_type = d.pop("type", UNSET)
|
|
330
337
|
type: Union[Unset, GetJobResponse200Type1Type]
|
|
331
338
|
if isinstance(_type, Unset):
|
|
@@ -365,6 +372,7 @@ class GetJobResponse200Type1:
|
|
|
365
372
|
priority=priority,
|
|
366
373
|
self_wait_time_ms=self_wait_time_ms,
|
|
367
374
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
375
|
+
suspend=suspend,
|
|
368
376
|
type=type,
|
|
369
377
|
)
|
|
370
378
|
|
|
@@ -63,6 +63,7 @@ class GetSuspendedJobFlowResponse200JobType1:
|
|
|
63
63
|
priority (Union[Unset, int]):
|
|
64
64
|
self_wait_time_ms (Union[Unset, float]):
|
|
65
65
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
66
|
+
suspend (Union[Unset, float]):
|
|
66
67
|
type (Union[Unset, GetSuspendedJobFlowResponse200JobType1Type]):
|
|
67
68
|
"""
|
|
68
69
|
|
|
@@ -97,6 +98,7 @@ class GetSuspendedJobFlowResponse200JobType1:
|
|
|
97
98
|
priority: Union[Unset, int] = UNSET
|
|
98
99
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
99
100
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
101
|
+
suspend: Union[Unset, float] = UNSET
|
|
100
102
|
type: Union[Unset, GetSuspendedJobFlowResponse200JobType1Type] = UNSET
|
|
101
103
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
102
104
|
|
|
@@ -157,6 +159,7 @@ class GetSuspendedJobFlowResponse200JobType1:
|
|
|
157
159
|
priority = self.priority
|
|
158
160
|
self_wait_time_ms = self.self_wait_time_ms
|
|
159
161
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
162
|
+
suspend = self.suspend
|
|
160
163
|
type: Union[Unset, str] = UNSET
|
|
161
164
|
if not isinstance(self.type, Unset):
|
|
162
165
|
type = self.type.value
|
|
@@ -220,6 +223,8 @@ class GetSuspendedJobFlowResponse200JobType1:
|
|
|
220
223
|
field_dict["self_wait_time_ms"] = self_wait_time_ms
|
|
221
224
|
if aggregate_wait_time_ms is not UNSET:
|
|
222
225
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
226
|
+
if suspend is not UNSET:
|
|
227
|
+
field_dict["suspend"] = suspend
|
|
223
228
|
if type is not UNSET:
|
|
224
229
|
field_dict["type"] = type
|
|
225
230
|
|
|
@@ -340,6 +345,8 @@ class GetSuspendedJobFlowResponse200JobType1:
|
|
|
340
345
|
|
|
341
346
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
342
347
|
|
|
348
|
+
suspend = d.pop("suspend", UNSET)
|
|
349
|
+
|
|
343
350
|
_type = d.pop("type", UNSET)
|
|
344
351
|
type: Union[Unset, GetSuspendedJobFlowResponse200JobType1Type]
|
|
345
352
|
if isinstance(_type, Unset):
|
|
@@ -379,6 +386,7 @@ class GetSuspendedJobFlowResponse200JobType1:
|
|
|
379
386
|
priority=priority,
|
|
380
387
|
self_wait_time_ms=self_wait_time_ms,
|
|
381
388
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
389
|
+
suspend=suspend,
|
|
382
390
|
type=type,
|
|
383
391
|
)
|
|
384
392
|
|
|
@@ -65,6 +65,7 @@ class ListExtendedJobsResponse200JobsItemType1:
|
|
|
65
65
|
priority (Union[Unset, int]):
|
|
66
66
|
self_wait_time_ms (Union[Unset, float]):
|
|
67
67
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
68
|
+
suspend (Union[Unset, float]):
|
|
68
69
|
type (Union[Unset, ListExtendedJobsResponse200JobsItemType1Type]):
|
|
69
70
|
"""
|
|
70
71
|
|
|
@@ -99,6 +100,7 @@ class ListExtendedJobsResponse200JobsItemType1:
|
|
|
99
100
|
priority: Union[Unset, int] = UNSET
|
|
100
101
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
101
102
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
103
|
+
suspend: Union[Unset, float] = UNSET
|
|
102
104
|
type: Union[Unset, ListExtendedJobsResponse200JobsItemType1Type] = UNSET
|
|
103
105
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
104
106
|
|
|
@@ -159,6 +161,7 @@ class ListExtendedJobsResponse200JobsItemType1:
|
|
|
159
161
|
priority = self.priority
|
|
160
162
|
self_wait_time_ms = self.self_wait_time_ms
|
|
161
163
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
164
|
+
suspend = self.suspend
|
|
162
165
|
type: Union[Unset, str] = UNSET
|
|
163
166
|
if not isinstance(self.type, Unset):
|
|
164
167
|
type = self.type.value
|
|
@@ -222,6 +225,8 @@ class ListExtendedJobsResponse200JobsItemType1:
|
|
|
222
225
|
field_dict["self_wait_time_ms"] = self_wait_time_ms
|
|
223
226
|
if aggregate_wait_time_ms is not UNSET:
|
|
224
227
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
228
|
+
if suspend is not UNSET:
|
|
229
|
+
field_dict["suspend"] = suspend
|
|
225
230
|
if type is not UNSET:
|
|
226
231
|
field_dict["type"] = type
|
|
227
232
|
|
|
@@ -342,6 +347,8 @@ class ListExtendedJobsResponse200JobsItemType1:
|
|
|
342
347
|
|
|
343
348
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
344
349
|
|
|
350
|
+
suspend = d.pop("suspend", UNSET)
|
|
351
|
+
|
|
345
352
|
_type = d.pop("type", UNSET)
|
|
346
353
|
type: Union[Unset, ListExtendedJobsResponse200JobsItemType1Type]
|
|
347
354
|
if isinstance(_type, Unset):
|
|
@@ -381,6 +388,7 @@ class ListExtendedJobsResponse200JobsItemType1:
|
|
|
381
388
|
priority=priority,
|
|
382
389
|
self_wait_time_ms=self_wait_time_ms,
|
|
383
390
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
391
|
+
suspend=suspend,
|
|
384
392
|
type=type,
|
|
385
393
|
)
|
|
386
394
|
|
|
@@ -55,6 +55,7 @@ class ListJobsResponse200ItemType1:
|
|
|
55
55
|
priority (Union[Unset, int]):
|
|
56
56
|
self_wait_time_ms (Union[Unset, float]):
|
|
57
57
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
58
|
+
suspend (Union[Unset, float]):
|
|
58
59
|
type (Union[Unset, ListJobsResponse200ItemType1Type]):
|
|
59
60
|
"""
|
|
60
61
|
|
|
@@ -89,6 +90,7 @@ class ListJobsResponse200ItemType1:
|
|
|
89
90
|
priority: Union[Unset, int] = UNSET
|
|
90
91
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
91
92
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
93
|
+
suspend: Union[Unset, float] = UNSET
|
|
92
94
|
type: Union[Unset, ListJobsResponse200ItemType1Type] = UNSET
|
|
93
95
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
94
96
|
|
|
@@ -149,6 +151,7 @@ class ListJobsResponse200ItemType1:
|
|
|
149
151
|
priority = self.priority
|
|
150
152
|
self_wait_time_ms = self.self_wait_time_ms
|
|
151
153
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
154
|
+
suspend = self.suspend
|
|
152
155
|
type: Union[Unset, str] = UNSET
|
|
153
156
|
if not isinstance(self.type, Unset):
|
|
154
157
|
type = self.type.value
|
|
@@ -212,6 +215,8 @@ class ListJobsResponse200ItemType1:
|
|
|
212
215
|
field_dict["self_wait_time_ms"] = self_wait_time_ms
|
|
213
216
|
if aggregate_wait_time_ms is not UNSET:
|
|
214
217
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
218
|
+
if suspend is not UNSET:
|
|
219
|
+
field_dict["suspend"] = suspend
|
|
215
220
|
if type is not UNSET:
|
|
216
221
|
field_dict["type"] = type
|
|
217
222
|
|
|
@@ -326,6 +331,8 @@ class ListJobsResponse200ItemType1:
|
|
|
326
331
|
|
|
327
332
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
328
333
|
|
|
334
|
+
suspend = d.pop("suspend", UNSET)
|
|
335
|
+
|
|
329
336
|
_type = d.pop("type", UNSET)
|
|
330
337
|
type: Union[Unset, ListJobsResponse200ItemType1Type]
|
|
331
338
|
if isinstance(_type, Unset):
|
|
@@ -365,6 +372,7 @@ class ListJobsResponse200ItemType1:
|
|
|
365
372
|
priority=priority,
|
|
366
373
|
self_wait_time_ms=self_wait_time_ms,
|
|
367
374
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
375
|
+
suspend=suspend,
|
|
368
376
|
type=type,
|
|
369
377
|
)
|
|
370
378
|
|
|
@@ -54,6 +54,7 @@ class ListQueueResponse200Item:
|
|
|
54
54
|
priority (Union[Unset, int]):
|
|
55
55
|
self_wait_time_ms (Union[Unset, float]):
|
|
56
56
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
57
|
+
suspend (Union[Unset, float]):
|
|
57
58
|
"""
|
|
58
59
|
|
|
59
60
|
id: str
|
|
@@ -87,6 +88,7 @@ class ListQueueResponse200Item:
|
|
|
87
88
|
priority: Union[Unset, int] = UNSET
|
|
88
89
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
89
90
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
91
|
+
suspend: Union[Unset, float] = UNSET
|
|
90
92
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
91
93
|
|
|
92
94
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -146,6 +148,7 @@ class ListQueueResponse200Item:
|
|
|
146
148
|
priority = self.priority
|
|
147
149
|
self_wait_time_ms = self.self_wait_time_ms
|
|
148
150
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
151
|
+
suspend = self.suspend
|
|
149
152
|
|
|
150
153
|
field_dict: Dict[str, Any] = {}
|
|
151
154
|
field_dict.update(self.additional_properties)
|
|
@@ -206,6 +209,8 @@ class ListQueueResponse200Item:
|
|
|
206
209
|
field_dict["self_wait_time_ms"] = self_wait_time_ms
|
|
207
210
|
if aggregate_wait_time_ms is not UNSET:
|
|
208
211
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
212
|
+
if suspend is not UNSET:
|
|
213
|
+
field_dict["suspend"] = suspend
|
|
209
214
|
|
|
210
215
|
return field_dict
|
|
211
216
|
|
|
@@ -318,6 +323,8 @@ class ListQueueResponse200Item:
|
|
|
318
323
|
|
|
319
324
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
320
325
|
|
|
326
|
+
suspend = d.pop("suspend", UNSET)
|
|
327
|
+
|
|
321
328
|
list_queue_response_200_item = cls(
|
|
322
329
|
id=id,
|
|
323
330
|
running=running,
|
|
@@ -350,6 +357,7 @@ class ListQueueResponse200Item:
|
|
|
350
357
|
priority=priority,
|
|
351
358
|
self_wait_time_ms=self_wait_time_ms,
|
|
352
359
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
360
|
+
suspend=suspend,
|
|
353
361
|
)
|
|
354
362
|
|
|
355
363
|
list_queue_response_200_item.additional_properties = d
|
|
@@ -26,6 +26,9 @@ class ListWorkersResponse200Item:
|
|
|
26
26
|
last_job_id (Union[Unset, str]):
|
|
27
27
|
last_job_workspace_id (Union[Unset, str]):
|
|
28
28
|
occupancy_rate (Union[Unset, float]):
|
|
29
|
+
occupancy_rate_15s (Union[Unset, float]):
|
|
30
|
+
occupancy_rate_5m (Union[Unset, float]):
|
|
31
|
+
occupancy_rate_30m (Union[Unset, float]):
|
|
29
32
|
memory (Union[Unset, float]):
|
|
30
33
|
vcpus (Union[Unset, float]):
|
|
31
34
|
memory_usage (Union[Unset, float]):
|
|
@@ -44,6 +47,9 @@ class ListWorkersResponse200Item:
|
|
|
44
47
|
last_job_id: Union[Unset, str] = UNSET
|
|
45
48
|
last_job_workspace_id: Union[Unset, str] = UNSET
|
|
46
49
|
occupancy_rate: Union[Unset, float] = UNSET
|
|
50
|
+
occupancy_rate_15s: Union[Unset, float] = UNSET
|
|
51
|
+
occupancy_rate_5m: Union[Unset, float] = UNSET
|
|
52
|
+
occupancy_rate_30m: Union[Unset, float] = UNSET
|
|
47
53
|
memory: Union[Unset, float] = UNSET
|
|
48
54
|
vcpus: Union[Unset, float] = UNSET
|
|
49
55
|
memory_usage: Union[Unset, float] = UNSET
|
|
@@ -67,6 +73,9 @@ class ListWorkersResponse200Item:
|
|
|
67
73
|
last_job_id = self.last_job_id
|
|
68
74
|
last_job_workspace_id = self.last_job_workspace_id
|
|
69
75
|
occupancy_rate = self.occupancy_rate
|
|
76
|
+
occupancy_rate_15s = self.occupancy_rate_15s
|
|
77
|
+
occupancy_rate_5m = self.occupancy_rate_5m
|
|
78
|
+
occupancy_rate_30m = self.occupancy_rate_30m
|
|
70
79
|
memory = self.memory
|
|
71
80
|
vcpus = self.vcpus
|
|
72
81
|
memory_usage = self.memory_usage
|
|
@@ -95,6 +104,12 @@ class ListWorkersResponse200Item:
|
|
|
95
104
|
field_dict["last_job_workspace_id"] = last_job_workspace_id
|
|
96
105
|
if occupancy_rate is not UNSET:
|
|
97
106
|
field_dict["occupancy_rate"] = occupancy_rate
|
|
107
|
+
if occupancy_rate_15s is not UNSET:
|
|
108
|
+
field_dict["occupancy_rate_15s"] = occupancy_rate_15s
|
|
109
|
+
if occupancy_rate_5m is not UNSET:
|
|
110
|
+
field_dict["occupancy_rate_5m"] = occupancy_rate_5m
|
|
111
|
+
if occupancy_rate_30m is not UNSET:
|
|
112
|
+
field_dict["occupancy_rate_30m"] = occupancy_rate_30m
|
|
98
113
|
if memory is not UNSET:
|
|
99
114
|
field_dict["memory"] = memory
|
|
100
115
|
if vcpus is not UNSET:
|
|
@@ -133,6 +148,12 @@ class ListWorkersResponse200Item:
|
|
|
133
148
|
|
|
134
149
|
occupancy_rate = d.pop("occupancy_rate", UNSET)
|
|
135
150
|
|
|
151
|
+
occupancy_rate_15s = d.pop("occupancy_rate_15s", UNSET)
|
|
152
|
+
|
|
153
|
+
occupancy_rate_5m = d.pop("occupancy_rate_5m", UNSET)
|
|
154
|
+
|
|
155
|
+
occupancy_rate_30m = d.pop("occupancy_rate_30m", UNSET)
|
|
156
|
+
|
|
136
157
|
memory = d.pop("memory", UNSET)
|
|
137
158
|
|
|
138
159
|
vcpus = d.pop("vcpus", UNSET)
|
|
@@ -154,6 +175,9 @@ class ListWorkersResponse200Item:
|
|
|
154
175
|
last_job_id=last_job_id,
|
|
155
176
|
last_job_workspace_id=last_job_workspace_id,
|
|
156
177
|
occupancy_rate=occupancy_rate,
|
|
178
|
+
occupancy_rate_15s=occupancy_rate_15s,
|
|
179
|
+
occupancy_rate_5m=occupancy_rate_5m,
|
|
180
|
+
occupancy_rate_30m=occupancy_rate_30m,
|
|
157
181
|
memory=memory,
|
|
158
182
|
vcpus=vcpus,
|
|
159
183
|
memory_usage=memory_usage,
|
|
@@ -54,6 +54,7 @@ class QueuedJob:
|
|
|
54
54
|
priority (Union[Unset, int]):
|
|
55
55
|
self_wait_time_ms (Union[Unset, float]):
|
|
56
56
|
aggregate_wait_time_ms (Union[Unset, float]):
|
|
57
|
+
suspend (Union[Unset, float]):
|
|
57
58
|
"""
|
|
58
59
|
|
|
59
60
|
id: str
|
|
@@ -87,6 +88,7 @@ class QueuedJob:
|
|
|
87
88
|
priority: Union[Unset, int] = UNSET
|
|
88
89
|
self_wait_time_ms: Union[Unset, float] = UNSET
|
|
89
90
|
aggregate_wait_time_ms: Union[Unset, float] = UNSET
|
|
91
|
+
suspend: Union[Unset, float] = UNSET
|
|
90
92
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
91
93
|
|
|
92
94
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -146,6 +148,7 @@ class QueuedJob:
|
|
|
146
148
|
priority = self.priority
|
|
147
149
|
self_wait_time_ms = self.self_wait_time_ms
|
|
148
150
|
aggregate_wait_time_ms = self.aggregate_wait_time_ms
|
|
151
|
+
suspend = self.suspend
|
|
149
152
|
|
|
150
153
|
field_dict: Dict[str, Any] = {}
|
|
151
154
|
field_dict.update(self.additional_properties)
|
|
@@ -206,6 +209,8 @@ class QueuedJob:
|
|
|
206
209
|
field_dict["self_wait_time_ms"] = self_wait_time_ms
|
|
207
210
|
if aggregate_wait_time_ms is not UNSET:
|
|
208
211
|
field_dict["aggregate_wait_time_ms"] = aggregate_wait_time_ms
|
|
212
|
+
if suspend is not UNSET:
|
|
213
|
+
field_dict["suspend"] = suspend
|
|
209
214
|
|
|
210
215
|
return field_dict
|
|
211
216
|
|
|
@@ -318,6 +323,8 @@ class QueuedJob:
|
|
|
318
323
|
|
|
319
324
|
aggregate_wait_time_ms = d.pop("aggregate_wait_time_ms", UNSET)
|
|
320
325
|
|
|
326
|
+
suspend = d.pop("suspend", UNSET)
|
|
327
|
+
|
|
321
328
|
queued_job = cls(
|
|
322
329
|
id=id,
|
|
323
330
|
running=running,
|
|
@@ -350,6 +357,7 @@ class QueuedJob:
|
|
|
350
357
|
priority=priority,
|
|
351
358
|
self_wait_time_ms=self_wait_time_ms,
|
|
352
359
|
aggregate_wait_time_ms=aggregate_wait_time_ms,
|
|
360
|
+
suspend=suspend,
|
|
353
361
|
)
|
|
354
362
|
|
|
355
363
|
queued_job.additional_properties = d
|
|
@@ -26,6 +26,9 @@ class WorkerPing:
|
|
|
26
26
|
last_job_id (Union[Unset, str]):
|
|
27
27
|
last_job_workspace_id (Union[Unset, str]):
|
|
28
28
|
occupancy_rate (Union[Unset, float]):
|
|
29
|
+
occupancy_rate_15s (Union[Unset, float]):
|
|
30
|
+
occupancy_rate_5m (Union[Unset, float]):
|
|
31
|
+
occupancy_rate_30m (Union[Unset, float]):
|
|
29
32
|
memory (Union[Unset, float]):
|
|
30
33
|
vcpus (Union[Unset, float]):
|
|
31
34
|
memory_usage (Union[Unset, float]):
|
|
@@ -44,6 +47,9 @@ class WorkerPing:
|
|
|
44
47
|
last_job_id: Union[Unset, str] = UNSET
|
|
45
48
|
last_job_workspace_id: Union[Unset, str] = UNSET
|
|
46
49
|
occupancy_rate: Union[Unset, float] = UNSET
|
|
50
|
+
occupancy_rate_15s: Union[Unset, float] = UNSET
|
|
51
|
+
occupancy_rate_5m: Union[Unset, float] = UNSET
|
|
52
|
+
occupancy_rate_30m: Union[Unset, float] = UNSET
|
|
47
53
|
memory: Union[Unset, float] = UNSET
|
|
48
54
|
vcpus: Union[Unset, float] = UNSET
|
|
49
55
|
memory_usage: Union[Unset, float] = UNSET
|
|
@@ -67,6 +73,9 @@ class WorkerPing:
|
|
|
67
73
|
last_job_id = self.last_job_id
|
|
68
74
|
last_job_workspace_id = self.last_job_workspace_id
|
|
69
75
|
occupancy_rate = self.occupancy_rate
|
|
76
|
+
occupancy_rate_15s = self.occupancy_rate_15s
|
|
77
|
+
occupancy_rate_5m = self.occupancy_rate_5m
|
|
78
|
+
occupancy_rate_30m = self.occupancy_rate_30m
|
|
70
79
|
memory = self.memory
|
|
71
80
|
vcpus = self.vcpus
|
|
72
81
|
memory_usage = self.memory_usage
|
|
@@ -95,6 +104,12 @@ class WorkerPing:
|
|
|
95
104
|
field_dict["last_job_workspace_id"] = last_job_workspace_id
|
|
96
105
|
if occupancy_rate is not UNSET:
|
|
97
106
|
field_dict["occupancy_rate"] = occupancy_rate
|
|
107
|
+
if occupancy_rate_15s is not UNSET:
|
|
108
|
+
field_dict["occupancy_rate_15s"] = occupancy_rate_15s
|
|
109
|
+
if occupancy_rate_5m is not UNSET:
|
|
110
|
+
field_dict["occupancy_rate_5m"] = occupancy_rate_5m
|
|
111
|
+
if occupancy_rate_30m is not UNSET:
|
|
112
|
+
field_dict["occupancy_rate_30m"] = occupancy_rate_30m
|
|
98
113
|
if memory is not UNSET:
|
|
99
114
|
field_dict["memory"] = memory
|
|
100
115
|
if vcpus is not UNSET:
|
|
@@ -133,6 +148,12 @@ class WorkerPing:
|
|
|
133
148
|
|
|
134
149
|
occupancy_rate = d.pop("occupancy_rate", UNSET)
|
|
135
150
|
|
|
151
|
+
occupancy_rate_15s = d.pop("occupancy_rate_15s", UNSET)
|
|
152
|
+
|
|
153
|
+
occupancy_rate_5m = d.pop("occupancy_rate_5m", UNSET)
|
|
154
|
+
|
|
155
|
+
occupancy_rate_30m = d.pop("occupancy_rate_30m", UNSET)
|
|
156
|
+
|
|
136
157
|
memory = d.pop("memory", UNSET)
|
|
137
158
|
|
|
138
159
|
vcpus = d.pop("vcpus", UNSET)
|
|
@@ -154,6 +175,9 @@ class WorkerPing:
|
|
|
154
175
|
last_job_id=last_job_id,
|
|
155
176
|
last_job_workspace_id=last_job_workspace_id,
|
|
156
177
|
occupancy_rate=occupancy_rate,
|
|
178
|
+
occupancy_rate_15s=occupancy_rate_15s,
|
|
179
|
+
occupancy_rate_5m=occupancy_rate_5m,
|
|
180
|
+
occupancy_rate_30m=occupancy_rate_30m,
|
|
157
181
|
memory=memory,
|
|
158
182
|
vcpus=vcpus,
|
|
159
183
|
memory_usage=memory_usage,
|
|
@@ -135,6 +135,7 @@ windmill_api/api/job/cancel_queued_job.py,sha256=Kp_NOqCQhkxgw96ObmkCQq5dNsJL58W
|
|
|
135
135
|
windmill_api/api/job/cancel_selection.py,sha256=4PDSj4_UAjhdIWKQELAllLZnuiUWqCxHe3-btNzuAuI,4110
|
|
136
136
|
windmill_api/api/job/cancel_suspended_job_get.py,sha256=JGZmXW4tcQsTUsYO6nwF0Prw54KzgwyJ0ZdnNLTxdeQ,3357
|
|
137
137
|
windmill_api/api/job/cancel_suspended_job_post.py,sha256=ztNkGEIPP6Hpo5s6qdS77z2r3d7LpFEA0uzH-44-tmU,3824
|
|
138
|
+
windmill_api/api/job/count_jobs_by_tag.py,sha256=wi-3OUWC8zqJsn2zuUrAH9i4zl0rbgw_z0QqU1QtNPY,5219
|
|
138
139
|
windmill_api/api/job/create_job_signature.py,sha256=gZTRawMMP0ax7uFZjULhTs-7cnV9ZFRc0yKMRDoBvew,3193
|
|
139
140
|
windmill_api/api/job/delete_completed_job.py,sha256=oHCZcuHd7AsHB5ouCMzYgK7O6vlDDsexOHogrpTAVPM,4258
|
|
140
141
|
windmill_api/api/job/force_cancel_queued_job.py,sha256=SSYppL4M6IhfoG1j--urqXvJXN85M_qS0-V6WmoqJdI,2902
|
|
@@ -574,6 +575,7 @@ windmill_api/models/connect_callback_response_200.py,sha256=1QPmLSSR9_YsbgOlf6Au
|
|
|
574
575
|
windmill_api/models/connect_slack_callback_instance_json_body.py,sha256=c0Rnk7V8qF2Dr471eWnWZe41d5SXnhZEKpbJH1WkpYM,1706
|
|
575
576
|
windmill_api/models/connect_slack_callback_json_body.py,sha256=AopjAfEL44s4fFJeZFrhYznF-9k_Fo61T7yF4F6KeJw,1663
|
|
576
577
|
windmill_api/models/contextual_variable.py,sha256=CYU0_ENlCZN9aD2hztezo1o0kkVCH-RYD46FIeWigeI,2010
|
|
578
|
+
windmill_api/models/count_jobs_by_tag_response_200_item.py,sha256=AMJAY5SIA4BypdkB7EOpA45aYBjd95-Ae2v6GiTbjo4,1664
|
|
577
579
|
windmill_api/models/create_account_json_body.py,sha256=42H2HXa-7_1IcT72OXaiF8feh3R60_NYoGet8735Di8,2058
|
|
578
580
|
windmill_api/models/create_app_json_body.py,sha256=tv4Fqsk6qE6HyfybPlWBZr1kKvvDDDovQiMxMazmuEE,2930
|
|
579
581
|
windmill_api/models/create_app_json_body_policy.py,sha256=c5VO2nRogt8E9pccN7S9pe-tUWq0sRC23lBO0rgMtxc,4947
|
|
@@ -846,7 +848,7 @@ windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_
|
|
|
846
848
|
windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py,sha256=K3pUHSpXfSP8R2JTHvP5RelkZiBj_Ib2MQxD-hMtqXo,2441
|
|
847
849
|
windmill_api/models/extended_jobs_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py,sha256=a7PPOLHKtwMZBuEtnoj67m5EJQC4mG1FpNVAUWOevyg,219
|
|
848
850
|
windmill_api/models/extended_jobs_jobs_item_type_0_type.py,sha256=kfhDpCd42uBj-eQrMUj7UTpuEByfaFwOfwFgIfZSuIk,168
|
|
849
|
-
windmill_api/models/extended_jobs_jobs_item_type_1.py,sha256=
|
|
851
|
+
windmill_api/models/extended_jobs_jobs_item_type_1.py,sha256=UkPJNB6_EEB1Iegell8fznZeRllPE5bFDjzDCwXmfKQ,14548
|
|
850
852
|
windmill_api/models/extended_jobs_jobs_item_type_1_args.py,sha256=Yqt6LczVzHGxSN9HgMcNwz2ge8hvrUuuR5lqjHgqpvc,1315
|
|
851
853
|
windmill_api/models/extended_jobs_jobs_item_type_1_flow_status.py,sha256=3mM7nudSBUNQcEGUcOwtFonimSSY6qtbOl5bSuuJbgI,5737
|
|
852
854
|
windmill_api/models/extended_jobs_jobs_item_type_1_flow_status_failure_module.py,sha256=sCjcCvgWNZEF459pbAAccnYcWmMOHrbTuwSloPGE0ys,9475
|
|
@@ -1648,7 +1650,7 @@ windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_sus
|
|
|
1648
1650
|
windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py,sha256=LRv0pC-CEzKCAZMzNFwZ105qG1lJo8mzbT08i31TgEU,2411
|
|
1649
1651
|
windmill_api/models/get_job_response_200_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py,sha256=NFNkuYYALwdWGaHE5mSOwSwth37C7_IOr17-i_weNxI,216
|
|
1650
1652
|
windmill_api/models/get_job_response_200_type_0_type.py,sha256=pBLR3hVPsxOVgE7vfrxTeorm6hobs-8wEwWNVnU-T_c,165
|
|
1651
|
-
windmill_api/models/get_job_response_200_type_1.py,sha256=
|
|
1653
|
+
windmill_api/models/get_job_response_200_type_1.py,sha256=L0NAwSD7gU69ReFGcH6IZnMQLNtGJjoo5jzLpgG1_LI,14410
|
|
1652
1654
|
windmill_api/models/get_job_response_200_type_1_args.py,sha256=i-VZzwx-R3jfiM13dHxSdIuE1Zj4heu3lPlBmpjMsk0,1300
|
|
1653
1655
|
windmill_api/models/get_job_response_200_type_1_flow_status.py,sha256=nch0olMiI2N2K00MkJiLXT3Ysxs8gHzPEOiPdPOrCQg,5632
|
|
1654
1656
|
windmill_api/models/get_job_response_200_type_1_flow_status_failure_module.py,sha256=peqQ0s_0svR5_tyoU3OK2kh_mAfX2pzCFdyCod4XJUA,9322
|
|
@@ -1889,7 +1891,7 @@ windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_prep
|
|
|
1889
1891
|
windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py,sha256=-F-5yinIb_OcoVwHr8ZQ49OMrCA0-GcESbBu8jx1ZPQ,2605
|
|
1890
1892
|
windmill_api/models/get_suspended_job_flow_response_200_job_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py,sha256=5N7-fq_3Z6lf-KXv5skYylId6t2dA8nullkL-KVxDJk,232
|
|
1891
1893
|
windmill_api/models/get_suspended_job_flow_response_200_job_type_0_type.py,sha256=NsEdcK2-jrEz1UDMWSN02-0F-O7NtucXDyEDa4YPnMk,181
|
|
1892
|
-
windmill_api/models/get_suspended_job_flow_response_200_job_type_1.py,sha256=
|
|
1894
|
+
windmill_api/models/get_suspended_job_flow_response_200_job_type_1.py,sha256=uhhJWpWkW5Kg87wpLWQpzpR_eZxozyzSWVjQFFwHsXc,15309
|
|
1893
1895
|
windmill_api/models/get_suspended_job_flow_response_200_job_type_1_args.py,sha256=YbTkS7GX5_cbgF0flzRVN3lVIiVwxDR1K9gTYngU2qY,1389
|
|
1894
1896
|
windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status.py,sha256=5nA67wJ4dOxI14mkImEVvttR_X0DXLpywCwAhi8ZEHk,6319
|
|
1895
1897
|
windmill_api/models/get_suspended_job_flow_response_200_job_type_1_flow_status_failure_module.py,sha256=krncNdWZ93_3VvhfvYNUhOy3A54ei7bHeuLh1qnWhQw,10074
|
|
@@ -2324,7 +2326,7 @@ windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_pr
|
|
|
2324
2326
|
windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py,sha256=qDhsEejon5A--2cn9A7S48QC6sJRUcirua4VqLj_kxQ,2631
|
|
2325
2327
|
windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py,sha256=3hnYr_qlhIAXSfuWwbt-5vv5_5X8hxV_HwGqAsqBhzA,234
|
|
2326
2328
|
windmill_api/models/list_extended_jobs_response_200_jobs_item_type_0_type.py,sha256=vGUy4VcLuthUfs8aNtwLcOmMdPAY0h2aWx2hGB7g1Mw,183
|
|
2327
|
-
windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1.py,sha256=
|
|
2329
|
+
windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1.py,sha256=SBFQzRKtHHj0XDrsHjIVhPBAwXS8iNrDqD1Dr-2LyBc,15418
|
|
2328
2330
|
windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_args.py,sha256=OX7E_KzrrZ3IPCEFV-mqkKkonmtOQw1POpor1VDxv7I,1399
|
|
2329
2331
|
windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status.py,sha256=nF_PPah1dhT5wJmE0is0u3pV2pr914hgjUjMIBiVGj4,6389
|
|
2330
2332
|
windmill_api/models/list_extended_jobs_response_200_jobs_item_type_1_flow_status_failure_module.py,sha256=JlWnQi_XdBGKVevYgD6ZFD_NcdoRo3kHbcHrT9EeDQ0,10170
|
|
@@ -2509,7 +2511,7 @@ windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_mod
|
|
|
2509
2511
|
windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1.py,sha256=5k3Di1IEs2WDir7vqRcdz7zQo3BXAPeooJVHWvLTeg4,2475
|
|
2510
2512
|
windmill_api/models/list_jobs_response_200_item_type_0_raw_flow_preprocessor_module_suspend_user_groups_required_type_1_type.py,sha256=b0sqDUs2MI3ScscZZrfQ2J5srXlWVthPQZXt0gw9su4,222
|
|
2511
2513
|
windmill_api/models/list_jobs_response_200_item_type_0_type.py,sha256=FLeR14U5-rt7RX7xxmryVb6fnmFHXEtcFvaGNNFMRyE,171
|
|
2512
|
-
windmill_api/models/list_jobs_response_200_item_type_1.py,sha256=
|
|
2514
|
+
windmill_api/models/list_jobs_response_200_item_type_1.py,sha256=8Pv-UMGXdTMg4ksF2pqaQ9Cr1cc29AkP2KnSJn1R4CE,14698
|
|
2513
2515
|
windmill_api/models/list_jobs_response_200_item_type_1_args.py,sha256=mzU6MTUfxq6yAmET1fhVOB_h9cLljitgGx8Iy83Udbc,1333
|
|
2514
2516
|
windmill_api/models/list_jobs_response_200_item_type_1_flow_status.py,sha256=hPhFZpG04VFFgb0oxGe3UZlmmSqF42yVPIHydTVT8B8,5925
|
|
2515
2517
|
windmill_api/models/list_jobs_response_200_item_type_1_flow_status_failure_module.py,sha256=uMaOvUxrdXkrPgkOJPbcEdb3QtVmV5rq3_XrgwjFxLQ,9610
|
|
@@ -2595,7 +2597,7 @@ windmill_api/models/list_jobs_response_200_item_type_1_type.py,sha256=sdZ7TEP0CM
|
|
|
2595
2597
|
windmill_api/models/list_log_files_response_200_item.py,sha256=G-Ckj2XTNGDsmTTId4k0xAJwctDZKo-hO4RCI5Cd-zk,3230
|
|
2596
2598
|
windmill_api/models/list_o_auth_logins_response_200.py,sha256=BCVtmrNs--AMAYxwL7A_3RUm2bDGWs8Wsr71CW-yDUA,1814
|
|
2597
2599
|
windmill_api/models/list_pending_invites_response_200_item.py,sha256=0fE8Lg-UhErEDIxVtxfi87bgUCsuWCKnH1XdlOZ7Js0,2139
|
|
2598
|
-
windmill_api/models/list_queue_response_200_item.py,sha256=
|
|
2600
|
+
windmill_api/models/list_queue_response_200_item.py,sha256=5AGNJrqeBVKhJXgKEjTJaq3_LoAaPLvy8ZneF-8uoww,13849
|
|
2599
2601
|
windmill_api/models/list_queue_response_200_item_args.py,sha256=ewTNkmdkSNDnn8hshLkr4zJJfqevHGDxdBSFarr7RTo,1307
|
|
2600
2602
|
windmill_api/models/list_queue_response_200_item_flow_status.py,sha256=iOyf1R_o1xHj7egIULRZujuaWp0FTGJxB6W7q9i-HCE,5691
|
|
2601
2603
|
windmill_api/models/list_queue_response_200_item_flow_status_failure_module.py,sha256=mdNdKUmb5eKu1LMmKCuNHKlrstzh7PGoh7hf_Ykmib0,9392
|
|
@@ -2723,7 +2725,7 @@ windmill_api/models/list_users_usage_response_200_item.py,sha256=0ZKMktaSC_LTPol
|
|
|
2723
2725
|
windmill_api/models/list_variable_response_200_item.py,sha256=nrPTcHabE71NPFFws-4Zl-7I8u1JOZacAabbiVdLjfk,5495
|
|
2724
2726
|
windmill_api/models/list_variable_response_200_item_extra_perms.py,sha256=Tx5hXdRHxg4SBN__jLzKf5cT09WbuLSmuOgDDkaKBlU,1358
|
|
2725
2727
|
windmill_api/models/list_worker_groups_response_200_item.py,sha256=w_PZKDxTlz3OBBTitMFwj0N040mfkd7HFsEuvhThTgQ,1691
|
|
2726
|
-
windmill_api/models/list_workers_response_200_item.py,sha256=
|
|
2728
|
+
windmill_api/models/list_workers_response_200_item.py,sha256=UMwiyS89d7Y8sfKplbFAAHeaSE0UQ4KWgpyIrwNXZbM,6954
|
|
2727
2729
|
windmill_api/models/list_workspace_invites_response_200_item.py,sha256=vIkLzbVL9ANye2rvrBWxECFUFAyTwBZ1qe8-J2cSPCE,2149
|
|
2728
2730
|
windmill_api/models/list_workspaces_as_super_admin_response_200_item.py,sha256=UPVgqLNP6Tk0ydVTr4E6DdOld7AWQ3mt4gHgj590x8U,2145
|
|
2729
2731
|
windmill_api/models/list_workspaces_response_200_item.py,sha256=dw4097XYfAJQiIrQ5evdnJPnvClCNtCphWAp3MJvVoA,2076
|
|
@@ -2937,7 +2939,7 @@ windmill_api/models/preview_language.py,sha256=8_fIioNWTCOVYmwCUOcIL_mbyqe2vLrti
|
|
|
2937
2939
|
windmill_api/models/preview_schedule_json_body.py,sha256=LRgspXOZqcLlLizbSZeOzl6zg2uOWnajS9XJP4w44Qk,1705
|
|
2938
2940
|
windmill_api/models/query_hub_scripts_response_200_item.py,sha256=gPA_e-SQV0qe8XwyfhjmzSYrIf11ON9ueIMsI4LL4NE,2482
|
|
2939
2941
|
windmill_api/models/query_resource_types_response_200_item.py,sha256=GDX4NRg2tPEQJRjy_-9lpQRUoH9YlSFPYkfgqfP0GQk,1981
|
|
2940
|
-
windmill_api/models/queued_job.py,sha256=
|
|
2942
|
+
windmill_api/models/queued_job.py,sha256=KiVmeFPcD894PgYVWb-4de1V-nqo-_oxk__jzsE9uNg,13216
|
|
2941
2943
|
windmill_api/models/queued_job_args.py,sha256=7GaFNJyGRAIvHTsMHJlD2MlOTj2cZT7OqEZS7HTaqHc,1223
|
|
2942
2944
|
windmill_api/models/queued_job_flow_status.py,sha256=h5qMLlXVgB4R-47cecHoHkT4PlS3b5cACGlGHhNsn-o,5007
|
|
2943
2945
|
windmill_api/models/queued_job_flow_status_failure_module.py,sha256=5l113NoIzGNixuMyyjEYQAS6nx3llpZlJR0PPFeNNqQ,8648
|
|
@@ -3246,7 +3248,7 @@ windmill_api/models/windmill_file_metadata.py,sha256=HVl3TD56e7IFrmrAvSgO0Xz9JHF
|
|
|
3246
3248
|
windmill_api/models/windmill_file_preview.py,sha256=SD0Ii7DxWzVo5Kn7LMl_rf8BF9FFlcJSC0gdCg1TuaQ,2229
|
|
3247
3249
|
windmill_api/models/windmill_file_preview_content_type.py,sha256=6RSZIG646TFP6hNFzZ0bsFSCYLQKy-v9F3FBdYbAaZM,223
|
|
3248
3250
|
windmill_api/models/windmill_large_file.py,sha256=N8IHEVY0usXgV3M0E3DzT7BgXcFI1l-mOgHAm7uqxMk,1430
|
|
3249
|
-
windmill_api/models/worker_ping.py,sha256=
|
|
3251
|
+
windmill_api/models/worker_ping.py,sha256=Rr2BdqiuYXnHjQORQX65lmd3Kbp-KGtn-1GmOGXjAnQ,6865
|
|
3250
3252
|
windmill_api/models/workflow_status.py,sha256=cUrhrLCmh-WmqoSCsM8JwxgawHWW6N9-a8HkQFyKzlw,3168
|
|
3251
3253
|
windmill_api/models/workflow_status_record.py,sha256=G80ixgFYomKT1Yp0mmDXHYvIBE1Ib80H_3xh9AJnEi8,1967
|
|
3252
3254
|
windmill_api/models/workflow_status_record_additional_property.py,sha256=pM8siiUXW262BfOHWJQLa6l4AR3ievw4SpjS5fzXkmk,3297
|
|
@@ -3263,7 +3265,7 @@ windmill_api/models/workspace_git_sync_settings_repositories_item_exclude_types_
|
|
|
3263
3265
|
windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1lixwUUXG6CXs,2037
|
|
3264
3266
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
3265
3267
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
3266
|
-
windmill_api-1.
|
|
3267
|
-
windmill_api-1.
|
|
3268
|
-
windmill_api-1.
|
|
3269
|
-
windmill_api-1.
|
|
3268
|
+
windmill_api-1.402.1.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
3269
|
+
windmill_api-1.402.1.dist-info/METADATA,sha256=BbkeXDqWUw6zY9SO6cxwVcrJi7FB9eN721_DP5jEsbk,5023
|
|
3270
|
+
windmill_api-1.402.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
3271
|
+
windmill_api-1.402.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|