maleo-schemas 0.0.8__py3-none-any.whl → 0.0.10__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.
- maleo/schemas/operation/request.py +360 -17
- maleo/schemas/operation/resource.py +3 -0
- {maleo_schemas-0.0.8.dist-info → maleo_schemas-0.0.10.dist-info}/METADATA +1 -1
- maleo_schemas-0.0.10.dist-info/RECORD +14 -0
- maleo_schemas-0.0.8.dist-info/RECORD +0 -14
- {maleo_schemas-0.0.8.dist-info → maleo_schemas-0.0.10.dist-info}/WHEEL +0 -0
- {maleo_schemas-0.0.8.dist-info → maleo_schemas-0.0.10.dist-info}/licenses/LICENSE +0 -0
- {maleo_schemas-0.0.8.dist-info → maleo_schemas-0.0.10.dist-info}/top_level.txt +0 -0
@@ -1,10 +1,21 @@
|
|
1
|
-
from typing import Generic, Literal
|
2
|
-
from
|
3
|
-
from maleo.
|
4
|
-
from maleo.dtos.authentication import AuthenticationT, OptionalAuthentication
|
1
|
+
from typing import Generic, Literal, Optional, Union, overload
|
2
|
+
from uuid import UUID
|
3
|
+
from maleo.dtos.authentication import AuthenticationT
|
5
4
|
from maleo.dtos.error import GenericErrorT, ErrorT
|
5
|
+
from maleo.dtos.contexts.operation import OperationContext
|
6
6
|
from maleo.dtos.contexts.request import RequestContext
|
7
7
|
from maleo.dtos.contexts.response import ResponseContext
|
8
|
+
from maleo.dtos.contexts.service import ServiceContext
|
9
|
+
from maleo.enums.operation import (
|
10
|
+
OperationType,
|
11
|
+
ResourceOperationType,
|
12
|
+
ResourceOperationCreateType,
|
13
|
+
ResourceOperationUpdateType,
|
14
|
+
ResourceOperationDataUpdateType,
|
15
|
+
ResourceOperationStatusUpdateType,
|
16
|
+
)
|
17
|
+
from maleo.mixins.general import SuccessT
|
18
|
+
from maleo.mixins.timestamp import OperationTimestamp
|
8
19
|
from ..response import ResponseT, ErrorResponseT, SuccessResponseT
|
9
20
|
from .base import BaseOperation
|
10
21
|
from .resource import (
|
@@ -12,7 +23,9 @@ from .resource import (
|
|
12
23
|
ReadResourceOperationAction,
|
13
24
|
UpdateResourceOperationAction,
|
14
25
|
DeleteResourceOperationAction,
|
26
|
+
AllResourceOperationAction,
|
15
27
|
ResourceOperationActionT,
|
28
|
+
generate_resource_operation_action,
|
16
29
|
)
|
17
30
|
|
18
31
|
|
@@ -21,15 +34,16 @@ class RequestOperation(
|
|
21
34
|
None,
|
22
35
|
SuccessT,
|
23
36
|
GenericErrorT,
|
24
|
-
RequestContext,
|
25
|
-
|
37
|
+
Optional[RequestContext],
|
38
|
+
AuthenticationT,
|
26
39
|
ResourceOperationActionT,
|
27
|
-
ResponseContext,
|
40
|
+
Optional[ResponseContext],
|
28
41
|
ResponseT,
|
29
42
|
],
|
30
43
|
Generic[
|
31
44
|
SuccessT,
|
32
45
|
GenericErrorT,
|
46
|
+
AuthenticationT,
|
33
47
|
ResourceOperationActionT,
|
34
48
|
ResponseT,
|
35
49
|
],
|
@@ -42,11 +56,13 @@ class FailedRequestOperation(
|
|
42
56
|
RequestOperation[
|
43
57
|
Literal[False],
|
44
58
|
ErrorT,
|
59
|
+
AuthenticationT,
|
45
60
|
ResourceOperationActionT,
|
46
61
|
ErrorResponseT,
|
47
62
|
],
|
48
63
|
Generic[
|
49
64
|
ErrorT,
|
65
|
+
AuthenticationT,
|
50
66
|
ResourceOperationActionT,
|
51
67
|
ErrorResponseT,
|
52
68
|
],
|
@@ -56,41 +72,360 @@ class FailedRequestOperation(
|
|
56
72
|
|
57
73
|
|
58
74
|
class CreateFailedRequestOperation(
|
59
|
-
FailedRequestOperation[
|
60
|
-
|
75
|
+
FailedRequestOperation[
|
76
|
+
ErrorT, AuthenticationT, CreateResourceOperationAction, ErrorResponseT
|
77
|
+
],
|
78
|
+
Generic[ErrorT, AuthenticationT, ErrorResponseT],
|
61
79
|
):
|
62
80
|
pass
|
63
81
|
|
64
82
|
|
65
83
|
class ReadFailedRequestOperation(
|
66
|
-
FailedRequestOperation[
|
67
|
-
|
84
|
+
FailedRequestOperation[
|
85
|
+
ErrorT, AuthenticationT, ReadResourceOperationAction, ErrorResponseT
|
86
|
+
],
|
87
|
+
Generic[ErrorT, AuthenticationT, ErrorResponseT],
|
68
88
|
):
|
69
89
|
pass
|
70
90
|
|
71
91
|
|
72
92
|
class UpdateFailedRequestOperation(
|
73
|
-
FailedRequestOperation[
|
93
|
+
FailedRequestOperation[
|
94
|
+
ErrorT, AuthenticationT, UpdateResourceOperationAction, ErrorResponseT
|
95
|
+
],
|
74
96
|
Generic[ErrorT, AuthenticationT, ErrorResponseT],
|
75
97
|
):
|
76
98
|
pass
|
77
99
|
|
78
100
|
|
79
101
|
class DeleteFailedRequestOperation(
|
80
|
-
FailedRequestOperation[
|
102
|
+
FailedRequestOperation[
|
103
|
+
ErrorT, AuthenticationT, DeleteResourceOperationAction, ErrorResponseT
|
104
|
+
],
|
81
105
|
Generic[ErrorT, AuthenticationT, ErrorResponseT],
|
82
106
|
):
|
83
107
|
pass
|
84
108
|
|
85
109
|
|
110
|
+
@overload
|
111
|
+
def generate_failed_request_operation(
|
112
|
+
action: CreateResourceOperationAction,
|
113
|
+
*,
|
114
|
+
service_context: ServiceContext,
|
115
|
+
id: UUID,
|
116
|
+
context: OperationContext,
|
117
|
+
timestamp: OperationTimestamp,
|
118
|
+
summary: str,
|
119
|
+
error: ErrorT,
|
120
|
+
request_context: Optional[RequestContext],
|
121
|
+
authentication: AuthenticationT,
|
122
|
+
response_context: Optional[ResponseContext],
|
123
|
+
response: ErrorResponseT,
|
124
|
+
) -> CreateFailedRequestOperation[ErrorT, AuthenticationT, ErrorResponseT]: ...
|
125
|
+
@overload
|
126
|
+
def generate_failed_request_operation(
|
127
|
+
action: ReadResourceOperationAction,
|
128
|
+
*,
|
129
|
+
service_context: ServiceContext,
|
130
|
+
id: UUID,
|
131
|
+
context: OperationContext,
|
132
|
+
timestamp: OperationTimestamp,
|
133
|
+
summary: str,
|
134
|
+
error: ErrorT,
|
135
|
+
request_context: Optional[RequestContext],
|
136
|
+
authentication: AuthenticationT,
|
137
|
+
response_context: Optional[ResponseContext],
|
138
|
+
response: ErrorResponseT,
|
139
|
+
) -> ReadFailedRequestOperation[ErrorT, AuthenticationT, ErrorResponseT]: ...
|
140
|
+
@overload
|
141
|
+
def generate_failed_request_operation(
|
142
|
+
action: UpdateResourceOperationAction,
|
143
|
+
*,
|
144
|
+
service_context: ServiceContext,
|
145
|
+
id: UUID,
|
146
|
+
context: OperationContext,
|
147
|
+
timestamp: OperationTimestamp,
|
148
|
+
summary: str,
|
149
|
+
error: ErrorT,
|
150
|
+
request_context: Optional[RequestContext],
|
151
|
+
authentication: AuthenticationT,
|
152
|
+
response_context: Optional[ResponseContext],
|
153
|
+
response: ErrorResponseT,
|
154
|
+
) -> UpdateFailedRequestOperation[ErrorT, AuthenticationT, ErrorResponseT]: ...
|
155
|
+
@overload
|
156
|
+
def generate_failed_request_operation(
|
157
|
+
action: DeleteResourceOperationAction,
|
158
|
+
*,
|
159
|
+
service_context: ServiceContext,
|
160
|
+
id: UUID,
|
161
|
+
context: OperationContext,
|
162
|
+
timestamp: OperationTimestamp,
|
163
|
+
summary: str,
|
164
|
+
error: ErrorT,
|
165
|
+
request_context: Optional[RequestContext],
|
166
|
+
authentication: AuthenticationT,
|
167
|
+
response_context: Optional[ResponseContext],
|
168
|
+
response: ErrorResponseT,
|
169
|
+
) -> DeleteFailedRequestOperation[ErrorT, AuthenticationT, ErrorResponseT]: ...
|
170
|
+
@overload
|
171
|
+
def generate_failed_request_operation(
|
172
|
+
*,
|
173
|
+
type: Literal[ResourceOperationType.CREATE],
|
174
|
+
create_type: Optional[ResourceOperationCreateType] = ...,
|
175
|
+
service_context: ServiceContext,
|
176
|
+
id: UUID,
|
177
|
+
context: OperationContext,
|
178
|
+
timestamp: OperationTimestamp,
|
179
|
+
summary: str,
|
180
|
+
error: ErrorT,
|
181
|
+
request_context: Optional[RequestContext],
|
182
|
+
authentication: AuthenticationT,
|
183
|
+
response_context: Optional[ResponseContext],
|
184
|
+
response: ErrorResponseT,
|
185
|
+
) -> CreateFailedRequestOperation[ErrorT, AuthenticationT, ErrorResponseT]: ...
|
186
|
+
@overload
|
187
|
+
def generate_failed_request_operation(
|
188
|
+
*,
|
189
|
+
type: Literal[ResourceOperationType.READ],
|
190
|
+
service_context: ServiceContext,
|
191
|
+
id: UUID,
|
192
|
+
context: OperationContext,
|
193
|
+
timestamp: OperationTimestamp,
|
194
|
+
summary: str,
|
195
|
+
error: ErrorT,
|
196
|
+
request_context: Optional[RequestContext],
|
197
|
+
authentication: AuthenticationT,
|
198
|
+
response_context: Optional[ResponseContext],
|
199
|
+
response: ErrorResponseT,
|
200
|
+
) -> ReadFailedRequestOperation[ErrorT, AuthenticationT, ErrorResponseT]: ...
|
201
|
+
@overload
|
202
|
+
def generate_failed_request_operation(
|
203
|
+
*,
|
204
|
+
type: Literal[ResourceOperationType.UPDATE],
|
205
|
+
update_type: Optional[ResourceOperationUpdateType] = ...,
|
206
|
+
data_update_type: Optional[ResourceOperationDataUpdateType] = ...,
|
207
|
+
status_update_type: Optional[ResourceOperationStatusUpdateType] = ...,
|
208
|
+
service_context: ServiceContext,
|
209
|
+
id: UUID,
|
210
|
+
context: OperationContext,
|
211
|
+
timestamp: OperationTimestamp,
|
212
|
+
summary: str,
|
213
|
+
error: ErrorT,
|
214
|
+
request_context: Optional[RequestContext],
|
215
|
+
authentication: AuthenticationT,
|
216
|
+
response_context: Optional[ResponseContext],
|
217
|
+
response: ErrorResponseT,
|
218
|
+
) -> UpdateFailedRequestOperation[ErrorT, AuthenticationT, ErrorResponseT]: ...
|
219
|
+
@overload
|
220
|
+
def generate_failed_request_operation(
|
221
|
+
*,
|
222
|
+
type: Literal[ResourceOperationType.DELETE],
|
223
|
+
service_context: ServiceContext,
|
224
|
+
id: UUID,
|
225
|
+
context: OperationContext,
|
226
|
+
timestamp: OperationTimestamp,
|
227
|
+
summary: str,
|
228
|
+
error: ErrorT,
|
229
|
+
request_context: Optional[RequestContext],
|
230
|
+
authentication: AuthenticationT,
|
231
|
+
response_context: Optional[ResponseContext],
|
232
|
+
response: ErrorResponseT,
|
233
|
+
) -> DeleteFailedRequestOperation[ErrorT, AuthenticationT, ErrorResponseT]: ...
|
234
|
+
def generate_failed_request_operation(
|
235
|
+
action: Optional[AllResourceOperationAction] = None,
|
236
|
+
*,
|
237
|
+
type: Optional[ResourceOperationType] = None,
|
238
|
+
create_type: Optional[ResourceOperationCreateType] = None,
|
239
|
+
update_type: Optional[ResourceOperationUpdateType] = None,
|
240
|
+
data_update_type: Optional[ResourceOperationDataUpdateType] = None,
|
241
|
+
status_update_type: Optional[ResourceOperationStatusUpdateType] = None,
|
242
|
+
service_context: ServiceContext,
|
243
|
+
id: UUID,
|
244
|
+
context: OperationContext,
|
245
|
+
timestamp: OperationTimestamp,
|
246
|
+
summary: str,
|
247
|
+
error: ErrorT,
|
248
|
+
request_context: Optional[RequestContext],
|
249
|
+
authentication: AuthenticationT,
|
250
|
+
response_context: Optional[ResponseContext],
|
251
|
+
response: ErrorResponseT,
|
252
|
+
) -> Union[
|
253
|
+
CreateFailedRequestOperation[ErrorT, AuthenticationT, ErrorResponseT],
|
254
|
+
ReadFailedRequestOperation[ErrorT, AuthenticationT, ErrorResponseT],
|
255
|
+
UpdateFailedRequestOperation[ErrorT, AuthenticationT, ErrorResponseT],
|
256
|
+
DeleteFailedRequestOperation[ErrorT, AuthenticationT, ErrorResponseT],
|
257
|
+
]:
|
258
|
+
if (action is None and type is None) or (action is not None and type is not None):
|
259
|
+
raise ValueError("Only either 'action' or 'type' must be given")
|
260
|
+
|
261
|
+
if action is not None:
|
262
|
+
if not isinstance(
|
263
|
+
action,
|
264
|
+
(
|
265
|
+
CreateResourceOperationAction,
|
266
|
+
ReadResourceOperationAction,
|
267
|
+
UpdateResourceOperationAction,
|
268
|
+
DeleteResourceOperationAction,
|
269
|
+
),
|
270
|
+
):
|
271
|
+
raise ValueError(f"Invalid 'action' type: '{type(action)}'")
|
272
|
+
|
273
|
+
if isinstance(action, CreateResourceOperationAction):
|
274
|
+
return CreateFailedRequestOperation[
|
275
|
+
ErrorT, AuthenticationT, ErrorResponseT
|
276
|
+
](
|
277
|
+
service_context=service_context,
|
278
|
+
id=id,
|
279
|
+
context=context,
|
280
|
+
timestamp=timestamp,
|
281
|
+
summary=summary,
|
282
|
+
error=error,
|
283
|
+
request_context=request_context,
|
284
|
+
authentication=authentication,
|
285
|
+
action=action,
|
286
|
+
response_context=response_context,
|
287
|
+
response=response,
|
288
|
+
)
|
289
|
+
elif isinstance(action, ReadResourceOperationAction):
|
290
|
+
return ReadFailedRequestOperation[ErrorT, AuthenticationT, ErrorResponseT](
|
291
|
+
service_context=service_context,
|
292
|
+
id=id,
|
293
|
+
context=context,
|
294
|
+
timestamp=timestamp,
|
295
|
+
summary=summary,
|
296
|
+
error=error,
|
297
|
+
request_context=request_context,
|
298
|
+
authentication=authentication,
|
299
|
+
action=action,
|
300
|
+
response_context=response_context,
|
301
|
+
response=response,
|
302
|
+
)
|
303
|
+
elif isinstance(action, UpdateResourceOperationAction):
|
304
|
+
return UpdateFailedRequestOperation[
|
305
|
+
ErrorT, AuthenticationT, ErrorResponseT
|
306
|
+
](
|
307
|
+
service_context=service_context,
|
308
|
+
id=id,
|
309
|
+
context=context,
|
310
|
+
timestamp=timestamp,
|
311
|
+
summary=summary,
|
312
|
+
error=error,
|
313
|
+
request_context=request_context,
|
314
|
+
authentication=authentication,
|
315
|
+
action=action,
|
316
|
+
response_context=response_context,
|
317
|
+
response=response,
|
318
|
+
)
|
319
|
+
elif isinstance(action, DeleteResourceOperationAction):
|
320
|
+
return DeleteFailedRequestOperation[
|
321
|
+
ErrorT, AuthenticationT, ErrorResponseT
|
322
|
+
](
|
323
|
+
service_context=service_context,
|
324
|
+
id=id,
|
325
|
+
context=context,
|
326
|
+
timestamp=timestamp,
|
327
|
+
summary=summary,
|
328
|
+
error=error,
|
329
|
+
request_context=request_context,
|
330
|
+
authentication=authentication,
|
331
|
+
action=action,
|
332
|
+
response_context=response_context,
|
333
|
+
response=response,
|
334
|
+
)
|
335
|
+
|
336
|
+
elif type is not None:
|
337
|
+
if not isinstance(type, ResourceOperationType):
|
338
|
+
raise ValueError(f"Unsupported `type`: {type}")
|
339
|
+
|
340
|
+
if type is ResourceOperationType.CREATE:
|
341
|
+
action = generate_resource_operation_action(
|
342
|
+
type=type, create_type=create_type
|
343
|
+
)
|
344
|
+
return CreateFailedRequestOperation[
|
345
|
+
ErrorT, AuthenticationT, ErrorResponseT
|
346
|
+
](
|
347
|
+
service_context=service_context,
|
348
|
+
id=id,
|
349
|
+
context=context,
|
350
|
+
timestamp=timestamp,
|
351
|
+
summary=summary,
|
352
|
+
error=error,
|
353
|
+
request_context=request_context,
|
354
|
+
authentication=authentication,
|
355
|
+
action=action,
|
356
|
+
response_context=response_context,
|
357
|
+
response=response,
|
358
|
+
)
|
359
|
+
elif type is ResourceOperationType.READ:
|
360
|
+
action = generate_resource_operation_action(type=type)
|
361
|
+
return ReadFailedRequestOperation[ErrorT, AuthenticationT, ErrorResponseT](
|
362
|
+
service_context=service_context,
|
363
|
+
id=id,
|
364
|
+
context=context,
|
365
|
+
timestamp=timestamp,
|
366
|
+
summary=summary,
|
367
|
+
error=error,
|
368
|
+
request_context=request_context,
|
369
|
+
authentication=authentication,
|
370
|
+
action=action,
|
371
|
+
response_context=response_context,
|
372
|
+
response=response,
|
373
|
+
)
|
374
|
+
elif type is ResourceOperationType.UPDATE:
|
375
|
+
action = generate_resource_operation_action(
|
376
|
+
type=type,
|
377
|
+
update_type=update_type,
|
378
|
+
data_update_type=data_update_type,
|
379
|
+
status_update_type=status_update_type,
|
380
|
+
)
|
381
|
+
return UpdateFailedRequestOperation[
|
382
|
+
ErrorT, AuthenticationT, ErrorResponseT
|
383
|
+
](
|
384
|
+
service_context=service_context,
|
385
|
+
id=id,
|
386
|
+
context=context,
|
387
|
+
timestamp=timestamp,
|
388
|
+
summary=summary,
|
389
|
+
error=error,
|
390
|
+
request_context=request_context,
|
391
|
+
authentication=authentication,
|
392
|
+
action=action,
|
393
|
+
response_context=response_context,
|
394
|
+
response=response,
|
395
|
+
)
|
396
|
+
elif type is ResourceOperationType.DELETE:
|
397
|
+
action = generate_resource_operation_action(type=type)
|
398
|
+
return DeleteFailedRequestOperation[
|
399
|
+
ErrorT, AuthenticationT, ErrorResponseT
|
400
|
+
](
|
401
|
+
service_context=service_context,
|
402
|
+
id=id,
|
403
|
+
context=context,
|
404
|
+
timestamp=timestamp,
|
405
|
+
summary=summary,
|
406
|
+
error=error,
|
407
|
+
request_context=request_context,
|
408
|
+
authentication=authentication,
|
409
|
+
action=action,
|
410
|
+
response_context=response_context,
|
411
|
+
response=response,
|
412
|
+
)
|
413
|
+
else:
|
414
|
+
# This should never happen due to initial validation,
|
415
|
+
# but type checker needs to see all paths covered
|
416
|
+
raise ValueError("Neither 'action' nor 'type' provided")
|
417
|
+
|
418
|
+
|
86
419
|
class SuccessfulRequestOperation(
|
87
420
|
RequestOperation[
|
88
421
|
Literal[True],
|
89
422
|
None,
|
423
|
+
AuthenticationT,
|
90
424
|
ResourceOperationActionT,
|
91
425
|
SuccessResponseT,
|
92
426
|
],
|
93
427
|
Generic[
|
428
|
+
AuthenticationT,
|
94
429
|
ResourceOperationActionT,
|
95
430
|
SuccessResponseT,
|
96
431
|
],
|
@@ -101,28 +436,36 @@ class SuccessfulRequestOperation(
|
|
101
436
|
|
102
437
|
|
103
438
|
class CreateSuccessfulRequestOperation(
|
104
|
-
SuccessfulRequestOperation[
|
439
|
+
SuccessfulRequestOperation[
|
440
|
+
AuthenticationT, CreateResourceOperationAction, SuccessResponseT
|
441
|
+
],
|
105
442
|
Generic[AuthenticationT, SuccessResponseT],
|
106
443
|
):
|
107
444
|
pass
|
108
445
|
|
109
446
|
|
110
447
|
class ReadSuccessfulRequestOperation(
|
111
|
-
SuccessfulRequestOperation[
|
448
|
+
SuccessfulRequestOperation[
|
449
|
+
AuthenticationT, ReadResourceOperationAction, SuccessResponseT
|
450
|
+
],
|
112
451
|
Generic[AuthenticationT, SuccessResponseT],
|
113
452
|
):
|
114
453
|
pass
|
115
454
|
|
116
455
|
|
117
456
|
class UpdateSuccessfulRequestOperation(
|
118
|
-
SuccessfulRequestOperation[
|
457
|
+
SuccessfulRequestOperation[
|
458
|
+
AuthenticationT, UpdateResourceOperationAction, SuccessResponseT
|
459
|
+
],
|
119
460
|
Generic[AuthenticationT, SuccessResponseT],
|
120
461
|
):
|
121
462
|
pass
|
122
463
|
|
123
464
|
|
124
465
|
class DeleteSuccessfulRequestOperation(
|
125
|
-
SuccessfulRequestOperation[
|
466
|
+
SuccessfulRequestOperation[
|
467
|
+
AuthenticationT, DeleteResourceOperationAction, SuccessResponseT
|
468
|
+
],
|
126
469
|
Generic[AuthenticationT, SuccessResponseT],
|
127
470
|
):
|
128
471
|
pass
|
@@ -494,6 +494,7 @@ def generate_failed_resource_operation(
|
|
494
494
|
*,
|
495
495
|
type: Literal[ResourceOperationType.UPDATE],
|
496
496
|
update_type: Optional[ResourceOperationUpdateType] = ...,
|
497
|
+
data_update_type: Optional[ResourceOperationDataUpdateType] = ...,
|
497
498
|
status_update_type: Optional[ResourceOperationStatusUpdateType] = ...,
|
498
499
|
service_context: ServiceContext,
|
499
500
|
id: UUID,
|
@@ -527,6 +528,7 @@ def generate_failed_resource_operation(
|
|
527
528
|
type: Optional[ResourceOperationType] = None,
|
528
529
|
create_type: Optional[ResourceOperationCreateType] = None,
|
529
530
|
update_type: Optional[ResourceOperationUpdateType] = None,
|
531
|
+
data_update_type: Optional[ResourceOperationDataUpdateType] = None,
|
530
532
|
status_update_type: Optional[ResourceOperationStatusUpdateType] = None,
|
531
533
|
service_context: ServiceContext,
|
532
534
|
id: UUID,
|
@@ -664,6 +666,7 @@ def generate_failed_resource_operation(
|
|
664
666
|
action = generate_resource_operation_action(
|
665
667
|
type=type,
|
666
668
|
update_type=update_type,
|
669
|
+
data_update_type=data_update_type,
|
667
670
|
status_update_type=status_update_type,
|
668
671
|
)
|
669
672
|
return UpdateFailedResourceOperation[
|
@@ -0,0 +1,14 @@
|
|
1
|
+
maleo/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
maleo/schemas/request.py,sha256=1tFUZyr6kofpNHVM5h1Qx9TCHt4EqS_hfIZlADuaUI0,733
|
3
|
+
maleo/schemas/response.py,sha256=WnyeRxaFoGK-wj_SAyY-xMC1Hm7NjIb3J4JC-u8w2-I,9916
|
4
|
+
maleo/schemas/operation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
+
maleo/schemas/operation/action.py,sha256=LjR7KQBpB_oA64iFT4WGvnA0IrwXW4v0sI35o3vlY5Y,293
|
6
|
+
maleo/schemas/operation/base.py,sha256=yW9UUEevwEmKc-DktYmrXgBzWVksSMCOzMWeAzEDtww,7262
|
7
|
+
maleo/schemas/operation/request.py,sha256=KGm42XIET9fx74TEkF-FVqA-ARaE5mZTZOQLPDTR-2Q,15571
|
8
|
+
maleo/schemas/operation/resource.py,sha256=ecqAxMjzHumYiPiXk-6BHinXj1FRu72YPccDNfgS6Z4,27965
|
9
|
+
maleo/schemas/operation/system.py,sha256=nZgRwp2cc6DLqpl8-notwJjZTkedfBa_72sY_HbcBk4,1865
|
10
|
+
maleo_schemas-0.0.10.dist-info/licenses/LICENSE,sha256=aftGsecnk7TWVX-7KW94FqK4Syy6YSZ8PZEF7EcIp3M,2621
|
11
|
+
maleo_schemas-0.0.10.dist-info/METADATA,sha256=G4YdMbZZ8Wxqr9kcHNquR08RL3HqMdTm8dypeYzmp5M,3318
|
12
|
+
maleo_schemas-0.0.10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
13
|
+
maleo_schemas-0.0.10.dist-info/top_level.txt,sha256=3Tpd1siVsfYoeI9FEOJNYnffx_shzZ3wsPpTvz5bljc,6
|
14
|
+
maleo_schemas-0.0.10.dist-info/RECORD,,
|
@@ -1,14 +0,0 @@
|
|
1
|
-
maleo/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
maleo/schemas/request.py,sha256=1tFUZyr6kofpNHVM5h1Qx9TCHt4EqS_hfIZlADuaUI0,733
|
3
|
-
maleo/schemas/response.py,sha256=WnyeRxaFoGK-wj_SAyY-xMC1Hm7NjIb3J4JC-u8w2-I,9916
|
4
|
-
maleo/schemas/operation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
-
maleo/schemas/operation/action.py,sha256=LjR7KQBpB_oA64iFT4WGvnA0IrwXW4v0sI35o3vlY5Y,293
|
6
|
-
maleo/schemas/operation/base.py,sha256=yW9UUEevwEmKc-DktYmrXgBzWVksSMCOzMWeAzEDtww,7262
|
7
|
-
maleo/schemas/operation/request.py,sha256=t_bTGcihjmg9a2BBP2f5q6--ed6WA4jjI1WRIxSp_Ds,3225
|
8
|
-
maleo/schemas/operation/resource.py,sha256=wf1bDa97O0W9-QXjKXrkqFqeHTQuWV_RWc2vMLhRDvI,27771
|
9
|
-
maleo/schemas/operation/system.py,sha256=nZgRwp2cc6DLqpl8-notwJjZTkedfBa_72sY_HbcBk4,1865
|
10
|
-
maleo_schemas-0.0.8.dist-info/licenses/LICENSE,sha256=aftGsecnk7TWVX-7KW94FqK4Syy6YSZ8PZEF7EcIp3M,2621
|
11
|
-
maleo_schemas-0.0.8.dist-info/METADATA,sha256=9EA73F3HTDPRREnPzGcryIqczIVri7BcktIowxRST-U,3317
|
12
|
-
maleo_schemas-0.0.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
13
|
-
maleo_schemas-0.0.8.dist-info/top_level.txt,sha256=3Tpd1siVsfYoeI9FEOJNYnffx_shzZ3wsPpTvz5bljc,6
|
14
|
-
maleo_schemas-0.0.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|