sagemaker-core 1.0.31__py3-none-any.whl → 1.0.32__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/shape_dag.py +23 -0
- sagemaker_core/main/config_schema.py +3 -0
- sagemaker_core/main/shapes.py +33 -2
- {sagemaker_core-1.0.31.dist-info → sagemaker_core-1.0.32.dist-info}/METADATA +1 -1
- {sagemaker_core-1.0.31.dist-info → sagemaker_core-1.0.32.dist-info}/RECORD +8 -8
- {sagemaker_core-1.0.31.dist-info → sagemaker_core-1.0.32.dist-info}/WHEEL +1 -1
- {sagemaker_core-1.0.31.dist-info → sagemaker_core-1.0.32.dist-info}/licenses/LICENSE +0 -0
- {sagemaker_core-1.0.31.dist-info → sagemaker_core-1.0.32.dist-info}/top_level.txt +0 -0
|
@@ -6182,6 +6182,11 @@ SHAPE_DAG = {
|
|
|
6182
6182
|
},
|
|
6183
6183
|
{"name": "DockerSettings", "shape": "DockerSettings", "type": "structure"},
|
|
6184
6184
|
{"name": "AmazonQSettings", "shape": "AmazonQSettings", "type": "structure"},
|
|
6185
|
+
{
|
|
6186
|
+
"name": "UnifiedStudioSettings",
|
|
6187
|
+
"shape": "UnifiedStudioSettings",
|
|
6188
|
+
"type": "structure",
|
|
6189
|
+
},
|
|
6185
6190
|
],
|
|
6186
6191
|
"type": "structure",
|
|
6187
6192
|
},
|
|
@@ -6200,6 +6205,11 @@ SHAPE_DAG = {
|
|
|
6200
6205
|
{"name": "SecurityGroupIds", "shape": "DomainSecurityGroupIds", "type": "list"},
|
|
6201
6206
|
{"name": "DockerSettings", "shape": "DockerSettings", "type": "structure"},
|
|
6202
6207
|
{"name": "AmazonQSettings", "shape": "AmazonQSettings", "type": "structure"},
|
|
6208
|
+
{
|
|
6209
|
+
"name": "UnifiedStudioSettings",
|
|
6210
|
+
"shape": "UnifiedStudioSettings",
|
|
6211
|
+
"type": "structure",
|
|
6212
|
+
},
|
|
6203
6213
|
],
|
|
6204
6214
|
"type": "structure",
|
|
6205
6215
|
},
|
|
@@ -13689,6 +13699,7 @@ SHAPE_DAG = {
|
|
|
13689
13699
|
},
|
|
13690
13700
|
{"name": "AppType", "shape": "AppType", "type": "string"},
|
|
13691
13701
|
{"name": "SpaceStorageSettings", "shape": "SpaceStorageSettings", "type": "structure"},
|
|
13702
|
+
{"name": "SpaceManagedResources", "shape": "FeatureStatus", "type": "string"},
|
|
13692
13703
|
{"name": "CustomFileSystems", "shape": "CustomFileSystems", "type": "list"},
|
|
13693
13704
|
],
|
|
13694
13705
|
"type": "structure",
|
|
@@ -14808,6 +14819,18 @@ SHAPE_DAG = {
|
|
|
14808
14819
|
],
|
|
14809
14820
|
"type": "structure",
|
|
14810
14821
|
},
|
|
14822
|
+
"UnifiedStudioSettings": {
|
|
14823
|
+
"members": [
|
|
14824
|
+
{"name": "StudioWebPortalAccess", "shape": "FeatureStatus", "type": "string"},
|
|
14825
|
+
{"name": "DomainAccountId", "shape": "AccountId", "type": "string"},
|
|
14826
|
+
{"name": "DomainRegion", "shape": "RegionName", "type": "string"},
|
|
14827
|
+
{"name": "DomainId", "shape": "UnifiedStudioDomainId", "type": "string"},
|
|
14828
|
+
{"name": "ProjectId", "shape": "UnifiedStudioProjectId", "type": "string"},
|
|
14829
|
+
{"name": "EnvironmentId", "shape": "UnifiedStudioEnvironmentId", "type": "string"},
|
|
14830
|
+
{"name": "ProjectS3Path", "shape": "S3Uri", "type": "string"},
|
|
14831
|
+
],
|
|
14832
|
+
"type": "structure",
|
|
14833
|
+
},
|
|
14811
14834
|
"UnprocessedIdentifiers": {
|
|
14812
14835
|
"member_shape": "BatchGetRecordIdentifier",
|
|
14813
14836
|
"member_type": "structure",
|
|
@@ -243,6 +243,9 @@ SAGEMAKER_PYTHON_SDK_CONFIG_SCHEMA = {
|
|
|
243
243
|
"domain_execution_role_arn": {"type": "string"}
|
|
244
244
|
},
|
|
245
245
|
"execution_role_identity_config": {"type": "string"},
|
|
246
|
+
"unified_studio_settings": {
|
|
247
|
+
"project_s3_path": {"type": "string"}
|
|
248
|
+
},
|
|
246
249
|
},
|
|
247
250
|
"home_efs_file_system_kms_key_id": {"type": "string"},
|
|
248
251
|
"subnet_ids": {
|
sagemaker_core/main/shapes.py
CHANGED
|
@@ -3342,7 +3342,7 @@ class ClusterNodeDetails(Base):
|
|
|
3342
3342
|
instance_status: The status of the instance.
|
|
3343
3343
|
instance_type: The type of the instance.
|
|
3344
3344
|
launch_time: The time when the instance is launched.
|
|
3345
|
-
last_software_update_time: The time
|
|
3345
|
+
last_software_update_time: The time when the cluster was last updated.
|
|
3346
3346
|
life_cycle_config: The LifeCycle configuration applied to the instance.
|
|
3347
3347
|
override_vpc_config: The customized Amazon VPC configuration at the instance group level that overrides the default Amazon VPC configuration of the SageMaker HyperPod cluster.
|
|
3348
3348
|
threads_per_core: The number of threads per CPU core you specified under CreateCluster.
|
|
@@ -3380,7 +3380,7 @@ class ClusterNodeSummary(Base):
|
|
|
3380
3380
|
instance_id: The ID of the instance.
|
|
3381
3381
|
instance_type: The type of the instance.
|
|
3382
3382
|
launch_time: The time when the instance is launched.
|
|
3383
|
-
last_software_update_time: The time
|
|
3383
|
+
last_software_update_time: The time when SageMaker last updated the software of the instances in the cluster.
|
|
3384
3384
|
instance_status: The status of the instance.
|
|
3385
3385
|
"""
|
|
3386
3386
|
|
|
@@ -4765,6 +4765,31 @@ class DockerSettings(Base):
|
|
|
4765
4765
|
vpc_only_trusted_accounts: Optional[List[str]] = Unassigned()
|
|
4766
4766
|
|
|
4767
4767
|
|
|
4768
|
+
class UnifiedStudioSettings(Base):
|
|
4769
|
+
"""
|
|
4770
|
+
UnifiedStudioSettings
|
|
4771
|
+
The settings that apply to an Amazon SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.
|
|
4772
|
+
|
|
4773
|
+
Attributes
|
|
4774
|
+
----------------------
|
|
4775
|
+
studio_web_portal_access: Sets whether you can access the domain in Amazon SageMaker Studio: ENABLED You can access the domain in Amazon SageMaker Studio. If you migrate the domain to Amazon SageMaker Unified Studio, you can access it in both studio interfaces. DISABLED You can't access the domain in Amazon SageMaker Studio. If you migrate the domain to Amazon SageMaker Unified Studio, you can access it only in that studio interface. To migrate a domain to Amazon SageMaker Unified Studio, you specify the UnifiedStudioSettings data type when you use the UpdateDomain action.
|
|
4776
|
+
domain_account_id: The ID of the Amazon Web Services account that has the Amazon SageMaker Unified Studio domain. The default value, if you don't specify an ID, is the ID of the account that has the Amazon SageMaker AI domain.
|
|
4777
|
+
domain_region: The Amazon Web Services Region where the domain is located in Amazon SageMaker Unified Studio. The default value, if you don't specify a Region, is the Region where the Amazon SageMaker AI domain is located.
|
|
4778
|
+
domain_id: The ID of the Amazon SageMaker Unified Studio domain associated with this domain.
|
|
4779
|
+
project_id: The ID of the Amazon SageMaker Unified Studio project that corresponds to the domain.
|
|
4780
|
+
environment_id: The ID of the environment that Amazon SageMaker Unified Studio associates with the domain.
|
|
4781
|
+
project_s3_path: The location where Amazon S3 stores temporary execution data and other artifacts for the project that corresponds to the domain.
|
|
4782
|
+
"""
|
|
4783
|
+
|
|
4784
|
+
studio_web_portal_access: Optional[str] = Unassigned()
|
|
4785
|
+
domain_account_id: Optional[str] = Unassigned()
|
|
4786
|
+
domain_region: Optional[str] = Unassigned()
|
|
4787
|
+
domain_id: Optional[str] = Unassigned()
|
|
4788
|
+
project_id: Optional[str] = Unassigned()
|
|
4789
|
+
environment_id: Optional[str] = Unassigned()
|
|
4790
|
+
project_s3_path: Optional[str] = Unassigned()
|
|
4791
|
+
|
|
4792
|
+
|
|
4768
4793
|
class DomainSettings(Base):
|
|
4769
4794
|
"""
|
|
4770
4795
|
DomainSettings
|
|
@@ -4777,6 +4802,7 @@ class DomainSettings(Base):
|
|
|
4777
4802
|
execution_role_identity_config: The configuration for attaching a SageMaker AI user profile name to the execution role as a sts:SourceIdentity key.
|
|
4778
4803
|
docker_settings: A collection of settings that configure the domain's Docker interaction.
|
|
4779
4804
|
amazon_q_settings: A collection of settings that configure the Amazon Q experience within the domain. The AuthMode that you use to create the domain must be SSO.
|
|
4805
|
+
unified_studio_settings: The settings that apply to an SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.
|
|
4780
4806
|
"""
|
|
4781
4807
|
|
|
4782
4808
|
security_group_ids: Optional[List[str]] = Unassigned()
|
|
@@ -4784,6 +4810,7 @@ class DomainSettings(Base):
|
|
|
4784
4810
|
execution_role_identity_config: Optional[str] = Unassigned()
|
|
4785
4811
|
docker_settings: Optional[DockerSettings] = Unassigned()
|
|
4786
4812
|
amazon_q_settings: Optional[AmazonQSettings] = Unassigned()
|
|
4813
|
+
unified_studio_settings: Optional[UnifiedStudioSettings] = Unassigned()
|
|
4787
4814
|
|
|
4788
4815
|
|
|
4789
4816
|
class DefaultSpaceSettings(Base):
|
|
@@ -7446,6 +7473,7 @@ class SpaceSettings(Base):
|
|
|
7446
7473
|
jupyter_lab_app_settings: The settings for the JupyterLab application.
|
|
7447
7474
|
app_type: The type of app created within the space. If using the UpdateSpace API, you can't change the app type of your space by specifying a different value for this field.
|
|
7448
7475
|
space_storage_settings: The storage settings for a space.
|
|
7476
|
+
space_managed_resources: If you enable this option, SageMaker AI creates the following resources on your behalf when you create the space: The user profile that possesses the space. The app that the space contains.
|
|
7449
7477
|
custom_file_systems: A file system, created by you, that you assign to a space for an Amazon SageMaker AI Domain. Permitted users can access this file system in Amazon SageMaker AI Studio.
|
|
7450
7478
|
"""
|
|
7451
7479
|
|
|
@@ -7455,6 +7483,7 @@ class SpaceSettings(Base):
|
|
|
7455
7483
|
jupyter_lab_app_settings: Optional[SpaceJupyterLabAppSettings] = Unassigned()
|
|
7456
7484
|
app_type: Optional[str] = Unassigned()
|
|
7457
7485
|
space_storage_settings: Optional[SpaceStorageSettings] = Unassigned()
|
|
7486
|
+
space_managed_resources: Optional[str] = Unassigned()
|
|
7458
7487
|
custom_file_systems: Optional[List[CustomFileSystem]] = Unassigned()
|
|
7459
7488
|
|
|
7460
7489
|
|
|
@@ -9453,6 +9482,7 @@ class DomainSettingsForUpdate(Base):
|
|
|
9453
9482
|
security_group_ids: The security groups for the Amazon Virtual Private Cloud that the Domain uses for communication between Domain-level apps and user apps.
|
|
9454
9483
|
docker_settings: A collection of settings that configure the domain's Docker interaction.
|
|
9455
9484
|
amazon_q_settings: A collection of settings that configure the Amazon Q experience within the domain.
|
|
9485
|
+
unified_studio_settings: The settings that apply to an SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.
|
|
9456
9486
|
"""
|
|
9457
9487
|
|
|
9458
9488
|
r_studio_server_pro_domain_settings_for_update: Optional[
|
|
@@ -9462,6 +9492,7 @@ class DomainSettingsForUpdate(Base):
|
|
|
9462
9492
|
security_group_ids: Optional[List[str]] = Unassigned()
|
|
9463
9493
|
docker_settings: Optional[DockerSettings] = Unassigned()
|
|
9464
9494
|
amazon_q_settings: Optional[AmazonQSettings] = Unassigned()
|
|
9495
|
+
unified_studio_settings: Optional[UnifiedStudioSettings] = Unassigned()
|
|
9465
9496
|
|
|
9466
9497
|
|
|
9467
9498
|
class PredefinedMetricSpecification(Base):
|
|
@@ -3,19 +3,19 @@ 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
|
|
5
5
|
sagemaker_core/main/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
sagemaker_core/main/config_schema.py,sha256=
|
|
6
|
+
sagemaker_core/main/config_schema.py,sha256=Wxe2gJash1rrxBomGhSYmII1LmJ3E70LIuSWklX4_7g,57588
|
|
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
10
|
sagemaker_core/main/resources.py,sha256=jNX5jp5tmwa0t8PYPxWrRRBAGIn0G-iq3C-7TvBxEPw,1420815
|
|
11
|
-
sagemaker_core/main/shapes.py,sha256=
|
|
11
|
+
sagemaker_core/main/shapes.py,sha256=YfcsZIpYetJPZHNo-VfajMCaqT6eGYXI_1EvCLr0dGg,739047
|
|
12
12
|
sagemaker_core/main/user_agent.py,sha256=BPYDAfDd70ObP-VAjl7aDHALHyGknkpRP21ktVr_LDw,2744
|
|
13
13
|
sagemaker_core/main/utils.py,sha256=qTGJDcZwrAQSsdyg8A78x4PKU4Wu1rY6Cn3OIbIspaA,18546
|
|
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=nA51E9iNWHyKou1G23rKSRL4WitdkFRbMuFkyrGHzKU,8428
|
|
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=v4admWbDBIaum364qkuvq76WM8eOC0wOOfH8KpuA3Gc,704183
|
|
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=vIgRWConRGAQ-Mri6LwfkArqWHlL3KXcvbbYa-t_MV4,23414
|
|
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.32.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
32
|
+
sagemaker_core-1.0.32.dist-info/METADATA,sha256=N-vlVke2GuSZYAnC04SYBHYOuDIMaGbWBgBYXcqVNgM,4885
|
|
33
|
+
sagemaker_core-1.0.32.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
|
|
34
|
+
sagemaker_core-1.0.32.dist-info/top_level.txt,sha256=R3GAZZ1zC5JxqdE_0x2Lu_WYi2Xfke7VsiP3L5zngfA,15
|
|
35
|
+
sagemaker_core-1.0.32.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|