digitalhub 0.14.0b3__py3-none-any.whl → 0.14.0b4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of digitalhub might be problematic. Click here for more details.
- digitalhub/entities/_base/executable/entity.py +160 -58
- digitalhub/entities/_base/material/entity.py +4 -0
- digitalhub/entities/_base/material/utils.py +28 -0
- digitalhub/entities/_commons/enums.py +0 -31
- digitalhub/entities/_constructors/_resources.py +151 -0
- digitalhub/entities/_constructors/name.py +18 -0
- digitalhub/entities/_processors/base/crud.py +1 -1
- digitalhub/entities/_processors/base/special_ops.py +1 -1
- digitalhub/entities/_processors/context/crud.py +25 -25
- digitalhub/entities/_processors/context/special_ops.py +1 -1
- digitalhub/entities/_processors/utils.py +2 -1
- digitalhub/entities/artifact/crud.py +37 -17
- digitalhub/entities/dataitem/crud.py +37 -13
- digitalhub/entities/dataitem/table/entity.py +3 -0
- digitalhub/entities/function/crud.py +39 -19
- digitalhub/entities/model/crud.py +37 -17
- digitalhub/entities/project/_base/entity.py +5 -5
- digitalhub/entities/project/crud.py +6 -20
- digitalhub/entities/run/_base/entity.py +1 -1
- digitalhub/entities/run/crud.py +54 -21
- digitalhub/entities/secret/crud.py +6 -20
- digitalhub/entities/task/crud.py +40 -25
- digitalhub/entities/trigger/crud.py +43 -19
- digitalhub/entities/workflow/crud.py +39 -16
- digitalhub/stores/client/_base/enums.py +39 -0
- digitalhub/stores/client/_base/key_builder.py +1 -1
- digitalhub/stores/client/_base/params_builder.py +48 -0
- digitalhub/stores/client/dhcore/api_builder.py +2 -1
- digitalhub/stores/client/dhcore/client.py +67 -55
- digitalhub/stores/client/dhcore/params_builder.py +130 -75
- digitalhub/stores/client/local/api_builder.py +1 -1
- digitalhub/stores/client/local/params_builder.py +18 -41
- digitalhub/stores/data/s3/store.py +8 -5
- {digitalhub-0.14.0b3.dist-info → digitalhub-0.14.0b4.dist-info}/METADATA +1 -1
- {digitalhub-0.14.0b3.dist-info → digitalhub-0.14.0b4.dist-info}/RECORD +38 -36
- {digitalhub-0.14.0b3.dist-info → digitalhub-0.14.0b4.dist-info}/WHEEL +0 -0
- {digitalhub-0.14.0b3.dist-info → digitalhub-0.14.0b4.dist-info}/licenses/AUTHORS +0 -0
- {digitalhub-0.14.0b3.dist-info → digitalhub-0.14.0b4.dist-info}/licenses/LICENSE +0 -0
|
@@ -4,9 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
7
|
-
from digitalhub.
|
|
7
|
+
from digitalhub.stores.client._base.enums import ApiCategories, BackendOperations
|
|
8
8
|
from digitalhub.stores.client._base.params_builder import ClientParametersBuilder
|
|
9
9
|
|
|
10
|
+
DEFAULT_START_PAGE = 0
|
|
11
|
+
DEFAULT_SIZE = 25
|
|
12
|
+
DEFAULT_SORT = "metadata.updated,DESC"
|
|
13
|
+
|
|
10
14
|
|
|
11
15
|
class ClientDHCoreParametersBuilder(ClientParametersBuilder):
|
|
12
16
|
"""
|
|
@@ -33,11 +37,6 @@ class ClientDHCoreParametersBuilder(ClientParametersBuilder):
|
|
|
33
37
|
"""
|
|
34
38
|
Build HTTP request parameters for DHCore API calls.
|
|
35
39
|
|
|
36
|
-
Routes parameter building to appropriate method based on API category
|
|
37
|
-
(base or context operations) and applies operation-specific transformations.
|
|
38
|
-
Acts as dispatcher, initializing parameter dictionaries with 'params' key
|
|
39
|
-
for query parameters.
|
|
40
|
-
|
|
41
40
|
Parameters
|
|
42
41
|
----------
|
|
43
42
|
category : str
|
|
@@ -61,108 +60,105 @@ class ClientDHCoreParametersBuilder(ClientParametersBuilder):
|
|
|
61
60
|
|
|
62
61
|
def build_parameters_base(self, operation: str, **kwargs) -> dict:
|
|
63
62
|
"""
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
Constructs HTTP request parameters for project-level operations and
|
|
67
|
-
entity sharing functionality. Handles CASCADE (boolean to lowercase string),
|
|
68
|
-
SHARE (user parameter to query params), and UNSHARE (requires unshare=True
|
|
69
|
-
and entity id).
|
|
63
|
+
Constructs HTTP request parameters for project operations.
|
|
70
64
|
|
|
71
65
|
Parameters
|
|
72
66
|
----------
|
|
73
67
|
operation : str
|
|
74
|
-
API operation
|
|
75
|
-
or SHARE (entity sharing/unsharing with users).
|
|
68
|
+
API operation.
|
|
76
69
|
**kwargs : dict
|
|
77
|
-
Operation-specific parameters
|
|
78
|
-
- cascade (bool): For DELETE, whether to cascade delete
|
|
79
|
-
- user (str): For SHARE, target user for sharing
|
|
80
|
-
- unshare (bool): For SHARE, whether to unshare instead
|
|
81
|
-
- id (str): For SHARE unshare, entity ID to unshare
|
|
82
|
-
|
|
70
|
+
Operation-specific parameters.
|
|
83
71
|
Returns
|
|
84
72
|
-------
|
|
85
73
|
dict
|
|
86
74
|
Formatted parameters with 'params' containing query parameters.
|
|
87
75
|
"""
|
|
88
|
-
kwargs = self.
|
|
76
|
+
kwargs = self._ensure_params(**kwargs)
|
|
77
|
+
|
|
78
|
+
# Handle delete
|
|
89
79
|
if operation == BackendOperations.DELETE.value:
|
|
90
80
|
if (cascade := kwargs.pop("cascade", None)) is not None:
|
|
91
|
-
kwargs
|
|
81
|
+
kwargs = self._add_param("cascade", str(cascade).lower(), **kwargs)
|
|
82
|
+
|
|
83
|
+
# Handle share
|
|
92
84
|
elif operation == BackendOperations.SHARE.value:
|
|
93
|
-
kwargs
|
|
85
|
+
kwargs = self._add_param("user", kwargs.pop("user"), **kwargs)
|
|
94
86
|
if kwargs.pop("unshare", False):
|
|
95
|
-
kwargs
|
|
87
|
+
kwargs = self._add_param("id", kwargs.pop("id"), **kwargs)
|
|
96
88
|
|
|
97
89
|
return kwargs
|
|
98
90
|
|
|
99
91
|
def build_parameters_context(self, operation: str, **kwargs) -> dict:
|
|
100
92
|
"""
|
|
101
|
-
Build parameters for context-level API operations.
|
|
102
|
-
|
|
103
93
|
Constructs HTTP request parameters for entity management and search within
|
|
104
|
-
projects.
|
|
105
|
-
'page' and 'size', result ordering with 'sort' parameter. READ supports
|
|
106
|
-
embedded entity inclusion, DELETE requires entity 'id' parameter.
|
|
94
|
+
projects.
|
|
107
95
|
|
|
108
96
|
Parameters
|
|
109
97
|
----------
|
|
110
98
|
operation : str
|
|
111
|
-
API operation
|
|
112
|
-
(retrieve multiple with pagination), DELETE (delete by ID),
|
|
113
|
-
READ (read by ID with optional embedded).
|
|
99
|
+
API operation.
|
|
114
100
|
**kwargs : dict
|
|
115
|
-
Operation-specific parameters
|
|
116
|
-
- params (dict): Search filters and conditions
|
|
117
|
-
- page (int): Page number for pagination (default: 0)
|
|
118
|
-
- size (int): Items per page (default: 20)
|
|
119
|
-
- order_by (str): Field to order results by
|
|
120
|
-
- order (str): Order direction ('asc' or 'desc')
|
|
121
|
-
- embedded (bool): For READ, whether to include embedded entities
|
|
122
|
-
- id (str): For READ/DELETE, entity identifier
|
|
101
|
+
Operation-specific parameters.
|
|
123
102
|
|
|
124
103
|
Returns
|
|
125
104
|
-------
|
|
126
105
|
dict
|
|
127
|
-
Formatted parameters with 'params'
|
|
128
|
-
other request-specific parameters like 'id' for entity operations.
|
|
106
|
+
Formatted parameters with 'params'.
|
|
129
107
|
"""
|
|
130
|
-
kwargs = self.
|
|
108
|
+
kwargs = self._ensure_params(**kwargs)
|
|
131
109
|
|
|
132
110
|
# Handle read
|
|
133
111
|
if operation == BackendOperations.READ.value:
|
|
134
|
-
name
|
|
135
|
-
|
|
136
|
-
|
|
112
|
+
if (name := kwargs.pop("name", None)) is not None:
|
|
113
|
+
kwargs = self._add_param("name", name, **kwargs)
|
|
114
|
+
|
|
115
|
+
# Handle read all versions
|
|
137
116
|
elif operation == BackendOperations.READ_ALL_VERSIONS.value:
|
|
138
|
-
kwargs
|
|
139
|
-
kwargs
|
|
117
|
+
kwargs = self._add_param("versions", "all", **kwargs)
|
|
118
|
+
kwargs = self._add_param("name", kwargs.pop("name"), **kwargs)
|
|
119
|
+
|
|
120
|
+
# Handle list
|
|
121
|
+
elif operation == BackendOperations.LIST.value:
|
|
122
|
+
possible_list_params = [
|
|
123
|
+
"q",
|
|
124
|
+
"name",
|
|
125
|
+
"kind",
|
|
126
|
+
"user",
|
|
127
|
+
"state",
|
|
128
|
+
"created",
|
|
129
|
+
"updated",
|
|
130
|
+
"versions",
|
|
131
|
+
"function",
|
|
132
|
+
"workflow",
|
|
133
|
+
"action",
|
|
134
|
+
"task",
|
|
135
|
+
]
|
|
136
|
+
list_params = {k: kwargs.get(k, None) for k in possible_list_params}
|
|
137
|
+
list_params = self._filter_none_params(**list_params)
|
|
138
|
+
for k, v in list_params.items():
|
|
139
|
+
kwargs = self._add_param(k, v, **kwargs)
|
|
140
|
+
for k in possible_list_params:
|
|
141
|
+
kwargs.pop(k, None)
|
|
142
|
+
|
|
140
143
|
# Handle delete
|
|
141
144
|
elif operation == BackendOperations.DELETE.value:
|
|
142
|
-
# Handle cascade
|
|
143
145
|
if (cascade := kwargs.pop("cascade", None)) is not None:
|
|
144
|
-
kwargs
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
raise ValueError(
|
|
152
|
-
"If `delete_all_versions` is False, `entity_id` must be provided,"
|
|
153
|
-
" either as an argument or in key `identifier`.",
|
|
154
|
-
)
|
|
155
|
-
else:
|
|
156
|
-
kwargs["params"]["name"] = entity_name
|
|
146
|
+
kwargs = self._add_param("cascade", str(cascade).lower(), **kwargs)
|
|
147
|
+
|
|
148
|
+
elif operation == BackendOperations.DELETE_ALL_VERSIONS.value:
|
|
149
|
+
if (cascade := kwargs.pop("cascade", None)) is not None:
|
|
150
|
+
kwargs = self._add_param("cascade", str(cascade).lower(), **kwargs)
|
|
151
|
+
kwargs = self._add_param("name", kwargs.pop("name"), **kwargs)
|
|
152
|
+
|
|
157
153
|
# Handle search
|
|
158
154
|
elif operation == BackendOperations.SEARCH.value:
|
|
159
155
|
# Handle fq
|
|
160
156
|
if (fq := kwargs.pop("fq", None)) is not None:
|
|
161
|
-
kwargs
|
|
157
|
+
kwargs = self._add_param("fq", fq, **kwargs)
|
|
162
158
|
|
|
163
159
|
# Add search query
|
|
164
160
|
if (query := kwargs.pop("query", None)) is not None:
|
|
165
|
-
kwargs
|
|
161
|
+
kwargs = self._add_param("q", query, **kwargs)
|
|
166
162
|
|
|
167
163
|
# Add search filters
|
|
168
164
|
fq = []
|
|
@@ -205,17 +201,63 @@ class ClientDHCoreParametersBuilder(ClientParametersBuilder):
|
|
|
205
201
|
fq.append(f"metadata.labels:({labels})")
|
|
206
202
|
|
|
207
203
|
# Add filters
|
|
208
|
-
kwargs
|
|
204
|
+
kwargs = self._add_param("fq", fq, **kwargs)
|
|
205
|
+
|
|
206
|
+
return kwargs
|
|
207
|
+
|
|
208
|
+
def set_pagination(self, partial: bool = False, **kwargs) -> dict:
|
|
209
|
+
"""
|
|
210
|
+
Ensure pagination parameters are set in kwargs.
|
|
211
|
+
|
|
212
|
+
Parameters
|
|
213
|
+
----------
|
|
214
|
+
**kwargs : dict
|
|
215
|
+
Keyword arguments to format. May be empty or contain various
|
|
216
|
+
parameters for API operations.
|
|
217
|
+
|
|
218
|
+
Returns
|
|
219
|
+
-------
|
|
220
|
+
dict
|
|
221
|
+
Pagination parameters set in 'params' of kwargs.
|
|
222
|
+
"""
|
|
223
|
+
kwargs = self._ensure_params(**kwargs)
|
|
224
|
+
|
|
225
|
+
if "page" not in kwargs["params"]:
|
|
226
|
+
kwargs["params"]["page"] = DEFAULT_START_PAGE
|
|
227
|
+
|
|
228
|
+
if partial:
|
|
229
|
+
return kwargs
|
|
230
|
+
|
|
231
|
+
if "size" not in kwargs["params"]:
|
|
232
|
+
kwargs["params"]["size"] = DEFAULT_SIZE
|
|
233
|
+
|
|
234
|
+
if "sort" not in kwargs["params"]:
|
|
235
|
+
kwargs["params"]["sort"] = DEFAULT_SORT
|
|
209
236
|
|
|
210
237
|
return kwargs
|
|
211
238
|
|
|
212
239
|
@staticmethod
|
|
213
|
-
def
|
|
240
|
+
def read_page_number(**kwargs) -> int:
|
|
241
|
+
"""
|
|
242
|
+
Read current page number from kwargs.
|
|
243
|
+
|
|
244
|
+
Parameters
|
|
245
|
+
----------
|
|
246
|
+
**kwargs : dict
|
|
247
|
+
Keyword arguments to format. May be empty or contain various
|
|
248
|
+
parameters for API operations.
|
|
249
|
+
|
|
250
|
+
Returns
|
|
251
|
+
-------
|
|
252
|
+
int
|
|
253
|
+
Current page number.
|
|
214
254
|
"""
|
|
215
|
-
|
|
255
|
+
return kwargs["params"]["page"]
|
|
216
256
|
|
|
217
|
-
|
|
218
|
-
|
|
257
|
+
@staticmethod
|
|
258
|
+
def increment_page_number(**kwargs) -> dict:
|
|
259
|
+
"""
|
|
260
|
+
Increment page number in kwargs.
|
|
219
261
|
|
|
220
262
|
Parameters
|
|
221
263
|
----------
|
|
@@ -226,11 +268,24 @@ class ClientDHCoreParametersBuilder(ClientParametersBuilder):
|
|
|
226
268
|
Returns
|
|
227
269
|
-------
|
|
228
270
|
dict
|
|
229
|
-
Parameters dictionary with
|
|
230
|
-
empty dict if not already present.
|
|
271
|
+
Parameters dictionary with incremented 'page' number in 'params'.
|
|
231
272
|
"""
|
|
232
|
-
|
|
233
|
-
kwargs = {}
|
|
234
|
-
if "params" not in kwargs:
|
|
235
|
-
kwargs["params"] = {}
|
|
273
|
+
kwargs["params"]["page"] += 1
|
|
236
274
|
return kwargs
|
|
275
|
+
|
|
276
|
+
@staticmethod
|
|
277
|
+
def _filter_none_params(**kwargs) -> dict:
|
|
278
|
+
"""
|
|
279
|
+
Filter out None values from kwargs.
|
|
280
|
+
|
|
281
|
+
Parameters
|
|
282
|
+
----------
|
|
283
|
+
**kwargs : dict
|
|
284
|
+
Keyword arguments to filter.
|
|
285
|
+
|
|
286
|
+
Returns
|
|
287
|
+
-------
|
|
288
|
+
dict
|
|
289
|
+
Filtered kwargs.
|
|
290
|
+
"""
|
|
291
|
+
return {k: v for k, v in kwargs.items() if v is not None}
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
7
|
-
from digitalhub.entities._commons.enums import ApiCategories, BackendOperations
|
|
8
7
|
from digitalhub.stores.client._base.api_builder import ClientApiBuilder
|
|
8
|
+
from digitalhub.stores.client._base.enums import ApiCategories, BackendOperations
|
|
9
9
|
from digitalhub.stores.client.local.enums import LocalClientVar
|
|
10
10
|
from digitalhub.utils.exceptions import BackendError
|
|
11
11
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
7
|
-
from digitalhub.
|
|
7
|
+
from digitalhub.stores.client._base.enums import ApiCategories, BackendOperations
|
|
8
8
|
from digitalhub.stores.client._base.params_builder import ClientParametersBuilder
|
|
9
9
|
|
|
10
10
|
|
|
@@ -51,10 +51,13 @@ class ClientLocalParametersBuilder(ClientParametersBuilder):
|
|
|
51
51
|
dict
|
|
52
52
|
Parameters formatted.
|
|
53
53
|
"""
|
|
54
|
-
kwargs = self.
|
|
54
|
+
kwargs = self._ensure_params(**kwargs)
|
|
55
|
+
|
|
56
|
+
# Handle delete
|
|
55
57
|
if operation == BackendOperations.DELETE.value:
|
|
56
58
|
if (cascade := kwargs.pop("cascade", None)) is not None:
|
|
57
|
-
kwargs
|
|
59
|
+
kwargs = self._add_param("cascade", str(cascade).lower(), **kwargs)
|
|
60
|
+
|
|
58
61
|
return kwargs
|
|
59
62
|
|
|
60
63
|
def build_parameters_context(self, operation: str, **kwargs) -> dict:
|
|
@@ -73,48 +76,22 @@ class ClientLocalParametersBuilder(ClientParametersBuilder):
|
|
|
73
76
|
dict
|
|
74
77
|
Parameters formatted.
|
|
75
78
|
"""
|
|
76
|
-
kwargs = self.
|
|
79
|
+
kwargs = self._ensure_params(**kwargs)
|
|
77
80
|
|
|
78
|
-
# Handle read
|
|
81
|
+
# Handle read all versions
|
|
79
82
|
if operation == BackendOperations.READ_ALL_VERSIONS.value:
|
|
80
|
-
kwargs
|
|
81
|
-
kwargs
|
|
83
|
+
kwargs = self._add_param("versions", "all", **kwargs)
|
|
84
|
+
kwargs = self._add_param("name", kwargs.pop("name"), **kwargs)
|
|
85
|
+
|
|
82
86
|
# Handle delete
|
|
83
87
|
elif operation == BackendOperations.DELETE.value:
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
kwargs["params"]["cascade"] = str(cascade).lower()
|
|
87
|
-
|
|
88
|
-
# Handle delete all versions
|
|
89
|
-
entity_id = kwargs.pop("entity_id")
|
|
90
|
-
entity_name = kwargs.pop("entity_name")
|
|
91
|
-
if not kwargs.pop("delete_all_versions", False):
|
|
92
|
-
if entity_id is None:
|
|
93
|
-
raise ValueError(
|
|
94
|
-
"If `delete_all_versions` is False, `entity_id` must be provided,"
|
|
95
|
-
" either as an argument or in key `identifier`.",
|
|
96
|
-
)
|
|
97
|
-
else:
|
|
98
|
-
kwargs["params"]["name"] = entity_name
|
|
99
|
-
return kwargs
|
|
100
|
-
|
|
101
|
-
@staticmethod
|
|
102
|
-
def _set_params(**kwargs) -> dict:
|
|
103
|
-
"""
|
|
104
|
-
Format params parameter.
|
|
88
|
+
if (cascade := kwargs.pop("cascade", None)) is not None:
|
|
89
|
+
kwargs = self._add_param("cascade", str(cascade).lower(), **kwargs)
|
|
105
90
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
91
|
+
# Handle delete all versions
|
|
92
|
+
elif operation == BackendOperations.DELETE_ALL_VERSIONS.value:
|
|
93
|
+
if (cascade := kwargs.pop("cascade", None)) is not None:
|
|
94
|
+
kwargs = self._add_param("cascade", str(cascade).lower(), **kwargs)
|
|
95
|
+
kwargs = self._add_param("name", kwargs.pop("name"), **kwargs)
|
|
110
96
|
|
|
111
|
-
Returns
|
|
112
|
-
-------
|
|
113
|
-
dict
|
|
114
|
-
Parameters with initialized params.
|
|
115
|
-
"""
|
|
116
|
-
if not kwargs:
|
|
117
|
-
kwargs = {}
|
|
118
|
-
if "params" not in kwargs:
|
|
119
|
-
kwargs["params"] = {}
|
|
120
97
|
return kwargs
|
|
@@ -29,6 +29,8 @@ if typing.TYPE_CHECKING:
|
|
|
29
29
|
# Type aliases
|
|
30
30
|
S3Client = Type["botocore.client.S3"]
|
|
31
31
|
|
|
32
|
+
MULTIPART_THRESHOLD = 100 * 1024 * 1024
|
|
33
|
+
|
|
32
34
|
|
|
33
35
|
class S3Store(Store):
|
|
34
36
|
"""
|
|
@@ -331,10 +333,11 @@ class S3Store(Store):
|
|
|
331
333
|
str
|
|
332
334
|
The S3 path where the dataframe was saved.
|
|
333
335
|
"""
|
|
334
|
-
fileobj = BytesIO()
|
|
335
336
|
reader = get_reader_by_object(df)
|
|
336
|
-
|
|
337
|
-
|
|
337
|
+
with BytesIO() as fileobj:
|
|
338
|
+
reader.write_df(df, fileobj, extension=extension, **kwargs)
|
|
339
|
+
fileobj.seek(0)
|
|
340
|
+
return self.upload_fileobject(fileobj, dst)
|
|
338
341
|
|
|
339
342
|
##############################
|
|
340
343
|
# Wrapper methods
|
|
@@ -581,7 +584,7 @@ class S3Store(Store):
|
|
|
581
584
|
Bucket=bucket,
|
|
582
585
|
Key=key,
|
|
583
586
|
ExtraArgs=extra_args,
|
|
584
|
-
Config=TransferConfig(multipart_threshold=
|
|
587
|
+
Config=TransferConfig(multipart_threshold=MULTIPART_THRESHOLD),
|
|
585
588
|
)
|
|
586
589
|
|
|
587
590
|
@staticmethod
|
|
@@ -609,7 +612,7 @@ class S3Store(Store):
|
|
|
609
612
|
Fileobj=fileobj,
|
|
610
613
|
Bucket=bucket,
|
|
611
614
|
Key=key,
|
|
612
|
-
Config=TransferConfig(multipart_threshold=
|
|
615
|
+
Config=TransferConfig(multipart_threshold=MULTIPART_THRESHOLD),
|
|
613
616
|
)
|
|
614
617
|
|
|
615
618
|
##############################
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: digitalhub
|
|
3
|
-
Version: 0.14.
|
|
3
|
+
Version: 0.14.0b4
|
|
4
4
|
Summary: Python SDK for Digitalhub
|
|
5
5
|
Project-URL: Homepage, https://github.com/scc-digitalhub/digitalhub-sdk
|
|
6
6
|
Author-email: Fondazione Bruno Kessler <digitalhub@fbk.eu>, Matteo Martini <mmartini@fbk.eu>
|
|
@@ -16,12 +16,12 @@ digitalhub/entities/_base/entity/metadata.py,sha256=iX_dwpABPh3EBPTJs5mtSrwnylw4
|
|
|
16
16
|
digitalhub/entities/_base/entity/spec.py,sha256=nGlE8xgAZXT5zs1annWaPLvPRYaqxqzjjrhAhvNiQkA,1608
|
|
17
17
|
digitalhub/entities/_base/entity/status.py,sha256=0txG13WDPJE-vRAUkJQYEHMsSzer6qTvTo7xqzbg66Y,1152
|
|
18
18
|
digitalhub/entities/_base/executable/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
19
|
-
digitalhub/entities/_base/executable/entity.py,sha256=
|
|
19
|
+
digitalhub/entities/_base/executable/entity.py,sha256=vDqijNBE852lXDkjsun1eNa-jOWckhb-ADqJtAo-TpY,16013
|
|
20
20
|
digitalhub/entities/_base/material/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
21
|
-
digitalhub/entities/_base/material/entity.py,sha256=
|
|
21
|
+
digitalhub/entities/_base/material/entity.py,sha256=LxeFb0l0_aziGvoWXwhj4heLfvGBtO7ISbFiYZQ2s4o,6718
|
|
22
22
|
digitalhub/entities/_base/material/spec.py,sha256=7lF_Pv7zGJUAR2ixmmCt-UPnoASgOLxnb9yffqwBVp8,544
|
|
23
23
|
digitalhub/entities/_base/material/status.py,sha256=vAIb5qti5KxdIPdB9WYmWrCnqwGyUxuF6CpGSpcWxbE,520
|
|
24
|
-
digitalhub/entities/_base/material/utils.py,sha256=
|
|
24
|
+
digitalhub/entities/_base/material/utils.py,sha256=3KL6geppvAmRRAQR0AjYQ6wTfQ2m59zv0WeRgdVCGGU,3087
|
|
25
25
|
digitalhub/entities/_base/runtime_entity/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
26
26
|
digitalhub/entities/_base/runtime_entity/builder.py,sha256=ZuqUJD1e9m-vYkRnh42u_nMQaTA0awt0meJgi2a2kpw,3716
|
|
27
27
|
digitalhub/entities/_base/unversioned/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
@@ -31,31 +31,32 @@ digitalhub/entities/_base/versioned/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmc
|
|
|
31
31
|
digitalhub/entities/_base/versioned/builder.py,sha256=DkvMdPwyz45Nyk5Mv0IQQG2X69aA0rQmhAq67ZXCM6M,2004
|
|
32
32
|
digitalhub/entities/_base/versioned/entity.py,sha256=zDZ-t34ibLrPevt_lHmhNt949zuwEezCClHtF6h-Mzg,1010
|
|
33
33
|
digitalhub/entities/_commons/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
34
|
-
digitalhub/entities/_commons/enums.py,sha256=
|
|
34
|
+
digitalhub/entities/_commons/enums.py,sha256=lXnqFi9MilJNryCMbV4nzoVvQPuL-Cs2Ag8GNICmaj4,1638
|
|
35
35
|
digitalhub/entities/_commons/metrics.py,sha256=eiN5lHmXRaHQbbN3uAOZlj3QXDxkyADoFqyZ40vdpLc,5378
|
|
36
36
|
digitalhub/entities/_commons/utils.py,sha256=ImEtYVQxRqyDkkkZpRHuLjKywhsmU0cCBcfrmSbaCVE,3944
|
|
37
37
|
digitalhub/entities/_constructors/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
38
|
+
digitalhub/entities/_constructors/_resources.py,sha256=mCNecH9mk95U_OVCaNzYLbsclnzIShlyWPATL2-eoYw,2014
|
|
38
39
|
digitalhub/entities/_constructors/metadata.py,sha256=VxZw341nIw92iR_3-o2_y8I7xle1TTBAs1M5hx2eXpo,1699
|
|
39
|
-
digitalhub/entities/_constructors/name.py,sha256=
|
|
40
|
+
digitalhub/entities/_constructors/name.py,sha256=OmqW-X5h2sIqqT8IbIzpfD78Qnnzd-Il9cwPTT3WtjI,931
|
|
40
41
|
digitalhub/entities/_constructors/spec.py,sha256=vtCcVTYu8Rg6KRvr5awvtkvCAyLtQGlve6aPiyOtLPU,958
|
|
41
42
|
digitalhub/entities/_constructors/status.py,sha256=PrnouXDllZxS7t6pzbMohTov8QTne0cx3WVE37JGoSw,1298
|
|
42
43
|
digitalhub/entities/_constructors/uuid.py,sha256=7QhQ9epJAnYLCKUPY6AMXOe72nPT8xZRnNM98p_vTnM,663
|
|
43
44
|
digitalhub/entities/_processors/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
44
45
|
digitalhub/entities/_processors/processors.py,sha256=V-pA5iY6POAfiidZ7fFqfIQDwvxAIKXe-dEBYtRiAGg,473
|
|
45
|
-
digitalhub/entities/_processors/utils.py,sha256=
|
|
46
|
+
digitalhub/entities/_processors/utils.py,sha256=FsSAelbxZ0DrvJNyhRqBaPQPYeWikscfSKY1RQSB6KY,6376
|
|
46
47
|
digitalhub/entities/_processors/base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
47
|
-
digitalhub/entities/_processors/base/crud.py,sha256=
|
|
48
|
+
digitalhub/entities/_processors/base/crud.py,sha256=hTcyZ8HyEH2PexhZ6nzmXdGGFflul-z1tumBmC5_Jxo,11898
|
|
48
49
|
digitalhub/entities/_processors/base/import_export.py,sha256=4gelPKPGpKYfID9T_GCzKnFtMulpja6v-iQudUwsDhE,4096
|
|
49
50
|
digitalhub/entities/_processors/base/processor.py,sha256=_qKzlhw80-X-naQLAyAXvXZfrilMU-ak7qXz_Q1QW3o,9407
|
|
50
|
-
digitalhub/entities/_processors/base/special_ops.py,sha256=
|
|
51
|
+
digitalhub/entities/_processors/base/special_ops.py,sha256=iM2z7yl-XILnkYMe0ikIzSslgLGNWpK9sxWsq9Sr3lk,3279
|
|
51
52
|
digitalhub/entities/_processors/context/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
52
|
-
digitalhub/entities/_processors/context/crud.py,sha256=
|
|
53
|
+
digitalhub/entities/_processors/context/crud.py,sha256=BXBKqOawRhnpk5O_xcC2MN5GHqIlZ1qgUVXhmNLv5T4,20515
|
|
53
54
|
digitalhub/entities/_processors/context/import_export.py,sha256=rLc-K5dnMXbywuCavdkEXWQMjLP0IT5XuZivtGD5NJc,8649
|
|
54
55
|
digitalhub/entities/_processors/context/material.py,sha256=GgUxj2duYfCF5Eb_YdWgMuCVLctfyDSM_3dj5wh9IcA,4059
|
|
55
56
|
digitalhub/entities/_processors/context/processor.py,sha256=bUD0CKO1dPnym5SItSc6fldSfEJc_VM6RUNLvAakUnA,12167
|
|
56
|
-
digitalhub/entities/_processors/context/special_ops.py,sha256=
|
|
57
|
+
digitalhub/entities/_processors/context/special_ops.py,sha256=Z03Ws1pxwP2OYc-0oXUO9C805pv8apiuKMe05PXirr8,14748
|
|
57
58
|
digitalhub/entities/artifact/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
58
|
-
digitalhub/entities/artifact/crud.py,sha256=
|
|
59
|
+
digitalhub/entities/artifact/crud.py,sha256=X5AVGBsW9quV2Z1KzpxfYnoN7J8iKNRrOCnBIPGlskA,8979
|
|
59
60
|
digitalhub/entities/artifact/utils.py,sha256=nBBdTe3XW4ZJQnO9WennEUMJOovYMFkz3esK8IWkdMw,2434
|
|
60
61
|
digitalhub/entities/artifact/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
61
62
|
digitalhub/entities/artifact/_base/builder.py,sha256=IByi2iCzA68WdYQ4BXLUEByamp1cnlcjlphnryWXR3c,2364
|
|
@@ -68,7 +69,7 @@ digitalhub/entities/artifact/artifact/entity.py,sha256=__dfLAo5HHbky-l_XQpPag_IE
|
|
|
68
69
|
digitalhub/entities/artifact/artifact/spec.py,sha256=BAbL-7XtOF_tDnLizR39YLmKAdRAr3sCyMNr1K5FVNI,740
|
|
69
70
|
digitalhub/entities/artifact/artifact/status.py,sha256=Aela65491_2NqqZG2OCvTsY9Gfverb1ng-_sYttcUI8,413
|
|
70
71
|
digitalhub/entities/dataitem/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
71
|
-
digitalhub/entities/dataitem/crud.py,sha256=
|
|
72
|
+
digitalhub/entities/dataitem/crud.py,sha256=SUFCI649rd8KHIFgzyebpnLbe7y3PTaBtO_jtxShobA,9899
|
|
72
73
|
digitalhub/entities/dataitem/utils.py,sha256=RYZAs4fNfi2sEv-sRWhsKPsLLz2LmUofsOeBE11diFE,7703
|
|
73
74
|
digitalhub/entities/dataitem/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
74
75
|
digitalhub/entities/dataitem/_base/builder.py,sha256=uX5vxDJ8GxVk49NW9mHBKYhinJnfzLBObI7zy4J0TB0,2364
|
|
@@ -87,20 +88,20 @@ digitalhub/entities/dataitem/iceberg/spec.py,sha256=vtfaV9OE1WBKTtTHoYSdMnjQfUey
|
|
|
87
88
|
digitalhub/entities/dataitem/iceberg/status.py,sha256=HMBNAzqQplUxmnnIVb57cCcjhmUQ1v8K3wAGUnYdRlA,310
|
|
88
89
|
digitalhub/entities/dataitem/table/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
89
90
|
digitalhub/entities/dataitem/table/builder.py,sha256=FoXrW09HXCZ0XNnCPHNSZs_iLrIG_8WPCZo_5Vq6_YI,824
|
|
90
|
-
digitalhub/entities/dataitem/table/entity.py,sha256=
|
|
91
|
+
digitalhub/entities/dataitem/table/entity.py,sha256=9-oPpPZfSc5itoaaYccXSHiSBh5-HOu09sMpUUcTWUs,4774
|
|
91
92
|
digitalhub/entities/dataitem/table/models.py,sha256=5wqwm4GQjikdJVtDPEn5hwUR_FWxW_7hwIf-GLikqjQ,1269
|
|
92
93
|
digitalhub/entities/dataitem/table/spec.py,sha256=oYgh5XqFrdzIpGxXe1FW5bsGlFHokUJdHJSamuyFs4k,779
|
|
93
94
|
digitalhub/entities/dataitem/table/status.py,sha256=_-_UrcPZh3maGENDZ99pLA8Gz1yrXapvsxs_lPI1skw,306
|
|
94
95
|
digitalhub/entities/dataitem/table/utils.py,sha256=lKo977VKvjtq3EPLIf-V6-LAwSz7ZPgadvaAmK42ML8,2555
|
|
95
96
|
digitalhub/entities/function/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
96
|
-
digitalhub/entities/function/crud.py,sha256=
|
|
97
|
+
digitalhub/entities/function/crud.py,sha256=fnGy_9QM03TQeMuE-Y2EsYBoD-HglLESehboyLFbhdU,7547
|
|
97
98
|
digitalhub/entities/function/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
98
99
|
digitalhub/entities/function/_base/builder.py,sha256=tmpcf5VGi5T24AQaa_lvmdi53mliObGMd59eDAwlWlw,2143
|
|
99
100
|
digitalhub/entities/function/_base/entity.py,sha256=hv4YaQBwVjixcXh5dgUX3njiNS9Rl8lgEZa9LxaYrew,3229
|
|
100
101
|
digitalhub/entities/function/_base/spec.py,sha256=qDiqfe6zSFYYH-kXPmm4R_LId985V24hO2ikFApv-6U,382
|
|
101
102
|
digitalhub/entities/function/_base/status.py,sha256=wjCUr2HoQQUL4fwTjvPE8eubkCeVxbe2VV8zs0BJ5RY,278
|
|
102
103
|
digitalhub/entities/model/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
103
|
-
digitalhub/entities/model/crud.py,sha256=
|
|
104
|
+
digitalhub/entities/model/crud.py,sha256=ng-Cc6mt0swrCLAtNGZOc31ok3EZeqgt6BRrIiSb0Yw,8757
|
|
104
105
|
digitalhub/entities/model/utils.py,sha256=7YQXr2TbvRAGVrn5okREMWDJQ-Y4PcDu_EyxfTKh6Ck,2431
|
|
105
106
|
digitalhub/entities/model/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
106
107
|
digitalhub/entities/model/_base/builder.py,sha256=6kG8-NNIup2B2GE5ABg9QwV3LoyThnw4KEYABm9kxPg,2343
|
|
@@ -130,30 +131,30 @@ digitalhub/entities/model/sklearn/entity.py,sha256=PvjW0xMyLEPH3bO8FAOEdu1H1hp1r
|
|
|
130
131
|
digitalhub/entities/model/sklearn/spec.py,sha256=AEoiRp2T46z8IrQ-BHx1rtd4b_yaEZJSQ_necKjkjjw,409
|
|
131
132
|
digitalhub/entities/model/sklearn/status.py,sha256=YBf5joe8hJH59U92m0JKFlmLCRpNj0EyR3mA7DKiVrQ,295
|
|
132
133
|
digitalhub/entities/project/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
133
|
-
digitalhub/entities/project/crud.py,sha256=
|
|
134
|
+
digitalhub/entities/project/crud.py,sha256=TQR8DqLeNP0dQ5goc9SVa6sJt4DkcG2AEcDSe3k25Io,8194
|
|
134
135
|
digitalhub/entities/project/utils.py,sha256=-w09JUVOETxpfL0BXPv_vzV0gfxUlrSZKwAGjb8zDWI,1119
|
|
135
136
|
digitalhub/entities/project/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
136
137
|
digitalhub/entities/project/_base/builder.py,sha256=PGOqTHUsCn5CtnJusnT6U2zytxKpSNBBsFnXBgBUe2k,3884
|
|
137
|
-
digitalhub/entities/project/_base/entity.py,sha256=
|
|
138
|
+
digitalhub/entities/project/_base/entity.py,sha256=tn63PndbDvIV-zg_R2ELa0iUjVAQsx5G11dXOfIBv8c,58744
|
|
138
139
|
digitalhub/entities/project/_base/models.py,sha256=_TvjQgMd6EwzGIks9dNszBNMT5BHTwtLce-TDTObSoY,482
|
|
139
140
|
digitalhub/entities/project/_base/spec.py,sha256=AHW9qBJvjdhyUOu2V9Fu7CCzcjWawHsFfqNtN9Zhqrk,1777
|
|
140
141
|
digitalhub/entities/project/_base/status.py,sha256=afEb5CGeovM5VLPsxzP4k2QGEZjhhGkpEmVlK0Fh7sE,276
|
|
141
142
|
digitalhub/entities/run/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
142
|
-
digitalhub/entities/run/crud.py,sha256=
|
|
143
|
+
digitalhub/entities/run/crud.py,sha256=a8pT6V3QFbEwQcCkoYGVPe3WXWBkhK_Eb3OpfNi-6tw,6061
|
|
143
144
|
digitalhub/entities/run/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
144
145
|
digitalhub/entities/run/_base/builder.py,sha256=_nGIZqZyXCOE0vlyuBz249uY3zhjwPLfN_A2SSsHJiQ,2516
|
|
145
|
-
digitalhub/entities/run/_base/entity.py,sha256=
|
|
146
|
+
digitalhub/entities/run/_base/entity.py,sha256=r2RMhG1HB_mkiWeZD5OZDFkfqSnWU6ia_CcAKJ-NXYg,12145
|
|
146
147
|
digitalhub/entities/run/_base/spec.py,sha256=n6S-hUBJDaHiqHqJCAdOzzAFpp0pvEa96PafND-HYdw,1830
|
|
147
148
|
digitalhub/entities/run/_base/status.py,sha256=BFHUlvFJHXWNsawThd2WpfwisFBnzyTy5KVPAIJGeNM,638
|
|
148
149
|
digitalhub/entities/secret/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
149
|
-
digitalhub/entities/secret/crud.py,sha256=
|
|
150
|
+
digitalhub/entities/secret/crud.py,sha256=pBIzSH48U1dCcxyGZczyEmcQ6aXEFIAYHsLurZogR8A,7148
|
|
150
151
|
digitalhub/entities/secret/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
151
152
|
digitalhub/entities/secret/_base/builder.py,sha256=_jx7lgvbnFNpqbwT8-HYb5GNiNSg_KWA3Ngzz6l9bc4,2303
|
|
152
153
|
digitalhub/entities/secret/_base/entity.py,sha256=1BLa2Ij03L5ilmS0FTwqrOhgi4ItiBnJoxzMmKHdIe0,1885
|
|
153
154
|
digitalhub/entities/secret/_base/spec.py,sha256=r0wCaHLLBg2MDYPLgud8NbJ0UgjwBCoSkpCFAjvycTw,884
|
|
154
155
|
digitalhub/entities/secret/_base/status.py,sha256=cpHwYdk4hhPIXzjkqgF9cvqSCR5CKFaY-ffyV46LBsA,274
|
|
155
156
|
digitalhub/entities/task/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
156
|
-
digitalhub/entities/task/crud.py,sha256=
|
|
157
|
+
digitalhub/entities/task/crud.py,sha256=58ax3iEx_HWkig56O_EyNoEF5lZLY4HQGds668k8nVE,5976
|
|
157
158
|
digitalhub/entities/task/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
158
159
|
digitalhub/entities/task/_base/builder.py,sha256=Gutv1Bh51zTtnmXt_HJxWvHgAPycDMNh8zJ7duXThTI,2420
|
|
159
160
|
digitalhub/entities/task/_base/entity.py,sha256=v2JAVp8S3tao0Wyqo_xGkXMTnGr994eaXV1_rZTL20w,3662
|
|
@@ -161,7 +162,7 @@ digitalhub/entities/task/_base/models.py,sha256=LGS_BmJG95m4WW1jsGHfjWjIbCBcQIAr
|
|
|
161
162
|
digitalhub/entities/task/_base/spec.py,sha256=TQ7IXW_QnTGxFvVDk0M22DlaqMWm9Klq1Yk6LGBAhEM,2608
|
|
162
163
|
digitalhub/entities/task/_base/status.py,sha256=9TazT1vKJT8NRvh__ymKJ89CUUcf7UhnLREcvudrFTU,270
|
|
163
164
|
digitalhub/entities/trigger/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
164
|
-
digitalhub/entities/trigger/crud.py,sha256=
|
|
165
|
+
digitalhub/entities/trigger/crud.py,sha256=vcpdWgkInszxYIPLBkUfgneF0vTW4s7LaRqiRafYj1E,7904
|
|
165
166
|
digitalhub/entities/trigger/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
166
167
|
digitalhub/entities/trigger/_base/builder.py,sha256=JhRVtp6JMue-05zr-bQ3gjm4Dh_g0bnBhzdJi6OR5Y0,1835
|
|
167
168
|
digitalhub/entities/trigger/_base/entity.py,sha256=mhDFQ4JOndYU0lQJ4spKRR6pxuJU6G-6Cz639JtPRP8,1279
|
|
@@ -178,7 +179,7 @@ digitalhub/entities/trigger/scheduler/entity.py,sha256=05VLQK0np31QPu0Dwp8mpC2VR
|
|
|
178
179
|
digitalhub/entities/trigger/scheduler/spec.py,sha256=xU6Oh1okj_toJmMyaAy7QufPxIw_QIuwQG6OizVgdm0,784
|
|
179
180
|
digitalhub/entities/trigger/scheduler/status.py,sha256=uSyUnryssv70w-6k6F2qmrnd-OtuUwHarexjN7OconA,309
|
|
180
181
|
digitalhub/entities/workflow/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
181
|
-
digitalhub/entities/workflow/crud.py,sha256=
|
|
182
|
+
digitalhub/entities/workflow/crud.py,sha256=NWp29W_YtGWT4Jp-rejojmQGruIOuqWskz7DHjOBlXI,7550
|
|
182
183
|
digitalhub/entities/workflow/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
183
184
|
digitalhub/entities/workflow/_base/builder.py,sha256=G0IyxVzHa_640vZiljTcCKF8hmfBQfrQsOj8QInU2Ok,2143
|
|
184
185
|
digitalhub/entities/workflow/_base/entity.py,sha256=ctb8w_ZleUUDUEU0uR4TxyUWfoPBnkHrnFgogyjMLnk,2652
|
|
@@ -201,23 +202,24 @@ digitalhub/stores/client/builder.py,sha256=N5oFQ5BZR6YTZKQYW5jWBBqBz5AxS8TALj30J
|
|
|
201
202
|
digitalhub/stores/client/_base/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
202
203
|
digitalhub/stores/client/_base/api_builder.py,sha256=hh30o2MfEY91VzhQyqP3gkBClC8FYYPNyTmBA99cqqA,786
|
|
203
204
|
digitalhub/stores/client/_base/client.py,sha256=E33xRleSQoWQ271wTPnmDzpD50m64Nwvo2aTuDt55l4,5797
|
|
204
|
-
digitalhub/stores/client/_base/
|
|
205
|
-
digitalhub/stores/client/_base/
|
|
205
|
+
digitalhub/stores/client/_base/enums.py,sha256=9cVRLYApHnleN5mX5lZ3SdGMT7jg68yFmY9Ums08FD0,734
|
|
206
|
+
digitalhub/stores/client/_base/key_builder.py,sha256=RRWqKwka6xJAhX2G8RdfjWE0aBrVq05FldER26bqQO4,1906
|
|
207
|
+
digitalhub/stores/client/_base/params_builder.py,sha256=AYbv13hfVtF8zWL5XGXvbkrTb8Rwln04oOmWO9ny2wA,2265
|
|
206
208
|
digitalhub/stores/client/dhcore/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
207
|
-
digitalhub/stores/client/dhcore/api_builder.py,sha256=
|
|
208
|
-
digitalhub/stores/client/dhcore/client.py,sha256
|
|
209
|
+
digitalhub/stores/client/dhcore/api_builder.py,sha256=AOJn38XGAqTGql3Qo659HNFSYGL6uWbahECRchdczT0,4554
|
|
210
|
+
digitalhub/stores/client/dhcore/client.py,sha256=Xt7WppIQARFo986OxoINNLCtgE4XEzmghvq-ppZVAgg,17373
|
|
209
211
|
digitalhub/stores/client/dhcore/configurator.py,sha256=Nnc33unCQOZlzqx47K1fTjWWEzLO_sdpBegtXhp3q_U,16143
|
|
210
212
|
digitalhub/stores/client/dhcore/enums.py,sha256=QpRf7OkoQtUkMix5tp3TXoQXEkAo6sPvlmApxjsF1oI,340
|
|
211
213
|
digitalhub/stores/client/dhcore/error_parser.py,sha256=lJNRC_rXA1pVpkF-g_lOp5TXOBsTpt6CArSRTVRswiY,4572
|
|
212
214
|
digitalhub/stores/client/dhcore/key_builder.py,sha256=wD8kB0LHOvf669pzF8D6ksZ3GJfWmbDYDFbGs3TnaPo,1432
|
|
213
|
-
digitalhub/stores/client/dhcore/params_builder.py,sha256=
|
|
215
|
+
digitalhub/stores/client/dhcore/params_builder.py,sha256=1HdElT-cVUOmWsWyy7DNc-a7PVgZnX_tZHTKKQNvGrY,9731
|
|
214
216
|
digitalhub/stores/client/dhcore/utils.py,sha256=6r0cBlJVHvOSRMEZhRbRTb8qQANq842twZTQ0D8Gqm4,2541
|
|
215
217
|
digitalhub/stores/client/local/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
216
|
-
digitalhub/stores/client/local/api_builder.py,sha256=
|
|
218
|
+
digitalhub/stores/client/local/api_builder.py,sha256=fLzz1B-MdMvrqapn1gecwsJ30dwqZGYvViZobl0mLlA,3565
|
|
217
219
|
digitalhub/stores/client/local/client.py,sha256=oRHe2AP3YVzwuBomgI3S0xMPHDDBJDT87AaOXz97ZmA,19335
|
|
218
220
|
digitalhub/stores/client/local/enums.py,sha256=J4xf23H2AO8OKYPim2XO143A7j_X6dqfPSm03Sbi0AI,258
|
|
219
221
|
digitalhub/stores/client/local/key_builder.py,sha256=ijISHvPcMyx591gHlSP1IZdiRrFi0oVh8AqaWe1L_g0,1431
|
|
220
|
-
digitalhub/stores/client/local/params_builder.py,sha256=
|
|
222
|
+
digitalhub/stores/client/local/params_builder.py,sha256=Rj7FlqUqIIcFEdxc2PUAgLN1hvtjJNmuwxWlqVCpSSc,3029
|
|
221
223
|
digitalhub/stores/credentials/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
222
224
|
digitalhub/stores/credentials/api.py,sha256=mwClY8tCG62eAhbwrmK-kzYQzEJ5ZmCW52WmYsQ-004,738
|
|
223
225
|
digitalhub/stores/credentials/configurator.py,sha256=u28OBeEq6xvvrCW2rZAY019elf6nHn18U5WP2E_sLpM,5213
|
|
@@ -237,7 +239,7 @@ digitalhub/stores/data/remote/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q3
|
|
|
237
239
|
digitalhub/stores/data/remote/store.py,sha256=3E_MFkUiGDBQFKaCYgX64aLfod7wLCLRuMpS7Yrz6HY,6084
|
|
238
240
|
digitalhub/stores/data/s3/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
239
241
|
digitalhub/stores/data/s3/configurator.py,sha256=ar1hplZIL8TIZMIY3xHyMJSkPosBZY0rAo4AR8QgfyU,4994
|
|
240
|
-
digitalhub/stores/data/s3/store.py,sha256=
|
|
242
|
+
digitalhub/stores/data/s3/store.py,sha256=Y-IGoPibRWZIMi3MeG7_gRTA5tZO88EQz3H8jgPhnPw,20673
|
|
241
243
|
digitalhub/stores/data/sql/__init__.py,sha256=IRY2i9U97wptE3OcC_NO-EBmcAH6-Q36gMCspKetQ0k,107
|
|
242
244
|
digitalhub/stores/data/sql/configurator.py,sha256=5eCUuZhvtE_oDKsKxht0-TCWmMNkfTowN6f99hOCrKM,3925
|
|
243
245
|
digitalhub/stores/data/sql/store.py,sha256=NRsZguzTak8ukvuYwmVOnTufOJKe5wNnVyDZaOOqPhw,17300
|
|
@@ -263,8 +265,8 @@ digitalhub/utils/logger.py,sha256=hH3gGE35L8jRxrg8EPXGZZAK1OA5-CvWnayuBZzteBM,54
|
|
|
263
265
|
digitalhub/utils/store_utils.py,sha256=X6pUywqENNdM-kpPwm67w7qx5-VtTHHIdkCdEwL29AI,1023
|
|
264
266
|
digitalhub/utils/types.py,sha256=orCxY43zXMJfKZsOj6FUR85u9wRBPJ0wdkzrBHTnVW8,217
|
|
265
267
|
digitalhub/utils/uri_utils.py,sha256=Go787CxAOo2MMjFIEt8XssomtyV8vTdIrpyjSQK3gAM,4408
|
|
266
|
-
digitalhub-0.14.
|
|
267
|
-
digitalhub-0.14.
|
|
268
|
-
digitalhub-0.14.
|
|
269
|
-
digitalhub-0.14.
|
|
270
|
-
digitalhub-0.14.
|
|
268
|
+
digitalhub-0.14.0b4.dist-info/METADATA,sha256=jdHQzB2YD2tB9bpS_xWAD_4WRF-U_S4XPdATclbJPgw,18129
|
|
269
|
+
digitalhub-0.14.0b4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
270
|
+
digitalhub-0.14.0b4.dist-info/licenses/AUTHORS,sha256=iDleK_2EAMmh0o8Te_E9mdXQCP4rBfFr9dW9d0-pCno,301
|
|
271
|
+
digitalhub-0.14.0b4.dist-info/licenses/LICENSE,sha256=z3xQCHfGmTnigfoUe3uidW_GUSVeFBdos30w9VNTRec,11361
|
|
272
|
+
digitalhub-0.14.0b4.dist-info/RECORD,,
|