sagemaker-core 1.0.8__py3-none-any.whl → 1.0.9__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 +3 -0
- sagemaker_core/main/resources.py +7 -0
- {sagemaker_core-1.0.8.dist-info → sagemaker_core-1.0.9.dist-info}/METADATA +1 -1
- {sagemaker_core-1.0.8.dist-info → sagemaker_core-1.0.9.dist-info}/RECORD +7 -7
- {sagemaker_core-1.0.8.dist-info → sagemaker_core-1.0.9.dist-info}/LICENSE +0 -0
- {sagemaker_core-1.0.8.dist-info → sagemaker_core-1.0.9.dist-info}/WHEEL +0 -0
- {sagemaker_core-1.0.8.dist-info → sagemaker_core-1.0.9.dist-info}/top_level.txt +0 -0
|
@@ -1884,6 +1884,7 @@ SHAPE_DAG = {
|
|
|
1884
1884
|
"shape": "AppSecurityGroupManagement",
|
|
1885
1885
|
"type": "string",
|
|
1886
1886
|
},
|
|
1887
|
+
{"name": "TagPropagation", "shape": "TagPropagation", "type": "string"},
|
|
1887
1888
|
{"name": "DefaultSpaceSettings", "shape": "DefaultSpaceSettings", "type": "structure"},
|
|
1888
1889
|
],
|
|
1889
1890
|
"type": "structure",
|
|
@@ -4125,6 +4126,7 @@ SHAPE_DAG = {
|
|
|
4125
4126
|
"shape": "AppSecurityGroupManagement",
|
|
4126
4127
|
"type": "string",
|
|
4127
4128
|
},
|
|
4129
|
+
{"name": "TagPropagation", "shape": "TagPropagation", "type": "string"},
|
|
4128
4130
|
{"name": "DefaultSpaceSettings", "shape": "DefaultSpaceSettings", "type": "structure"},
|
|
4129
4131
|
],
|
|
4130
4132
|
"type": "structure",
|
|
@@ -14082,6 +14084,7 @@ SHAPE_DAG = {
|
|
|
14082
14084
|
{"name": "DefaultSpaceSettings", "shape": "DefaultSpaceSettings", "type": "structure"},
|
|
14083
14085
|
{"name": "SubnetIds", "shape": "Subnets", "type": "list"},
|
|
14084
14086
|
{"name": "AppNetworkAccessType", "shape": "AppNetworkAccessType", "type": "string"},
|
|
14087
|
+
{"name": "TagPropagation", "shape": "TagPropagation", "type": "string"},
|
|
14085
14088
|
],
|
|
14086
14089
|
"type": "structure",
|
|
14087
14090
|
},
|
sagemaker_core/main/resources.py
CHANGED
|
@@ -6147,6 +6147,7 @@ class Domain(Base):
|
|
|
6147
6147
|
vpc_id: The ID of the Amazon Virtual Private Cloud (VPC) that the domain uses for communication.
|
|
6148
6148
|
kms_key_id: The Amazon Web Services KMS customer managed key used to encrypt the EFS volume attached to the domain.
|
|
6149
6149
|
app_security_group_management: The entity that creates and manages the required security groups for inter-app communication in VPCOnly mode. Required when CreateDomain.AppNetworkAccessType is VPCOnly and DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn is provided.
|
|
6150
|
+
tag_propagation: Indicates whether custom tag propagation is supported for the domain.
|
|
6150
6151
|
default_space_settings: The default settings used to create a space.
|
|
6151
6152
|
|
|
6152
6153
|
"""
|
|
@@ -6172,6 +6173,7 @@ class Domain(Base):
|
|
|
6172
6173
|
vpc_id: Optional[str] = Unassigned()
|
|
6173
6174
|
kms_key_id: Optional[str] = Unassigned()
|
|
6174
6175
|
app_security_group_management: Optional[str] = Unassigned()
|
|
6176
|
+
tag_propagation: Optional[str] = Unassigned()
|
|
6175
6177
|
default_space_settings: Optional[DefaultSpaceSettings] = Unassigned()
|
|
6176
6178
|
|
|
6177
6179
|
def get_name(self) -> str:
|
|
@@ -6270,6 +6272,7 @@ class Domain(Base):
|
|
|
6270
6272
|
home_efs_file_system_kms_key_id: Optional[str] = Unassigned(),
|
|
6271
6273
|
kms_key_id: Optional[str] = Unassigned(),
|
|
6272
6274
|
app_security_group_management: Optional[str] = Unassigned(),
|
|
6275
|
+
tag_propagation: Optional[str] = Unassigned(),
|
|
6273
6276
|
default_space_settings: Optional[DefaultSpaceSettings] = Unassigned(),
|
|
6274
6277
|
session: Optional[Session] = None,
|
|
6275
6278
|
region: Optional[str] = None,
|
|
@@ -6289,6 +6292,7 @@ class Domain(Base):
|
|
|
6289
6292
|
home_efs_file_system_kms_key_id: Use KmsKeyId.
|
|
6290
6293
|
kms_key_id: SageMaker uses Amazon Web Services KMS to encrypt EFS and EBS volumes attached to the domain with an Amazon Web Services managed key by default. For more control, specify a customer managed key.
|
|
6291
6294
|
app_security_group_management: The entity that creates and manages the required security groups for inter-app communication in VPCOnly mode. Required when CreateDomain.AppNetworkAccessType is VPCOnly and DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn is provided. If setting up the domain for use with RStudio, this value must be set to Service.
|
|
6295
|
+
tag_propagation: Indicates whether custom tag propagation is supported for the domain. Defaults to DISABLED.
|
|
6292
6296
|
default_space_settings: The default settings used to create a space.
|
|
6293
6297
|
session: Boto3 session.
|
|
6294
6298
|
region: Region name.
|
|
@@ -6330,6 +6334,7 @@ class Domain(Base):
|
|
|
6330
6334
|
"HomeEfsFileSystemKmsKeyId": home_efs_file_system_kms_key_id,
|
|
6331
6335
|
"KmsKeyId": kms_key_id,
|
|
6332
6336
|
"AppSecurityGroupManagement": app_security_group_management,
|
|
6337
|
+
"TagPropagation": tag_propagation,
|
|
6333
6338
|
"DefaultSpaceSettings": default_space_settings,
|
|
6334
6339
|
}
|
|
6335
6340
|
|
|
@@ -6446,6 +6451,7 @@ class Domain(Base):
|
|
|
6446
6451
|
default_space_settings: Optional[DefaultSpaceSettings] = Unassigned(),
|
|
6447
6452
|
subnet_ids: Optional[List[str]] = Unassigned(),
|
|
6448
6453
|
app_network_access_type: Optional[str] = Unassigned(),
|
|
6454
|
+
tag_propagation: Optional[str] = Unassigned(),
|
|
6449
6455
|
) -> Optional["Domain"]:
|
|
6450
6456
|
"""
|
|
6451
6457
|
Update a Domain resource
|
|
@@ -6482,6 +6488,7 @@ class Domain(Base):
|
|
|
6482
6488
|
"DefaultSpaceSettings": default_space_settings,
|
|
6483
6489
|
"SubnetIds": subnet_ids,
|
|
6484
6490
|
"AppNetworkAccessType": app_network_access_type,
|
|
6491
|
+
"TagPropagation": tag_propagation,
|
|
6485
6492
|
}
|
|
6486
6493
|
logger.debug(f"Input request: {operation_input_args}")
|
|
6487
6494
|
# serialize the input request
|
|
@@ -6,7 +6,7 @@ sagemaker_core/main/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
6
6
|
sagemaker_core/main/config_schema.py,sha256=TeGoTobT4yotEVyfguLF0IdKYlOymsDZ45ySxXiCDuw,56998
|
|
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
|
-
sagemaker_core/main/resources.py,sha256=
|
|
9
|
+
sagemaker_core/main/resources.py,sha256=seW0HAoyQlKGwXaRN9YrvK2SGJhAsZGh7-b5IpAJ2q4,1317128
|
|
10
10
|
sagemaker_core/main/shapes.py,sha256=Groaj8psouJwQpRljmZIDeRM6fyU6p2J3wgjzcvQ_5k,696205
|
|
11
11
|
sagemaker_core/main/user_agent.py,sha256=4sZybDXkzRoZnOnVDQ8p8zFTfiRJdsH7amDWInVQ4xU,2708
|
|
12
12
|
sagemaker_core/main/utils.py,sha256=lXkJyiCow5uf32l0EmkimB0RKVk2BS7OM2fYoLsOfD4,18346
|
|
@@ -14,7 +14,7 @@ sagemaker_core/main/code_injection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
14
14
|
sagemaker_core/main/code_injection/base.py,sha256=11_Jif0nOzfbLGlXaacKf-wcizzfS64U0OSZGoVffFU,1733
|
|
15
15
|
sagemaker_core/main/code_injection/codec.py,sha256=2DjmeD2uND307UqDefvVEpE0rZ8yfFU3Bi3TvQCQveI,7658
|
|
16
16
|
sagemaker_core/main/code_injection/constants.py,sha256=2ICExGge8vAWx7lSTW0JGh-bH1korkvpOpDu5M63eI4,980
|
|
17
|
-
sagemaker_core/main/code_injection/shape_dag.py,sha256=
|
|
17
|
+
sagemaker_core/main/code_injection/shape_dag.py,sha256=YHFV0V37x_DN4oSMsFiEebMBkoixFUREmD2Bp2t4uDU,658150
|
|
18
18
|
sagemaker_core/resources/__init__.py,sha256=EAYTFMN-nPjnPjjBbhIUeaL67FLKNPd7qbcbl9VIrws,31
|
|
19
19
|
sagemaker_core/shapes/__init__.py,sha256=RnbIu9eTxKt-DNsOFJabrWIgrrtS9_SdAozP9JBl_ic,28
|
|
20
20
|
sagemaker_core/tools/__init__.py,sha256=xX79JImxCVzrWMnjgntLCve2G5I-R4pRar5s20kT9Rs,56
|
|
@@ -27,8 +27,8 @@ sagemaker_core/tools/resources_extractor.py,sha256=hN61ehZbPnhFW-2FIVDi7NsEz4rLv
|
|
|
27
27
|
sagemaker_core/tools/shapes_codegen.py,sha256=_ve959bwH8usZ6dPlpXxi2on9t0hLpcmhRWnaWHCWMQ,11745
|
|
28
28
|
sagemaker_core/tools/shapes_extractor.py,sha256=4KjgDmhlPM4G1f1NeYbORKlXs1s7Q_sm_NK31S_ROQ0,11950
|
|
29
29
|
sagemaker_core/tools/templates.py,sha256=nze_A01EpegYUwoR_gRv2qBNKNFruBY8L3RiIX5lz3M,22458
|
|
30
|
-
sagemaker_core-1.0.
|
|
31
|
-
sagemaker_core-1.0.
|
|
32
|
-
sagemaker_core-1.0.
|
|
33
|
-
sagemaker_core-1.0.
|
|
34
|
-
sagemaker_core-1.0.
|
|
30
|
+
sagemaker_core-1.0.9.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
31
|
+
sagemaker_core-1.0.9.dist-info/METADATA,sha256=uLiMbw5h-h1HaXDvoQ_VR0h6AOyxddhLyNZKar6FlLY,4877
|
|
32
|
+
sagemaker_core-1.0.9.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
33
|
+
sagemaker_core-1.0.9.dist-info/top_level.txt,sha256=R3GAZZ1zC5JxqdE_0x2Lu_WYi2Xfke7VsiP3L5zngfA,15
|
|
34
|
+
sagemaker_core-1.0.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|