aws-sdk-sagemaker 1.243.0 → 1.244.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cbcf1c71edfc557a3bdb2624057b01c4b01d042d55a3974be24771bf10b169fc
4
- data.tar.gz: ae099617b91d40f345c4de4b06709334766af37ffa26ce12465c7a3285ac55d2
3
+ metadata.gz: 027bbb7cf244d5d9be46cd690dc76ee429447d94787052040042459f572d3106
4
+ data.tar.gz: 90b6547c6ac9268f20911ed239846e128f4f8d16c12cc84cc170756502e11f26
5
5
  SHA512:
6
- metadata.gz: dbe31d67c631e43f3445560736e9c9bad11db72b1feefe89fe760fa1ae25c5f256e71d997b00540d0ee3178a11dd0e2f07d0c94b95d39b3553e6d63d93a2c51e
7
- data.tar.gz: 75558bf18d85a6ee570d633c6fbfa1b96243f6239ad4ccffc63825536c0e29ba23c3d07b2d5e84d9fb332dbce7e2b63c930188d0d608a1e6b3e464e3046bc4fe
6
+ metadata.gz: 8db6cc9005d62a776d72627300e8d36858192bdd21600d79ae9aa65f116053ca25ec8ed356f16ff91c4e8ada2c5b07f263614fd0b8fa44f54eb0ad19117df4e7
7
+ data.tar.gz: c61804a5123ceab6a75c861e9638a0e30f67ab4e1648ad8ef0572bb0adb118224dc8debfb22027270a6fdc5cb5aeb2c5d74eb14f87958e9b8d907efd731bb026
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.244.0 (2024-06-04)
5
+ ------------------
6
+
7
+ * Feature - Extend DescribeClusterNode response with private DNS hostname and IP address, and placement information about availability zone and availability zone ID.
8
+
4
9
  1.243.0 (2024-05-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.243.0
1
+ 1.244.0
@@ -11440,15 +11440,15 @@ module Aws::SageMaker
11440
11440
  req.send_request(options)
11441
11441
  end
11442
11442
 
11443
- # Retrieves information of an instance (also called a *node*
11443
+ # Retrieves information of a node (also called a *instance*
11444
11444
  # interchangeably) of a SageMaker HyperPod cluster.
11445
11445
  #
11446
11446
  # @option params [required, String] :cluster_name
11447
11447
  # The string name or the Amazon Resource Name (ARN) of the SageMaker
11448
- # HyperPod cluster in which the instance is.
11448
+ # HyperPod cluster in which the node is.
11449
11449
  #
11450
11450
  # @option params [required, String] :node_id
11451
- # The ID of the instance.
11451
+ # The ID of the SageMaker HyperPod cluster node.
11452
11452
  #
11453
11453
  # @return [Types::DescribeClusterNodeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11454
11454
  #
@@ -11472,6 +11472,10 @@ module Aws::SageMaker
11472
11472
  # resp.node_details.life_cycle_config.source_s3_uri #=> String
11473
11473
  # resp.node_details.life_cycle_config.on_create #=> String
11474
11474
  # resp.node_details.threads_per_core #=> Integer
11475
+ # resp.node_details.private_primary_ip #=> String
11476
+ # resp.node_details.private_dns_hostname #=> String
11477
+ # resp.node_details.placement.availability_zone #=> String
11478
+ # resp.node_details.placement.availability_zone_id #=> String
11475
11479
  #
11476
11480
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterNode AWS API Documentation
11477
11481
  #
@@ -26437,7 +26441,7 @@ module Aws::SageMaker
26437
26441
  params: params,
26438
26442
  config: config)
26439
26443
  context[:gem_name] = 'aws-sdk-sagemaker'
26440
- context[:gem_version] = '1.243.0'
26444
+ context[:gem_version] = '1.244.0'
26441
26445
  Seahorse::Client::Request.new(handlers, context)
26442
26446
  end
26443
26447
 
@@ -250,12 +250,15 @@ module Aws::SageMaker
250
250
  ClientSecret = Shapes::StringShape.new(name: 'ClientSecret')
251
251
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
252
252
  ClusterArn = Shapes::StringShape.new(name: 'ClusterArn')
253
+ ClusterAvailabilityZone = Shapes::StringShape.new(name: 'ClusterAvailabilityZone')
254
+ ClusterAvailabilityZoneId = Shapes::StringShape.new(name: 'ClusterAvailabilityZoneId')
253
255
  ClusterInstanceCount = Shapes::IntegerShape.new(name: 'ClusterInstanceCount')
254
256
  ClusterInstanceGroupDetails = Shapes::StructureShape.new(name: 'ClusterInstanceGroupDetails')
255
257
  ClusterInstanceGroupDetailsList = Shapes::ListShape.new(name: 'ClusterInstanceGroupDetailsList')
256
258
  ClusterInstanceGroupName = Shapes::StringShape.new(name: 'ClusterInstanceGroupName')
