sagemaker-core 1.0.34__py3-none-any.whl → 1.0.35__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 sagemaker-core might be problematic. Click here for more details.
- sagemaker_core/main/code_injection/codec.py +10 -0
- sagemaker_core/main/code_injection/shape_dag.py +5 -0
- sagemaker_core/main/resources.py +2 -0
- sagemaker_core/main/utils.py +2 -2
- {sagemaker_core-1.0.34.dist-info → sagemaker_core-1.0.35.dist-info}/METADATA +1 -1
- {sagemaker_core-1.0.34.dist-info → sagemaker_core-1.0.35.dist-info}/RECORD +9 -9
- {sagemaker_core-1.0.34.dist-info → sagemaker_core-1.0.35.dist-info}/WHEEL +1 -1
- {sagemaker_core-1.0.34.dist-info → sagemaker_core-1.0.35.dist-info}/licenses/LICENSE +0 -0
- {sagemaker_core-1.0.34.dist-info → sagemaker_core-1.0.35.dist-info}/top_level.txt +0 -0
|
@@ -22,6 +22,7 @@ from sagemaker_core.main.code_injection.constants import (
|
|
|
22
22
|
LIST_TYPE,
|
|
23
23
|
MAP_TYPE,
|
|
24
24
|
)
|
|
25
|
+
from io import BytesIO
|
|
25
26
|
|
|
26
27
|
|
|
27
28
|
def pascal_to_snake(pascal_str):
|
|
@@ -244,6 +245,15 @@ def transform(data, shape, object_instance=None) -> dict:
|
|
|
244
245
|
elif _member_type == MAP_TYPE:
|
|
245
246
|
_map_type_shape = SHAPE_DAG[_member_shape]
|
|
246
247
|
evaluated_value = _evaluate_map_type(data[_member_name], _map_type_shape)
|
|
248
|
+
elif _member_type == "blob":
|
|
249
|
+
blob_data = data[_member_name]
|
|
250
|
+
if isinstance(blob_data, bytes):
|
|
251
|
+
evaluated_value = BytesIO(blob_data)
|
|
252
|
+
elif hasattr(blob_data, "read"):
|
|
253
|
+
# If it's already a file-like object, use it as is
|
|
254
|
+
evaluated_value = blob_data
|
|
255
|
+
else:
|
|
256
|
+
raise ValueError(f"Unexpected blob data type: {type(blob_data)}")
|
|
247
257
|
else:
|
|
248
258
|
raise ValueError(f"Unexpected member type encountered: {_member_type}")
|
|
249
259
|
|
|
@@ -5098,6 +5098,11 @@ SHAPE_DAG = {
|
|
|
5098
5098
|
{"name": "MlflowVersion", "shape": "MlflowVersion", "type": "string"},
|
|
5099
5099
|
{"name": "RoleArn", "shape": "RoleArn", "type": "string"},
|
|
5100
5100
|
{"name": "TrackingServerStatus", "shape": "TrackingServerStatus", "type": "string"},
|
|
5101
|
+
{
|
|
5102
|
+
"name": "TrackingServerMaintenanceStatus",
|
|
5103
|
+
"shape": "TrackingServerMaintenanceStatus",
|
|
5104
|
+
"type": "string",
|
|
5105
|
+
},
|
|
5101
5106
|
{"name": "IsActive", "shape": "IsTrackingServerActive", "type": "string"},
|
|
5102
5107
|
{"name": "TrackingServerUrl", "shape": "TrackingServerUrl", "type": "string"},
|
|
5103
5108
|
{
|
sagemaker_core/main/resources.py
CHANGED
|
@@ -17364,6 +17364,7 @@ class MlflowTrackingServer(Base):
|
|
|
17364
17364
|
mlflow_version: The MLflow version used for the described tracking server.
|
|
17365
17365
|
role_arn: The Amazon Resource Name (ARN) for an IAM role in your account that the described MLflow Tracking Server uses to access the artifact store in Amazon S3.
|
|
17366
17366
|
tracking_server_status: The current creation status of the described MLflow Tracking Server.
|
|
17367
|
+
tracking_server_maintenance_status: The current maintenance status of the described MLflow Tracking Server.
|
|
17367
17368
|
is_active: Whether the described MLflow Tracking Server is currently active.
|
|
17368
17369
|
tracking_server_url: The URL to connect to the MLflow user interface for the described tracking server.
|
|
17369
17370
|
weekly_maintenance_window_start: The day and time of the week when weekly maintenance occurs on the described tracking server.
|
|
@@ -17382,6 +17383,7 @@ class MlflowTrackingServer(Base):
|
|
|
17382
17383
|
mlflow_version: Optional[str] = Unassigned()
|
|
17383
17384
|
role_arn: Optional[str] = Unassigned()
|
|
17384
17385
|
tracking_server_status: Optional[str] = Unassigned()
|
|
17386
|
+
tracking_server_maintenance_status: Optional[str] = Unassigned()
|
|
17385
17387
|
is_active: Optional[str] = Unassigned()
|
|
17386
17388
|
tracking_server_url: Optional[str] = Unassigned()
|
|
17387
17389
|
weekly_maintenance_window_start: Optional[str] = Unassigned()
|
sagemaker_core/main/utils.py
CHANGED
|
@@ -457,13 +457,13 @@ class ResourceIterator(Generic[T]):
|
|
|
457
457
|
elif (
|
|
458
458
|
len(self.summary_list) > 0
|
|
459
459
|
and self.index >= len(self.summary_list)
|
|
460
|
-
and self.next_token
|
|
460
|
+
and (not self.next_token)
|
|
461
461
|
):
|
|
462
462
|
raise StopIteration
|
|
463
463
|
|
|
464
464
|
# Otherwise, get the next page of summaries by calling the list method with the next token if available
|
|
465
465
|
else:
|
|
466
|
-
if self.next_token
|
|
466
|
+
if self.next_token:
|
|
467
467
|
response = getattr(self.client, self.list_method)(
|
|
468
468
|
NextToken=self.next_token, **self.list_method_kwargs
|
|
469
469
|
)
|
|
@@ -7,15 +7,15 @@ sagemaker_core/main/config_schema.py,sha256=Wxe2gJash1rrxBomGhSYmII1LmJ3E70LIuSW
|
|
|
7
7
|
sagemaker_core/main/exceptions.py,sha256=87DUlrmHxaWoiYNlpNY9ixxFMPRk_dIGPsA2e_xdVwQ,5602
|
|
8
8
|
sagemaker_core/main/intelligent_defaults_helper.py,sha256=5SDM6UavZtp-k5LhqRL7GRIDgzFB5UsC_p7YuiSPK9A,8334
|
|
9
9
|
sagemaker_core/main/logs.py,sha256=yfEH7uP91nbE1lefymOlBr81ziBzsDSIOF2Qyd54FJE,6241
|
|
10
|
-
sagemaker_core/main/resources.py,sha256=
|
|
10
|
+
sagemaker_core/main/resources.py,sha256=dNDFf5ANJ8NrVd5sy3Onr_W4Ls-0UEw7RsER7vyLOg8,1428074
|
|
11
11
|
sagemaker_core/main/shapes.py,sha256=JuLWvrd3YSaVMnmERMB0jOPLtpAu98O5icSf7BwBpVU,739047
|
|
12
12
|
sagemaker_core/main/user_agent.py,sha256=BPYDAfDd70ObP-VAjl7aDHALHyGknkpRP21ktVr_LDw,2744
|
|
13
|
-
sagemaker_core/main/utils.py,sha256=
|
|
13
|
+
sagemaker_core/main/utils.py,sha256=Ge_KdFKWo-qoIXlXkgLbaJbfXMVdUVHTq6BbDQn48Tw,19201
|
|
14
14
|
sagemaker_core/main/code_injection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
sagemaker_core/main/code_injection/base.py,sha256=11_Jif0nOzfbLGlXaacKf-wcizzfS64U0OSZGoVffFU,1733
|
|
16
|
-
sagemaker_core/main/code_injection/codec.py,sha256=
|
|
16
|
+
sagemaker_core/main/code_injection/codec.py,sha256=2YzJ-iYEzmguVaJVcZeyCR0OpTSR7UOixATrOm4MiBk,8885
|
|
17
17
|
sagemaker_core/main/code_injection/constants.py,sha256=2ICExGge8vAWx7lSTW0JGh-bH1korkvpOpDu5M63eI4,980
|
|
18
|
-
sagemaker_core/main/code_injection/shape_dag.py,sha256=
|
|
18
|
+
sagemaker_core/main/code_injection/shape_dag.py,sha256=Kdjew_4KCxfAjauG-0fPaHtiA3Ttc8IGzpKcAnQZO7A,704365
|
|
19
19
|
sagemaker_core/resources/__init__.py,sha256=EAYTFMN-nPjnPjjBbhIUeaL67FLKNPd7qbcbl9VIrws,31
|
|
20
20
|
sagemaker_core/shapes/__init__.py,sha256=RnbIu9eTxKt-DNsOFJabrWIgrrtS9_SdAozP9JBl_ic,28
|
|
21
21
|
sagemaker_core/tools/__init__.py,sha256=xX79JImxCVzrWMnjgntLCve2G5I-R4pRar5s20kT9Rs,56
|
|
@@ -28,8 +28,8 @@ sagemaker_core/tools/resources_extractor.py,sha256=hN61ehZbPnhFW-2FIVDi7NsEz4rLv
|
|
|
28
28
|
sagemaker_core/tools/shapes_codegen.py,sha256=4lsePZpjk7M6RpJs5yar_m4z5MzwGHFrvCkdS_-R12c,12172
|
|
29
29
|
sagemaker_core/tools/shapes_extractor.py,sha256=vxVKjXD3lmjrkoKiexjUnOt8ITbFxQSeiDtx7P6Qtkw,14226
|
|
30
30
|
sagemaker_core/tools/templates.py,sha256=0lOIH3Rq2CXWkQhK6VenN_TE_v5p852s2kQyb_BeQxA,23460
|
|
31
|
-
sagemaker_core-1.0.
|
|
32
|
-
sagemaker_core-1.0.
|
|
33
|
-
sagemaker_core-1.0.
|
|
34
|
-
sagemaker_core-1.0.
|
|
35
|
-
sagemaker_core-1.0.
|
|
31
|
+
sagemaker_core-1.0.35.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
32
|
+
sagemaker_core-1.0.35.dist-info/METADATA,sha256=NymLf-CKNE3RMT34LBnDeDLcGMBEfUrWOdSzsWLJ-P4,4885
|
|
33
|
+
sagemaker_core-1.0.35.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
34
|
+
sagemaker_core-1.0.35.dist-info/top_level.txt,sha256=R3GAZZ1zC5JxqdE_0x2Lu_WYi2Xfke7VsiP3L5zngfA,15
|
|
35
|
+
sagemaker_core-1.0.35.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|