sagemaker-core 1.0.23__py3-none-any.whl → 1.0.25__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 +63 -0
- sagemaker_core/main/resources.py +13 -1
- sagemaker_core/main/shapes.py +53 -4
- {sagemaker_core-1.0.23.dist-info → sagemaker_core-1.0.25.dist-info}/METADATA +1 -1
- {sagemaker_core-1.0.23.dist-info → sagemaker_core-1.0.25.dist-info}/RECORD +8 -8
- {sagemaker_core-1.0.23.dist-info → sagemaker_core-1.0.25.dist-info}/WHEEL +1 -1
- {sagemaker_core-1.0.23.dist-info → sagemaker_core-1.0.25.dist-info}/LICENSE +0 -0
- {sagemaker_core-1.0.23.dist-info → sagemaker_core-1.0.25.dist-info}/top_level.txt +0 -0
|
@@ -1304,6 +1304,11 @@ SHAPE_DAG = {
|
|
|
1304
1304
|
"member_type": "structure",
|
|
1305
1305
|
"type": "list",
|
|
1306
1306
|
},
|
|
1307
|
+
"ClusterInstanceGroupsToDelete": {
|
|
1308
|
+
"member_shape": "ClusterInstanceGroupName",
|
|
1309
|
+
"member_type": "string",
|
|
1310
|
+
"type": "list",
|
|
1311
|
+
},
|
|
1307
1312
|
"ClusterInstancePlacement": {
|
|
1308
1313
|
"members": [
|
|
1309
1314
|
{"name": "AvailabilityZone", "shape": "ClusterAvailabilityZone", "type": "string"},
|
|
@@ -4906,6 +4911,11 @@ SHAPE_DAG = {
|
|
|
4906
4911
|
"shape": "InferenceComponentStatus",
|
|
4907
4912
|
"type": "string",
|
|
4908
4913
|
},
|
|
4914
|
+
{
|
|
4915
|
+
"name": "LastDeploymentConfig",
|
|
4916
|
+
"shape": "InferenceComponentDeploymentConfig",
|
|
4917
|
+
"type": "structure",
|
|
4918
|
+
},
|
|
4909
4919
|
],
|
|
4910
4920
|
"type": "structure",
|
|
4911
4921
|
},
|
|
@@ -7665,6 +7675,13 @@ SHAPE_DAG = {
|
|
|
7665
7675
|
],
|
|
7666
7676
|
"type": "structure",
|
|
7667
7677
|
},
|
|
7678
|
+
"InferenceComponentCapacitySize": {
|
|
7679
|
+
"members": [
|
|
7680
|
+
{"name": "Type", "shape": "InferenceComponentCapacitySizeType", "type": "string"},
|
|
7681
|
+
{"name": "Value", "shape": "CapacitySizeValue", "type": "integer"},
|
|
7682
|
+
],
|
|
7683
|
+
"type": "structure",
|
|
7684
|
+
},
|
|
7668
7685
|
"InferenceComponentComputeResourceRequirements": {
|
|
7669
7686
|
"members": [
|
|
7670
7687
|
{"name": "NumberOfCpuCoresRequired", "shape": "NumberOfCpuCores", "type": "float"},
|
|
@@ -7694,6 +7711,42 @@ SHAPE_DAG = {
|
|
|
7694
7711
|
],
|
|
7695
7712
|
"type": "structure",
|
|
7696
7713
|
},
|
|
7714
|
+
"InferenceComponentDeploymentConfig": {
|
|
7715
|
+
"members": [
|
|
7716
|
+
{
|
|
7717
|
+
"name": "RollingUpdatePolicy",
|
|
7718
|
+
"shape": "InferenceComponentRollingUpdatePolicy",
|
|
7719
|
+
"type": "structure",
|
|
7720
|
+
},
|
|
7721
|
+
{
|
|
7722
|
+
"name": "AutoRollbackConfiguration",
|
|
7723
|
+
"shape": "AutoRollbackConfig",
|
|
7724
|
+
"type": "structure",
|
|
7725
|
+
},
|
|
7726
|
+
],
|
|
7727
|
+
"type": "structure",
|
|
7728
|
+
},
|
|
7729
|
+
"InferenceComponentRollingUpdatePolicy": {
|
|
7730
|
+
"members": [
|
|
7731
|
+
{
|
|
7732
|
+
"name": "MaximumBatchSize",
|
|
7733
|
+
"shape": "InferenceComponentCapacitySize",
|
|
7734
|
+
"type": "structure",
|
|
7735
|
+
},
|
|
7736
|
+
{"name": "WaitIntervalInSeconds", "shape": "WaitIntervalInSeconds", "type": "integer"},
|
|
7737
|
+
{
|
|
7738
|
+
"name": "MaximumExecutionTimeoutInSeconds",
|
|
7739
|
+
"shape": "MaximumExecutionTimeoutInSeconds",
|
|
7740
|
+
"type": "integer",
|
|
7741
|
+
},
|
|
7742
|
+
{
|
|
7743
|
+
"name": "RollbackMaximumBatchSize",
|
|
7744
|
+
"shape": "InferenceComponentCapacitySize",
|
|
7745
|
+
"type": "structure",
|
|
7746
|
+
},
|
|
7747
|
+
],
|
|
7748
|
+
"type": "structure",
|
|
7749
|
+
},
|
|
7697
7750
|
"InferenceComponentRuntimeConfig": {
|
|
7698
7751
|
"members": [
|
|
7699
7752
|
{"name": "CopyCount", "shape": "InferenceComponentCopyCount", "type": "integer"}
|
|
@@ -14737,6 +14790,11 @@ SHAPE_DAG = {
|
|
|
14737
14790
|
"type": "list",
|
|
14738
14791
|
},
|
|
14739
14792
|
{"name": "NodeRecovery", "shape": "ClusterNodeRecovery", "type": "string"},
|
|
14793
|
+
{
|
|
14794
|
+
"name": "InstanceGroupsToDelete",
|
|
14795
|
+
"shape": "ClusterInstanceGroupsToDelete",
|
|
14796
|
+
"type": "list",
|
|
14797
|
+
},
|
|
14740
14798
|
],
|
|
14741
14799
|
"type": "structure",
|
|
14742
14800
|
},
|
|
@@ -14994,6 +15052,11 @@ SHAPE_DAG = {
|
|
|
14994
15052
|
"shape": "InferenceComponentRuntimeConfig",
|
|
14995
15053
|
"type": "structure",
|
|
14996
15054
|
},
|
|
15055
|
+
{
|
|
15056
|
+
"name": "DeploymentConfig",
|
|
15057
|
+
"shape": "InferenceComponentDeploymentConfig",
|
|
15058
|
+
"type": "structure",
|
|
15059
|
+
},
|
|
14997
15060
|
],
|
|
14998
15061
|
"type": "structure",
|
|
14999
15062
|
},
|
sagemaker_core/main/resources.py
CHANGED
|
@@ -3430,10 +3430,14 @@ class Cluster(Base):
|
|
|
3430
3430
|
self,
|
|
3431
3431
|
instance_groups: List[ClusterInstanceGroupSpecification],
|
|
3432
3432
|
node_recovery: Optional[str] = Unassigned(),
|
|
3433
|
+
instance_groups_to_delete: Optional[List[str]] = Unassigned(),
|
|
3433
3434
|
) -> Optional["Cluster"]:
|
|
3434
3435
|
"""
|
|
3435
3436
|
Update a Cluster resource
|
|
3436
3437
|
|
|
3438
|
+
Parameters:
|
|
3439
|
+
instance_groups_to_delete: Specify the names of the instance groups to delete. Use a single , as the separator between multiple names.
|
|
3440
|
+
|
|
3437
3441
|
Returns:
|
|
3438
3442
|
The Cluster resource.
|
|
3439
3443
|
|
|
@@ -3459,6 +3463,7 @@ class Cluster(Base):
|
|
|
3459
3463
|
"ClusterName": self.cluster_name,
|
|
3460
3464
|
"InstanceGroups": instance_groups,
|
|
3461
3465
|
"NodeRecovery": node_recovery,
|
|
3466
|
+
"InstanceGroupsToDelete": instance_groups_to_delete,
|
|
3462
3467
|
}
|
|
3463
3468
|
logger.debug(f"Input request: {operation_input_args}")
|
|
3464
3469
|
# serialize the input request
|
|
@@ -3869,7 +3874,7 @@ class Cluster(Base):
|
|
|
3869
3874
|
Deletes specific nodes within a SageMaker HyperPod cluster.
|
|
3870
3875
|
|
|
3871
3876
|
Parameters:
|
|
3872
|
-
node_ids: A list of node IDs to be deleted from the specified cluster.
|
|
3877
|
+
node_ids: A list of node IDs to be deleted from the specified cluster. For SageMaker HyperPod clusters using the Slurm workload manager, you cannot remove instances that are configured as Slurm controller nodes. If you need to delete more than 99 instances, contact Support for assistance.
|
|
3873
3878
|
session: Boto3 session.
|
|
3874
3879
|
region: Region name.
|
|
3875
3880
|
|
|
@@ -14796,6 +14801,7 @@ class InferenceComponent(Base):
|
|
|
14796
14801
|
specification: Details about the resources that are deployed with this inference component.
|
|
14797
14802
|
runtime_config: Details about the runtime settings for the model that is deployed with the inference component.
|
|
14798
14803
|
inference_component_status: The status of the inference component.
|
|
14804
|
+
last_deployment_config: The deployment and rollback settings that you assigned to the inference component.
|
|
14799
14805
|
|
|
14800
14806
|
"""
|
|
14801
14807
|
|
|
@@ -14810,6 +14816,7 @@ class InferenceComponent(Base):
|
|
|
14810
14816
|
creation_time: Optional[datetime.datetime] = Unassigned()
|
|
14811
14817
|
last_modified_time: Optional[datetime.datetime] = Unassigned()
|
|
14812
14818
|
inference_component_status: Optional[str] = Unassigned()
|
|
14819
|
+
last_deployment_config: Optional[InferenceComponentDeploymentConfig] = Unassigned()
|
|
14813
14820
|
|
|
14814
14821
|
def get_name(self) -> str:
|
|
14815
14822
|
attributes = vars(self)
|
|
@@ -14994,10 +15001,14 @@ class InferenceComponent(Base):
|
|
|
14994
15001
|
self,
|
|
14995
15002
|
specification: Optional[InferenceComponentSpecification] = Unassigned(),
|
|
14996
15003
|
runtime_config: Optional[InferenceComponentRuntimeConfig] = Unassigned(),
|
|
15004
|
+
deployment_config: Optional[InferenceComponentDeploymentConfig] = Unassigned(),
|
|
14997
15005
|
) -> Optional["InferenceComponent"]:
|
|
14998
15006
|
"""
|
|
14999
15007
|
Update a InferenceComponent resource
|
|
15000
15008
|
|
|
15009
|
+
Parameters:
|
|
15010
|
+
deployment_config: The deployment configuration for the inference component. The configuration contains the desired deployment strategy and rollback settings.
|
|
15011
|
+
|
|
15001
15012
|
Returns:
|
|
15002
15013
|
The InferenceComponent resource.
|
|
15003
15014
|
|
|
@@ -15021,6 +15032,7 @@ class InferenceComponent(Base):
|
|
|
15021
15032
|
"InferenceComponentName": self.inference_component_name,
|
|
15022
15033
|
"Specification": specification,
|
|
15023
15034
|
"RuntimeConfig": runtime_config,
|
|
15035
|
+
"DeploymentConfig": deployment_config,
|
|
15024
15036
|
}
|
|
15025
15037
|
logger.debug(f"Input request: {operation_input_args}")
|
|
15026
15038
|
# serialize the input request
|
sagemaker_core/main/shapes.py
CHANGED
|
@@ -8404,6 +8404,55 @@ class InferenceComponentRuntimeConfigSummary(Base):
|
|
|
8404
8404
|
current_copy_count: Optional[int] = Unassigned()
|
|
8405
8405
|
|
|
8406
8406
|
|
|
8407
|
+
class InferenceComponentCapacitySize(Base):
|
|
8408
|
+
"""
|
|
8409
|
+
InferenceComponentCapacitySize
|
|
8410
|
+
Specifies the type and size of the endpoint capacity to activate for a rolling deployment or a rollback strategy. You can specify your batches as either of the following: A count of inference component copies The overall percentage or your fleet For a rollback strategy, if you don't specify the fields in this object, or if you set the Value parameter to 100%, then SageMaker AI uses a blue/green rollback strategy and rolls all traffic back to the blue fleet.
|
|
8411
|
+
|
|
8412
|
+
Attributes
|
|
8413
|
+
----------------------
|
|
8414
|
+
type: Specifies the endpoint capacity type. COPY_COUNT The endpoint activates based on the number of inference component copies. CAPACITY_PERCENT The endpoint activates based on the specified percentage of capacity.
|
|
8415
|
+
value: Defines the capacity size, either as a number of inference component copies or a capacity percentage.
|
|
8416
|
+
"""
|
|
8417
|
+
|
|
8418
|
+
type: str
|
|
8419
|
+
value: int
|
|
8420
|
+
|
|
8421
|
+
|
|
8422
|
+
class InferenceComponentRollingUpdatePolicy(Base):
|
|
8423
|
+
"""
|
|
8424
|
+
InferenceComponentRollingUpdatePolicy
|
|
8425
|
+
Specifies a rolling deployment strategy for updating a SageMaker AI inference component.
|
|
8426
|
+
|
|
8427
|
+
Attributes
|
|
8428
|
+
----------------------
|
|
8429
|
+
maximum_batch_size: The batch size for each rolling step in the deployment process. For each step, SageMaker AI provisions capacity on the new endpoint fleet, routes traffic to that fleet, and terminates capacity on the old endpoint fleet. The value must be between 5% to 50% of the copy count of the inference component.
|
|
8430
|
+
wait_interval_in_seconds: The length of the baking period, during which SageMaker AI monitors alarms for each batch on the new fleet.
|
|
8431
|
+
maximum_execution_timeout_in_seconds: The time limit for the total deployment. Exceeding this limit causes a timeout.
|
|
8432
|
+
rollback_maximum_batch_size: The batch size for a rollback to the old endpoint fleet. If this field is absent, the value is set to the default, which is 100% of the total capacity. When the default is used, SageMaker AI provisions the entire capacity of the old fleet at once during rollback.
|
|
8433
|
+
"""
|
|
8434
|
+
|
|
8435
|
+
maximum_batch_size: InferenceComponentCapacitySize
|
|
8436
|
+
wait_interval_in_seconds: int
|
|
8437
|
+
maximum_execution_timeout_in_seconds: Optional[int] = Unassigned()
|
|
8438
|
+
rollback_maximum_batch_size: Optional[InferenceComponentCapacitySize] = Unassigned()
|
|
8439
|
+
|
|
8440
|
+
|
|
8441
|
+
class InferenceComponentDeploymentConfig(Base):
|
|
8442
|
+
"""
|
|
8443
|
+
InferenceComponentDeploymentConfig
|
|
8444
|
+
The deployment configuration for an endpoint that hosts inference components. The configuration includes the desired deployment strategy and rollback settings.
|
|
8445
|
+
|
|
8446
|
+
Attributes
|
|
8447
|
+
----------------------
|
|
8448
|
+
rolling_update_policy: Specifies a rolling deployment strategy for updating a SageMaker AI endpoint.
|
|
8449
|
+
auto_rollback_configuration
|
|
8450
|
+
"""
|
|
8451
|
+
|
|
8452
|
+
rolling_update_policy: InferenceComponentRollingUpdatePolicy
|
|
8453
|
+
auto_rollback_configuration: Optional[AutoRollbackConfig] = Unassigned()
|
|
8454
|
+
|
|
8455
|
+
|
|
8407
8456
|
class EndpointMetadata(Base):
|
|
8408
8457
|
"""
|
|
8409
8458
|
EndpointMetadata
|
|
@@ -9638,7 +9687,7 @@ class EndpointSummary(Base):
|
|
|
9638
9687
|
class Experiment(Base):
|
|
9639
9688
|
"""
|
|
9640
9689
|
Experiment
|
|
9641
|
-
The properties of an experiment as returned by the Search API.
|
|
9690
|
+
The properties of an experiment as returned by the Search API. For information about experiments, see the CreateExperiment API.
|
|
9642
9691
|
|
|
9643
9692
|
Attributes
|
|
9644
9693
|
----------------------
|
|
@@ -11690,11 +11739,11 @@ class ModelDashboardModel(Base):
|
|
|
11690
11739
|
class ModelPackage(Base):
|
|
11691
11740
|
"""
|
|
11692
11741
|
ModelPackage
|
|
11693
|
-
A
|
|
11742
|
+
A container for your trained model that can be deployed for SageMaker inference. This can include inference code, artifacts, and metadata. The model package type can be one of the following. Versioned model: A part of a model package group in Model Registry. Unversioned model: Not part of a model package group and used in Amazon Web Services Marketplace. For more information, see CreateModelPackage .
|
|
11694
11743
|
|
|
11695
11744
|
Attributes
|
|
11696
11745
|
----------------------
|
|
11697
|
-
model_package_name: The name of the model.
|
|
11746
|
+
model_package_name: The name of the model package. The name can be as follows: For a versioned model, the name is automatically generated by SageMaker Model Registry and follows the format 'ModelPackageGroupName/ModelPackageVersion'. For an unversioned model, you must provide the name.
|
|
11698
11747
|
model_package_group_name: The model group to which the model belongs.
|
|
11699
11748
|
model_package_version: The version number of a versioned model.
|
|
11700
11749
|
model_package_arn: The Amazon Resource Name (ARN) of the model package.
|
|
@@ -11765,7 +11814,7 @@ class ModelPackage(Base):
|
|
|
11765
11814
|
class ModelPackageGroup(Base):
|
|
11766
11815
|
"""
|
|
11767
11816
|
ModelPackageGroup
|
|
11768
|
-
A group of versioned models in the
|
|
11817
|
+
A group of versioned models in the Model Registry.
|
|
11769
11818
|
|
|
11770
11819
|
Attributes
|
|
11771
11820
|
----------------------
|
|
@@ -7,15 +7,15 @@ sagemaker_core/main/config_schema.py,sha256=kfQvf_japrsitTwXTdUaYhOPqKTBBwIE_-eb
|
|
|
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=
|
|
11
|
-
sagemaker_core/main/shapes.py,sha256=
|
|
10
|
+
sagemaker_core/main/resources.py,sha256=OghOzk2SvarjLdkQPPPqTwg24Sw3DWG1iv7kVtKh-u4,1407546
|
|
11
|
+
sagemaker_core/main/shapes.py,sha256=CbE-bxdd1EjBH5GL_ZwXra08iLpld6NGkrEjxet0kNs,729474
|
|
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
|
|
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=oYHXS5WWNPx2bDlCnjlE14ypSE6TpF4i46v1pOEW3Iw,696555
|
|
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.25.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
32
|
+
sagemaker_core-1.0.25.dist-info/METADATA,sha256=JG-9_fFcw1Co0K3jDicpjFDklLDf6RsvuTkCdOja6ms,4863
|
|
33
|
+
sagemaker_core-1.0.25.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
34
|
+
sagemaker_core-1.0.25.dist-info/top_level.txt,sha256=R3GAZZ1zC5JxqdE_0x2Lu_WYi2Xfke7VsiP3L5zngfA,15
|
|
35
|
+
sagemaker_core-1.0.25.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|