aws-sdk 2.1632.0 → 2.1634.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.
package/clients/pipes.js CHANGED
@@ -9,6 +9,7 @@ Object.defineProperty(apiLoader.services['pipes'], '2015-10-07', {
9
9
  get: function get() {
10
10
  var model = require('../apis/pipes-2015-10-07.min.json');
11
11
  model.paginators = require('../apis/pipes-2015-10-07.paginators.json').pagination;
12
+ model.waiters = require('../apis/pipes-2015-10-07.waiters2.json').waiters;
12
13
  return model;
13
14
  },
14
15
  enumerable: true,
@@ -957,11 +957,11 @@ declare class SageMaker extends Service {
957
957
  */
958
958
  describeCluster(callback?: (err: AWSError, data: SageMaker.Types.DescribeClusterResponse) => void): Request<SageMaker.Types.DescribeClusterResponse, AWSError>;
959
959
  /**
960
- * Retrieves information of an instance (also called a node interchangeably) of a SageMaker HyperPod cluster.
960
+ * Retrieves information of a node (also called a instance interchangeably) of a SageMaker HyperPod cluster.
961
961
  */
962
962
  describeClusterNode(params: SageMaker.Types.DescribeClusterNodeRequest, callback?: (err: AWSError, data: SageMaker.Types.DescribeClusterNodeResponse) => void): Request<SageMaker.Types.DescribeClusterNodeResponse, AWSError>;
963
963
  /**
964
- * Retrieves information of an instance (also called a node interchangeably) of a SageMaker HyperPod cluster.
964
+ * Retrieves information of a node (also called a instance interchangeably) of a SageMaker HyperPod cluster.
965
965
  */
966
966
  describeClusterNode(callback?: (err: AWSError, data: SageMaker.Types.DescribeClusterNodeResponse) => void): Request<SageMaker.Types.DescribeClusterNodeResponse, AWSError>;
967
967
  /**
@@ -4158,6 +4158,8 @@ declare namespace SageMaker {
4158
4158
  export type ClientSecret = string;
4159
4159
  export type ClientToken = string;
4160
4160
  export type ClusterArn = string;
4161
+ export type ClusterAvailabilityZone = string;
4162
+ export type ClusterAvailabilityZoneId = string;
4161
4163
  export type ClusterInstanceCount = number;
4162
4164
  export interface ClusterInstanceGroupDetails {
4163
4165
  /**
@@ -4218,6 +4220,16 @@ declare namespace SageMaker {
4218
4220
  ThreadsPerCore?: ClusterThreadsPerCore;
4219
4221
  }
4220
4222
  export type ClusterInstanceGroupSpecifications = ClusterInstanceGroupSpecification[];
4223
+ export interface ClusterInstancePlacement {
4224
+ /**
4225
+ * The Availability Zone where the node in the SageMaker HyperPod cluster is launched.
4226
+ */
4227
+ AvailabilityZone?: ClusterAvailabilityZone;
4228
+ /**
4229
+ * The unique identifier (ID) of the Availability Zone where the node in the SageMaker HyperPod cluster is launched.
4230
+ */
4231
+ AvailabilityZoneId?: ClusterAvailabilityZoneId;
4232
+ }
4221
4233
  export type ClusterInstanceStatus = "Running"|"Failure"|"Pending"|"ShuttingDown"|"SystemUpdating"|string;
4222
4234
  export interface ClusterInstanceStatusDetails {
4223
4235
  /**
@@ -4272,6 +4284,18 @@ declare namespace SageMaker {
4272
4284
  * The number of threads per CPU core you specified under CreateCluster.
4273
4285
  */
4274
4286
  ThreadsPerCore?: ClusterThreadsPerCore;
4287
+ /**
4288
+ * The private primary IP address of the SageMaker HyperPod cluster node.
4289
+ */
4290
+ PrivatePrimaryIp?: ClusterPrivatePrimaryIp;
4291
+ /**
4292
+ * The private DNS hostname of the SageMaker HyperPod cluster node.
4293
+ */
4294
+ PrivateDnsHostname?: ClusterPrivateDnsHostname;
4295
+ /**
4296
+ * The placement details of the SageMaker HyperPod cluster node.
4297
+ */
4298
+ Placement?: ClusterInstancePlacement;
4275
4299
  }
4276
4300
  export type ClusterNodeId = string;
4277
4301
  export type ClusterNodeSummaries = ClusterNodeSummary[];
@@ -4298,6 +4322,8 @@ declare namespace SageMaker {
4298
4322
  InstanceStatus: ClusterInstanceStatusDetails;
4299
4323
  }
4300
4324
  export type ClusterNonNegativeInstanceCount = number;
4325
+ export type ClusterPrivateDnsHostname = string;
4326
+ export type ClusterPrivatePrimaryIp = string;
4301
4327
  export type ClusterSortBy = "CREATION_TIME"|"NAME"|string;
4302
4328
  export type ClusterStatus = "Creating"|"Deleting"|"Failed"|"InService"|"RollingBack"|"SystemUpdating"|"Updating"|string;
4303
4329
  export type ClusterSummaries = ClusterSummary[];
@@ -7995,17 +8021,17 @@ declare namespace SageMaker {
7995
8021
  }
7996
8022
  export interface DescribeClusterNodeRequest {
7997
8023
  /**
7998
- * The string name or the Amazon Resource Name (ARN) of the SageMaker HyperPod cluster in which the instance is.
8024
+ * The string name or the Amazon Resource Name (ARN) of the SageMaker HyperPod cluster in which the node is.
7999
8025
  */
8000
8026
  ClusterName: ClusterNameOrArn;
8001
8027
  /**
8002
- * The ID of the instance.
8028
+ * The ID of the SageMaker HyperPod cluster node.
8003
8029
  */
8004
8030
  NodeId: ClusterNodeId;
8005
8031
  }
8006
8032
  export interface DescribeClusterNodeResponse {
8007
8033
  /**
8008
- * The details of the instance.
8034
+ * The details of the SageMaker HyperPod cluster node.
8009
8035
  */
8010
8036
  NodeDetails: ClusterNodeDetails;
8011
8037
  }