sagemaker-core 1.0.46__py3-none-any.whl → 1.0.48__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/__init__.py +0 -4
- sagemaker_core/main/code_injection/shape_dag.py +38 -0
- sagemaker_core/main/shapes.py +1 -1
- sagemaker_core/main/utils.py +2 -2
- {sagemaker_core-1.0.46.dist-info → sagemaker_core-1.0.48.dist-info}/METADATA +2 -2
- {sagemaker_core-1.0.46.dist-info → sagemaker_core-1.0.48.dist-info}/RECORD +9 -9
- {sagemaker_core-1.0.46.dist-info → sagemaker_core-1.0.48.dist-info}/WHEEL +0 -0
- {sagemaker_core-1.0.46.dist-info → sagemaker_core-1.0.48.dist-info}/licenses/LICENSE +0 -0
- {sagemaker_core-1.0.46.dist-info → sagemaker_core-1.0.48.dist-info}/top_level.txt +0 -0
sagemaker_core/__init__.py
CHANGED
|
@@ -413,6 +413,25 @@ SHAPE_DAG = {
|
|
|
413
413
|
],
|
|
414
414
|
"type": "structure",
|
|
415
415
|
},
|
|
416
|
+
"AttachClusterNodeVolumeRequest": {
|
|
417
|
+
"members": [
|
|
418
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
419
|
+
{"name": "NodeId", "shape": "ClusterNodeId", "type": "string"},
|
|
420
|
+
{"name": "VolumeId", "shape": "VolumeId", "type": "string"},
|
|
421
|
+
],
|
|
422
|
+
"type": "structure",
|
|
423
|
+
},
|
|
424
|
+
"AttachClusterNodeVolumeResponse": {
|
|
425
|
+
"members": [
|
|
426
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
427
|
+
{"name": "NodeId", "shape": "ClusterNodeId", "type": "string"},
|
|
428
|
+
{"name": "VolumeId", "shape": "VolumeId", "type": "string"},
|
|
429
|
+
{"name": "AttachTime", "shape": "Timestamp", "type": "timestamp"},
|
|
430
|
+
{"name": "Status", "shape": "VolumeAttachmentStatus", "type": "string"},
|
|
431
|
+
{"name": "DeviceName", "shape": "VolumeDeviceName", "type": "string"},
|
|
432
|
+
],
|
|
433
|
+
"type": "structure",
|
|
434
|
+
},
|
|
416
435
|
"AttributeNames": {"member_shape": "AttributeName", "member_type": "string", "type": "list"},
|
|
417
436
|
"AuthenticationRequestExtraParams": {
|
|
418
437
|
"key_shape": "AuthenticationRequestExtraParamsKey",
|
|
@@ -6262,6 +6281,25 @@ SHAPE_DAG = {
|
|
|
6262
6281
|
"member_type": "structure",
|
|
6263
6282
|
"type": "list",
|
|
6264
6283
|
},
|
|
6284
|
+
"DetachClusterNodeVolumeRequest": {
|
|
6285
|
+
"members": [
|
|
6286
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
6287
|
+
{"name": "NodeId", "shape": "ClusterNodeId", "type": "string"},
|
|
6288
|
+
{"name": "VolumeId", "shape": "VolumeId", "type": "string"},
|
|
6289
|
+
],
|
|
6290
|
+
"type": "structure",
|
|
6291
|
+
},
|
|
6292
|
+
"DetachClusterNodeVolumeResponse": {
|
|
6293
|
+
"members": [
|
|
6294
|
+
{"name": "ClusterArn", "shape": "ClusterArn", "type": "string"},
|
|
6295
|
+
{"name": "NodeId", "shape": "ClusterNodeId", "type": "string"},
|
|
6296
|
+
{"name": "VolumeId", "shape": "VolumeId", "type": "string"},
|
|
6297
|
+
{"name": "AttachTime", "shape": "Timestamp", "type": "timestamp"},
|
|
6298
|
+
{"name": "Status", "shape": "VolumeAttachmentStatus", "type": "string"},
|
|
6299
|
+
{"name": "DeviceName", "shape": "VolumeDeviceName", "type": "string"},
|
|
6300
|
+
],
|
|
6301
|
+
"type": "structure",
|
|
6302
|
+
},
|
|
6265
6303
|
"Device": {
|
|
6266
6304
|
"members": [
|
|
6267
6305
|
{"name": "DeviceName", "shape": "DeviceName", "type": "string"},
|
sagemaker_core/main/shapes.py
CHANGED
|
@@ -5045,7 +5045,7 @@ class UnifiedStudioSettings(Base):
|
|
|
5045
5045
|
project_id: The ID of the Amazon SageMaker Unified Studio project that corresponds to the domain.
|
|
5046
5046
|
environment_id: The ID of the environment that Amazon SageMaker Unified Studio associates with the domain.
|
|
5047
5047
|
project_s3_path: The location where Amazon S3 stores temporary execution data and other artifacts for the project that corresponds to the domain.
|
|
5048
|
-
single_sign_on_application_arn: The ARN of the application managed by
|
|
5048
|
+
single_sign_on_application_arn: The ARN of the Amazon DataZone application managed by Amazon SageMaker Unified Studio in the Amazon Web Services IAM Identity Center.
|
|
5049
5049
|
"""
|
|
5050
5050
|
|
|
5051
5051
|
studio_web_portal_access: Optional[str] = Unassigned()
|
sagemaker_core/main/utils.py
CHANGED
|
@@ -146,7 +146,7 @@ def get_textual_rich_theme() -> Theme:
|
|
|
146
146
|
textual_rich_console_and_traceback_enabled = False
|
|
147
147
|
|
|
148
148
|
|
|
149
|
-
def
|
|
149
|
+
def enable_rich_logging():
|
|
150
150
|
"""
|
|
151
151
|
Reconfigure the global textual rich console with the customized theme
|
|
152
152
|
and enable textual rich error traceback
|
|
@@ -180,7 +180,7 @@ def get_textual_rich_logger(name: str, log_level: str = "INFO") -> logging.Logge
|
|
|
180
180
|
logging.Logger: A textial rich logger.
|
|
181
181
|
|
|
182
182
|
"""
|
|
183
|
-
|
|
183
|
+
enable_rich_logging()
|
|
184
184
|
handler = get_rich_handler()
|
|
185
185
|
logger = logging.getLogger(name)
|
|
186
186
|
for handler in logger.handlers:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sagemaker-core
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.48
|
|
4
4
|
Summary: An python package for sagemaker core functionalities
|
|
5
5
|
Author-email: AWS <sagemaker-interests@amazon.com>
|
|
6
6
|
Project-URL: Repository, https://github.com/aws/sagemaker-core.git
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
15
15
|
Requires-Python: >=3.8
|
|
16
16
|
Description-Content-Type: text/x-rst
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: boto3<2.0.0,>=1.35.
|
|
18
|
+
Requires-Dist: boto3<2.0.0,>=1.35.36
|
|
19
19
|
Requires-Dist: pydantic<3.0.0,>=2.0.0
|
|
20
20
|
Requires-Dist: PyYAML<7.0,>=6.0
|
|
21
21
|
Requires-Dist: jsonschema<5.0.0
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sagemaker_core/__init__.py,sha256=
|
|
1
|
+
sagemaker_core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
sagemaker_core/_version.py,sha256=4UH5LevZBa3Kl1OiDbkaeIzXUQNSYVFrc-2su2TCco4,86
|
|
3
3
|
sagemaker_core/helper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
sagemaker_core/helper/session_helper.py,sha256=GO1UJgpN1L9a25nYlVb-KWk4KvmFzVkLqFMqw-VaI4c,33126
|
|
@@ -8,14 +8,14 @@ sagemaker_core/main/default_configs_helper.py,sha256=bg_tgczX_bYzNiSlalJ6TWPTgrQ
|
|
|
8
8
|
sagemaker_core/main/exceptions.py,sha256=CsiM3V_Gb16grBotnu59LB6tznryPcSvAQDAOOYGc10,5563
|
|
9
9
|
sagemaker_core/main/logs.py,sha256=yfEH7uP91nbE1lefymOlBr81ziBzsDSIOF2Qyd54FJE,6241
|
|
10
10
|
sagemaker_core/main/resources.py,sha256=lDuKu3EHRhEjOE6MVLHfPABxGzBNHh8R2j961ITdMA0,1437580
|
|
11
|
-
sagemaker_core/main/shapes.py,sha256=
|
|
11
|
+
sagemaker_core/main/shapes.py,sha256=sGjB8ICd0F5bYmvFx1Y1yvscFS00sg6RCjrMR3CXx9s,762943
|
|
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=y1aZzztCApczZSqT0U7_H8zLlpqp1vgoUKcp40mTM2o,19157
|
|
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
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=m19s6YykKJgkM5mX4t_aCoMlmZVpXR2h6nwy_mYVM5Q,726467
|
|
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.48.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
32
|
+
sagemaker_core-1.0.48.dist-info/METADATA,sha256=enC8HCSHEqfxtM05NfKFnWazNYuv49H95De1E4mMKTY,4871
|
|
33
|
+
sagemaker_core-1.0.48.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
34
|
+
sagemaker_core-1.0.48.dist-info/top_level.txt,sha256=R3GAZZ1zC5JxqdE_0x2Lu_WYi2Xfke7VsiP3L5zngfA,15
|
|
35
|
+
sagemaker_core-1.0.48.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|