pinexq-client 0.10.3rc1__py3-none-any.whl → 0.10.5rc1__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.
- pinexq_client/core/hco/action_hco.py +6 -0
- pinexq_client/job_management/__init__.py +1 -1
- pinexq_client/job_management/hcos/info_hco.py +5 -0
- pinexq_client/job_management/hcos/input_dataslot_hco.py +3 -1
- pinexq_client/job_management/hcos/output_dataslot_hco.py +1 -0
- pinexq_client/job_management/hcos/processing_step_hco.py +45 -35
- pinexq_client/job_management/hcos/processingsteproot_hco.py +13 -9
- pinexq_client/job_management/known_relations.py +1 -0
- pinexq_client/job_management/model/open_api_generated.py +153 -100
- pinexq_client/job_management/tool/job.py +30 -12
- pinexq_client/job_management/tool/processing_step.py +64 -84
- {pinexq_client-0.10.3rc1.dist-info → pinexq_client-0.10.5rc1.dist-info}/METADATA +3 -3
- {pinexq_client-0.10.3rc1.dist-info → pinexq_client-0.10.5rc1.dist-info}/RECORD +14 -14
- {pinexq_client-0.10.3rc1.dist-info → pinexq_client-0.10.5rc1.dist-info}/WHEEL +1 -1
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: openapi.json
|
|
3
|
-
# timestamp: 2025-12-
|
|
3
|
+
# timestamp: 2025-12-19T20:33:19+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
7
|
-
from enum import
|
|
7
|
+
from enum import StrEnum
|
|
8
8
|
from typing import Any, List
|
|
9
9
|
|
|
10
|
-
from pydantic import AwareDatetime, BaseModel, ConfigDict, Field, constr
|
|
10
|
+
from pydantic import AnyUrl, AwareDatetime, BaseModel, ConfigDict, Field, constr
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class AdminHtoOpenApiProperties(BaseModel):
|
|
14
|
+
pass
|
|
15
|
+
model_config = ConfigDict(
|
|
16
|
+
extra='allow',
|
|
17
|
+
populate_by_name=True,
|
|
18
|
+
)
|
|
11
19
|
|
|
12
20
|
|
|
13
21
|
class AdminJobQueryResultHtoOpenApiProperties(BaseModel):
|
|
@@ -48,32 +56,19 @@ class AssignCodeHashParameters(BaseModel):
|
|
|
48
56
|
extra='allow',
|
|
49
57
|
populate_by_name=True,
|
|
50
58
|
)
|
|
51
|
-
code_hash:
|
|
59
|
+
code_hash: str = Field(
|
|
52
60
|
...,
|
|
53
61
|
alias='CodeHash',
|
|
54
62
|
description='The code hash of the processing to be deployed',
|
|
55
63
|
)
|
|
56
64
|
|
|
57
65
|
|
|
58
|
-
class CopyPsFromOrgToUserActionParameters(BaseModel):
|
|
59
|
-
model_config = ConfigDict(
|
|
60
|
-
extra='allow',
|
|
61
|
-
populate_by_name=True,
|
|
62
|
-
)
|
|
63
|
-
title: constr(min_length=1) = Field(..., alias='Title')
|
|
64
|
-
function_name: constr(min_length=1) = Field(..., alias='FunctionName')
|
|
65
|
-
version: constr(min_length=1) = Field(..., alias='Version')
|
|
66
|
-
|
|
67
|
-
|
|
68
66
|
class CopyPsFromUserToOrgActionParameters(BaseModel):
|
|
69
67
|
model_config = ConfigDict(
|
|
70
68
|
extra='allow',
|
|
71
69
|
populate_by_name=True,
|
|
72
70
|
)
|
|
73
|
-
org_id:
|
|
74
|
-
title: constr(min_length=1) = Field(..., alias='Title')
|
|
75
|
-
function_name: constr(min_length=1) = Field(..., alias='FunctionName')
|
|
76
|
-
version: constr(min_length=1) = Field(..., alias='Version')
|
|
71
|
+
org_id: str = Field(..., alias='OrgId')
|
|
77
72
|
|
|
78
73
|
|
|
79
74
|
class CopyWorkDataFromUserToOrgActionParameters(BaseModel):
|
|
@@ -81,7 +76,7 @@ class CopyWorkDataFromUserToOrgActionParameters(BaseModel):
|
|
|
81
76
|
extra='allow',
|
|
82
77
|
populate_by_name=True,
|
|
83
78
|
)
|
|
84
|
-
org_id:
|
|
79
|
+
org_id: str = Field(..., alias='OrgId')
|
|
85
80
|
|
|
86
81
|
|
|
87
82
|
class CreateJobParameters(BaseModel):
|
|
@@ -89,17 +84,7 @@ class CreateJobParameters(BaseModel):
|
|
|
89
84
|
extra='allow',
|
|
90
85
|
populate_by_name=True,
|
|
91
86
|
)
|
|
92
|
-
name:
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
class CreateProcessingStepParameters(BaseModel):
|
|
96
|
-
model_config = ConfigDict(
|
|
97
|
-
extra='allow',
|
|
98
|
-
populate_by_name=True,
|
|
99
|
-
)
|
|
100
|
-
title: constr(min_length=1) = Field(..., alias='Title')
|
|
101
|
-
function_name: constr(min_length=1) = Field(..., alias='FunctionName')
|
|
102
|
-
version: constr(min_length=1) = Field(..., alias='Version')
|
|
87
|
+
name: str = Field(..., alias='Name')
|
|
103
88
|
|
|
104
89
|
|
|
105
90
|
class CreateSubJobParameters(BaseModel):
|
|
@@ -107,8 +92,8 @@ class CreateSubJobParameters(BaseModel):
|
|
|
107
92
|
extra='allow',
|
|
108
93
|
populate_by_name=True,
|
|
109
94
|
)
|
|
110
|
-
name:
|
|
111
|
-
parent_job_url:
|
|
95
|
+
name: str = Field(..., alias='Name')
|
|
96
|
+
parent_job_url: AnyUrl = Field(..., alias='ParentJobUrl')
|
|
112
97
|
|
|
113
98
|
|
|
114
99
|
class DataSpecificationHto(BaseModel):
|
|
@@ -129,14 +114,14 @@ class DataSpecificationHto(BaseModel):
|
|
|
129
114
|
max_slots: int | None = Field(None, alias='MaxSlots')
|
|
130
115
|
|
|
131
116
|
|
|
132
|
-
class DeploymentResourcePresets(
|
|
117
|
+
class DeploymentResourcePresets(StrEnum):
|
|
133
118
|
small = 'Small'
|
|
134
119
|
medium = 'Medium'
|
|
135
120
|
large = 'Large'
|
|
136
121
|
x_large = 'XLarge'
|
|
137
122
|
|
|
138
123
|
|
|
139
|
-
class DeploymentStates(
|
|
124
|
+
class DeploymentStates(StrEnum):
|
|
140
125
|
undefined = 'Undefined'
|
|
141
126
|
not_deployed = 'NotDeployed'
|
|
142
127
|
platform = 'Platform'
|
|
@@ -145,23 +130,18 @@ class DeploymentStates(Enum):
|
|
|
145
130
|
external_suspended = 'ExternalSuspended'
|
|
146
131
|
|
|
147
132
|
|
|
148
|
-
class
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
)
|
|
153
|
-
reason: str | None = Field(None, alias='Reason')
|
|
133
|
+
class DeploymentSuspensionTypes(StrEnum):
|
|
134
|
+
platform = 'Platform'
|
|
135
|
+
external = 'External'
|
|
136
|
+
all = 'All'
|
|
154
137
|
|
|
155
138
|
|
|
156
|
-
class
|
|
139
|
+
class DeprecatePsActionParameters(BaseModel):
|
|
157
140
|
model_config = ConfigDict(
|
|
158
141
|
extra='allow',
|
|
159
142
|
populate_by_name=True,
|
|
160
143
|
)
|
|
161
|
-
|
|
162
|
-
is_public: bool = Field(..., alias='IsPublic')
|
|
163
|
-
function_name: constr(min_length=1) = Field(..., alias='FunctionName')
|
|
164
|
-
version: constr(min_length=1) = Field(..., alias='Version')
|
|
144
|
+
reason: str | None = Field(None, alias='Reason')
|
|
165
145
|
|
|
166
146
|
|
|
167
147
|
class EntryPointHtoOpenApiProperties(BaseModel):
|
|
@@ -187,7 +167,7 @@ class FieldModel(BaseModel):
|
|
|
187
167
|
allow_multiple: bool | None = Field(None, alias='allowMultiple')
|
|
188
168
|
|
|
189
169
|
|
|
190
|
-
class FunctionNameMatchTypes(
|
|
170
|
+
class FunctionNameMatchTypes(StrEnum):
|
|
191
171
|
contains = 'Contains'
|
|
192
172
|
match_exact = 'MatchExact'
|
|
193
173
|
|
|
@@ -223,13 +203,13 @@ class JobQueryResultHtoOpenApiProperties(BaseModel):
|
|
|
223
203
|
remaining_tags: List[str] | None = Field(None, alias='RemainingTags')
|
|
224
204
|
|
|
225
205
|
|
|
226
|
-
class JobSortProperties(
|
|
206
|
+
class JobSortProperties(StrEnum):
|
|
227
207
|
name = 'Name'
|
|
228
208
|
created_at = 'CreatedAt'
|
|
229
209
|
completed_at = 'CompletedAt'
|
|
230
210
|
|
|
231
211
|
|
|
232
|
-
class JobStates(
|
|
212
|
+
class JobStates(StrEnum):
|
|
233
213
|
undefined = 'Undefined'
|
|
234
214
|
created = 'Created'
|
|
235
215
|
ready_for_processing = 'ReadyForProcessing'
|
|
@@ -338,7 +318,7 @@ class ProcessingStepRootHtoOpenApiProperties(BaseModel):
|
|
|
338
318
|
)
|
|
339
319
|
|
|
340
320
|
|
|
341
|
-
class ProcessingStepSortProperties(
|
|
321
|
+
class ProcessingStepSortProperties(StrEnum):
|
|
342
322
|
title = 'Title'
|
|
343
323
|
created_at = 'CreatedAt'
|
|
344
324
|
last_modified_at = 'LastModifiedAt'
|
|
@@ -380,9 +360,13 @@ class RapidJobSetupParameters(BaseModel):
|
|
|
380
360
|
extra='allow',
|
|
381
361
|
populate_by_name=True,
|
|
382
362
|
)
|
|
383
|
-
name:
|
|
384
|
-
processing_step_url:
|
|
385
|
-
parent_job_url:
|
|
363
|
+
name: str = Field(..., alias='Name')
|
|
364
|
+
processing_step_url: AnyUrl = Field(..., alias='ProcessingStepUrl')
|
|
365
|
+
parent_job_url: AnyUrl | None = Field(
|
|
366
|
+
None,
|
|
367
|
+
alias='ParentJobUrl',
|
|
368
|
+
description='Create this as sub job with this parent',
|
|
369
|
+
)
|
|
386
370
|
tags: List[str] | None = Field(None, alias='Tags')
|
|
387
371
|
parameters: str | None = Field(None, alias='Parameters')
|
|
388
372
|
allow_output_data_deletion: bool | None = Field(
|
|
@@ -399,10 +383,10 @@ class RenameJobParameters(BaseModel):
|
|
|
399
383
|
extra='allow',
|
|
400
384
|
populate_by_name=True,
|
|
401
385
|
)
|
|
402
|
-
new_name:
|
|
386
|
+
new_name: str = Field(..., alias='NewName')
|
|
403
387
|
|
|
404
388
|
|
|
405
|
-
class ScalingBehaviours(
|
|
389
|
+
class ScalingBehaviours(StrEnum):
|
|
406
390
|
aggressive = 'Aggressive'
|
|
407
391
|
balanced = 'Balanced'
|
|
408
392
|
conservative = 'Conservative'
|
|
@@ -424,7 +408,7 @@ class SelectProcessingParameters(BaseModel):
|
|
|
424
408
|
extra='allow',
|
|
425
409
|
populate_by_name=True,
|
|
426
410
|
)
|
|
427
|
-
processing_step_url:
|
|
411
|
+
processing_step_url: AnyUrl = Field(..., alias='ProcessingStepUrl')
|
|
428
412
|
|
|
429
413
|
|
|
430
414
|
class SelectWorkDataCollectionForDataSlotParameters(BaseModel):
|
|
@@ -432,7 +416,7 @@ class SelectWorkDataCollectionForDataSlotParameters(BaseModel):
|
|
|
432
416
|
extra='allow',
|
|
433
417
|
populate_by_name=True,
|
|
434
418
|
)
|
|
435
|
-
work_data_urls: List[
|
|
419
|
+
work_data_urls: List[AnyUrl] = Field(..., alias='WorkDataUrls')
|
|
436
420
|
|
|
437
421
|
|
|
438
422
|
class SelectWorkDataForDataSlotParameters(BaseModel):
|
|
@@ -440,7 +424,7 @@ class SelectWorkDataForDataSlotParameters(BaseModel):
|
|
|
440
424
|
extra='allow',
|
|
441
425
|
populate_by_name=True,
|
|
442
426
|
)
|
|
443
|
-
work_data_url:
|
|
427
|
+
work_data_url: AnyUrl = Field(..., alias='WorkDataUrl')
|
|
444
428
|
|
|
445
429
|
|
|
446
430
|
class SetCommentWorkDataParameters(BaseModel):
|
|
@@ -456,7 +440,7 @@ class SetJobErrorStateParameters(BaseModel):
|
|
|
456
440
|
extra='allow',
|
|
457
441
|
populate_by_name=True,
|
|
458
442
|
)
|
|
459
|
-
message:
|
|
443
|
+
message: str = Field(..., alias='Message')
|
|
460
444
|
|
|
461
445
|
|
|
462
446
|
class SetJobTagsParameters(BaseModel):
|
|
@@ -467,12 +451,21 @@ class SetJobTagsParameters(BaseModel):
|
|
|
467
451
|
tags: List[str] = Field(..., alias='Tags')
|
|
468
452
|
|
|
469
453
|
|
|
454
|
+
class SetJobsErrorStateParameters(BaseModel):
|
|
455
|
+
model_config = ConfigDict(
|
|
456
|
+
extra='allow',
|
|
457
|
+
populate_by_name=True,
|
|
458
|
+
)
|
|
459
|
+
message: str = Field(..., alias='Message')
|
|
460
|
+
created_before: AwareDatetime = Field(..., alias='CreatedBefore')
|
|
461
|
+
|
|
462
|
+
|
|
470
463
|
class SetNameWorkDataParameters(BaseModel):
|
|
471
464
|
model_config = ConfigDict(
|
|
472
465
|
extra='allow',
|
|
473
466
|
populate_by_name=True,
|
|
474
467
|
)
|
|
475
|
-
new_name:
|
|
468
|
+
new_name: str = Field(..., alias='NewName')
|
|
476
469
|
|
|
477
470
|
|
|
478
471
|
class SetProcessingStepTagsParameters(BaseModel):
|
|
@@ -483,6 +476,14 @@ class SetProcessingStepTagsParameters(BaseModel):
|
|
|
483
476
|
tags: List[str] = Field(..., alias='Tags')
|
|
484
477
|
|
|
485
478
|
|
|
479
|
+
class SetProcessingStepTitleParameters(BaseModel):
|
|
480
|
+
model_config = ConfigDict(
|
|
481
|
+
extra='allow',
|
|
482
|
+
populate_by_name=True,
|
|
483
|
+
)
|
|
484
|
+
title: str = Field(..., alias='Title')
|
|
485
|
+
|
|
486
|
+
|
|
486
487
|
class SetTagsWorkDataParameters(BaseModel):
|
|
487
488
|
model_config = ConfigDict(
|
|
488
489
|
extra='allow',
|
|
@@ -491,12 +492,20 @@ class SetTagsWorkDataParameters(BaseModel):
|
|
|
491
492
|
tags: List[str] = Field(..., alias='Tags')
|
|
492
493
|
|
|
493
494
|
|
|
494
|
-
class SortTypes(
|
|
495
|
+
class SortTypes(StrEnum):
|
|
495
496
|
none = 'None'
|
|
496
497
|
ascending = 'Ascending'
|
|
497
498
|
descending = 'Descending'
|
|
498
499
|
|
|
499
500
|
|
|
501
|
+
class SuspendAllDeploymentsParameters(BaseModel):
|
|
502
|
+
model_config = ConfigDict(
|
|
503
|
+
extra='allow',
|
|
504
|
+
populate_by_name=True,
|
|
505
|
+
)
|
|
506
|
+
suspension_type: DeploymentSuspensionTypes = Field(..., alias='SuspensionType')
|
|
507
|
+
|
|
508
|
+
|
|
500
509
|
class UserHtoOpenApiProperties(BaseModel):
|
|
501
510
|
model_config = ConfigDict(
|
|
502
511
|
extra='allow',
|
|
@@ -506,7 +515,7 @@ class UserHtoOpenApiProperties(BaseModel):
|
|
|
506
515
|
user_grants: List[str] | None = Field(None, alias='UserGrants')
|
|
507
516
|
|
|
508
517
|
|
|
509
|
-
class WorkDataKind(
|
|
518
|
+
class WorkDataKind(StrEnum):
|
|
510
519
|
unknown = 'Unknown'
|
|
511
520
|
client_upload = 'ClientUpload'
|
|
512
521
|
processing_artefact = 'ProcessingArtefact'
|
|
@@ -532,7 +541,7 @@ class WorkDataRootHtoOpenApiProperties(BaseModel):
|
|
|
532
541
|
)
|
|
533
542
|
|
|
534
543
|
|
|
535
|
-
class WorkDataSortProperties(
|
|
544
|
+
class WorkDataSortProperties(StrEnum):
|
|
536
545
|
name = 'Name'
|
|
537
546
|
media_type = 'MediaType'
|
|
538
547
|
kind = 'Kind'
|
|
@@ -587,23 +596,48 @@ class Action(BaseModel):
|
|
|
587
596
|
fields: List[FieldModel] | None = None
|
|
588
597
|
|
|
589
598
|
|
|
599
|
+
class AdminHtoOpenApi(BaseModel):
|
|
600
|
+
model_config = ConfigDict(
|
|
601
|
+
extra='allow',
|
|
602
|
+
populate_by_name=True,
|
|
603
|
+
)
|
|
604
|
+
class_: List[str] | None = Field(None, alias='class')
|
|
605
|
+
title: str | None = None
|
|
606
|
+
properties: AdminHtoOpenApiProperties | None = None
|
|
607
|
+
entities: List[Any] | None = None
|
|
608
|
+
actions: List[Action] | None = None
|
|
609
|
+
links: List[Link] | None = None
|
|
610
|
+
|
|
611
|
+
|
|
590
612
|
class AdminJobFilterParameter(BaseModel):
|
|
591
613
|
model_config = ConfigDict(
|
|
592
614
|
extra='allow',
|
|
593
615
|
populate_by_name=True,
|
|
594
616
|
)
|
|
595
|
-
work_data_url:
|
|
617
|
+
work_data_url: AnyUrl | None = Field(
|
|
618
|
+
None,
|
|
619
|
+
alias='WorkDataUrl',
|
|
620
|
+
description='Find jobs which use this WorkData as input',
|
|
621
|
+
)
|
|
596
622
|
name: str | None = Field(None, alias='Name')
|
|
597
623
|
state: JobStates | None = Field(None, alias='State')
|
|
598
624
|
show_hidden: bool | None = Field(None, alias='ShowHidden')
|
|
599
|
-
processing_step_url:
|
|
625
|
+
processing_step_url: AnyUrl | None = Field(
|
|
626
|
+
None,
|
|
627
|
+
alias='ProcessingStepUrl',
|
|
628
|
+
description='Find jobs which use this ProcessingStep',
|
|
629
|
+
)
|
|
600
630
|
created_before: AwareDatetime | None = Field(None, alias='CreatedBefore')
|
|
601
631
|
created_after: AwareDatetime | None = Field(None, alias='CreatedAfter')
|
|
602
632
|
tags_by_and: List[str] | None = Field(None, alias='TagsByAnd')
|
|
603
633
|
tags_by_or: List[str] | None = Field(None, alias='TagsByOr')
|
|
604
|
-
parent_job_url:
|
|
634
|
+
parent_job_url: AnyUrl | None = Field(
|
|
635
|
+
None, alias='ParentJobUrl', description='Find jobs which have this patent job'
|
|
636
|
+
)
|
|
605
637
|
is_sub_job: bool | None = Field(None, alias='IsSubJob')
|
|
606
|
-
user_url:
|
|
638
|
+
user_url: AnyUrl | None = Field(
|
|
639
|
+
None, alias='UserUrl', description='Find jobs which have this owner'
|
|
640
|
+
)
|
|
607
641
|
|
|
608
642
|
|
|
609
643
|
class AdminJobQueryResultHtoOpenApi(BaseModel):
|
|
@@ -614,7 +648,7 @@ class AdminJobQueryResultHtoOpenApi(BaseModel):
|
|
|
614
648
|
class_: List[str] | None = Field(None, alias='class')
|
|
615
649
|
title: str | None = None
|
|
616
650
|
properties: AdminJobQueryResultHtoOpenApiProperties | None = None
|
|
617
|
-
entities: List | None = None
|
|
651
|
+
entities: List[Any] | None = None
|
|
618
652
|
actions: List[Action] | None = None
|
|
619
653
|
links: List[Link] | None = None
|
|
620
654
|
|
|
@@ -648,7 +682,7 @@ class AdminProcessingStepQueryResultHtoOpenApi(BaseModel):
|
|
|
648
682
|
class_: List[str] | None = Field(None, alias='class')
|
|
649
683
|
title: str | None = None
|
|
650
684
|
properties: AdminProcessingStepQueryResultHtoOpenApiProperties | None = None
|
|
651
|
-
entities: List | None = None
|
|
685
|
+
entities: List[Any] | None = None
|
|
652
686
|
actions: List[Action] | None = None
|
|
653
687
|
links: List[Link] | None = None
|
|
654
688
|
|
|
@@ -658,11 +692,15 @@ class AdminWorkDataFilterParameter(BaseModel):
|
|
|
658
692
|
extra='allow',
|
|
659
693
|
populate_by_name=True,
|
|
660
694
|
)
|
|
661
|
-
producer_processing_step_url:
|
|
662
|
-
None,
|
|
695
|
+
producer_processing_step_url: AnyUrl | None = Field(
|
|
696
|
+
None,
|
|
697
|
+
alias='ProducerProcessingStepUrl',
|
|
698
|
+
description='Find WorkData which was produced by this ProcessingStep',
|
|
663
699
|
)
|
|
664
700
|
name_contains: str | None = Field(None, alias='NameContains')
|
|
665
|
-
user_url:
|
|
701
|
+
user_url: AnyUrl | None = Field(
|
|
702
|
+
None, alias='UserUrl', description='Find WorkData which has this owner'
|
|
703
|
+
)
|
|
666
704
|
show_hidden: bool | None = Field(None, alias='ShowHidden')
|
|
667
705
|
media_type_contains: str | None = Field(None, alias='MediaTypeContains')
|
|
668
706
|
tags_by_and: List[str] | None = Field(None, alias='TagsByAnd')
|
|
@@ -693,7 +731,7 @@ class AdminWorkDataQueryResultHtoOpenApi(BaseModel):
|
|
|
693
731
|
class_: List[str] | None = Field(None, alias='class')
|
|
694
732
|
title: str | None = None
|
|
695
733
|
properties: AdminWorkDataQueryResultHtoOpenApiProperties | None = None
|
|
696
|
-
entities: List | None = None
|
|
734
|
+
entities: List[Any] | None = None
|
|
697
735
|
actions: List[Action] | None = None
|
|
698
736
|
links: List[Link] | None = None
|
|
699
737
|
|
|
@@ -704,7 +742,7 @@ class ConfigureDeploymentParameters(BaseModel):
|
|
|
704
742
|
populate_by_name=True,
|
|
705
743
|
)
|
|
706
744
|
resource_preset: DeploymentResourcePresets = Field(..., alias='ResourcePreset')
|
|
707
|
-
entrypoint:
|
|
745
|
+
entrypoint: str = Field(
|
|
708
746
|
...,
|
|
709
747
|
alias='Entrypoint',
|
|
710
748
|
description='Specifies the container entry point, aka ProCon file to use',
|
|
@@ -720,7 +758,7 @@ class EntryPointHtoOpenApi(BaseModel):
|
|
|
720
758
|
class_: List[str] | None = Field(None, alias='class')
|
|
721
759
|
title: str | None = None
|
|
722
760
|
properties: EntryPointHtoOpenApiProperties | None = None
|
|
723
|
-
entities: List | None = None
|
|
761
|
+
entities: List[Any] | None = None
|
|
724
762
|
actions: List[Action] | None = None
|
|
725
763
|
links: List[Link] | None = None
|
|
726
764
|
|
|
@@ -733,7 +771,7 @@ class InfoHtoOpenApi(BaseModel):
|
|
|
733
771
|
class_: List[str] | None = Field(None, alias='class')
|
|
734
772
|
title: str | None = None
|
|
735
773
|
properties: InfoHtoOpenApiProperties | None = None
|
|
736
|
-
entities: List | None = None
|
|
774
|
+
entities: List[Any] | None = None
|
|
737
775
|
actions: List[Action] | None = None
|
|
738
776
|
links: List[Link] | None = None
|
|
739
777
|
|
|
@@ -746,14 +784,24 @@ class JobFilterParameter(BaseModel):
|
|
|
746
784
|
state: JobStates | None = Field(None, alias='State')
|
|
747
785
|
name: str | None = Field(None, alias='Name')
|
|
748
786
|
show_hidden: bool | None = Field(None, alias='ShowHidden')
|
|
749
|
-
work_data_url:
|
|
787
|
+
work_data_url: AnyUrl | None = Field(
|
|
788
|
+
None,
|
|
789
|
+
alias='WorkDataUrl',
|
|
790
|
+
description='Find jobs which use this WorkData as input',
|
|
791
|
+
)
|
|
750
792
|
created_before: AwareDatetime | None = Field(None, alias='CreatedBefore')
|
|
751
793
|
created_after: AwareDatetime | None = Field(None, alias='CreatedAfter')
|
|
752
794
|
tags_by_and: List[str] | None = Field(None, alias='TagsByAnd')
|
|
753
795
|
tags_by_or: List[str] | None = Field(None, alias='TagsByOr')
|
|
754
|
-
processing_step_url:
|
|
796
|
+
processing_step_url: AnyUrl | None = Field(
|
|
797
|
+
None,
|
|
798
|
+
alias='ProcessingStepUrl',
|
|
799
|
+
description='Find jobs which use this ProcessingStep',
|
|
800
|
+
)
|
|
755
801
|
is_sub_job: bool | None = Field(None, alias='IsSubJob')
|
|
756
|
-
parent_job_url:
|
|
802
|
+
parent_job_url: AnyUrl | None = Field(
|
|
803
|
+
None, alias='ParentJobUrl', description='Find jobs which have this patent job'
|
|
804
|
+
)
|
|
757
805
|
|
|
758
806
|
|
|
759
807
|
class JobHtoOpenApiProperties(BaseModel):
|
|
@@ -787,7 +835,7 @@ class JobQueryResultHtoOpenApi(BaseModel):
|
|
|
787
835
|
class_: List[str] | None = Field(None, alias='class')
|
|
788
836
|
title: str | None = None
|
|
789
837
|
properties: JobQueryResultHtoOpenApiProperties | None = None
|
|
790
|
-
entities: List | None = None
|
|
838
|
+
entities: List[Any] | None = None
|
|
791
839
|
actions: List[Action] | None = None
|
|
792
840
|
links: List[Link] | None = None
|
|
793
841
|
|
|
@@ -809,7 +857,7 @@ class JobUsedTagsAdminHtoOpenApi(BaseModel):
|
|
|
809
857
|
class_: List[str] | None = Field(None, alias='class')
|
|
810
858
|
title: str | None = None
|
|
811
859
|
properties: JobUsedTagsAdminHtoOpenApiProperties | None = None
|
|
812
|
-
entities: List | None = None
|
|
860
|
+
entities: List[Any] | None = None
|
|
813
861
|
actions: List[Action] | None = None
|
|
814
862
|
links: List[Link] | None = None
|
|
815
863
|
|
|
@@ -822,7 +870,7 @@ class JobUsedTagsHtoOpenApi(BaseModel):
|
|
|
822
870
|
class_: List[str] | None = Field(None, alias='class')
|
|
823
871
|
title: str | None = None
|
|
824
872
|
properties: JobUsedTagsHtoOpenApiProperties | None = None
|
|
825
|
-
entities: List | None = None
|
|
873
|
+
entities: List[Any] | None = None
|
|
826
874
|
actions: List[Action] | None = None
|
|
827
875
|
links: List[Link] | None = None
|
|
828
876
|
|
|
@@ -835,7 +883,7 @@ class JobsRootHtoOpenApi(BaseModel):
|
|
|
835
883
|
class_: List[str] | None = Field(None, alias='class')
|
|
836
884
|
title: str | None = None
|
|
837
885
|
properties: JobsRootHtoOpenApiProperties | None = None
|
|
838
|
-
entities: List | None = None
|
|
886
|
+
entities: List[Any] | None = None
|
|
839
887
|
actions: List[Action] | None = None
|
|
840
888
|
links: List[Link] | None = None
|
|
841
889
|
|
|
@@ -883,25 +931,28 @@ class ProcessingStepHtoOpenApiProperties(BaseModel):
|
|
|
883
931
|
long_description: str | None = Field(
|
|
884
932
|
None, alias='LongDescription', description='Human-readable long description'
|
|
885
933
|
)
|
|
934
|
+
pro_con_version: str | None = Field(
|
|
935
|
+
None,
|
|
936
|
+
alias='ProConVersion',
|
|
937
|
+
description='The version of ProCon used in the code which generated the manifest',
|
|
938
|
+
)
|
|
886
939
|
code_hash: str | None = Field(
|
|
887
940
|
None,
|
|
888
941
|
alias='CodeHash',
|
|
889
|
-
description='The hash of the code executing this function. This is intended to inhibit\nredeployment of different code for the same function version.',
|
|
942
|
+
description='The hash of the code executing this function. This is intended to inhibit\r\nredeployment of different code for the same function version.',
|
|
890
943
|
)
|
|
891
944
|
has_parameters: bool | None = Field(None, alias='HasParameters')
|
|
892
945
|
is_public: bool | None = Field(None, alias='IsPublic')
|
|
893
946
|
tags: List[str] | None = Field(None, alias='Tags')
|
|
894
|
-
is_configured: bool | None = Field(None, alias='IsConfigured')
|
|
895
947
|
hidden: bool | None = Field(None, alias='Hidden')
|
|
896
948
|
is_deprecated: bool | None = Field(None, alias='IsDeprecated')
|
|
897
|
-
|
|
949
|
+
deprecated_at: AwareDatetime | None = Field(None, alias='DeprecatedAt')
|
|
898
950
|
reason_for_deprecation: str | None = Field(None, alias='ReasonForDeprecation')
|
|
899
951
|
created_at: AwareDatetime | None = Field(None, alias='CreatedAt')
|
|
900
952
|
last_modified_at: AwareDatetime | None = Field(None, alias='LastModifiedAt')
|
|
901
953
|
parameter_schema: str | None = Field(None, alias='ParameterSchema')
|
|
902
954
|
default_parameters: str | None = Field(None, alias='DefaultParameters')
|
|
903
955
|
return_schema: str | None = Field(None, alias='ReturnSchema')
|
|
904
|
-
error_schema: str | None = Field(None, alias='ErrorSchema')
|
|
905
956
|
input_data_slot_specification: List[DataSpecificationHto] | None = Field(
|
|
906
957
|
None, alias='InputDataSlotSpecification'
|
|
907
958
|
)
|
|
@@ -920,7 +971,7 @@ class ProcessingStepQueryResultHtoOpenApi(BaseModel):
|
|
|
920
971
|
class_: List[str] | None = Field(None, alias='class')
|
|
921
972
|
title: str | None = None
|
|
922
973
|
properties: ProcessingStepQueryResultHtoOpenApiProperties | None = None
|
|
923
|
-
entities: List | None = None
|
|
974
|
+
entities: List[Any] | None = None
|
|
924
975
|
actions: List[Action] | None = None
|
|
925
976
|
links: List[Link] | None = None
|
|
926
977
|
|
|
@@ -933,7 +984,7 @@ class ProcessingStepRootHtoOpenApi(BaseModel):
|
|
|
933
984
|
class_: List[str] | None = Field(None, alias='class')
|
|
934
985
|
title: str | None = None
|
|
935
986
|
properties: ProcessingStepRootHtoOpenApiProperties | None = None
|
|
936
|
-
entities: List | None = None
|
|
987
|
+
entities: List[Any] | None = None
|
|
937
988
|
actions: List[Action] | None = None
|
|
938
989
|
links: List[Link] | None = None
|
|
939
990
|
|
|
@@ -957,7 +1008,7 @@ class ProcessingStepUsedTagsAdminHtoOpenApi(BaseModel):
|
|
|
957
1008
|
class_: List[str] | None = Field(None, alias='class')
|
|
958
1009
|
title: str | None = None
|
|
959
1010
|
properties: ProcessingStepUsedTagsAdminHtoOpenApiProperties | None = None
|
|
960
|
-
entities: List | None = None
|
|
1011
|
+
entities: List[Any] | None = None
|
|
961
1012
|
actions: List[Action] | None = None
|
|
962
1013
|
links: List[Link] | None = None
|
|
963
1014
|
|
|
@@ -970,7 +1021,7 @@ class ProcessingStepUsedTagsHtoOpenApi(BaseModel):
|
|
|
970
1021
|
class_: List[str] | None = Field(None, alias='class')
|
|
971
1022
|
title: str | None = None
|
|
972
1023
|
properties: ProcessingStepUsedTagsHtoOpenApiProperties | None = None
|
|
973
|
-
entities: List | None = None
|
|
1024
|
+
entities: List[Any] | None = None
|
|
974
1025
|
actions: List[Action] | None = None
|
|
975
1026
|
links: List[Link] | None = None
|
|
976
1027
|
|
|
@@ -983,7 +1034,7 @@ class UserHtoOpenApi(BaseModel):
|
|
|
983
1034
|
class_: List[str] | None = Field(None, alias='class')
|
|
984
1035
|
title: str | None = None
|
|
985
1036
|
properties: UserHtoOpenApiProperties | None = None
|
|
986
|
-
entities: List | None = None
|
|
1037
|
+
entities: List[Any] | None = None
|
|
987
1038
|
actions: List[Action] | None = None
|
|
988
1039
|
links: List[Link] | None = None
|
|
989
1040
|
|
|
@@ -994,8 +1045,10 @@ class WorkDataFilterParameter(BaseModel):
|
|
|
994
1045
|
populate_by_name=True,
|
|
995
1046
|
)
|
|
996
1047
|
name_contains: str | None = Field(None, alias='NameContains')
|
|
997
|
-
producer_processing_step_url:
|
|
998
|
-
None,
|
|
1048
|
+
producer_processing_step_url: AnyUrl | None = Field(
|
|
1049
|
+
None,
|
|
1050
|
+
alias='ProducerProcessingStepUrl',
|
|
1051
|
+
description='Find WorkData which was produced by this ProcessingStep',
|
|
999
1052
|
)
|
|
1000
1053
|
show_hidden: bool | None = Field(None, alias='ShowHidden')
|
|
1001
1054
|
media_type_contains: str | None = Field(None, alias='MediaTypeContains')
|
|
@@ -1050,7 +1103,7 @@ class WorkDataQueryResultHtoOpenApi(BaseModel):
|
|
|
1050
1103
|
class_: List[str] | None = Field(None, alias='class')
|
|
1051
1104
|
title: str | None = None
|
|
1052
1105
|
properties: WorkDataQueryResultHtoOpenApiProperties | None = None
|
|
1053
|
-
entities: List | None = None
|
|
1106
|
+
entities: List[Any] | None = None
|
|
1054
1107
|
actions: List[Action] | None = None
|
|
1055
1108
|
links: List[Link] | None = None
|
|
1056
1109
|
|
|
@@ -1063,7 +1116,7 @@ class WorkDataRootHtoOpenApi(BaseModel):
|
|
|
1063
1116
|
class_: List[str] | None = Field(None, alias='class')
|
|
1064
1117
|
title: str | None = None
|
|
1065
1118
|
properties: WorkDataRootHtoOpenApiProperties | None = None
|
|
1066
|
-
entities: List | None = None
|
|
1119
|
+
entities: List[Any] | None = None
|
|
1067
1120
|
actions: List[Action] | None = None
|
|
1068
1121
|
links: List[Link] | None = None
|
|
1069
1122
|
|
|
@@ -1076,7 +1129,7 @@ class WorkDataUsedTagsAdminQueryResultHtoOpenApi(BaseModel):
|
|
|
1076
1129
|
class_: List[str] | None = Field(None, alias='class')
|
|
1077
1130
|
title: str | None = None
|
|
1078
1131
|
properties: WorkDataUsedTagsAdminQueryResultHtoOpenApiProperties | None = None
|
|
1079
|
-
entities: List | None = None
|
|
1132
|
+
entities: List[Any] | None = None
|
|
1080
1133
|
actions: List[Action] | None = None
|
|
1081
1134
|
links: List[Link] | None = None
|
|
1082
1135
|
|
|
@@ -1089,7 +1142,7 @@ class WorkDataUsedTagsQueryResultHtoOpenApi(BaseModel):
|
|
|
1089
1142
|
class_: List[str] | None = Field(None, alias='class')
|
|
1090
1143
|
title: str | None = None
|
|
1091
1144
|
properties: WorkDataUsedTagsQueryResultHtoOpenApiProperties | None = None
|
|
1092
|
-
entities: List | None = None
|
|
1145
|
+
entities: List[Any] | None = None
|
|
1093
1146
|
actions: List[Action] | None = None
|
|
1094
1147
|
links: List[Link] | None = None
|
|
1095
1148
|
|
|
@@ -1126,7 +1179,7 @@ class JobHtoOpenApi(BaseModel):
|
|
|
1126
1179
|
class_: List[str] | None = Field(None, alias='class')
|
|
1127
1180
|
title: str | None = None
|
|
1128
1181
|
properties: JobHtoOpenApiProperties | None = None
|
|
1129
|
-
entities: List | None = None
|
|
1182
|
+
entities: List[Any] | None = None
|
|
1130
1183
|
actions: List[Action] | None = None
|
|
1131
1184
|
links: List[Link] | None = None
|
|
1132
1185
|
|
|
@@ -1150,7 +1203,7 @@ class ProcessingStepHtoOpenApi(BaseModel):
|
|
|
1150
1203
|
class_: List[str] | None = Field(None, alias='class')
|
|
1151
1204
|
title: str | None = None
|
|
1152
1205
|
properties: ProcessingStepHtoOpenApiProperties | None = None
|
|
1153
|
-
entities: List | None = None
|
|
1206
|
+
entities: List[Any] | None = None
|
|
1154
1207
|
actions: List[Action] | None = None
|
|
1155
1208
|
links: List[Link] | None = None
|
|
1156
1209
|
|
|
@@ -1176,6 +1229,6 @@ class WorkDataHtoOpenApi(BaseModel):
|
|
|
1176
1229
|
class_: List[str] | None = Field(None, alias='class')
|
|
1177
1230
|
title: str | None = None
|
|
1178
1231
|
properties: WorkDataHtoOpenApiProperties | None = None
|
|
1179
|
-
entities: List | None = None
|
|
1232
|
+
entities: List[Any] | None = None
|
|
1180
1233
|
actions: List[Action] | None = None
|
|
1181
1234
|
links: List[Link] | None = None
|