sagemaker-core 1.0.26__py3-none-any.whl → 1.0.27__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/config_schema.py +4 -1
- sagemaker_core/main/resources.py +7 -0
- {sagemaker_core-1.0.26.dist-info → sagemaker_core-1.0.27.dist-info}/METADATA +1 -1
- {sagemaker_core-1.0.26.dist-info → sagemaker_core-1.0.27.dist-info}/RECORD +8 -8
- {sagemaker_core-1.0.26.dist-info → sagemaker_core-1.0.27.dist-info}/WHEEL +1 -1
- {sagemaker_core-1.0.26.dist-info → sagemaker_core-1.0.27.dist-info}/licenses/LICENSE +0 -0
- {sagemaker_core-1.0.26.dist-info → sagemaker_core-1.0.27.dist-info}/top_level.txt +0 -0
|
@@ -2812,6 +2812,7 @@ SHAPE_DAG = {
|
|
|
2812
2812
|
{"name": "Name", "shape": "PartnerAppName", "type": "string"},
|
|
2813
2813
|
{"name": "Type", "shape": "PartnerAppType", "type": "string"},
|
|
2814
2814
|
{"name": "ExecutionRoleArn", "shape": "RoleArn", "type": "string"},
|
|
2815
|
+
{"name": "KmsKeyId", "shape": "KmsKeyId", "type": "string"},
|
|
2815
2816
|
{
|
|
2816
2817
|
"name": "MaintenanceConfig",
|
|
2817
2818
|
"shape": "PartnerAppMaintenanceConfig",
|
|
@@ -5496,7 +5497,9 @@ SHAPE_DAG = {
|
|
|
5496
5497
|
{"name": "Type", "shape": "PartnerAppType", "type": "string"},
|
|
5497
5498
|
{"name": "Status", "shape": "PartnerAppStatus", "type": "string"},
|
|
5498
5499
|
{"name": "CreationTime", "shape": "Timestamp", "type": "timestamp"},
|
|
5500
|
+
{"name": "LastModifiedTime", "shape": "Timestamp", "type": "timestamp"},
|
|
5499
5501
|
{"name": "ExecutionRoleArn", "shape": "RoleArn", "type": "string"},
|
|
5502
|
+
{"name": "KmsKeyId", "shape": "KmsKeyId", "type": "string"},
|
|
5500
5503
|
{"name": "BaseUrl", "shape": "String2048", "type": "string"},
|
|
5501
5504
|
{
|
|
5502
5505
|
"name": "MaintenanceConfig",
|
|
@@ -756,7 +756,10 @@ SAGEMAKER_PYTHON_SDK_CONFIG_SCHEMA = {
|
|
|
756
756
|
},
|
|
757
757
|
"PartnerApp": {
|
|
758
758
|
"type": "object",
|
|
759
|
-
"properties": {
|
|
759
|
+
"properties": {
|
|
760
|
+
"execution_role_arn": {"type": "string"},
|
|
761
|
+
"kms_key_id": {"type": "string"},
|
|
762
|
+
},
|
|
760
763
|
},
|
|
761
764
|
"Pipeline": {
|
|
762
765
|
"type": "object",
|
sagemaker_core/main/resources.py
CHANGED
|
@@ -23640,7 +23640,9 @@ class PartnerApp(Base):
|
|
|
23640
23640
|
type: The type of SageMaker Partner AI App. Must be one of the following: lakera-guard, comet, deepchecks-llm-evaluation, or fiddler.
|
|
23641
23641
|
status: The status of the SageMaker Partner AI App.
|
|
23642
23642
|
creation_time: The time that the SageMaker Partner AI App was created.
|
|
23643
|
+
last_modified_time: The time that the SageMaker Partner AI App was last modified.
|
|
23643
23644
|
execution_role_arn: The ARN of the IAM role associated with the SageMaker Partner AI App.
|
|
23645
|
+
kms_key_id: The Amazon Web Services KMS customer managed key used to encrypt the data at rest associated with SageMaker Partner AI Apps.
|
|
23644
23646
|
base_url: The URL of the SageMaker Partner AI App that the Application SDK uses to support in-app calls for the user.
|
|
23645
23647
|
maintenance_config: Maintenance configuration settings for the SageMaker Partner AI App.
|
|
23646
23648
|
tier: The instance type and size of the cluster attached to the SageMaker Partner AI App.
|
|
@@ -23657,7 +23659,9 @@ class PartnerApp(Base):
|
|
|
23657
23659
|
type: Optional[str] = Unassigned()
|
|
23658
23660
|
status: Optional[str] = Unassigned()
|
|
23659
23661
|
creation_time: Optional[datetime.datetime] = Unassigned()
|
|
23662
|
+
last_modified_time: Optional[datetime.datetime] = Unassigned()
|
|
23660
23663
|
execution_role_arn: Optional[str] = Unassigned()
|
|
23664
|
+
kms_key_id: Optional[str] = Unassigned()
|
|
23661
23665
|
base_url: Optional[str] = Unassigned()
|
|
23662
23666
|
maintenance_config: Optional[PartnerAppMaintenanceConfig] = Unassigned()
|
|
23663
23667
|
tier: Optional[str] = Unassigned()
|
|
@@ -23706,6 +23710,7 @@ class PartnerApp(Base):
|
|
|
23706
23710
|
execution_role_arn: str,
|
|
23707
23711
|
tier: str,
|
|
23708
23712
|
auth_type: str,
|
|
23713
|
+
kms_key_id: Optional[str] = Unassigned(),
|
|
23709
23714
|
maintenance_config: Optional[PartnerAppMaintenanceConfig] = Unassigned(),
|
|
23710
23715
|
application_config: Optional[PartnerAppConfig] = Unassigned(),
|
|
23711
23716
|
enable_iam_session_based_identity: Optional[bool] = Unassigned(),
|
|
@@ -23723,6 +23728,7 @@ class PartnerApp(Base):
|
|
|
23723
23728
|
execution_role_arn: The ARN of the IAM role that the partner application uses.
|
|
23724
23729
|
tier: Indicates the instance type and size of the cluster attached to the SageMaker Partner AI App.
|
|
23725
23730
|
auth_type: The authorization type that users use to access the SageMaker Partner AI App.
|
|
23731
|
+
kms_key_id: SageMaker Partner AI Apps uses Amazon Web Services KMS to encrypt data at rest using an Amazon Web Services managed key by default. For more control, specify a customer managed key.
|
|
23726
23732
|
maintenance_config: Maintenance configuration settings for the SageMaker Partner AI App.
|
|
23727
23733
|
application_config: Configuration settings for the SageMaker Partner AI App.
|
|
23728
23734
|
enable_iam_session_based_identity: When set to TRUE, the SageMaker Partner AI App sets the Amazon Web Services IAM session name or the authenticated IAM user as the identity of the SageMaker Partner AI App user.
|
|
@@ -23760,6 +23766,7 @@ class PartnerApp(Base):
|
|
|
23760
23766
|
"Name": name,
|
|
23761
23767
|
"Type": type,
|
|
23762
23768
|
"ExecutionRoleArn": execution_role_arn,
|
|
23769
|
+
"KmsKeyId": kms_key_id,
|
|
23763
23770
|
"MaintenanceConfig": maintenance_config,
|
|
23764
23771
|
"Tier": tier,
|
|
23765
23772
|
"ApplicationConfig": application_config,
|
|
@@ -3,11 +3,11 @@ sagemaker_core/_version.py,sha256=t-XEKT8_pvKkl5z_UrfcIU256c_NxaI16qGWMuNVpbM,32
|
|
|
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=lBwIm5CT_dSXeW5i6cgRzbiLDjs0qtH1FrM78F-ma2U,57382
|
|
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=d4qp0rAAizilLDstD3DV3RW2kEznH1BdrXldSM3F8I8,1412748
|
|
11
11
|
sagemaker_core/main/shapes.py,sha256=I-bWsTA52wKhoA3faX2DiKYgX87YC3ITFvi53raAtTc,730394
|
|
12
12
|
sagemaker_core/main/user_agent.py,sha256=BPYDAfDd70ObP-VAjl7aDHALHyGknkpRP21ktVr_LDw,2744
|
|
13
13
|
sagemaker_core/main/utils.py,sha256=LCFDM6oxf6_e1i-_Dgtkm3ehl7YfoEpJ2kTTFTL6iOU,18471
|
|
@@ -15,7 +15,7 @@ sagemaker_core/main/code_injection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
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=Y4CynI9QubehCAUgSBp79AqOfM9uVzJqDup612dKNZ0,699322
|
|
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=_ve959bwH8usZ6dPlpXxi2on9t0hLpcmhRWnaWHCWMQ,11745
|
|
29
29
|
sagemaker_core/tools/shapes_extractor.py,sha256=GFy55JHGW0V8cwN5SL5gGLUxihLGswueyh5iNCn1sYk,12310
|
|
30
30
|
sagemaker_core/tools/templates.py,sha256=yX2RQKeClgYwKS5Qu_mDpnWJIBCuj0yELrdm95aiTpk,23262
|
|
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.27.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
32
|
+
sagemaker_core-1.0.27.dist-info/METADATA,sha256=0YLoSTUdHPdhCj5E3kA29ySbk1JqrYezBr5X1MZHUzQ,4885
|
|
33
|
+
sagemaker_core-1.0.27.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
34
|
+
sagemaker_core-1.0.27.dist-info/top_level.txt,sha256=R3GAZZ1zC5JxqdE_0x2Lu_WYi2Xfke7VsiP3L5zngfA,15
|
|
35
|
+
sagemaker_core-1.0.27.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|