257
259
  ClusterInstanceGroupSpecification = Shapes::StructureShape.new(name: 'ClusterInstanceGroupSpecification')
258
260
  ClusterInstanceGroupSpecifications = Shapes::ListShape.new(name: 'ClusterInstanceGroupSpecifications')
261
+ ClusterInstancePlacement = Shapes::StructureShape.new(name: 'ClusterInstancePlacement')
259
262
  ClusterInstanceStatus = Shapes::StringShape.new(name: 'ClusterInstanceStatus')
260
263
  ClusterInstanceStatusDetails = Shapes::StructureShape.new(name: 'ClusterInstanceStatusDetails')
261
264
  ClusterInstanceType = Shapes::StringShape.new(name: 'ClusterInstanceType')
@@ -268,6 +271,8 @@ module Aws::SageMaker
268
271
  ClusterNodeSummaries = Shapes::ListShape.new(name: 'ClusterNodeSummaries')
269
272
  ClusterNodeSummary = Shapes::StructureShape.new(name: 'ClusterNodeSummary')
270
273
  ClusterNonNegativeInstanceCount = Shapes::IntegerShape.new(name: 'ClusterNonNegativeInstanceCount')
274
+ ClusterPrivateDnsHostname = Shapes::StringShape.new(name: 'ClusterPrivateDnsHostname')
275
+ ClusterPrivatePrimaryIp = Shapes::StringShape.new(name: 'ClusterPrivatePrimaryIp')
271
276
  ClusterSortBy = Shapes::StringShape.new(name: 'ClusterSortBy')
272
277
  ClusterStatus = Shapes::StringShape.new(name: 'ClusterStatus')
273
278
  ClusterSummaries = Shapes::ListShape.new(name: 'ClusterSummaries')
@@ -2846,6 +2851,10 @@ module Aws::SageMaker
2846
2851
 
2847
2852
  ClusterInstanceGroupSpecifications.member = Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecification)
2848
2853
 
2854
+ ClusterInstancePlacement.add_member(:availability_zone, Shapes::ShapeRef.new(shape: ClusterAvailabilityZone, location_name: "AvailabilityZone"))
2855
+ ClusterInstancePlacement.add_member(:availability_zone_id, Shapes::ShapeRef.new(shape: ClusterAvailabilityZoneId, location_name: "AvailabilityZoneId"))
2856
+ ClusterInstancePlacement.struct_class = Types::ClusterInstancePlacement
2857
+
2849
2858
  ClusterInstanceStatusDetails.add_member(:status, Shapes::ShapeRef.new(shape: ClusterInstanceStatus, required: true, location_name: "Status"))
2850
2859
  ClusterInstanceStatusDetails.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
2851
2860
  ClusterInstanceStatusDetails.struct_class = Types::ClusterInstanceStatusDetails
