windmill-api 1.429.0__py3-none-any.whl → 1.430.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/models/create_schedule_json_body.py +9 -0
- windmill_api/models/edit_schedule.py +9 -0
- windmill_api/models/get_schedule_response_200.py +9 -0
- windmill_api/models/global_user_info.py +8 -0
- windmill_api/models/global_user_update_json_body.py +8 -0
- windmill_api/models/global_whoami_response_200.py +8 -0
- windmill_api/models/list_schedules_response_200_item.py +9 -0
- windmill_api/models/list_schedules_with_jobs_response_200_item.py +8 -0
- windmill_api/models/list_users_as_super_admin_response_200_item.py +8 -0
- windmill_api/models/new_schedule.py +9 -0
- windmill_api/models/preview_schedule_json_body.py +11 -1
- windmill_api/models/schedule.py +9 -0
- windmill_api/models/schedule_w_jobs.py +8 -0
- windmill_api/models/update_schedule_json_body.py +9 -0
- {windmill_api-1.429.0.dist-info → windmill_api-1.430.1.dist-info}/METADATA +1 -1
- {windmill_api-1.429.0.dist-info → windmill_api-1.430.1.dist-info}/RECORD +18 -18
- {windmill_api-1.429.0.dist-info → windmill_api-1.430.1.dist-info}/LICENSE +0 -0
- {windmill_api-1.429.0.dist-info → windmill_api-1.430.1.dist-info}/WHEEL +0 -0
|
@@ -44,6 +44,7 @@ class CreateScheduleJsonBody:
|
|
|
44
44
|
summary (Union[Unset, str]):
|
|
45
45
|
tag (Union[Unset, str]):
|
|
46
46
|
paused_until (Union[Unset, datetime.datetime]):
|
|
47
|
+
cron_version (Union[Unset, str]):
|
|
47
48
|
"""
|
|
48
49
|
|
|
49
50
|
path: str
|
|
@@ -68,6 +69,7 @@ class CreateScheduleJsonBody:
|
|
|
68
69
|
summary: Union[Unset, str] = UNSET
|
|
69
70
|
tag: Union[Unset, str] = UNSET
|
|
70
71
|
paused_until: Union[Unset, datetime.datetime] = UNSET
|
|
72
|
+
cron_version: Union[Unset, str] = UNSET
|
|
71
73
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
72
74
|
|
|
73
75
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -109,6 +111,8 @@ class CreateScheduleJsonBody:
|
|
|
109
111
|
if not isinstance(self.paused_until, Unset):
|
|
110
112
|
paused_until = self.paused_until.isoformat()
|
|
111
113
|
|
|
114
|
+
cron_version = self.cron_version
|
|
115
|
+
|
|
112
116
|
field_dict: Dict[str, Any] = {}
|
|
113
117
|
field_dict.update(self.additional_properties)
|
|
114
118
|
field_dict.update(
|
|
@@ -153,6 +157,8 @@ class CreateScheduleJsonBody:
|
|
|
153
157
|
field_dict["tag"] = tag
|
|
154
158
|
if paused_until is not UNSET:
|
|
155
159
|
field_dict["paused_until"] = paused_until
|
|
160
|
+
if cron_version is not UNSET:
|
|
161
|
+
field_dict["cron_version"] = cron_version
|
|
156
162
|
|
|
157
163
|
return field_dict
|
|
158
164
|
|
|
@@ -234,6 +240,8 @@ class CreateScheduleJsonBody:
|
|
|
234
240
|
else:
|
|
235
241
|
paused_until = isoparse(_paused_until)
|
|
236
242
|
|
|
243
|
+
cron_version = d.pop("cron_version", UNSET)
|
|
244
|
+
|
|
237
245
|
create_schedule_json_body = cls(
|
|
238
246
|
path=path,
|
|
239
247
|
schedule=schedule,
|
|
@@ -257,6 +265,7 @@ class CreateScheduleJsonBody:
|
|
|
257
265
|
summary=summary,
|
|
258
266
|
tag=tag,
|
|
259
267
|
paused_until=paused_until,
|
|
268
|
+
cron_version=cron_version,
|
|
260
269
|
)
|
|
261
270
|
|
|
262
271
|
create_schedule_json_body.additional_properties = d
|
|
@@ -40,6 +40,7 @@ class EditSchedule:
|
|
|
40
40
|
summary (Union[Unset, str]):
|
|
41
41
|
tag (Union[Unset, str]):
|
|
42
42
|
paused_until (Union[Unset, datetime.datetime]):
|
|
43
|
+
cron_version (Union[Unset, str]):
|
|
43
44
|
"""
|
|
44
45
|
|
|
45
46
|
schedule: str
|
|
@@ -60,6 +61,7 @@ class EditSchedule:
|
|
|
60
61
|
summary: Union[Unset, str] = UNSET
|
|
61
62
|
tag: Union[Unset, str] = UNSET
|
|
62
63
|
paused_until: Union[Unset, datetime.datetime] = UNSET
|
|
64
|
+
cron_version: Union[Unset, str] = UNSET
|
|
63
65
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
64
66
|
|
|
65
67
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -97,6 +99,8 @@ class EditSchedule:
|
|
|
97
99
|
if not isinstance(self.paused_until, Unset):
|
|
98
100
|
paused_until = self.paused_until.isoformat()
|
|
99
101
|
|
|
102
|
+
cron_version = self.cron_version
|
|
103
|
+
|
|
100
104
|
field_dict: Dict[str, Any] = {}
|
|
101
105
|
field_dict.update(self.additional_properties)
|
|
102
106
|
field_dict.update(
|
|
@@ -136,6 +140,8 @@ class EditSchedule:
|
|
|
136
140
|
field_dict["tag"] = tag
|
|
137
141
|
if paused_until is not UNSET:
|
|
138
142
|
field_dict["paused_until"] = paused_until
|
|
143
|
+
if cron_version is not UNSET:
|
|
144
|
+
field_dict["cron_version"] = cron_version
|
|
139
145
|
|
|
140
146
|
return field_dict
|
|
141
147
|
|
|
@@ -209,6 +215,8 @@ class EditSchedule:
|
|
|
209
215
|
else:
|
|
210
216
|
paused_until = isoparse(_paused_until)
|
|
211
217
|
|
|
218
|
+
cron_version = d.pop("cron_version", UNSET)
|
|
219
|
+
|
|
212
220
|
edit_schedule = cls(
|
|
213
221
|
schedule=schedule,
|
|
214
222
|
timezone=timezone,
|
|
@@ -228,6 +236,7 @@ class EditSchedule:
|
|
|
228
236
|
summary=summary,
|
|
229
237
|
tag=tag,
|
|
230
238
|
paused_until=paused_until,
|
|
239
|
+
cron_version=cron_version,
|
|
231
240
|
)
|
|
232
241
|
|
|
233
242
|
edit_schedule.additional_properties = d
|
|
@@ -50,6 +50,7 @@ class GetScheduleResponse200:
|
|
|
50
50
|
no_flow_overlap (Union[Unset, bool]):
|
|
51
51
|
tag (Union[Unset, str]):
|
|
52
52
|
paused_until (Union[Unset, datetime.datetime]):
|
|
53
|
+
cron_version (Union[Unset, str]):
|
|
53
54
|
"""
|
|
54
55
|
|
|
55
56
|
path: str
|
|
@@ -79,6 +80,7 @@ class GetScheduleResponse200:
|
|
|
79
80
|
no_flow_overlap: Union[Unset, bool] = UNSET
|
|
80
81
|
tag: Union[Unset, str] = UNSET
|
|
81
82
|
paused_until: Union[Unset, datetime.datetime] = UNSET
|
|
83
|
+
cron_version: Union[Unset, str] = UNSET
|
|
82
84
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
83
85
|
|
|
84
86
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -129,6 +131,8 @@ class GetScheduleResponse200:
|
|
|
129
131
|
if not isinstance(self.paused_until, Unset):
|
|
130
132
|
paused_until = self.paused_until.isoformat()
|
|
131
133
|
|
|
134
|
+
cron_version = self.cron_version
|
|
135
|
+
|
|
132
136
|
field_dict: Dict[str, Any] = {}
|
|
133
137
|
field_dict.update(self.additional_properties)
|
|
134
138
|
field_dict.update(
|
|
@@ -179,6 +183,8 @@ class GetScheduleResponse200:
|
|
|
179
183
|
field_dict["tag"] = tag
|
|
180
184
|
if paused_until is not UNSET:
|
|
181
185
|
field_dict["paused_until"] = paused_until
|
|
186
|
+
if cron_version is not UNSET:
|
|
187
|
+
field_dict["cron_version"] = cron_version
|
|
182
188
|
|
|
183
189
|
return field_dict
|
|
184
190
|
|
|
@@ -276,6 +282,8 @@ class GetScheduleResponse200:
|
|
|
276
282
|
else:
|
|
277
283
|
paused_until = isoparse(_paused_until)
|
|
278
284
|
|
|
285
|
+
cron_version = d.pop("cron_version", UNSET)
|
|
286
|
+
|
|
279
287
|
get_schedule_response_200 = cls(
|
|
280
288
|
path=path,
|
|
281
289
|
edited_by=edited_by,
|
|
@@ -304,6 +312,7 @@ class GetScheduleResponse200:
|
|
|
304
312
|
no_flow_overlap=no_flow_overlap,
|
|
305
313
|
tag=tag,
|
|
306
314
|
paused_until=paused_until,
|
|
315
|
+
cron_version=cron_version,
|
|
307
316
|
)
|
|
308
317
|
|
|
309
318
|
get_schedule_response_200.additional_properties = d
|
|
@@ -17,6 +17,7 @@ class GlobalUserInfo:
|
|
|
17
17
|
login_type (GlobalUserInfoLoginType):
|
|
18
18
|
super_admin (bool):
|
|
19
19
|
verified (bool):
|
|
20
|
+
devops (Union[Unset, bool]):
|
|
20
21
|
name (Union[Unset, str]):
|
|
21
22
|
company (Union[Unset, str]):
|
|
22
23
|
username (Union[Unset, str]):
|
|
@@ -27,6 +28,7 @@ class GlobalUserInfo:
|
|
|
27
28
|
login_type: GlobalUserInfoLoginType
|
|
28
29
|
super_admin: bool
|
|
29
30
|
verified: bool
|
|
31
|
+
devops: Union[Unset, bool] = UNSET
|
|
30
32
|
name: Union[Unset, str] = UNSET
|
|
31
33
|
company: Union[Unset, str] = UNSET
|
|
32
34
|
username: Union[Unset, str] = UNSET
|
|
@@ -39,6 +41,7 @@ class GlobalUserInfo:
|
|
|
39
41
|
|
|
40
42
|
super_admin = self.super_admin
|
|
41
43
|
verified = self.verified
|
|
44
|
+
devops = self.devops
|
|
42
45
|
name = self.name
|
|
43
46
|
company = self.company
|
|
44
47
|
username = self.username
|
|
@@ -54,6 +57,8 @@ class GlobalUserInfo:
|
|
|
54
57
|
"verified": verified,
|
|
55
58
|
}
|
|
56
59
|
)
|
|
60
|
+
if devops is not UNSET:
|
|
61
|
+
field_dict["devops"] = devops
|
|
57
62
|
if name is not UNSET:
|
|
58
63
|
field_dict["name"] = name
|
|
59
64
|
if company is not UNSET:
|
|
@@ -76,6 +81,8 @@ class GlobalUserInfo:
|
|
|
76
81
|
|
|
77
82
|
verified = d.pop("verified")
|
|
78
83
|
|
|
84
|
+
devops = d.pop("devops", UNSET)
|
|
85
|
+
|
|
79
86
|
name = d.pop("name", UNSET)
|
|
80
87
|
|
|
81
88
|
company = d.pop("company", UNSET)
|
|
@@ -89,6 +96,7 @@ class GlobalUserInfo:
|
|
|
89
96
|
login_type=login_type,
|
|
90
97
|
super_admin=super_admin,
|
|
91
98
|
verified=verified,
|
|
99
|
+
devops=devops,
|
|
92
100
|
name=name,
|
|
93
101
|
company=company,
|
|
94
102
|
username=username,
|
|
@@ -13,15 +13,18 @@ class GlobalUserUpdateJsonBody:
|
|
|
13
13
|
"""
|
|
14
14
|
Attributes:
|
|
15
15
|
is_super_admin (Union[Unset, bool]):
|
|
16
|
+
is_devops (Union[Unset, bool]):
|
|
16
17
|
name (Union[Unset, str]):
|
|
17
18
|
"""
|
|
18
19
|
|
|
19
20
|
is_super_admin: Union[Unset, bool] = UNSET
|
|
21
|
+
is_devops: Union[Unset, bool] = UNSET
|
|
20
22
|
name: Union[Unset, str] = UNSET
|
|
21
23
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
22
24
|
|
|
23
25
|
def to_dict(self) -> Dict[str, Any]:
|
|
24
26
|
is_super_admin = self.is_super_admin
|
|
27
|
+
is_devops = self.is_devops
|
|
25
28
|
name = self.name
|
|
26
29
|
|
|
27
30
|
field_dict: Dict[str, Any] = {}
|
|
@@ -29,6 +32,8 @@ class GlobalUserUpdateJsonBody:
|
|
|
29
32
|
field_dict.update({})
|
|
30
33
|
if is_super_admin is not UNSET:
|
|
31
34
|
field_dict["is_super_admin"] = is_super_admin
|
|
35
|
+
if is_devops is not UNSET:
|
|
36
|
+
field_dict["is_devops"] = is_devops
|
|
32
37
|
if name is not UNSET:
|
|
33
38
|
field_dict["name"] = name
|
|
34
39
|
|
|
@@ -39,10 +44,13 @@ class GlobalUserUpdateJsonBody:
|
|
|
39
44
|
d = src_dict.copy()
|
|
40
45
|
is_super_admin = d.pop("is_super_admin", UNSET)
|
|
41
46
|
|
|
47
|
+
is_devops = d.pop("is_devops", UNSET)
|
|
48
|
+
|
|
42
49
|
name = d.pop("name", UNSET)
|
|
43
50
|
|
|
44
51
|
global_user_update_json_body = cls(
|
|
45
52
|
is_super_admin=is_super_admin,
|
|
53
|
+
is_devops=is_devops,
|
|
46
54
|
name=name,
|
|
47
55
|
)
|
|
48
56
|
|
|
@@ -17,6 +17,7 @@ class GlobalWhoamiResponse200:
|
|
|
17
17
|
login_type (GlobalWhoamiResponse200LoginType):
|
|
18
18
|
super_admin (bool):
|
|
19
19
|
verified (bool):
|
|
20
|
+
devops (Union[Unset, bool]):
|
|
20
21
|
name (Union[Unset, str]):
|
|
21
22
|
company (Union[Unset, str]):
|
|
22
23
|
username (Union[Unset, str]):
|
|
@@ -27,6 +28,7 @@ class GlobalWhoamiResponse200:
|
|
|
27
28
|
login_type: GlobalWhoamiResponse200LoginType
|
|
28
29
|
super_admin: bool
|
|
29
30
|
verified: bool
|
|
31
|
+
devops: Union[Unset, bool] = UNSET
|
|
30
32
|
name: Union[Unset, str] = UNSET
|
|
31
33
|
company: Union[Unset, str] = UNSET
|
|
32
34
|
username: Union[Unset, str] = UNSET
|
|
@@ -39,6 +41,7 @@ class GlobalWhoamiResponse200:
|
|
|
39
41
|
|
|
40
42
|
super_admin = self.super_admin
|
|
41
43
|
verified = self.verified
|
|
44
|
+
devops = self.devops
|
|
42
45
|
name = self.name
|
|
43
46
|
company = self.company
|
|
44
47
|
username = self.username
|
|
@@ -54,6 +57,8 @@ class GlobalWhoamiResponse200:
|
|
|
54
57
|
"verified": verified,
|
|
55
58
|
}
|
|
56
59
|
)
|
|
60
|
+
if devops is not UNSET:
|
|
61
|
+
field_dict["devops"] = devops
|
|
57
62
|
if name is not UNSET:
|
|
58
63
|
field_dict["name"] = name
|
|
59
64
|
if company is not UNSET:
|
|
@@ -76,6 +81,8 @@ class GlobalWhoamiResponse200:
|
|
|
76
81
|
|
|
77
82
|
verified = d.pop("verified")
|
|
78
83
|
|
|
84
|
+
devops = d.pop("devops", UNSET)
|
|
85
|
+
|
|
79
86
|
name = d.pop("name", UNSET)
|
|
80
87
|
|
|
81
88
|
company = d.pop("company", UNSET)
|
|
@@ -89,6 +96,7 @@ class GlobalWhoamiResponse200:
|
|
|
89
96
|
login_type=login_type,
|
|
90
97
|
super_admin=super_admin,
|
|
91
98
|
verified=verified,
|
|
99
|
+
devops=devops,
|
|
92
100
|
name=name,
|
|
93
101
|
company=company,
|
|
94
102
|
username=username,
|
|
@@ -56,6 +56,7 @@ class ListSchedulesResponse200Item:
|
|
|
56
56
|
no_flow_overlap (Union[Unset, bool]):
|
|
57
57
|
tag (Union[Unset, str]):
|
|
58
58
|
paused_until (Union[Unset, datetime.datetime]):
|
|
59
|
+
cron_version (Union[Unset, str]):
|
|
59
60
|
"""
|
|
60
61
|
|
|
61
62
|
path: str
|
|
@@ -85,6 +86,7 @@ class ListSchedulesResponse200Item:
|
|
|
85
86
|
no_flow_overlap: Union[Unset, bool] = UNSET
|
|
86
87
|
tag: Union[Unset, str] = UNSET
|
|
87
88
|
paused_until: Union[Unset, datetime.datetime] = UNSET
|
|
89
|
+
cron_version: Union[Unset, str] = UNSET
|
|
88
90
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
89
91
|
|
|
90
92
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -135,6 +137,8 @@ class ListSchedulesResponse200Item:
|
|
|
135
137
|
if not isinstance(self.paused_until, Unset):
|
|
136
138
|
paused_until = self.paused_until.isoformat()
|
|
137
139
|
|
|
140
|
+
cron_version = self.cron_version
|
|
141
|
+
|
|
138
142
|
field_dict: Dict[str, Any] = {}
|
|
139
143
|
field_dict.update(self.additional_properties)
|
|
140
144
|
field_dict.update(
|
|
@@ -185,6 +189,8 @@ class ListSchedulesResponse200Item:
|
|
|
185
189
|
field_dict["tag"] = tag
|
|
186
190
|
if paused_until is not UNSET:
|
|
187
191
|
field_dict["paused_until"] = paused_until
|
|
192
|
+
if cron_version is not UNSET:
|
|
193
|
+
field_dict["cron_version"] = cron_version
|
|
188
194
|
|
|
189
195
|
return field_dict
|
|
190
196
|
|
|
@@ -288,6 +294,8 @@ class ListSchedulesResponse200Item:
|
|
|
288
294
|
else:
|
|
289
295
|
paused_until = isoparse(_paused_until)
|
|
290
296
|
|
|
297
|
+
cron_version = d.pop("cron_version", UNSET)
|
|
298
|
+
|
|
291
299
|
list_schedules_response_200_item = cls(
|
|
292
300
|
path=path,
|
|
293
301
|
edited_by=edited_by,
|
|
@@ -316,6 +324,7 @@ class ListSchedulesResponse200Item:
|
|
|
316
324
|
no_flow_overlap=no_flow_overlap,
|
|
317
325
|
tag=tag,
|
|
318
326
|
paused_until=paused_until,
|
|
327
|
+
cron_version=cron_version,
|
|
319
328
|
)
|
|
320
329
|
|
|
321
330
|
list_schedules_response_200_item.additional_properties = d
|
|
@@ -61,6 +61,7 @@ class ListSchedulesWithJobsResponse200Item:
|
|
|
61
61
|
no_flow_overlap (Union[Unset, bool]):
|
|
62
62
|
tag (Union[Unset, str]):
|
|
63
63
|
paused_until (Union[Unset, datetime.datetime]):
|
|
64
|
+
cron_version (Union[Unset, str]):
|
|
64
65
|
jobs (Union[Unset, List['ListSchedulesWithJobsResponse200ItemJobsItem']]):
|
|
65
66
|
"""
|
|
66
67
|
|
|
@@ -91,6 +92,7 @@ class ListSchedulesWithJobsResponse200Item:
|
|
|
91
92
|
no_flow_overlap: Union[Unset, bool] = UNSET
|
|
92
93
|
tag: Union[Unset, str] = UNSET
|
|
93
94
|
paused_until: Union[Unset, datetime.datetime] = UNSET
|
|
95
|
+
cron_version: Union[Unset, str] = UNSET
|
|
94
96
|
jobs: Union[Unset, List["ListSchedulesWithJobsResponse200ItemJobsItem"]] = UNSET
|
|
95
97
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
96
98
|
|
|
@@ -142,6 +144,7 @@ class ListSchedulesWithJobsResponse200Item:
|
|
|
142
144
|
if not isinstance(self.paused_until, Unset):
|
|
143
145
|
paused_until = self.paused_until.isoformat()
|
|
144
146
|
|
|
147
|
+
cron_version = self.cron_version
|
|
145
148
|
jobs: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
146
149
|
if not isinstance(self.jobs, Unset):
|
|
147
150
|
jobs = []
|
|
@@ -200,6 +203,8 @@ class ListSchedulesWithJobsResponse200Item:
|
|
|
200
203
|
field_dict["tag"] = tag
|
|
201
204
|
if paused_until is not UNSET:
|
|
202
205
|
field_dict["paused_until"] = paused_until
|
|
206
|
+
if cron_version is not UNSET:
|
|
207
|
+
field_dict["cron_version"] = cron_version
|
|
203
208
|
if jobs is not UNSET:
|
|
204
209
|
field_dict["jobs"] = jobs
|
|
205
210
|
|
|
@@ -316,6 +321,8 @@ class ListSchedulesWithJobsResponse200Item:
|
|
|
316
321
|
else:
|
|
317
322
|
paused_until = isoparse(_paused_until)
|
|
318
323
|
|
|
324
|
+
cron_version = d.pop("cron_version", UNSET)
|
|
325
|
+
|
|
319
326
|
jobs = []
|
|
320
327
|
_jobs = d.pop("jobs", UNSET)
|
|
321
328
|
for jobs_item_data in _jobs or []:
|
|
@@ -351,6 +358,7 @@ class ListSchedulesWithJobsResponse200Item:
|
|
|
351
358
|
no_flow_overlap=no_flow_overlap,
|
|
352
359
|
tag=tag,
|
|
353
360
|
paused_until=paused_until,
|
|
361
|
+
cron_version=cron_version,
|
|
354
362
|
jobs=jobs,
|
|
355
363
|
)
|
|
356
364
|
|
|
@@ -19,6 +19,7 @@ class ListUsersAsSuperAdminResponse200Item:
|
|
|
19
19
|
login_type (ListUsersAsSuperAdminResponse200ItemLoginType):
|
|
20
20
|
super_admin (bool):
|
|
21
21
|
verified (bool):
|
|
22
|
+
devops (Union[Unset, bool]):
|
|
22
23
|
name (Union[Unset, str]):
|
|
23
24
|
company (Union[Unset, str]):
|
|
24
25
|
username (Union[Unset, str]):
|
|
@@ -29,6 +30,7 @@ class ListUsersAsSuperAdminResponse200Item:
|
|
|
29
30
|
login_type: ListUsersAsSuperAdminResponse200ItemLoginType
|
|
30
31
|
super_admin: bool
|
|
31
32
|
verified: bool
|
|
33
|
+
devops: Union[Unset, bool] = UNSET
|
|
32
34
|
name: Union[Unset, str] = UNSET
|
|
33
35
|
company: Union[Unset, str] = UNSET
|
|
34
36
|
username: Union[Unset, str] = UNSET
|
|
@@ -41,6 +43,7 @@ class ListUsersAsSuperAdminResponse200Item:
|
|
|
41
43
|
|
|
42
44
|
super_admin = self.super_admin
|
|
43
45
|
verified = self.verified
|
|
46
|
+
devops = self.devops
|
|
44
47
|
name = self.name
|
|
45
48
|
company = self.company
|
|
46
49
|
username = self.username
|
|
@@ -56,6 +59,8 @@ class ListUsersAsSuperAdminResponse200Item:
|
|
|
56
59
|
"verified": verified,
|
|
57
60
|
}
|
|
58
61
|
)
|
|
62
|
+
if devops is not UNSET:
|
|
63
|
+
field_dict["devops"] = devops
|
|
59
64
|
if name is not UNSET:
|
|
60
65
|
field_dict["name"] = name
|
|
61
66
|
if company is not UNSET:
|
|
@@ -78,6 +83,8 @@ class ListUsersAsSuperAdminResponse200Item:
|
|
|
78
83
|
|
|
79
84
|
verified = d.pop("verified")
|
|
80
85
|
|
|
86
|
+
devops = d.pop("devops", UNSET)
|
|
87
|
+
|
|
81
88
|
name = d.pop("name", UNSET)
|
|
82
89
|
|
|
83
90
|
company = d.pop("company", UNSET)
|
|
@@ -91,6 +98,7 @@ class ListUsersAsSuperAdminResponse200Item:
|
|
|
91
98
|
login_type=login_type,
|
|
92
99
|
super_admin=super_admin,
|
|
93
100
|
verified=verified,
|
|
101
|
+
devops=devops,
|
|
94
102
|
name=name,
|
|
95
103
|
company=company,
|
|
96
104
|
username=username,
|
|
@@ -44,6 +44,7 @@ class NewSchedule:
|
|
|
44
44
|
summary (Union[Unset, str]):
|
|
45
45
|
tag (Union[Unset, str]):
|
|
46
46
|
paused_until (Union[Unset, datetime.datetime]):
|
|
47
|
+
cron_version (Union[Unset, str]):
|
|
47
48
|
"""
|
|
48
49
|
|
|
49
50
|
path: str
|
|
@@ -68,6 +69,7 @@ class NewSchedule:
|
|
|
68
69
|
summary: Union[Unset, str] = UNSET
|
|
69
70
|
tag: Union[Unset, str] = UNSET
|
|
70
71
|
paused_until: Union[Unset, datetime.datetime] = UNSET
|
|
72
|
+
cron_version: Union[Unset, str] = UNSET
|
|
71
73
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
72
74
|
|
|
73
75
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -109,6 +111,8 @@ class NewSchedule:
|
|
|
109
111
|
if not isinstance(self.paused_until, Unset):
|
|
110
112
|
paused_until = self.paused_until.isoformat()
|
|
111
113
|
|
|
114
|
+
cron_version = self.cron_version
|
|
115
|
+
|
|
112
116
|
field_dict: Dict[str, Any] = {}
|
|
113
117
|
field_dict.update(self.additional_properties)
|
|
114
118
|
field_dict.update(
|
|
@@ -153,6 +157,8 @@ class NewSchedule:
|
|
|
153
157
|
field_dict["tag"] = tag
|
|
154
158
|
if paused_until is not UNSET:
|
|
155
159
|
field_dict["paused_until"] = paused_until
|
|
160
|
+
if cron_version is not UNSET:
|
|
161
|
+
field_dict["cron_version"] = cron_version
|
|
156
162
|
|
|
157
163
|
return field_dict
|
|
158
164
|
|
|
@@ -234,6 +240,8 @@ class NewSchedule:
|
|
|
234
240
|
else:
|
|
235
241
|
paused_until = isoparse(_paused_until)
|
|
236
242
|
|
|
243
|
+
cron_version = d.pop("cron_version", UNSET)
|
|
244
|
+
|
|
237
245
|
new_schedule = cls(
|
|
238
246
|
path=path,
|
|
239
247
|
schedule=schedule,
|
|
@@ -257,6 +265,7 @@ class NewSchedule:
|
|
|
257
265
|
summary=summary,
|
|
258
266
|
tag=tag,
|
|
259
267
|
paused_until=paused_until,
|
|
268
|
+
cron_version=cron_version,
|
|
260
269
|
)
|
|
261
270
|
|
|
262
271
|
new_schedule.additional_properties = d
|
|
@@ -1,8 +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
|
+
from ..types import UNSET, Unset
|
|
7
|
+
|
|
6
8
|
T = TypeVar("T", bound="PreviewScheduleJsonBody")
|
|
7
9
|
|
|
8
10
|
|
|
@@ -12,15 +14,18 @@ class PreviewScheduleJsonBody:
|
|
|
12
14
|
Attributes:
|
|
13
15
|
schedule (str):
|
|
14
16
|
timezone (str):
|
|
17
|
+
cron_version (Union[Unset, str]):
|
|
15
18
|
"""
|
|
16
19
|
|
|
17
20
|
schedule: str
|
|
18
21
|
timezone: str
|
|
22
|
+
cron_version: Union[Unset, str] = UNSET
|
|
19
23
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
20
24
|
|
|
21
25
|
def to_dict(self) -> Dict[str, Any]:
|
|
22
26
|
schedule = self.schedule
|
|
23
27
|
timezone = self.timezone
|
|
28
|
+
cron_version = self.cron_version
|
|
24
29
|
|
|
25
30
|
field_dict: Dict[str, Any] = {}
|
|
26
31
|
field_dict.update(self.additional_properties)
|
|
@@ -30,6 +35,8 @@ class PreviewScheduleJsonBody:
|
|
|
30
35
|
"timezone": timezone,
|
|
31
36
|
}
|
|
32
37
|
)
|
|
38
|
+
if cron_version is not UNSET:
|
|
39
|
+
field_dict["cron_version"] = cron_version
|
|
33
40
|
|
|
34
41
|
return field_dict
|
|
35
42
|
|
|
@@ -40,9 +47,12 @@ class PreviewScheduleJsonBody:
|
|
|
40
47
|
|
|
41
48
|
timezone = d.pop("timezone")
|
|
42
49
|
|
|
50
|
+
cron_version = d.pop("cron_version", UNSET)
|
|
51
|
+
|
|
43
52
|
preview_schedule_json_body = cls(
|
|
44
53
|
schedule=schedule,
|
|
45
54
|
timezone=timezone,
|
|
55
|
+
cron_version=cron_version,
|
|
46
56
|
)
|
|
47
57
|
|
|
48
58
|
preview_schedule_json_body.additional_properties = d
|
windmill_api/models/schedule.py
CHANGED
|
@@ -50,6 +50,7 @@ class Schedule:
|
|
|
50
50
|
no_flow_overlap (Union[Unset, bool]):
|
|
51
51
|
tag (Union[Unset, str]):
|
|
52
52
|
paused_until (Union[Unset, datetime.datetime]):
|
|
53
|
+
cron_version (Union[Unset, str]):
|
|
53
54
|
"""
|
|
54
55
|
|
|
55
56
|
path: str
|
|
@@ -79,6 +80,7 @@ class Schedule:
|
|
|
79
80
|
no_flow_overlap: Union[Unset, bool] = UNSET
|
|
80
81
|
tag: Union[Unset, str] = UNSET
|
|
81
82
|
paused_until: Union[Unset, datetime.datetime] = UNSET
|
|
83
|
+
cron_version: Union[Unset, str] = UNSET
|
|
82
84
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
83
85
|
|
|
84
86
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -129,6 +131,8 @@ class Schedule:
|
|
|
129
131
|
if not isinstance(self.paused_until, Unset):
|
|
130
132
|
paused_until = self.paused_until.isoformat()
|
|
131
133
|
|
|
134
|
+
cron_version = self.cron_version
|
|
135
|
+
|
|
132
136
|
field_dict: Dict[str, Any] = {}
|
|
133
137
|
field_dict.update(self.additional_properties)
|
|
134
138
|
field_dict.update(
|
|
@@ -179,6 +183,8 @@ class Schedule:
|
|
|
179
183
|
field_dict["tag"] = tag
|
|
180
184
|
if paused_until is not UNSET:
|
|
181
185
|
field_dict["paused_until"] = paused_until
|
|
186
|
+
if cron_version is not UNSET:
|
|
187
|
+
field_dict["cron_version"] = cron_version
|
|
182
188
|
|
|
183
189
|
return field_dict
|
|
184
190
|
|
|
@@ -276,6 +282,8 @@ class Schedule:
|
|
|
276
282
|
else:
|
|
277
283
|
paused_until = isoparse(_paused_until)
|
|
278
284
|
|
|
285
|
+
cron_version = d.pop("cron_version", UNSET)
|
|
286
|
+
|
|
279
287
|
schedule = cls(
|
|
280
288
|
path=path,
|
|
281
289
|
edited_by=edited_by,
|
|
@@ -304,6 +312,7 @@ class Schedule:
|
|
|
304
312
|
no_flow_overlap=no_flow_overlap,
|
|
305
313
|
tag=tag,
|
|
306
314
|
paused_until=paused_until,
|
|
315
|
+
cron_version=cron_version,
|
|
307
316
|
)
|
|
308
317
|
|
|
309
318
|
schedule.additional_properties = d
|
|
@@ -51,6 +51,7 @@ class ScheduleWJobs:
|
|
|
51
51
|
no_flow_overlap (Union[Unset, bool]):
|
|
52
52
|
tag (Union[Unset, str]):
|
|
53
53
|
paused_until (Union[Unset, datetime.datetime]):
|
|
54
|
+
cron_version (Union[Unset, str]):
|
|
54
55
|
jobs (Union[Unset, List['ScheduleWJobsJobsItem']]):
|
|
55
56
|
"""
|
|
56
57
|
|
|
@@ -81,6 +82,7 @@ class ScheduleWJobs:
|
|
|
81
82
|
no_flow_overlap: Union[Unset, bool] = UNSET
|
|
82
83
|
tag: Union[Unset, str] = UNSET
|
|
83
84
|
paused_until: Union[Unset, datetime.datetime] = UNSET
|
|
85
|
+
cron_version: Union[Unset, str] = UNSET
|
|
84
86
|
jobs: Union[Unset, List["ScheduleWJobsJobsItem"]] = UNSET
|
|
85
87
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
86
88
|
|
|
@@ -132,6 +134,7 @@ class ScheduleWJobs:
|
|
|
132
134
|
if not isinstance(self.paused_until, Unset):
|
|
133
135
|
paused_until = self.paused_until.isoformat()
|
|
134
136
|
|
|
137
|
+
cron_version = self.cron_version
|
|
135
138
|
jobs: Union[Unset, List[Dict[str, Any]]] = UNSET
|
|
136
139
|
if not isinstance(self.jobs, Unset):
|
|
137
140
|
jobs = []
|
|
@@ -190,6 +193,8 @@ class ScheduleWJobs:
|
|
|
190
193
|
field_dict["tag"] = tag
|
|
191
194
|
if paused_until is not UNSET:
|
|
192
195
|
field_dict["paused_until"] = paused_until
|
|
196
|
+
if cron_version is not UNSET:
|
|
197
|
+
field_dict["cron_version"] = cron_version
|
|
193
198
|
if jobs is not UNSET:
|
|
194
199
|
field_dict["jobs"] = jobs
|
|
195
200
|
|
|
@@ -290,6 +295,8 @@ class ScheduleWJobs:
|
|
|
290
295
|
else:
|
|
291
296
|
paused_until = isoparse(_paused_until)
|
|
292
297
|
|
|
298
|
+
cron_version = d.pop("cron_version", UNSET)
|
|
299
|
+
|
|
293
300
|
jobs = []
|
|
294
301
|
_jobs = d.pop("jobs", UNSET)
|
|
295
302
|
for jobs_item_data in _jobs or []:
|
|
@@ -325,6 +332,7 @@ class ScheduleWJobs:
|
|
|
325
332
|
no_flow_overlap=no_flow_overlap,
|
|
326
333
|
tag=tag,
|
|
327
334
|
paused_until=paused_until,
|
|
335
|
+
cron_version=cron_version,
|
|
328
336
|
jobs=jobs,
|
|
329
337
|
)
|
|
330
338
|
|
|
@@ -40,6 +40,7 @@ class UpdateScheduleJsonBody:
|
|
|
40
40
|
summary (Union[Unset, str]):
|
|
41
41
|
tag (Union[Unset, str]):
|
|
42
42
|
paused_until (Union[Unset, datetime.datetime]):
|
|
43
|
+
cron_version (Union[Unset, str]):
|
|
43
44
|
"""
|
|
44
45
|
|
|
45
46
|
schedule: str
|
|
@@ -60,6 +61,7 @@ class UpdateScheduleJsonBody:
|
|
|
60
61
|
summary: Union[Unset, str] = UNSET
|
|
61
62
|
tag: Union[Unset, str] = UNSET
|
|
62
63
|
paused_until: Union[Unset, datetime.datetime] = UNSET
|
|
64
|
+
cron_version: Union[Unset, str] = UNSET
|
|
63
65
|
additional_properties: Dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
64
66
|
|
|
65
67
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -97,6 +99,8 @@ class UpdateScheduleJsonBody:
|
|
|
97
99
|
if not isinstance(self.paused_until, Unset):
|
|
98
100
|
paused_until = self.paused_until.isoformat()
|
|
99
101
|
|
|
102
|
+
cron_version = self.cron_version
|
|
103
|
+
|
|
100
104
|
field_dict: Dict[str, Any] = {}
|
|
101
105
|
field_dict.update(self.additional_properties)
|
|
102
106
|
field_dict.update(
|
|
@@ -136,6 +140,8 @@ class UpdateScheduleJsonBody:
|
|
|
136
140
|
field_dict["tag"] = tag
|
|
137
141
|
if paused_until is not UNSET:
|
|
138
142
|
field_dict["paused_until"] = paused_until
|
|
143
|
+
if cron_version is not UNSET:
|
|
144
|
+
field_dict["cron_version"] = cron_version
|
|
139
145
|
|
|
140
146
|
return field_dict
|
|
141
147
|
|
|
@@ -209,6 +215,8 @@ class UpdateScheduleJsonBody:
|
|
|
209
215
|
else:
|
|
210
216
|
paused_until = isoparse(_paused_until)
|
|
211
217
|
|
|
218
|
+
cron_version = d.pop("cron_version", UNSET)
|
|
219
|
+
|
|
212
220
|
update_schedule_json_body = cls(
|
|
213
221
|
schedule=schedule,
|
|
214
222
|
timezone=timezone,
|
|
@@ -228,6 +236,7 @@ class UpdateScheduleJsonBody:
|
|
|
228
236
|
summary=summary,
|
|
229
237
|
tag=tag,
|
|
230
238
|
paused_until=paused_until,
|
|
239
|
+
cron_version=cron_version,
|
|
231
240
|
)
|
|
232
241
|
|
|
233
242
|
update_schedule_json_body.additional_properties = d
|
|
@@ -653,7 +653,7 @@ windmill_api/models/create_raw_app_json_body.py,sha256=wYeY4VLAOZQau1AV3nMoQXJ-t
|
|
|
653
653
|
windmill_api/models/create_resource.py,sha256=uq25CukTBkLOFwV_E_VMgQpQRTIeQPN-AMFjf2zC0dE,2157
|
|
654
654
|
windmill_api/models/create_resource_json_body.py,sha256=D6hvc7C6FQZQ2i3-R14o6SwDf0bD-E-pXRp6X-2WeJs,2203
|
|
655
655
|
windmill_api/models/create_resource_type_json_body.py,sha256=TWgUTZYgfhsWix-8-ufRisWIcuAuQZk_rfuzCogGtg4,3696
|
|
656
|
-
windmill_api/models/create_schedule_json_body.py,sha256=
|
|
656
|
+
windmill_api/models/create_schedule_json_body.py,sha256=WdKVvh8Nk9RhO_lXPjbh71lNJ5moka5HfyG5VlqdVyE,11504
|
|
657
657
|
windmill_api/models/create_schedule_json_body_args.py,sha256=xexPULqLst44XhW62yplhvgRaofyVFlyEr1gmTx8pBw,1294
|
|
658
658
|
windmill_api/models/create_schedule_json_body_on_failure_extra_args.py,sha256=l6i0pPhHps6fC8I7uimNWkpGoedWiD7I2YCdrGt35W0,1373
|
|
659
659
|
windmill_api/models/create_schedule_json_body_on_recovery_extra_args.py,sha256=vyNMV80mCKivFaw-nKg9uXuZUMs-VbHk5iPc28stYGo,1378
|
|
@@ -798,7 +798,7 @@ windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_
|
|
|
798
798
|
windmill_api/models/edit_large_file_storage_config_json_body_large_file_storage_type.py,sha256=pIs4SBUn5uRSteqxIDtD4ng3AquQJMJKDnXNZ8Q_t8s,309
|
|
799
799
|
windmill_api/models/edit_resource.py,sha256=JQbqNlgXOkXhqPY6KAQTnmcAL8XHclhSWrM02T3ZneQ,2043
|
|
800
800
|
windmill_api/models/edit_resource_type.py,sha256=V-qh9KIrpKW4fKPJa1rGicustzLEFmRPb3UXrp0Ox_Y,1854
|
|
801
|
-
windmill_api/models/edit_schedule.py,sha256=
|
|
801
|
+
windmill_api/models/edit_schedule.py,sha256=sN_YWc3qeS6n4J4EoMCbV6FQ4pwn56gYOMEatR27wJc,10252
|
|
802
802
|
windmill_api/models/edit_schedule_args.py,sha256=4GSGw6_ZRPdVfqGWyI6pKma6wAsl-JK5jO6olQN-ATc,1238
|
|
803
803
|
windmill_api/models/edit_schedule_on_failure_extra_args.py,sha256=fhEqXbAgx58agwx6beOnyLHThjdi92-VQb46-O2cnlA,1317
|
|
804
804
|
windmill_api/models/edit_schedule_on_recovery_extra_args.py,sha256=c-SkOCLaHY8Hw22qbJtpsgTrDtQ1ZEuvaxPt-yWy9nE,1322
|
|
@@ -1884,7 +1884,7 @@ windmill_api/models/get_resource_response_200_extra_perms.py,sha256=Jz3HpCWYu66O
|
|
|
1884
1884
|
windmill_api/models/get_resource_type_response_200.py,sha256=l1sB7JyUt_kBIvhp4mS7secuxXTBHPC8h8ykocdTGbw,3696
|
|
1885
1885
|
windmill_api/models/get_resume_urls_response_200.py,sha256=r42fFDXyfNMnb26krhd0Xs1bjUGcn2x7e1soPezDnHI,1903
|
|
1886
1886
|
windmill_api/models/get_runnable_response_200.py,sha256=wyWCK9C4w7FjFMyA279FX6s5KjrF5W5WJeG_7VO5OzU,2959
|
|
1887
|
-
windmill_api/models/get_schedule_response_200.py,sha256=
|
|
1887
|
+
windmill_api/models/get_schedule_response_200.py,sha256=acObOLc2bvcIWu_qXNVj-stgB9xBHDmLRsiaSFs6gtI,13102
|
|
1888
1888
|
windmill_api/models/get_schedule_response_200_args.py,sha256=8VqRJEvhSZ-SpHtmOHDIjfVDrDE3VXrxcTzsc5beAnk,1294
|
|
1889
1889
|
windmill_api/models/get_schedule_response_200_extra_perms.py,sha256=lTEosXrkVdFc32ntuzW8KOB4Fi3aDa25tpZjbnVYLiY,1330
|
|
1890
1890
|
windmill_api/models/get_schedule_response_200_on_failure_extra_args.py,sha256=QAb8cPl0MLvANnu_-efqmOMsQ1cOLtj3nedLEcWKtys,1373
|
|
@@ -2128,15 +2128,15 @@ windmill_api/models/git_repository_settings.py,sha256=tO-Ggwbyvy4tiGGeIcgku8QNXX
|
|
|
2128
2128
|
windmill_api/models/git_repository_settings_exclude_types_override_item.py,sha256=DQ-AVOKWRRJi91UeocbmbxGgcUrpdkpHb8jzMk1dHNI,400
|
|
2129
2129
|
windmill_api/models/global_setting.py,sha256=NZxAwAz5Rh8LMvpHqRAaVZhF0-cXR9897d1lyNrXeTU,1821
|
|
2130
2130
|
windmill_api/models/global_setting_value.py,sha256=iNYDija5EzLJMOATmSzfaW54v5ijJS8ZWPkVDiMncb4,1248
|
|
2131
|
-
windmill_api/models/global_user_info.py,sha256=
|
|
2131
|
+
windmill_api/models/global_user_info.py,sha256=D3kaOE7wQCZInXfDjWZUInpzwhnZvrK75Rps2f1tIwA,3548
|
|
2132
2132
|
windmill_api/models/global_user_info_login_type.py,sha256=tH-V57pP-V4cI1KyZghLrLLKGvwoWslebdS5q-FUP5k,176
|
|
2133
2133
|
windmill_api/models/global_user_rename_json_body.py,sha256=KcZdvFfNXshHS4QX0DkrJdtxLDlIpy0Ecvik2IQPlNk,1571
|
|
2134
|
-
windmill_api/models/global_user_update_json_body.py,sha256=
|
|
2134
|
+
windmill_api/models/global_user_update_json_body.py,sha256=xjt42BsLRcOQe6VZ89SDHfkKbOsMhLfz5kChkvWErfY,2193
|
|
2135
2135
|
windmill_api/models/global_username_info_response_200.py,sha256=jIP6ayJCkWfSYzVwM3E0GQRfkqOEfZ26gzh0eXGZ4Ug,2837
|
|
2136
2136
|
windmill_api/models/global_username_info_response_200_workspace_usernames_item.py,sha256=qkLgj-qbaQvgEzDcHleAQPCsfxWb4H35I759C6V7WfY,1897
|
|
2137
2137
|
windmill_api/models/global_users_export_response_200_item.py,sha256=yWcU445ZK5e0WE1AmA5O-fSCCN4selkj_vvHFX5osy0,3305
|
|
2138
2138
|
windmill_api/models/global_users_overwrite_json_body_item.py,sha256=vfxQAXvj-PD1wOzXfUcUlVOqgWfz6-IvfnFabfPAcIY,3305
|
|
2139
|
-
windmill_api/models/global_whoami_response_200.py,sha256
|
|
2139
|
+
windmill_api/models/global_whoami_response_200.py,sha256=P2YzOuDmowq7fAsrlFQnBgiMGoahZ0qn1TcPW6ylavI,3642
|
|
2140
2140
|
windmill_api/models/global_whoami_response_200_login_type.py,sha256=grlKtkJE27qxpXSUFBUoLo1-wQf45s82n_hoU7V7PaE,185
|
|
2141
2141
|
windmill_api/models/group.py,sha256=yEfHcI9FEtk1tV6RS9B3r_vAPK0rqNCCLgIJoLAUZ8M,2890
|
|
2142
2142
|
windmill_api/models/group_extra_perms.py,sha256=hn0wzgNVtx0HO3XwPsVOie8BJpV6-FypTN5u_851dvg,1236
|
|
@@ -2859,7 +2859,7 @@ windmill_api/models/list_resource_names_response_200_item.py,sha256=ULtoLuMk49by
|
|
|
2859
2859
|
windmill_api/models/list_resource_response_200_item.py,sha256=9tHyDSDj3cOsbty8BBkSubwtGkPGES1Db04uDK2zQMI,6042
|
|
2860
2860
|
windmill_api/models/list_resource_response_200_item_extra_perms.py,sha256=c-1xmXlqv1MB1h5GlCFd_vU8_dXp34c5CyPg_AjJG6o,1358
|
|
2861
2861
|
windmill_api/models/list_resource_type_response_200_item.py,sha256=IXzSx6xsoZotJjTTDQX7txBtcfVRkurJiLoKnAgn25k,3724
|
|
2862
|
-
windmill_api/models/list_schedules_response_200_item.py,sha256=
|
|
2862
|
+
windmill_api/models/list_schedules_response_200_item.py,sha256=g9Mp7Nx6cfK7_6l27g3wr1kNkYntKFZ1Gdb3wABOlKA,13555
|
|
2863
2863
|
windmill_api/models/list_schedules_response_200_item_args.py,sha256=QRBis38XPFT9CG21hICEMeHJmiZvKhFz7YXcsPaTM8o,1327
|
|
2864
2864
|
windmill_api/models/list_schedules_response_200_item_extra_perms.py,sha256=hmpIS0fwqB4YB4BIy7Q4jv3RftvWeJMIrhuOiw1T63Y,1363
|
|
2865
2865
|
windmill_api/models/list_schedules_response_200_item_on_failure_extra_args.py,sha256=N2heuxzqUCdPr8gygVURQA-wkNMQ5iJ1cOEqGer_kOk,1406
|
|
@@ -2868,7 +2868,7 @@ windmill_api/models/list_schedules_response_200_item_on_success_extra_args.py,sh
|
|
|
2868
2868
|
windmill_api/models/list_schedules_response_200_item_retry.py,sha256=kQibKPXpptnc92pFygW8iRVXufM35FcfYekAkuyomjM,3427
|
|
2869
2869
|
windmill_api/models/list_schedules_response_200_item_retry_constant.py,sha256=6Dc58PPTpln5bVoUg5bAYYL-8tm0-NQvmjkPC51LelI,1969
|
|
2870
2870
|
windmill_api/models/list_schedules_response_200_item_retry_exponential.py,sha256=vaDKRQVXU6gD8edkaZxgY9JH6wUyoe59N9afTkrYxIg,2595
|
|
2871
|
-
windmill_api/models/list_schedules_with_jobs_response_200_item.py,sha256=
|
|
2871
|
+
windmill_api/models/list_schedules_with_jobs_response_200_item.py,sha256=s4SLwrZJEvNXEwGCuT15OXhH6sJ3Zodq-LzkoT56RUY,15176
|
|
2872
2872
|
windmill_api/models/list_schedules_with_jobs_response_200_item_args.py,sha256=2YLmj4gUV7RlpfHi36I3p0DM-OaX8cFUyM8IgVeT8_0,1373
|
|
2873
2873
|
windmill_api/models/list_schedules_with_jobs_response_200_item_extra_perms.py,sha256=UM1nO3FWHQfUdSHprplUPIcua8ziuXlHWV17RQl2bR4,1409
|
|
2874
2874
|
windmill_api/models/list_schedules_with_jobs_response_200_item_jobs_item.py,sha256=rYL55feKruj416vEpc1VwIu6SC9oFZveluveYlOELAs,1973
|
|
@@ -2894,7 +2894,7 @@ windmill_api/models/list_tokens_of_script_response_200_item.py,sha256=GDIIhjLdBZ
|
|
|
2894
2894
|
windmill_api/models/list_tokens_response_200_item.py,sha256=5ve1lELULC7h0H7J8sLtR82BzSQpBqagwYhtmTCFgw8,3663
|
|
2895
2895
|
windmill_api/models/list_user_workspaces_response_200.py,sha256=BAnO9piWEGR53SaMdvy3EipJauC7VwRg3wxOrO2fJ6M,2504
|
|
2896
2896
|
windmill_api/models/list_user_workspaces_response_200_workspaces_item.py,sha256=h6S-3uZrb534lOUeubG-Zn-jUTeUwbWdwyo2p4dqCkg,1896
|
|
2897
|
-
windmill_api/models/list_users_as_super_admin_response_200_item.py,sha256=
|
|
2897
|
+
windmill_api/models/list_users_as_super_admin_response_200_item.py,sha256=4u3fB3qr3kMpGeCOhLNq0VwkEkMFZu-yMaenZCNRXWU,3797
|
|
2898
2898
|
windmill_api/models/list_users_as_super_admin_response_200_item_login_type.py,sha256=GqFojYh0I3SpWAhKpt5iup-ck8kMDmSapmBLjZ0XX8U,198
|
|
2899
2899
|
windmill_api/models/list_users_response_200_item.py,sha256=J7_wItdtNe1D2WiA4XrcnSC4RC1vNy2i8Oy1vlWPt1U,3679
|
|
2900
2900
|
windmill_api/models/list_users_usage_response_200_item.py,sha256=0ZKMktaSC_LTPolx1JXEEwINvWmf03Tl4OKSakKf6JU,1910
|
|
@@ -2949,7 +2949,7 @@ windmill_api/models/new_http_trigger.py,sha256=PmYQcP89S7lJoCFLo21Au4m81hq7Xspke
|
|
|
2949
2949
|
windmill_api/models/new_http_trigger_http_method.py,sha256=QlXmwmePd0Cd-Y571W4w5fj9o1Wxu6C3V5yBOrwHx7g,221
|
|
2950
2950
|
windmill_api/models/new_http_trigger_static_asset_config.py,sha256=5gdylsbIDInlQhTvrZ4nYnVGV6eHSmP6pb0So1S7Gi8,2073
|
|
2951
2951
|
windmill_api/models/new_kafka_trigger.py,sha256=SEJ2x9-xcrPA_d72mwWP6MRGwYcQc4h0u_bZZLgwm40,2797
|
|
2952
|
-
windmill_api/models/new_schedule.py,sha256=
|
|
2952
|
+
windmill_api/models/new_schedule.py,sha256=kUuhIGGJaExbsWbj3LmdYsVI5P-MAVNX6RD1E3y1Q_c,10994
|
|
2953
2953
|
windmill_api/models/new_schedule_args.py,sha256=-sH4kC_pDJHa1Ph1QY_FGP2QynNEHFwTwm0VuQpmyP0,1233
|
|
2954
2954
|
windmill_api/models/new_schedule_on_failure_extra_args.py,sha256=-5bhVRLv3sqYuMlNhQxwM8mdbz3f-wgU2_ztnmI9qlQ,1312
|
|
2955
2955
|
windmill_api/models/new_schedule_on_recovery_extra_args.py,sha256=KWugyzERwCD_k7XfWPiFS_P0BVFBbkjP8mu1gsfAGds,1317
|
|
@@ -3137,7 +3137,7 @@ windmill_api/models/preview.py,sha256=YV9pvL6ndog3Q4s_k2w2KIC4qpNLRFWxwXiVurkgTY
|
|
|
3137
3137
|
windmill_api/models/preview_args.py,sha256=pergmq0w5NrPUVb8G_M-MIIqW9rWmFGKY5lD4JTuapY,1210
|
|
3138
3138
|
windmill_api/models/preview_kind.py,sha256=NIaUNxPn0aSWkSIx9zjTksybw5CN8eHAl4M1ED3jH9A,178
|
|
3139
3139
|
windmill_api/models/preview_language.py,sha256=8_fIioNWTCOVYmwCUOcIL_mbyqe2vLrtiDFTeVTyZ5U,472
|
|
3140
|
-
windmill_api/models/preview_schedule_json_body.py,sha256=
|
|
3140
|
+
windmill_api/models/preview_schedule_json_body.py,sha256=ZwzZz2vXXAtm4zcdSzpLhYfAi8mcO4gXAnjKq_m0xqs,2057
|
|
3141
3141
|
windmill_api/models/query_hub_scripts_response_200_item.py,sha256=gPA_e-SQV0qe8XwyfhjmzSYrIf11ON9ueIMsI4LL4NE,2482
|
|
3142
3142
|
windmill_api/models/query_resource_types_response_200_item.py,sha256=GDX4NRg2tPEQJRjy_-9lpQRUoH9YlSFPYkfgqfP0GQk,1981
|
|
3143
3143
|
windmill_api/models/queued_job.py,sha256=KiVmeFPcD894PgYVWb-4de1V-nqo-_oxk__jzsE9uNg,13216
|
|
@@ -3333,7 +3333,7 @@ windmill_api/models/s3_resource.py,sha256=PDJs2EFbE07SbKJ7P36y3kG2uGjldHoYyHK_om
|
|
|
3333
3333
|
windmill_api/models/s3_resource_info_json_body.py,sha256=p9OSaP_cBrZdNLdtK5peaCvzfL95TBm0Fv63psiPV9Q,1700
|
|
3334
3334
|
windmill_api/models/s3_resource_info_response_200.py,sha256=hh_claCfwffk2yiumnjxIud1nfHMFFMf0QXry8hpkZo,2857
|
|
3335
3335
|
windmill_api/models/scalar_metric.py,sha256=s62Z77KfkvyGZaQx0dmVfNLduAoURD8xbZ3FH_dZ4eU,1755
|
|
3336
|
-
windmill_api/models/schedule.py,sha256=
|
|
3336
|
+
windmill_api/models/schedule.py,sha256=KjUO0_2kl8FkJvF-nc7BmznrXEVwnvLt_0TqkC6sJtE,12329
|
|
3337
3337
|
windmill_api/models/schedule_args.py,sha256=URfcoqQiKXyaGFtqYuFH1_cpOYIzKbNt41FFihlI61w,1215
|
|
3338
3338
|
windmill_api/models/schedule_extra_perms.py,sha256=YKNqTkFVhjfM2VOUogUT72OvcYHNjTcFi6aXFnK0GrA,1251
|
|
3339
3339
|
windmill_api/models/schedule_on_failure_extra_args.py,sha256=C_QvsrgdNzQwDw8NN6DVxmfqp3YgMJSNaPRzU8rzh_o,1294
|
|
@@ -3342,7 +3342,7 @@ windmill_api/models/schedule_on_success_extra_args.py,sha256=zFhRuFibHly04oHcVQM
|
|
|
3342
3342
|
windmill_api/models/schedule_retry.py,sha256=g96kQG6h18kcgWzfg15dTLS5WwzRrGwXcNGiDMjkHsY,2954
|
|
3343
3343
|
windmill_api/models/schedule_retry_constant.py,sha256=R7xc0WnCJOccHRGfTS3mT5Pi-tgbZcnkBG-vM6Icy-o,1857
|
|
3344
3344
|
windmill_api/models/schedule_retry_exponential.py,sha256=-e73icSKMYCcXAWnP93fTnbZk2ZBeJhZAOUwVf6Bxxc,2483
|
|
3345
|
-
windmill_api/models/schedule_w_jobs.py,sha256=
|
|
3345
|
+
windmill_api/models/schedule_w_jobs.py,sha256=tCUZ9jL4IkbNTQ9oCxtnXSWRjkG1yB7VgEHZ_NGQ3CE,13451
|
|
3346
3346
|
windmill_api/models/schedule_w_jobs_args.py,sha256=UK9y6YTv8toqaoy3ucE0t6dkKWFGGU6jJc54IE3zosw,1246
|
|
3347
3347
|
windmill_api/models/schedule_w_jobs_extra_perms.py,sha256=3h6uOv0DJFmuVq2dgqQ25gQMKuX3ZqVGHjYofYJ5APo,1282
|
|
3348
3348
|
windmill_api/models/schedule_w_jobs_jobs_item.py,sha256=909M8DK19ugNQmVfE9ypuCCH_7gt5mXQVllVZ-XYZSY,1846
|
|
@@ -3423,7 +3423,7 @@ windmill_api/models/update_raw_app_json_body.py,sha256=9axAApctikbtLWtP9bjjFkwjD
|
|
|
3423
3423
|
windmill_api/models/update_resource_json_body.py,sha256=C1AkR_z5O6RH87zl-6iqMLt_UFyw3E-enu7mjXQ2ccU,2099
|
|
3424
3424
|
windmill_api/models/update_resource_type_json_body.py,sha256=bf7FSS2FmyzrZCeRGTQwxBM8d3xVmh-V3-0LS1O5A5Q,1910
|
|
3425
3425
|
windmill_api/models/update_resource_value_json_body.py,sha256=gi3MJ9XXF4kLk1k5VyvWa5uym4cdjXWyZI-fn8wP8VE,1604
|
|
3426
|
-
windmill_api/models/update_schedule_json_body.py,sha256
|
|
3426
|
+
windmill_api/models/update_schedule_json_body.py,sha256=-MxFZvTNKk_LdPM23aNEF3avOTW3_zn0tHV1WrOhfiI,10718
|
|
3427
3427
|
windmill_api/models/update_schedule_json_body_args.py,sha256=0OKVBp7hhSGZ3ea6bH_dYQZDRfLCQY4VajvrHqs4Z7g,1294
|
|
3428
3428
|
windmill_api/models/update_schedule_json_body_on_failure_extra_args.py,sha256=3HimoHhpPNMFfwHNL0udQPqUDFyjNP6Ja3LaMPaKGQo,1373
|
|
3429
3429
|
windmill_api/models/update_schedule_json_body_on_recovery_extra_args.py,sha256=v6haYDhwh3paQEOlc2UmfK_I8ZJEfyeNlD9kYM-Sz-E,1378
|
|
@@ -3503,7 +3503,7 @@ windmill_api/models/workspace_invite.py,sha256=HnAJWGv5LwxWkz1T3fhgHKIccO7RFC1li
|
|
|
3503
3503
|
windmill_api/models/workspace_mute_critical_alerts_ui_json_body.py,sha256=y8ZwkWEZgavVc-FgLuZZ4z8YPCLxjPcMfdGdKjGM6VQ,1883
|
|
3504
3504
|
windmill_api/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
3505
3505
|
windmill_api/types.py,sha256=GoYub3t4hQP2Yn5tsvShsBfIY3vHUmblU0MXszDx_V0,968
|
|
3506
|
-
windmill_api-1.
|
|
3507
|
-
windmill_api-1.
|
|
3508
|
-
windmill_api-1.
|
|
3509
|
-
windmill_api-1.
|
|
3506
|
+
windmill_api-1.430.1.dist-info/LICENSE,sha256=qJVFNTaOevCeSY6NoXeUG1SPOwQ1K-PxVQ2iEWJzX-A,11348
|
|
3507
|
+
windmill_api-1.430.1.dist-info/METADATA,sha256=EhNE6NheIwHu05fQhZ7QmpeYfSW7_9KcTBlSVWD8UFA,5023
|
|
3508
|
+
windmill_api-1.430.1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
3509
|
+
windmill_api-1.430.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|