@aws-sdk/client-sagemaker 3.741.0 → 3.742.0
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.
|
@@ -7213,8 +7213,8 @@ export interface BatchDeleteClusterNodesRequest {
|
|
|
7213
7213
|
/**
|
|
7214
7214
|
* <p>A list of node IDs to be deleted from the specified cluster.</p>
|
|
7215
7215
|
* <note>
|
|
7216
|
-
* <p>For SageMaker HyperPod clusters using the Slurm workload manager,
|
|
7217
|
-
*
|
|
7216
|
+
* <p>For SageMaker HyperPod clusters using the Slurm workload manager, you cannot remove instances
|
|
7217
|
+
* that are configured as Slurm controller nodes.</p>
|
|
7218
7218
|
* </note>
|
|
7219
7219
|
* @public
|
|
7220
7220
|
*/
|
|
@@ -8930,10 +8930,8 @@ export interface ClusterInstanceGroupDetails {
|
|
|
8930
8930
|
*/
|
|
8931
8931
|
TrainingPlanStatus?: string | undefined;
|
|
8932
8932
|
/**
|
|
8933
|
-
* <p>
|
|
8934
|
-
*
|
|
8935
|
-
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
8936
|
-
* Resources in your Amazon VPC</a>. </p>
|
|
8933
|
+
* <p>The customized VPC configuration at the instance group level that overrides the default
|
|
8934
|
+
* VPC configuration of the SageMaker HyperPod cluster.</p>
|
|
8937
8935
|
* @public
|
|
8938
8936
|
*/
|
|
8939
8937
|
OverrideVpcConfig?: VpcConfig | undefined;
|
|
@@ -9002,10 +9000,19 @@ export interface ClusterInstanceGroupSpecification {
|
|
|
9002
9000
|
*/
|
|
9003
9001
|
TrainingPlanArn?: string | undefined;
|
|
9004
9002
|
/**
|
|
9005
|
-
* <p>
|
|
9006
|
-
*
|
|
9007
|
-
*
|
|
9008
|
-
*
|
|
9003
|
+
* <p>To configure multi-AZ deployments, customize the VPC configuration at the instance group
|
|
9004
|
+
* level. You can specify different subnets and security groups across different AZs in the
|
|
9005
|
+
* instance group specification to override a SageMaker HyperPod cluster's default VPC configuration. For
|
|
9006
|
+
* more information about deploying a cluster in multiple AZs, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-hyperpod-prerequisites.html#sagemaker-hyperpod-prerequisites-multiple-availability-zones">Setting up SageMaker HyperPod clusters across multiple AZs</a>.</p>
|
|
9007
|
+
* <note>
|
|
9008
|
+
* <p> If you configure your VPC with IPv6 support and specify subnets with IPv6 addressing
|
|
9009
|
+
* enabled in your instance group VPC configuration, the nodes automatically use IPv6
|
|
9010
|
+
* addressing for network communication.</p>
|
|
9011
|
+
* <p> For information about adding IPv6 support for your VPC, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/vpc-migrate-ipv6.html">IPv6 support
|
|
9012
|
+
* for your VPC</a>.</p>
|
|
9013
|
+
* <p> For information about creating a new VPC for use with IPv6, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/create-vpc.html">Create a
|
|
9014
|
+
* VPC</a>.</p>
|
|
9015
|
+
* </note>
|
|
9009
9016
|
* @public
|
|
9010
9017
|
*/
|
|
9011
9018
|
OverrideVpcConfig?: VpcConfig | undefined;
|
|
@@ -9097,10 +9104,8 @@ export interface ClusterNodeDetails {
|
|
|
9097
9104
|
*/
|
|
9098
9105
|
LifeCycleConfig?: ClusterLifeCycleConfig | undefined;
|
|
9099
9106
|
/**
|
|
9100
|
-
* <p>
|
|
9101
|
-
*
|
|
9102
|
-
* For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker Access to
|
|
9103
|
-
* Resources in your Amazon VPC</a>. </p>
|
|
9107
|
+
* <p>The customized VPC configuration at the instance group level that overrides the default
|
|
9108
|
+
* VPC configuration of the SageMaker HyperPod cluster.</p>
|
|
9104
9109
|
* @public
|
|
9105
9110
|
*/
|
|
9106
9111
|
OverrideVpcConfig?: VpcConfig | undefined;
|
|
@@ -9122,7 +9127,9 @@ export interface ClusterNodeDetails {
|
|
|
9122
9127
|
*/
|
|
9123
9128
|
PrivatePrimaryIp?: string | undefined;
|
|
9124
9129
|
/**
|
|
9125
|
-
* <p>The private primary IPv6 address of the SageMaker HyperPod cluster node
|
|
9130
|
+
* <p>The private primary IPv6 address of the SageMaker HyperPod cluster node when configured with an
|
|
9131
|
+
* Amazon VPC that supports IPv6 and includes subnets with IPv6 addressing enabled
|
|
9132
|
+
* in either the cluster VPC configuration or the instance group VPC configuration.</p>
|
|
9126
9133
|
* @public
|
|
9127
9134
|
*/
|
|
9128
9135
|
PrivatePrimaryIpv6?: string | undefined;
|
|
@@ -798,10 +798,19 @@ export interface CreateClusterRequest {
|
|
|
798
798
|
*/
|
|
799
799
|
InstanceGroups: ClusterInstanceGroupSpecification[] | undefined;
|
|
800
800
|
/**
|
|
801
|
-
* <p>Specifies
|
|
802
|
-
*
|
|
803
|
-
*
|
|
804
|
-
*
|
|
801
|
+
* <p>Specifies the Amazon Virtual Private Cloud (VPC) that is associated with the Amazon SageMaker HyperPod cluster. You
|
|
802
|
+
* can control access to and from your resources by configuring your VPC. For more
|
|
803
|
+
* information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html">Give SageMaker access to resources
|
|
804
|
+
* in your Amazon VPC</a>.</p>
|
|
805
|
+
* <note>
|
|
806
|
+
* <p> If you configure your VPC with IPv6 support and specify subnets with IPv6 addressing
|
|
807
|
+
* enabled in your VPC configuration, the cluster automatically uses IPv6 addressing for
|
|
808
|
+
* network communication.</p>
|
|
809
|
+
* <p> For information about adding IPv6 support for your VPC, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/vpc-migrate-ipv6.html">IPv6 support
|
|
810
|
+
* for your VPC</a>.</p>
|
|
811
|
+
* <p> For information about creating a new VPC for use with IPv6, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/create-vpc.html">Create a
|
|
812
|
+
* VPC</a>.</p>
|
|
813
|
+
* </note>
|
|
805
814
|
* @public
|
|
806
815
|
*/
|
|
807
816
|
VpcConfig?: VpcConfig | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.742.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sagemaker",
|