pinexq-client 0.9.2.20250828.47__py3-none-any.whl → 0.9.2.20251028.52__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/job_management/__init__.py +1 -1
- pinexq_client/job_management/hcos/job_used_tags_hco.py +22 -0
- pinexq_client/job_management/hcos/jobsroot_hco.py +4 -1
- pinexq_client/job_management/hcos/processing_step_hco.py +23 -1
- pinexq_client/job_management/hcos/processing_step_used_tags_hco.py +22 -1
- pinexq_client/job_management/hcos/processingsteproot_hco.py +48 -44
- pinexq_client/job_management/hcos/workdata_used_tags_query_result_hco.py +21 -0
- pinexq_client/job_management/hcos/workdataroot_hco.py +58 -52
- pinexq_client/job_management/known_relations.py +1 -0
- pinexq_client/job_management/model/open_api_generated.py +97 -1
- pinexq_client/job_management/model/sirenentities.py +14 -1
- pinexq_client/job_management/tool/job.py +8 -3
- pinexq_client/job_management/tool/processing_step.py +23 -1
- {pinexq_client-0.9.2.20250828.47.dist-info → pinexq_client-0.9.2.20251028.52.dist-info}/METADATA +2 -1
- {pinexq_client-0.9.2.20250828.47.dist-info → pinexq_client-0.9.2.20251028.52.dist-info}/RECORD +18 -18
- {pinexq_client-0.9.2.20250828.47.dist-info → pinexq_client-0.9.2.20251028.52.dist-info}/WHEEL +0 -0
- {pinexq_client-0.9.2.20250828.47.dist-info → pinexq_client-0.9.2.20251028.52.dist-info}/entry_points.txt +0 -0
- {pinexq_client-0.9.2.20250828.47.dist-info → pinexq_client-0.9.2.20251028.52.dist-info}/licenses/LICENSE +0 -0
|
@@ -5,6 +5,7 @@ import httpx
|
|
|
5
5
|
from pinexq_client.core.hco.hco_base import Hco, Property
|
|
6
6
|
from pinexq_client.core.hco.link_hco import LinkHco
|
|
7
7
|
from pinexq_client.job_management.known_relations import Relations
|
|
8
|
+
from pinexq_client.job_management.model import JobUsedTagsEntityAdmin
|
|
8
9
|
from pinexq_client.job_management.model.sirenentities import JobUsedTagsEntity
|
|
9
10
|
|
|
10
11
|
|
|
@@ -28,3 +29,24 @@ class JobUsedTagsLink(LinkHco):
|
|
|
28
29
|
def navigate(self) -> JobUsedTagsHco:
|
|
29
30
|
return JobUsedTagsHco.from_entity(self._navigate_internal(JobUsedTagsEntity), self._client)
|
|
30
31
|
|
|
32
|
+
|
|
33
|
+
class JobUsedTagsAdminHco(Hco[JobUsedTagsEntityAdmin]):
|
|
34
|
+
tags: List[str] | None = Property()
|
|
35
|
+
|
|
36
|
+
self_link: 'JobUsedTagsAdminLink'
|
|
37
|
+
|
|
38
|
+
@classmethod
|
|
39
|
+
def from_entity(cls, entity: JobUsedTagsEntityAdmin, client: httpx.Client) -> Self:
|
|
40
|
+
instance = cls(client, entity)
|
|
41
|
+
|
|
42
|
+
Hco.check_classes(instance._entity.class_, ["JobUsedTagsAdmin"])
|
|
43
|
+
|
|
44
|
+
instance.self_link = JobUsedTagsAdminLink.from_entity(instance._client, instance._entity, Relations.SELF)
|
|
45
|
+
|
|
46
|
+
return instance
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
class JobUsedTagsAdminLink(LinkHco):
|
|
50
|
+
def navigate(self) -> JobUsedTagsAdminHco:
|
|
51
|
+
return JobUsedTagsAdminHco.from_entity(self._navigate_internal(JobUsedTagsEntityAdmin), self._client)
|
|
52
|
+
|
|
@@ -13,7 +13,7 @@ from pinexq_client.job_management.hcos.job_query_result_hco import (
|
|
|
13
13
|
JobQueryResultHco,
|
|
14
14
|
JobQueryResultLink
|
|
15
15
|
)
|
|
16
|
-
from pinexq_client.job_management.hcos.job_used_tags_hco import JobUsedTagsLink
|
|
16
|
+
from pinexq_client.job_management.hcos.job_used_tags_hco import JobUsedTagsLink, JobUsedTagsAdminLink
|
|
17
17
|
from pinexq_client.job_management.known_relations import Relations
|
|
18
18
|
from pinexq_client.job_management.model import RapidJobSetupParameters
|
|
19
19
|
from pinexq_client.job_management.model.open_api_generated import (
|
|
@@ -71,6 +71,7 @@ class JobsRootHco(Hco[JobsRootEntity]):
|
|
|
71
71
|
job_query_action: JobQueryAction | UnavailableAction
|
|
72
72
|
create_subjob_action: CreateSubJobAction | UnavailableAction
|
|
73
73
|
used_tags_link: JobUsedTagsLink | UnavailableLink
|
|
74
|
+
used_tags_admin_link: JobUsedTagsAdminLink | UnavailableLink
|
|
74
75
|
|
|
75
76
|
self_link: 'JobsRootLink'
|
|
76
77
|
|
|
@@ -87,6 +88,8 @@ class JobsRootHco(Hco[JobsRootEntity]):
|
|
|
87
88
|
instance.job_query_action = JobQueryAction.from_entity_optional(client, instance._entity, "CreateJobQuery")
|
|
88
89
|
instance.used_tags_link = JobUsedTagsLink.from_entity_optional(
|
|
89
90
|
instance._client, instance._entity, Relations.USED_TAGS)
|
|
91
|
+
instance.used_tags_admin_link = JobUsedTagsAdminLink.from_entity_optional(
|
|
92
|
+
instance._client, instance._entity, Relations.USED_TAGS_ADMIN)
|
|
90
93
|
instance.self_link = JobsRootLink.from_entity(instance._client, instance._entity, Relations.SELF)
|
|
91
94
|
|
|
92
95
|
return instance
|
|
@@ -13,7 +13,8 @@ from pinexq_client.core.hco.link_hco import LinkHco
|
|
|
13
13
|
from pinexq_client.core.hco.unavailable import UnavailableAction
|
|
14
14
|
from pinexq_client.core.hco.upload_action_hco import UploadAction, UploadParameters
|
|
15
15
|
from pinexq_client.job_management.known_relations import Relations
|
|
16
|
-
from pinexq_client.job_management.model import CopyPsFromUserToOrgActionParameters, CopyPsFromOrgToUserActionParameters
|
|
16
|
+
from pinexq_client.job_management.model import CopyPsFromUserToOrgActionParameters, CopyPsFromOrgToUserActionParameters, \
|
|
17
|
+
DeprecatePsActionParameters
|
|
17
18
|
from pinexq_client.job_management.model.open_api_generated import DataSpecificationHto, \
|
|
18
19
|
SetProcessingStepTagsParameters, EditProcessingStepParameters
|
|
19
20
|
from pinexq_client.job_management.model.sirenentities import ProcessingStepEntity
|
|
@@ -76,6 +77,10 @@ class DeleteAction(ActionHco):
|
|
|
76
77
|
self._execute_internal()
|
|
77
78
|
|
|
78
79
|
|
|
80
|
+
class RestoreAction(ActionHco):
|
|
81
|
+
def execute(self):
|
|
82
|
+
self._execute_internal()
|
|
83
|
+
|
|
79
84
|
class UploadConfigurationAction(UploadAction):
|
|
80
85
|
def execute(self, parameters: UploadParameters):
|
|
81
86
|
upload_json(self._client, self._action, parameters.json_, parameters.filename)
|
|
@@ -103,6 +108,15 @@ class ProcessingStepCopyFromOrgToUserAction(ActionWithParametersHco[CopyPsFromOr
|
|
|
103
108
|
CopyPsFromOrgToUserActionParameters())
|
|
104
109
|
|
|
105
110
|
|
|
111
|
+
class ProcessingStepDeprecateAction(ActionWithParametersHco[DeprecatePsActionParameters]):
|
|
112
|
+
def execute(self, parameters: DeprecatePsActionParameters):
|
|
113
|
+
self._execute(parameters)
|
|
114
|
+
|
|
115
|
+
def default_parameters(self) -> DeprecatePsActionParameters:
|
|
116
|
+
return self._get_default_parameters(DeprecatePsActionParameters,
|
|
117
|
+
DeprecatePsActionParameters())
|
|
118
|
+
|
|
119
|
+
|
|
106
120
|
class ProcessingStepHco(Hco[ProcessingStepEntity]):
|
|
107
121
|
title: str = Property()
|
|
108
122
|
version: str | None = Property()
|
|
@@ -120,6 +134,8 @@ class ProcessingStepHco(Hco[ProcessingStepEntity]):
|
|
|
120
134
|
return_schema: str | None = Property()
|
|
121
135
|
error_schema: str | None = Property()
|
|
122
136
|
hidden: bool | None = Property()
|
|
137
|
+
deprecated_on: datetime | None = Property()
|
|
138
|
+
reason_for_deprecation: str | None = Property()
|
|
123
139
|
|
|
124
140
|
input_data_slot_specification: List[DataSpecificationHto] | None = Property()
|
|
125
141
|
output_data_slot_specification: List[DataSpecificationHto] | None = Property()
|
|
@@ -133,6 +149,8 @@ class ProcessingStepHco(Hco[ProcessingStepEntity]):
|
|
|
133
149
|
copy_from_user_to_org_action: ProcessingStepCopyFromUserToOrgAction | UnavailableAction
|
|
134
150
|
copy_from_org_to_user_action: ProcessingStepCopyFromOrgToUserAction | UnavailableAction
|
|
135
151
|
delete_action: DeleteAction | UnavailableAction
|
|
152
|
+
deprecate_ps_action: ProcessingStepDeprecateAction | UnavailableAction
|
|
153
|
+
restore_ps_action: RestoreAction | UnavailableAction
|
|
136
154
|
|
|
137
155
|
self_link: ProcessingStepLink
|
|
138
156
|
download_link: DownloadLinkHco
|
|
@@ -167,5 +185,9 @@ class ProcessingStepHco(Hco[ProcessingStepEntity]):
|
|
|
167
185
|
client, instance._entity, "CopyToUser")
|
|
168
186
|
instance.delete_action = DeleteAction.from_entity_optional(
|
|
169
187
|
client, instance._entity, "Delete")
|
|
188
|
+
instance.deprecate_ps_action = ProcessingStepDeprecateAction.from_entity_optional(
|
|
189
|
+
client, instance._entity, "Deprecate")
|
|
190
|
+
instance.restore_ps_action = RestoreAction.from_entity_optional(
|
|
191
|
+
client, instance._entity, "Restore")
|
|
170
192
|
|
|
171
193
|
return instance
|
|
@@ -5,10 +5,11 @@ import httpx
|
|
|
5
5
|
from pinexq_client.core.hco.hco_base import Hco, Property
|
|
6
6
|
from pinexq_client.core.hco.link_hco import LinkHco
|
|
7
7
|
from pinexq_client.job_management.known_relations import Relations
|
|
8
|
+
from pinexq_client.job_management.model import ProcessingStepUsedTagsEntityAdmin
|
|
8
9
|
from pinexq_client.job_management.model.sirenentities import ProcessingStepUsedTagsEntity
|
|
9
10
|
|
|
10
11
|
|
|
11
|
-
class ProcessingStepUsedTagsHco(Hco[
|
|
12
|
+
class ProcessingStepUsedTagsHco(Hco[ProcessingStepUsedTagsEntity]):
|
|
12
13
|
tags: List[str] | None = Property()
|
|
13
14
|
|
|
14
15
|
self_link: 'ProcessingStepUsedTagsLink'
|
|
@@ -28,3 +29,23 @@ class ProcessingStepUsedTagsLink(LinkHco):
|
|
|
28
29
|
def navigate(self) -> ProcessingStepUsedTagsHco:
|
|
29
30
|
return ProcessingStepUsedTagsHco.from_entity(self._navigate_internal(ProcessingStepUsedTagsEntity), self._client)
|
|
30
31
|
|
|
32
|
+
|
|
33
|
+
class ProcessingStepUsedTagsAdminHco(Hco[ProcessingStepUsedTagsEntityAdmin]):
|
|
34
|
+
tags: List[str] | None = Property()
|
|
35
|
+
|
|
36
|
+
self_link: 'ProcessingStepUsedTagsAdminLink'
|
|
37
|
+
|
|
38
|
+
@classmethod
|
|
39
|
+
def from_entity(cls, entity: ProcessingStepUsedTagsEntityAdmin, client: httpx.Client) -> Self:
|
|
40
|
+
instance = cls(client, entity)
|
|
41
|
+
|
|
42
|
+
Hco.check_classes(instance._entity.class_, ["ProcessingStepUsedTagsAdmin"])
|
|
43
|
+
|
|
44
|
+
instance.self_link = ProcessingStepUsedTagsAdminLink.from_entity(instance._client, instance._entity, Relations.SELF)
|
|
45
|
+
|
|
46
|
+
return instance
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
class ProcessingStepUsedTagsAdminLink(LinkHco):
|
|
50
|
+
def navigate(self) -> ProcessingStepUsedTagsAdminHco:
|
|
51
|
+
return ProcessingStepUsedTagsAdminHco.from_entity(self._navigate_internal(ProcessingStepUsedTagsEntityAdmin), self._client)
|
|
@@ -8,11 +8,12 @@ from pinexq_client.core.hco.hco_base import Hco
|
|
|
8
8
|
from pinexq_client.core.hco.link_hco import LinkHco
|
|
9
9
|
from pinexq_client.core.hco.unavailable import UnavailableAction, UnavailableLink
|
|
10
10
|
from pinexq_client.job_management.hcos.processing_step_hco import ProcessingStepLink, ProcessingStepHco
|
|
11
|
-
from pinexq_client.job_management.hcos.processing_step_used_tags_hco import ProcessingStepUsedTagsLink
|
|
11
|
+
from pinexq_client.job_management.hcos.processing_step_used_tags_hco import ProcessingStepUsedTagsLink, \
|
|
12
|
+
ProcessingStepUsedTagsAdminLink
|
|
12
13
|
from pinexq_client.job_management.hcos.processingstep_query_result_hco import (
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
ProcessingStepQueryResultHco,
|
|
15
|
+
ProcessingStepQueryResultLink,
|
|
16
|
+
ProcessingStepQueryResultPaginationLink
|
|
16
17
|
)
|
|
17
18
|
from pinexq_client.job_management.known_relations import Relations
|
|
18
19
|
from pinexq_client.job_management.model import ProcessingStepQueryParameters, CreateProcessingStepParameters
|
|
@@ -20,54 +21,57 @@ from pinexq_client.job_management.model.sirenentities import ProcessingStepsRoot
|
|
|
20
21
|
|
|
21
22
|
|
|
22
23
|
class ProcessingStepQueryAction(ActionWithParametersHco[ProcessingStepQueryParameters]):
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
def execute(self, parameters: ProcessingStepQueryParameters) -> ProcessingStepQueryResultHco:
|
|
25
|
+
url = self._execute_returns_url(parameters)
|
|
26
|
+
link = Link.from_url(url, [str(Relations.CREATED_RESSOURCE)], "Created query", MediaTypes.SIREN)
|
|
27
|
+
# resolve link immediately
|
|
28
|
+
return ProcessingStepQueryResultLink.from_link(self._client, link).navigate()
|
|
28
29
|
|
|
29
|
-
|
|
30
|
-
|
|
30
|
+
def default_parameters(self) -> ProcessingStepQueryParameters:
|
|
31
|
+
return self._get_default_parameters(ProcessingStepQueryParameters, ProcessingStepQueryParameters())
|
|
31
32
|
|
|
32
33
|
|
|
33
34
|
class ProcessingStepRegisterNewAction(ActionWithParametersHco[CreateProcessingStepParameters]):
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
35
|
+
def execute(self, parameters: CreateProcessingStepParameters) -> ProcessingStepHco:
|
|
36
|
+
url = self._execute_returns_url(parameters)
|
|
37
|
+
link = Link.from_url(url, [str(Relations.CREATED_RESSOURCE)], "Created processing-step", MediaTypes.SIREN)
|
|
38
|
+
# resolve link immediately
|
|
39
|
+
return ProcessingStepLink.from_link(self._client, link).navigate()
|
|
39
40
|
|
|
40
|
-
|
|
41
|
-
|
|
41
|
+
def default_parameters(self) -> CreateProcessingStepParameters:
|
|
42
|
+
return self._get_default_parameters(CreateProcessingStepParameters, CreateProcessingStepParameters())
|
|
42
43
|
|
|
43
44
|
|
|
44
45
|
class ProcessingStepsRootLink(LinkHco):
|
|
45
|
-
|
|
46
|
-
|
|
46
|
+
def navigate(self) -> 'ProcessingStepsRootHco':
|
|
47
|
+
return ProcessingStepsRootHco.from_entity(self._navigate_internal(ProcessingStepsRootEntity), self._client)
|
|
47
48
|
|
|
48
49
|
|
|
49
50
|
class ProcessingStepsRootHco(Hco[ProcessingStepsRootEntity]):
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
51
|
+
query_action: ProcessingStepQueryAction | UnavailableAction
|
|
52
|
+
register_new_action: ProcessingStepRegisterNewAction | UnavailableAction
|
|
53
|
+
|
|
54
|
+
self_link: ProcessingStepsRootLink
|
|
55
|
+
all_link: ProcessingStepQueryResultPaginationLink | UnavailableLink
|
|
56
|
+
used_tags_admin_link: ProcessingStepUsedTagsAdminLink | UnavailableLink
|
|
57
|
+
used_tags_link: ProcessingStepUsedTagsLink | UnavailableLink
|
|
58
|
+
|
|
59
|
+
@classmethod
|
|
60
|
+
def from_entity(cls, entity: ProcessingStepsRootEntity, client: httpx.Client) -> Self:
|
|
61
|
+
instance = cls(client, entity)
|
|
62
|
+
Hco.check_classes(instance._entity.class_, ["ProcessingStepRoot"])
|
|
63
|
+
|
|
64
|
+
instance.register_new_action = ProcessingStepRegisterNewAction.from_entity_optional(
|
|
65
|
+
client, instance._entity, "RegisterNewProcessingStep")
|
|
66
|
+
instance.query_action = ProcessingStepQueryAction.from_entity_optional(
|
|
67
|
+
client, instance._entity, "CreateProcessingStepQuery")
|
|
68
|
+
instance.used_tags_link = ProcessingStepUsedTagsLink.from_entity_optional(
|
|
69
|
+
instance._client, instance._entity, Relations.USED_TAGS)
|
|
70
|
+
instance.used_tags_admin_link = ProcessingStepUsedTagsAdminLink.from_entity_optional(
|
|
71
|
+
instance._client, instance._entity, Relations.USED_TAGS_ADMIN)
|
|
72
|
+
instance.self_link = ProcessingStepsRootLink.from_entity(
|
|
73
|
+
instance._client, instance._entity, Relations.SELF)
|
|
74
|
+
instance.all_link = ProcessingStepQueryResultPaginationLink.from_entity_optional(
|
|
75
|
+
instance._client, instance._entity, Relations.ALL)
|
|
76
|
+
|
|
77
|
+
return instance
|
|
@@ -5,6 +5,7 @@ import httpx
|
|
|
5
5
|
from pinexq_client.core.hco.hco_base import Hco, Property
|
|
6
6
|
from pinexq_client.core.hco.link_hco import LinkHco
|
|
7
7
|
from pinexq_client.job_management.known_relations import Relations
|
|
8
|
+
from pinexq_client.job_management.model import WorkDataUsedTagsQueryResultEntityAdmin
|
|
8
9
|
from pinexq_client.job_management.model.sirenentities import WorkDataUsedTagsQueryResultEntity
|
|
9
10
|
|
|
10
11
|
|
|
@@ -28,3 +29,23 @@ class WorkDataUsedTagsLink(LinkHco):
|
|
|
28
29
|
def navigate(self) -> WorkDataUsedTagsQueryResultHto:
|
|
29
30
|
return WorkDataUsedTagsQueryResultHto.from_entity(self._navigate_internal(WorkDataUsedTagsQueryResultEntity), self._client)
|
|
30
31
|
|
|
32
|
+
|
|
33
|
+
class WorkDataUsedTagsQueryResultAdminHto(Hco[WorkDataUsedTagsQueryResultEntityAdmin]):
|
|
34
|
+
tags: List[str] | None = Property()
|
|
35
|
+
|
|
36
|
+
self_link: 'WorkDataUsedTagsAdminLink'
|
|
37
|
+
|
|
38
|
+
@classmethod
|
|
39
|
+
def from_entity(cls, entity: WorkDataUsedTagsQueryResultEntityAdmin, client: httpx.Client) -> Self:
|
|
40
|
+
instance = cls(client, entity)
|
|
41
|
+
|
|
42
|
+
Hco.check_classes(instance._entity.class_, ["WorkDataUsedTagsAdminQueryResult"])
|
|
43
|
+
|
|
44
|
+
instance.self_link = WorkDataUsedTagsAdminLink.from_entity(instance._client, instance._entity, Relations.SELF)
|
|
45
|
+
|
|
46
|
+
return instance
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
class WorkDataUsedTagsAdminLink(LinkHco):
|
|
50
|
+
def navigate(self) -> WorkDataUsedTagsQueryResultAdminHto:
|
|
51
|
+
return WorkDataUsedTagsQueryResultAdminHto.from_entity(self._navigate_internal(WorkDataUsedTagsQueryResultEntityAdmin), self._client)
|
|
@@ -10,76 +10,82 @@ from pinexq_client.core.hco.unavailable import UnavailableAction, UnavailableLin
|
|
|
10
10
|
from pinexq_client.core.hco.upload_action_hco import UploadAction, UploadParameters
|
|
11
11
|
from pinexq_client.job_management.hcos.workdata_hco import WorkDataLink
|
|
12
12
|
from pinexq_client.job_management.hcos.workdata_query_result_hco import (
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
WorkDataQueryResultHco,
|
|
14
|
+
WorkDataQueryResultLink,
|
|
15
|
+
WorkDataQueryResultPaginationLink
|
|
16
16
|
)
|
|
17
|
-
from pinexq_client.job_management.hcos.workdata_used_tags_query_result_hco import WorkDataUsedTagsLink
|
|
17
|
+
from pinexq_client.job_management.hcos.workdata_used_tags_query_result_hco import WorkDataUsedTagsLink, \
|
|
18
|
+
WorkDataUsedTagsAdminLink
|
|
18
19
|
from pinexq_client.job_management.known_relations import Relations
|
|
19
20
|
from pinexq_client.job_management.model import WorkDataQueryParameters, WorkDataUsedTagsFilterParameter
|
|
20
21
|
from pinexq_client.job_management.model.sirenentities import WorkDataRootEntity
|
|
21
22
|
|
|
22
23
|
|
|
23
24
|
class WorkDataQueryAction(ActionWithParametersHco[WorkDataQueryParameters]):
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
25
|
+
def execute(self, parameters: WorkDataQueryParameters) -> WorkDataQueryResultHco:
|
|
26
|
+
url = self._execute_returns_url(parameters)
|
|
27
|
+
link = Link.from_url(url, [str(Relations.CREATED_RESSOURCE)], "Created query", MediaTypes.SIREN)
|
|
28
|
+
# resolve link immediately
|
|
29
|
+
return WorkDataQueryResultLink.from_link(self._client, link).navigate()
|
|
29
30
|
|
|
30
|
-
|
|
31
|
-
|
|
31
|
+
def default_parameters(self) -> WorkDataQueryParameters:
|
|
32
|
+
return self._get_default_parameters(WorkDataQueryParameters, WorkDataQueryParameters())
|
|
32
33
|
|
|
33
34
|
|
|
34
35
|
class WorkDataUsedTagsQueryAction(ActionWithParametersHco[WorkDataUsedTagsFilterParameter]):
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
def execute(self, parameters: WorkDataUsedTagsFilterParameter) -> WorkDataUsedTagsLink:
|
|
37
|
+
url = self._execute_returns_url(parameters)
|
|
38
|
+
link = Link.from_url(url, [str(Relations.CREATED_RESSOURCE)], "Created query", MediaTypes.SIREN)
|
|
39
|
+
return WorkDataUsedTagsLink.from_link(self._client, link)
|
|
39
40
|
|
|
40
|
-
|
|
41
|
-
|
|
41
|
+
def default_parameters(self) -> WorkDataUsedTagsFilterParameter:
|
|
42
|
+
return self._get_default_parameters(WorkDataUsedTagsFilterParameter, WorkDataUsedTagsFilterParameter())
|
|
42
43
|
|
|
43
44
|
|
|
44
45
|
class WorkDataUploadAction(UploadAction):
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
46
|
+
def execute(self, parameters: UploadParameters) -> WorkDataLink:
|
|
47
|
+
url = self._upload(parameters)
|
|
48
|
+
link = Link.from_url(url, [str(Relations.CREATED_RESSOURCE)], "Uploaded workdata", MediaTypes.SIREN)
|
|
49
|
+
return WorkDataLink.from_link(self._client, link)
|
|
49
50
|
|
|
50
51
|
|
|
51
52
|
class WorkDataRootLink(LinkHco):
|
|
52
|
-
|
|
53
|
-
|
|
53
|
+
def navigate(self) -> 'WorkDataRootHco':
|
|
54
|
+
return WorkDataRootHco.from_entity(self._navigate_internal(WorkDataRootEntity), self._client)
|
|
54
55
|
|
|
55
56
|
|
|
56
57
|
class WorkDataRootHco(Hco[WorkDataRootEntity]):
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
58
|
+
query_action: WorkDataQueryAction | UnavailableAction
|
|
59
|
+
query_tags_action: WorkDataUsedTagsQueryAction | UnavailableAction
|
|
60
|
+
upload_action: WorkDataUploadAction | None
|
|
61
|
+
|
|
62
|
+
self_link: WorkDataRootLink
|
|
63
|
+
all_link: WorkDataQueryResultPaginationLink | UnavailableLink
|
|
64
|
+
used_tags_admin_link: WorkDataUsedTagsAdminLink | UnavailableLink
|
|
65
|
+
used_tags_link: WorkDataUsedTagsLink | UnavailableLink
|
|
66
|
+
|
|
67
|
+
@classmethod
|
|
68
|
+
def from_entity(cls, entity: WorkDataRootEntity, client: httpx.Client) -> Self:
|
|
69
|
+
instance = cls(client, entity)
|
|
70
|
+
Hco.check_classes(instance._entity.class_, ["WorkDataRoot"])
|
|
71
|
+
|
|
72
|
+
instance.query_action = WorkDataQueryAction.from_entity_optional(
|
|
73
|
+
client, instance._entity, "CreateWorkDataQuery")
|
|
74
|
+
instance.query_tags_action = WorkDataUsedTagsQueryAction.from_entity_optional(
|
|
75
|
+
client, instance._entity, "CreateWorkDataTagsQuery")
|
|
76
|
+
instance.upload_action = WorkDataUploadAction.from_entity_optional(
|
|
77
|
+
client, instance._entity, "Upload")
|
|
78
|
+
|
|
79
|
+
instance.self_link = WorkDataRootLink.from_entity(
|
|
80
|
+
instance._client, instance._entity, Relations.SELF)
|
|
81
|
+
|
|
82
|
+
instance.all_link = WorkDataQueryResultPaginationLink.from_entity_optional(
|
|
83
|
+
instance._client, instance._entity, Relations.ALL)
|
|
84
|
+
|
|
85
|
+
instance.used_tags_link = WorkDataUsedTagsLink.from_entity_optional(
|
|
86
|
+
instance._client, instance._entity, Relations.USED_TAGS)
|
|
87
|
+
|
|
88
|
+
instance.used_tags_admin_link = WorkDataUsedTagsAdminLink.from_entity_optional(
|
|
89
|
+
instance._client, instance._entity, Relations.USED_TAGS_ADMIN)
|
|
90
|
+
|
|
91
|
+
return instance
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: openapi.json
|
|
3
|
-
# timestamp: 2025-
|
|
3
|
+
# timestamp: 2025-10-22T11:45:43+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -43,6 +43,14 @@ class AdminWorkDataQueryResultHtoOpenApiProperties(BaseModel):
|
|
|
43
43
|
remaining_tags: List[str] | None = Field(None, alias='RemainingTags')
|
|
44
44
|
|
|
45
45
|
|
|
46
|
+
class ApiEventsInfoHtoOpenApiProperties(BaseModel):
|
|
47
|
+
pass
|
|
48
|
+
model_config = ConfigDict(
|
|
49
|
+
extra='allow',
|
|
50
|
+
populate_by_name=True,
|
|
51
|
+
)
|
|
52
|
+
|
|
53
|
+
|
|
46
54
|
class CopyPsFromOrgToUserActionParameters(BaseModel):
|
|
47
55
|
model_config = ConfigDict(
|
|
48
56
|
extra='allow',
|
|
@@ -117,6 +125,14 @@ class DataSpecificationHto(BaseModel):
|
|
|
117
125
|
max_slots: int | None = Field(None, alias='MaxSlots')
|
|
118
126
|
|
|
119
127
|
|
|
128
|
+
class DeprecatePsActionParameters(BaseModel):
|
|
129
|
+
model_config = ConfigDict(
|
|
130
|
+
extra='allow',
|
|
131
|
+
populate_by_name=True,
|
|
132
|
+
)
|
|
133
|
+
reason: str | None = Field(None, alias='Reason')
|
|
134
|
+
|
|
135
|
+
|
|
120
136
|
class EditProcessingStepParameters(BaseModel):
|
|
121
137
|
model_config = ConfigDict(
|
|
122
138
|
extra='allow',
|
|
@@ -205,6 +221,14 @@ class JobStates(Enum):
|
|
|
205
221
|
data_missing = 'DataMissing'
|
|
206
222
|
|
|
207
223
|
|
|
224
|
+
class JobUsedTagsAdminHtoOpenApiProperties(BaseModel):
|
|
225
|
+
model_config = ConfigDict(
|
|
226
|
+
extra='allow',
|
|
227
|
+
populate_by_name=True,
|
|
228
|
+
)
|
|
229
|
+
tags: List[str] | None = Field(None, alias='Tags')
|
|
230
|
+
|
|
231
|
+
|
|
208
232
|
class JobUsedTagsHtoOpenApiProperties(BaseModel):
|
|
209
233
|
model_config = ConfigDict(
|
|
210
234
|
extra='allow',
|
|
@@ -270,6 +294,7 @@ class ProcessingStepFilterParameter(BaseModel):
|
|
|
270
294
|
tags_by_or: List[str] | None = Field(None, alias='TagsByOr')
|
|
271
295
|
is_public: bool | None = Field(None, alias='IsPublic')
|
|
272
296
|
show_hidden: bool | None = Field(None, alias='ShowHidden')
|
|
297
|
+
show_deprecated: bool | None = Field(None, alias='ShowDeprecated')
|
|
273
298
|
is_configured: bool | None = Field(None, alias='IsConfigured')
|
|
274
299
|
|
|
275
300
|
|
|
@@ -304,6 +329,8 @@ class ProcessingStepHtoOpenApiProperties(BaseModel):
|
|
|
304
329
|
tags: List[str] | None = Field(None, alias='Tags')
|
|
305
330
|
is_configured: bool | None = Field(None, alias='IsConfigured')
|
|
306
331
|
hidden: bool | None = Field(None, alias='Hidden')
|
|
332
|
+
deprecated_on: AwareDatetime | None = Field(None, alias='DeprecatedOn')
|
|
333
|
+
reason_for_deprecation: str | None = Field(None, alias='ReasonForDeprecation')
|
|
307
334
|
created_at: AwareDatetime | None = Field(None, alias='CreatedAt')
|
|
308
335
|
last_modified_at: AwareDatetime | None = Field(None, alias='LastModifiedAt')
|
|
309
336
|
parameter_schema: str | None = Field(None, alias='ParameterSchema')
|
|
@@ -343,6 +370,14 @@ class ProcessingStepSortProperties(Enum):
|
|
|
343
370
|
last_modified_at = 'LastModifiedAt'
|
|
344
371
|
|
|
345
372
|
|
|
373
|
+
class ProcessingStepUsedTagsAdminHtoOpenApiProperties(BaseModel):
|
|
374
|
+
model_config = ConfigDict(
|
|
375
|
+
extra='allow',
|
|
376
|
+
populate_by_name=True,
|
|
377
|
+
)
|
|
378
|
+
tags: List[str] | None = Field(None, alias='Tags')
|
|
379
|
+
|
|
380
|
+
|
|
346
381
|
class ProcessingStepUsedTagsHtoOpenApiProperties(BaseModel):
|
|
347
382
|
model_config = ConfigDict(
|
|
348
383
|
extra='allow',
|
|
@@ -523,6 +558,14 @@ class WorkDataSortPropertiesSortParameter(BaseModel):
|
|
|
523
558
|
sort_type: SortTypes | None = Field(None, alias='SortType')
|
|
524
559
|
|
|
525
560
|
|
|
561
|
+
class WorkDataUsedTagsAdminQueryResultHtoOpenApiProperties(BaseModel):
|
|
562
|
+
model_config = ConfigDict(
|
|
563
|
+
extra='allow',
|
|
564
|
+
populate_by_name=True,
|
|
565
|
+
)
|
|
566
|
+
tags: List[str] | None = Field(None, alias='Tags')
|
|
567
|
+
|
|
568
|
+
|
|
526
569
|
class WorkDataUsedTagsFilterParameter(BaseModel):
|
|
527
570
|
model_config = ConfigDict(
|
|
528
571
|
extra='allow',
|
|
@@ -601,6 +644,7 @@ class AdminProcessingStepFilterParameter(BaseModel):
|
|
|
601
644
|
tags_by_or: List[str] | None = Field(None, alias='TagsByOr')
|
|
602
645
|
is_public: bool | None = Field(None, alias='IsPublic')
|
|
603
646
|
show_hidden: bool | None = Field(None, alias='ShowHidden')
|
|
647
|
+
show_deprecated: bool | None = Field(None, alias='ShowDeprecated')
|
|
604
648
|
is_configured: bool | None = Field(None, alias='IsConfigured')
|
|
605
649
|
|
|
606
650
|
|
|
@@ -662,6 +706,19 @@ class AdminWorkDataQueryResultHtoOpenApi(BaseModel):
|
|
|
662
706
|
links: List[Link] | None = None
|
|
663
707
|
|
|
664
708
|
|
|
709
|
+
class ApiEventsInfoHtoOpenApi(BaseModel):
|
|
710
|
+
model_config = ConfigDict(
|
|
711
|
+
extra='allow',
|
|
712
|
+
populate_by_name=True,
|
|
713
|
+
)
|
|
714
|
+
class_: List[str] | None = Field(None, alias='class')
|
|
715
|
+
title: str | None = None
|
|
716
|
+
properties: ApiEventsInfoHtoOpenApiProperties | None = None
|
|
717
|
+
entities: List | None = None
|
|
718
|
+
actions: List[Action] | None = None
|
|
719
|
+
links: List[Link] | None = None
|
|
720
|
+
|
|
721
|
+
|
|
665
722
|
class EntryPointHtoOpenApi(BaseModel):
|
|
666
723
|
model_config = ConfigDict(
|
|
667
724
|
extra='allow',
|
|
@@ -751,6 +808,19 @@ class JobSortPropertiesSortParameter(BaseModel):
|
|
|
751
808
|
sort_type: SortTypes | None = Field(None, alias='SortType')
|
|
752
809
|
|
|
753
810
|
|
|
811
|
+
class JobUsedTagsAdminHtoOpenApi(BaseModel):
|
|
812
|
+
model_config = ConfigDict(
|
|
813
|
+
extra='allow',
|
|
814
|
+
populate_by_name=True,
|
|
815
|
+
)
|
|
816
|
+
class_: List[str] | None = Field(None, alias='class')
|
|
817
|
+
title: str | None = None
|
|
818
|
+
properties: JobUsedTagsAdminHtoOpenApiProperties | None = None
|
|
819
|
+
entities: List | None = None
|
|
820
|
+
actions: List[Action] | None = None
|
|
821
|
+
links: List[Link] | None = None
|
|
822
|
+
|
|
823
|
+
|
|
754
824
|
class JobUsedTagsHtoOpenApi(BaseModel):
|
|
755
825
|
model_config = ConfigDict(
|
|
756
826
|
extra='allow',
|
|
@@ -827,6 +897,19 @@ class ProcessingStepSortPropertiesSortParameter(BaseModel):
|
|
|
827
897
|
sort_type: SortTypes | None = Field(None, alias='SortType')
|
|
828
898
|
|
|
829
899
|
|
|
900
|
+
class ProcessingStepUsedTagsAdminHtoOpenApi(BaseModel):
|
|
901
|
+
model_config = ConfigDict(
|
|
902
|
+
extra='allow',
|
|
903
|
+
populate_by_name=True,
|
|
904
|
+
)
|
|
905
|
+
class_: List[str] | None = Field(None, alias='class')
|
|
906
|
+
title: str | None = None
|
|
907
|
+
properties: ProcessingStepUsedTagsAdminHtoOpenApiProperties | None = None
|
|
908
|
+
entities: List | None = None
|
|
909
|
+
actions: List[Action] | None = None
|
|
910
|
+
links: List[Link] | None = None
|
|
911
|
+
|
|
912
|
+
|
|
830
913
|
class ProcessingStepUsedTagsHtoOpenApi(BaseModel):
|
|
831
914
|
model_config = ConfigDict(
|
|
832
915
|
extra='allow',
|
|
@@ -933,6 +1016,19 @@ class WorkDataRootHtoOpenApi(BaseModel):
|
|
|
933
1016
|
links: List[Link] | None = None
|
|
934
1017
|
|
|
935
1018
|
|
|
1019
|
+
class WorkDataUsedTagsAdminQueryResultHtoOpenApi(BaseModel):
|
|
1020
|
+
model_config = ConfigDict(
|
|
1021
|
+
extra='allow',
|
|
1022
|
+
populate_by_name=True,
|
|
1023
|
+
)
|
|
1024
|
+
class_: List[str] | None = Field(None, alias='class')
|
|
1025
|
+
title: str | None = None
|
|
1026
|
+
properties: WorkDataUsedTagsAdminQueryResultHtoOpenApiProperties | None = None
|
|
1027
|
+
entities: List | None = None
|
|
1028
|
+
actions: List[Action] | None = None
|
|
1029
|
+
links: List[Link] | None = None
|
|
1030
|
+
|
|
1031
|
+
|
|
936
1032
|
class WorkDataUsedTagsQueryResultHtoOpenApi(BaseModel):
|
|
937
1033
|
model_config = ConfigDict(
|
|
938
1034
|
extra='allow',
|
|
@@ -16,7 +16,8 @@ from pinexq_client.job_management.model.open_api_generated import (
|
|
|
16
16
|
JobUsedTagsHtoOpenApiProperties,
|
|
17
17
|
ProcessingStepUsedTagsHtoOpenApiProperties,
|
|
18
18
|
UserHtoOpenApiProperties,
|
|
19
|
-
WorkDataUsedTagsQueryResultHtoOpenApiProperties,
|
|
19
|
+
WorkDataUsedTagsQueryResultHtoOpenApiProperties, JobUsedTagsAdminHtoOpenApiProperties,
|
|
20
|
+
ProcessingStepUsedTagsAdminHtoOpenApiProperties, WorkDataUsedTagsAdminQueryResultHtoOpenApiProperties,
|
|
20
21
|
)
|
|
21
22
|
|
|
22
23
|
|
|
@@ -71,14 +72,26 @@ class WorkDataUsedTagsQueryResultEntity(Entity):
|
|
|
71
72
|
properties: WorkDataUsedTagsQueryResultHtoOpenApiProperties | None = None
|
|
72
73
|
|
|
73
74
|
|
|
75
|
+
class WorkDataUsedTagsQueryResultEntityAdmin(Entity):
|
|
76
|
+
properties: WorkDataUsedTagsAdminQueryResultHtoOpenApiProperties | None = None
|
|
77
|
+
|
|
78
|
+
|
|
74
79
|
class ProcessingStepUsedTagsEntity(Entity):
|
|
75
80
|
properties: ProcessingStepUsedTagsHtoOpenApiProperties | None = None
|
|
76
81
|
|
|
77
82
|
|
|
83
|
+
class ProcessingStepUsedTagsEntityAdmin(Entity):
|
|
84
|
+
properties: ProcessingStepUsedTagsAdminHtoOpenApiProperties | None = None
|
|
85
|
+
|
|
86
|
+
|
|
78
87
|
class JobUsedTagsEntity(Entity):
|
|
79
88
|
properties: JobUsedTagsHtoOpenApiProperties | None = None
|
|
80
89
|
|
|
81
90
|
|
|
91
|
+
class JobUsedTagsEntityAdmin(Entity):
|
|
92
|
+
properties: JobUsedTagsAdminHtoOpenApiProperties | None = None
|
|
93
|
+
|
|
94
|
+
|
|
82
95
|
# this needs to be added since the openapi.spec does not have this object.
|
|
83
96
|
class InputDataSlotHtoProperties(BaseModel):
|
|
84
97
|
model_config = ConfigDict(
|
|
@@ -222,7 +222,8 @@ class Job:
|
|
|
222
222
|
function_version: str | None = None,
|
|
223
223
|
*,
|
|
224
224
|
processing_step_link: ProcessingStepLink | None = None,
|
|
225
|
-
processing_step_instance: ProcessingStep | None = None
|
|
225
|
+
processing_step_instance: ProcessingStep | None = None,
|
|
226
|
+
raise_on_multiple: bool = False,
|
|
226
227
|
) -> Self:
|
|
227
228
|
"""Set the processing step for this job given by name. This will query all
|
|
228
229
|
processing steps of this name from the server and select the first result.
|
|
@@ -232,6 +233,8 @@ class Job:
|
|
|
232
233
|
function_version: Version of the processing step as string
|
|
233
234
|
processing_step_link: A ProcessingStepLink instance pointing to the resource
|
|
234
235
|
processing_step_instance: A ProcessingStep (not the Hco) instance
|
|
236
|
+
raise_on_multiple: If true, an exception is raised if multiple processing steps with the same name are found.
|
|
237
|
+
If false, the first processing step found is used.
|
|
235
238
|
|
|
236
239
|
Returns:
|
|
237
240
|
This `Job` object
|
|
@@ -256,12 +259,14 @@ class Job:
|
|
|
256
259
|
filter=ProcessingStepFilterParameter(
|
|
257
260
|
function_name=function_name,
|
|
258
261
|
function_name_match_type=FunctionNameMatchTypes.match_exact,
|
|
259
|
-
version=function_version
|
|
262
|
+
version=function_version
|
|
260
263
|
)
|
|
261
264
|
)
|
|
262
265
|
query_result = self._processing_step_root.query_action.execute(query_param)
|
|
263
|
-
if len(query_result.processing_steps)
|
|
266
|
+
if len(query_result.processing_steps) == 0:
|
|
264
267
|
raise NameError(f"No processing step with the name '{function_name}' registered!")
|
|
268
|
+
if raise_on_multiple and len(query_result.processing_steps) > 1:
|
|
269
|
+
raise NameError(f"Multiple processing steps with the name '{function_name}' registered!")
|
|
265
270
|
# Todo: For now we choose the first and only result. Make this more flexible?
|
|
266
271
|
processing_url = query_result.processing_steps[0].self_link.get_url()
|
|
267
272
|
|
|
@@ -15,7 +15,7 @@ from pinexq_client.job_management.model import (
|
|
|
15
15
|
CreateProcessingStepParameters,
|
|
16
16
|
SetProcessingStepTagsParameters, ProcessingStepQueryParameters, ProcessingStepFilterParameter,
|
|
17
17
|
FunctionNameMatchTypes, EditProcessingStepParameters, CopyPsFromUserToOrgActionParameters,
|
|
18
|
-
CopyPsFromOrgToUserActionParameters,
|
|
18
|
+
CopyPsFromOrgToUserActionParameters, DeprecatePsActionParameters,
|
|
19
19
|
)
|
|
20
20
|
|
|
21
21
|
|
|
@@ -277,6 +277,28 @@ class ProcessingStep:
|
|
|
277
277
|
self.processing_step_hco = None
|
|
278
278
|
return self
|
|
279
279
|
|
|
280
|
+
def deprecate(self, reason: str | None = None) -> Self:
|
|
281
|
+
"""Deprecate ProcessingStep.
|
|
282
|
+
|
|
283
|
+
Returns:
|
|
284
|
+
This `ProcessingStep` object"""
|
|
285
|
+
self._raise_if_no_hco()
|
|
286
|
+
self.processing_step_hco.deprecate_ps_action.execute(
|
|
287
|
+
DeprecatePsActionParameters(reason=reason)
|
|
288
|
+
)
|
|
289
|
+
self.refresh()
|
|
290
|
+
return self
|
|
291
|
+
|
|
292
|
+
def restore(self) -> Self:
|
|
293
|
+
"""Restore ProcessingStep.
|
|
294
|
+
|
|
295
|
+
Returns:
|
|
296
|
+
This `ProcessingStep` object"""
|
|
297
|
+
self._raise_if_no_hco()
|
|
298
|
+
self.processing_step_hco.restore_ps_action.execute()
|
|
299
|
+
self.refresh()
|
|
300
|
+
return self
|
|
301
|
+
|
|
280
302
|
def upload_configuration(self, json_data: Any) -> Self:
|
|
281
303
|
"""Upload processing configuration.
|
|
282
304
|
|
{pinexq_client-0.9.2.20250828.47.dist-info → pinexq_client-0.9.2.20251028.52.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pinexq-client
|
|
3
|
-
Version: 0.9.2.
|
|
3
|
+
Version: 0.9.2.20251028.52
|
|
4
4
|
Summary: A hypermedia-based client for the DataCybernetics PinexQ platform.
|
|
5
5
|
Author-Email: =?utf-8?q?Sebastian_H=C3=B6fer?= <hoefer@data-cybernetics.com>, Mathias Reichardt <reichardt@data-cybernetics.com>, Jasim Ahmed <ahmed@data-cybernetics.com>, Pratik Poudel <poudel@data-cybernetics.com>
|
|
6
6
|
Maintainer-Email: Mathias Reichardt <reichardt@data-cybernetics.com>, =?utf-8?q?Sebastian_H=C3=B6fer?= <hoefer@data-cybernetics.com>, Carsten Blank <blank@data-cybernetics.com>
|
|
@@ -8,6 +8,7 @@ License: MIT
|
|
|
8
8
|
Requires-Python: >=3.11
|
|
9
9
|
Requires-Dist: pydantic<3.0.0,>=2.1.0
|
|
10
10
|
Requires-Dist: httpx<1.0.0,>=0.25.0
|
|
11
|
+
Requires-Dist: httpx-sse>=0.4.0
|
|
11
12
|
Description-Content-Type: text/markdown
|
|
12
13
|
|
|
13
14
|
# Pine-x-Q Python Client
|
{pinexq_client-0.9.2.20250828.47.dist-info → pinexq_client-0.9.2.20251028.52.dist-info}/RECORD
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
pinexq_client-0.9.2.
|
|
2
|
-
pinexq_client-0.9.2.
|
|
3
|
-
pinexq_client-0.9.2.
|
|
4
|
-
pinexq_client-0.9.2.
|
|
1
|
+
pinexq_client-0.9.2.20251028.52.dist-info/METADATA,sha256=uB14nOzngBLiBN4bX1yJ0KTiu-ZIjPj5ook9DlQH01o,3311
|
|
2
|
+
pinexq_client-0.9.2.20251028.52.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
|
|
3
|
+
pinexq_client-0.9.2.20251028.52.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
|
4
|
+
pinexq_client-0.9.2.20251028.52.dist-info/licenses/LICENSE,sha256=3oz3tAhM7kOgRukkRe7wmh5T_HihZY77ZtJDJm91ZN8,1072
|
|
5
5
|
pinexq_client/core/__init__.py,sha256=zO9vUuAl6AEokL-SqQO3Jl1qrxFBZPA2kH99VNZugEU,598
|
|
6
6
|
pinexq_client/core/base_relations.py,sha256=oIUS58pkbMDdqm-3YOdsenhL1smtzeAk4fp7-U595MY,162
|
|
7
7
|
pinexq_client/core/enterapi.py,sha256=eB4F2_t3lCbMgKhy-M-Sf_u9MhuJMO7OGh-GB-4Cc-8,731
|
|
@@ -21,7 +21,7 @@ pinexq_client/core/model/error.py,sha256=ZDbUlwsj7d8XPMolSSLTFwgs3RBLvOvgmlEtoBu
|
|
|
21
21
|
pinexq_client/core/model/sirenmodels.py,sha256=vGRQlhM2cSa2caxQel91Jr48KWqM-vMYX32iaQCzIds,5547
|
|
22
22
|
pinexq_client/core/polling.py,sha256=Z6VXn-PCGk4XX-4tQWZG59qJyCIS0eIrpPUORQDIGrs,1077
|
|
23
23
|
pinexq_client/core/sirenaccess.py,sha256=F7eZI5Pz79el0D30SYNGsiS2qWaAZF_jrCrUy-q2GgY,6992
|
|
24
|
-
pinexq_client/job_management/__init__.py,sha256=
|
|
24
|
+
pinexq_client/job_management/__init__.py,sha256=CUngy8DDucxXBVdi4kIUCnU8C2zohs6D8IkLfCkNDPg,598
|
|
25
25
|
pinexq_client/job_management/enterjma.py,sha256=Ivl_jVPw_gaLyU5nKbywM-bbVGpn0MoCrZ0DMbJYf3s,1411
|
|
26
26
|
pinexq_client/job_management/hcos/__init__.py,sha256=TZgs5kuBk3lSBxPfn5ehgbdUgzPy2jn1PC3Ea6VQY-k,584
|
|
27
27
|
pinexq_client/job_management/hcos/entrypoint_hco.py,sha256=qodjAwO_MtawUuhmaYjhGXHV-uW1k94V9gKRYZRkhn4,2234
|
|
@@ -29,25 +29,25 @@ pinexq_client/job_management/hcos/info_hco.py,sha256=foAIojj0qzv5qXwW418CtYLFtdX
|
|
|
29
29
|
pinexq_client/job_management/hcos/input_dataslot_hco.py,sha256=SDflhyW8kjpcTUfKAXnJxNR-etPzAHfoTqlYUcJZrxs,3442
|
|
30
30
|
pinexq_client/job_management/hcos/job_hco.py,sha256=8Lq5RABq7XUp3Z6jhYegPgVPfm591-38eC8CCLes0KQ,8934
|
|
31
31
|
pinexq_client/job_management/hcos/job_query_result_hco.py,sha256=I0G8YIlYDhTahLz8n06L8BywlcsMGNWUEsmEr4Sk0GU,3315
|
|
32
|
-
pinexq_client/job_management/hcos/job_used_tags_hco.py,sha256=
|
|
33
|
-
pinexq_client/job_management/hcos/jobsroot_hco.py,sha256=
|
|
32
|
+
pinexq_client/job_management/hcos/job_used_tags_hco.py,sha256=JKbZerZRway_HU6ujXiBjgP9TlLho1WD0syTmivsZpk,1706
|
|
33
|
+
pinexq_client/job_management/hcos/jobsroot_hco.py,sha256=8ba2vFmTeVcW0GZrtUfyrxWt-OCTtKeGOc-NeCq1Rrg,4971
|
|
34
34
|
pinexq_client/job_management/hcos/output_dataslot_hco.py,sha256=zxpo-fI9eHcp_pMKcf2l-gRoPHX1RzQO53auHMRB_T8,1549
|
|
35
|
-
pinexq_client/job_management/hcos/processing_step_hco.py,sha256=
|
|
36
|
-
pinexq_client/job_management/hcos/processing_step_used_tags_hco.py,sha256=
|
|
35
|
+
pinexq_client/job_management/hcos/processing_step_hco.py,sha256=PjrxsQ9McVyI2AZmyuMaaXvzfa_UHdIvHdBuPbeUlL8,9396
|
|
36
|
+
pinexq_client/job_management/hcos/processing_step_used_tags_hco.py,sha256=K4Ub5FVK5ge8CtUeit9D23MPjQTMTC-X75dS9561oyw,1947
|
|
37
37
|
pinexq_client/job_management/hcos/processingstep_query_result_hco.py,sha256=YcCgigKvOIggILixgaEbmnM23FlkjCgxnhZC2Eh98dY,3817
|
|
38
|
-
pinexq_client/job_management/hcos/processingsteproot_hco.py,sha256=
|
|
38
|
+
pinexq_client/job_management/hcos/processingsteproot_hco.py,sha256=MC7qxNMXwoKtMReSVzYiNqI_2MUdT3gbxoxULyYXU6c,4172
|
|
39
39
|
pinexq_client/job_management/hcos/user_hco.py,sha256=6GZrNeUZSZxwOiyCylkfl-pqDa1RL7Lc9Lg3vf0EuYc,1095
|
|
40
40
|
pinexq_client/job_management/hcos/workdata_hco.py,sha256=QI1m_IUWVBesCft9UR1svCRsWDz16moY7XMhWvfFGcE,7206
|
|
41
41
|
pinexq_client/job_management/hcos/workdata_query_result_hco.py,sha256=yxEnu_COMxP3mt553JZD13jjPyqSp3DJjgd8es5Nq_E,3520
|
|
42
|
-
pinexq_client/job_management/hcos/workdata_used_tags_query_result_hco.py,sha256=
|
|
43
|
-
pinexq_client/job_management/hcos/workdataroot_hco.py,sha256=
|
|
44
|
-
pinexq_client/job_management/known_relations.py,sha256=
|
|
42
|
+
pinexq_client/job_management/hcos/workdata_used_tags_query_result_hco.py,sha256=oMHyG4NLOOPljzIE5324vVfo4zoGiNsQnT_HEuRi-nY,1991
|
|
43
|
+
pinexq_client/job_management/hcos/workdataroot_hco.py,sha256=92Q3J8q28XRL7cw1Ac5F_hl_Y5ZNaZ2gThYLbTIrka0,4441
|
|
44
|
+
pinexq_client/job_management/known_relations.py,sha256=S5vrvihwn4qZrtx8ItxLWH4Sds0MmDNWsa4zP2e_TNk,746
|
|
45
45
|
pinexq_client/job_management/model/__init__.py,sha256=iuAKRXdW_Mxo0i3HsBfEzhJJZUKkNe3qs4gLW-ge1PU,63
|
|
46
|
-
pinexq_client/job_management/model/open_api_generated.py,sha256=
|
|
47
|
-
pinexq_client/job_management/model/sirenentities.py,sha256=
|
|
46
|
+
pinexq_client/job_management/model/open_api_generated.py,sha256=UzbJKWi6ecghEQkwbZ50v7FmNX0P9JA1tRmflHJv_QI,37479
|
|
47
|
+
pinexq_client/job_management/model/sirenentities.py,sha256=75ivnSU5OSuocITfluJ5o4o0CZldgtaP5PZqj4LhjJc,3950
|
|
48
48
|
pinexq_client/job_management/tool/__init__.py,sha256=zPobd-hQyANHzC0-TjJG91z9XrewvE54ZJ6VViymW5M,128
|
|
49
|
-
pinexq_client/job_management/tool/job.py,sha256=
|
|
49
|
+
pinexq_client/job_management/tool/job.py,sha256=ILbHfSVSKDbVFw6boWpjHxktotKRPAfGIczIuyHchVM,31005
|
|
50
50
|
pinexq_client/job_management/tool/job_group.py,sha256=TNWw46UDyP2gmArhbzMAqpHa6lS2hzwarLIrxxpOMnk,4822
|
|
51
|
-
pinexq_client/job_management/tool/processing_step.py,sha256
|
|
51
|
+
pinexq_client/job_management/tool/processing_step.py,sha256=pBXKa3w0SSfIxsxi8v3io1FuYYr7zO3Ug3QwPVgnmiM,13413
|
|
52
52
|
pinexq_client/job_management/tool/workdata.py,sha256=E1Qt945tocXiSZuQo2IbTnlgW2VRnq2ODEFQ96lXTDI,6270
|
|
53
|
-
pinexq_client-0.9.2.
|
|
53
|
+
pinexq_client-0.9.2.20251028.52.dist-info/RECORD,,
|
{pinexq_client-0.9.2.20250828.47.dist-info → pinexq_client-0.9.2.20251028.52.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|