@@ -2861,6 +2870,9 @@ module Aws::SageMaker
2861
2870
  ClusterNodeDetails.add_member(:launch_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LaunchTime"))
2862
2871
  ClusterNodeDetails.add_member(:life_cycle_config, Shapes::ShapeRef.new(shape: ClusterLifeCycleConfig, location_name: "LifeCycleConfig"))
2863
2872
  ClusterNodeDetails.add_member(:threads_per_core, Shapes::ShapeRef.new(shape: ClusterThreadsPerCore, location_name: "ThreadsPerCore"))
2873
+ ClusterNodeDetails.add_member(:private_primary_ip, Shapes::ShapeRef.new(shape: ClusterPrivatePrimaryIp, location_name: "PrivatePrimaryIp"))
2874
+ ClusterNodeDetails.add_member(:private_dns_hostname, Shapes::ShapeRef.new(shape: ClusterPrivateDnsHostname, location_name: "PrivateDnsHostname"))
2875
+ ClusterNodeDetails.add_member(:placement, Shapes::ShapeRef.new(shape: ClusterInstancePlacement, location_name: "Placement"))
2864
2876
  ClusterNodeDetails.struct_class = Types::ClusterNodeDetails
2865
2877
 
2866
2878
  ClusterNodeSummaries.member = Shapes::ShapeRef.new(shape: ClusterNodeSummary)
@@ -9974,6 +9986,7 @@ module Aws::SageMaker
9974
9986
 
9975
9987
  api.metadata = {
9976
9988
  "apiVersion" => "2017-07-24",
9989
+ "auth" => ["aws.auth#sigv4"],
9977
9990
  "endpointPrefix" => "api.sagemaker",
9978
9991
  "jsonVersion" => "1.1",
9979
9992
  "protocol" => "json",
@@ -4089,6 +4089,29 @@ module Aws::SageMaker
4089
4089
  include Aws::Structure
4090
4090
  end
4091
4091
 
4092
+ # Specifies the placement details for the node in the SageMaker HyperPod
4093
+ # cluster, including the Availability Zone and the unique identifier
4094
+ # (ID) of the Availability Zone.
4095
+ #
4096
+ # @!attribute [rw] availability_zone
4097
+ # The Availability Zone where the node in the SageMaker HyperPod
4098
+ # cluster is launched.
4099
+ # @return [String]
4100
+ #
4101
+ # @!attribute [rw] availability_zone_id
4102
+ # The unique identifier (ID) of the Availability Zone where the node
4103
+ # in the SageMaker HyperPod cluster is launched.
4104
+ # @return [String]
4105
+ #
4106
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstancePlacement AWS API Documentation
4107
+ #
4108
+ class ClusterInstancePlacement < Struct.new(
4109
+ :availability_zone,
4110
+ :availability_zone_id)
4111
+ SENSITIVE = []
4112
+ include Aws::Structure
4113
+ end
4114
+
4092
4115
  # Details of an instance in a SageMaker HyperPod cluster.
4093
4116
  #
4094
4117
  # @!attribute [rw] status
@@ -4170,6 +4193,19 @@ module Aws::SageMaker
4170
4193
  # `CreateCluster`.
4171
4194
  # @return [Integer]
4172
4195
  #
4196
+ # @!attribute [rw] private_primary_ip
4197
+ # The private primary IP address of the SageMaker HyperPod cluster
4198
+ # node.
4199
+ # @return [String]
4200
+ #
4201
+ # @!attribute [rw] private_dns_hostname
4202
+ # The private DNS hostname of the SageMaker HyperPod cluster node.
4203
+ # @return [String]
4204
+ #
4205
+ # @!attribute [rw] placement
4206
+ # The placement details of the SageMaker HyperPod cluster node.
4207
+ # @return [Types::ClusterInstancePlacement]
4208
+ #
4173
4209
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterNodeDetails AWS API Documentation
4174
4210
  #
4175
4211
  class ClusterNodeDetails < Struct.new(
@@ -4179,7 +4215,10 @@ module Aws::SageMaker
4179
4215
  :instance_type,
4180
4216
  :launch_time,
4181
4217
  :life_cycle_config,
4182
- :threads_per_core)
4218
+ :threads_per_core,
4219
+ :private_primary_ip,
4220
+ :private_dns_hostname,
4221
+ :placement)
4183
4222
  SENSITIVE = []
4184
4223
  include Aws::Structure
4185
4224
  end
@@ -12132,11 +12171,11 @@ module Aws::SageMaker
12132
12171
 
12133
12172
  # @!attribute [rw] cluster_name
12134
12173
  # The string name or the Amazon Resource Name (ARN) of the SageMaker
12135
- # HyperPod cluster in which the instance is.
12174
+ # HyperPod cluster in which the node is.
12136
12175
  # @return [String]
12137
12176
  #
12138
12177
  # @!attribute [rw] node_id
12139
- # The ID of the instance.
12178
+ # The ID of the SageMaker HyperPod cluster node.
12140
12179
  # @return [String]
12141
12180
  #
12142
12181
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterNodeRequest AWS API Documentation
@@ -12149,7 +12188,7 @@ module Aws::SageMaker
12149
12188
  end
12150
12189
 
12151
12190
  # @!attribute [rw] node_details
12152
- # The details of the instance.
12191
+ # The details of the SageMaker HyperPod cluster node.
12153
12192
  # @return [Types::ClusterNodeDetails]
12154
12193
  #
12155
12194
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterNodeResponse AWS API Documentation
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
53
53
  # @!group service
54
54
  module Aws::SageMaker
55
55
 
56
- GEM_VERSION = '1.243.0'
56
+ GEM_VERSION = '1.244.0'
57
57
 
58
58
  end
data/sig/types.rbs CHANGED
@@ -694,6 +694,12 @@ module Aws::SageMaker
694
694
  SENSITIVE: []
695
695
  end
696
696
 
697
+ class ClusterInstancePlacement
698
+ attr_accessor availability_zone: ::String
699
+ attr_accessor availability_zone_id: ::String
700
+ SENSITIVE: []
701
+ end
702
+
697
703
  class ClusterInstanceStatusDetails
698
704
  attr_accessor status: ("Running" | "Failure" | "Pending" | "ShuttingDown" | "SystemUpdating")
699
705
  attr_accessor message: ::String
@@ -714,6 +720,9 @@ module Aws::SageMaker
714
720
  attr_accessor launch_time: ::Time
715
721
  attr_accessor life_cycle_config: Types::ClusterLifeCycleConfig
716
722
  attr_accessor threads_per_core: ::Integer
723
+ attr_accessor private_primary_ip: ::String
724
+ attr_accessor private_dns_hostname: ::String
725
+ attr_accessor placement: Types::ClusterInstancePlacement
717
726
  SENSITIVE: []
718
727
  end
719
728
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.243.0
4
+ version: 1.244.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-30 00:00:00.000000000 Z
11
+ date: 2024-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core