aws-sdk-sagemaker 1.359.0 → 1.360.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fea6b6fb5cad1e62439670cf1a4b8258f1cc432a261eb45792cb9c589cabb21f
4
- data.tar.gz: 3371a49924dfece0fe0a72ec0819a8fab462e7f96b1bd911e5aba3afb7e06f37
3
+ metadata.gz: 6c36581b8f0f6b4803103952c3351e325933aaa0d1c7e8ef456eff4fe9aa0ec8
4
+ data.tar.gz: e286a6973c21641ae83c50c08a947cf324ac8eaa45b542ddcb3ca3a8766584cc
5
5
  SHA512:
6
- metadata.gz: 2f01d626a5ff506dfc0ca4fc586e8bc45c431193e9c191f7f49b05018f7aacfff38e75a4ffeb1f8b3a3741cbacb966fa79637355c9d1aa543d0bc4a6a5628d72
7
- data.tar.gz: 9b353a2f199b6897f36fa1ca5135e0316a2e9b1342d2ef1b41179805ec6b1c2572a7ba8ddf1cf5137f2d37ce1a649ef47349c6e156df086c353677abb5951b27
6
+ metadata.gz: 3d3a8c2194ba91d9b0d6412bf6d61df4f77e155046077db07a0651a9993d440b0990d0907092e80e2d778923e5155b63a1448025c6e3ee43d55fc48d637325ca
7
+ data.tar.gz: e9820f8c8e980768d05f42c7b77c97f38efb48718f3f56da76a52325b45d03a1d24d8e52acaef7677fcc09d8df4d693a0ff66a084493935647623cbe20ca5e52
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.360.0 (2026-04-17)
5
+ ------------------
6
+
7
+ * Feature - Adds support for providing NetworkInterface for efa enabled instances and Simplified cluster creation for Slurm-orchestrated clusters with optional Lifecycle Script (LCS) configuration.
8
+
4
9
  1.359.0 (2026-04-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.359.0
1
+ 1.360.0
@@ -2486,6 +2486,7 @@ module Aws::SageMaker
2486
2486
  # life_cycle_config: {
2487
2487
  # source_s3_uri: "S3Uri",
2488
2488
  # on_create: "ClusterLifeCycleConfigFileName",
2489
+ # on_init_complete: "ClusterLifeCycleConfigFileName",
2489
2490
  # },
2490
2491
  # execution_role: "RoleArn", # required
2491
2492
  # threads_per_core: 1,
@@ -2557,6 +2558,9 @@ module Aws::SageMaker
2557
2558
  # on_demand: {
2558
2559
  # },
2559
2560
  # },
2561
+ # network_interface: {
2562
+ # interface_type: "efa", # accepts efa, efa-only
2563
+ # },
2560
2564
  # },
2561
2565
  # ],
2562
2566
  # restricted_instance_groups: [
@@ -14015,6 +14019,7 @@ module Aws::SageMaker
14015
14019
  # resp.instance_groups[0].instance_type_details[0].threads_per_core #=> Integer
14016
14020
  # resp.instance_groups[0].life_cycle_config.source_s3_uri #=> String
14017
14021
  # resp.instance_groups[0].life_cycle_config.on_create #=> String
14022
+ # resp.instance_groups[0].life_cycle_config.on_init_complete #=> String
14018
14023
  # resp.instance_groups[0].execution_role #=> String
14019
14024
  # resp.instance_groups[0].threads_per_core #=> Integer
14020
14025
  # resp.instance_groups[0].instance_storage_configs #=> Array
@@ -14071,6 +14076,7 @@ module Aws::SageMaker
14071
14076
  # resp.instance_groups[0].slurm_config.node_type #=> String, one of "Controller", "Login", "Compute"
14072
14077
  # resp.instance_groups[0].slurm_config.partition_names #=> Array
14073
14078
  # resp.instance_groups[0].slurm_config.partition_names[0] #=> String
14079
+ # resp.instance_groups[0].network_interface.interface_type #=> String, one of "efa", "efa-only"
14074
14080
  # resp.restricted_instance_groups #=> Array
14075
14081
  # resp.restricted_instance_groups[0].current_count #=> Integer
14076
14082
  # resp.restricted_instance_groups[0].target_count #=> Integer
@@ -14239,6 +14245,7 @@ module Aws::SageMaker
14239
14245
  # resp.node_details.last_software_update_time #=> Time
14240
14246
  # resp.node_details.life_cycle_config.source_s3_uri #=> String
14241
14247
  # resp.node_details.life_cycle_config.on_create #=> String
14248
+ # resp.node_details.life_cycle_config.on_init_complete #=> String
14242
14249
  # resp.node_details.override_vpc_config.security_group_ids #=> Array
14243
14250
  # resp.node_details.override_vpc_config.security_group_ids[0] #=> String
14244
14251
  # resp.node_details.override_vpc_config.subnets #=> Array
@@ -14275,6 +14282,7 @@ module Aws::SageMaker
14275
14282
  # resp.node_details.kubernetes_config.desired_taints[0].value #=> String
14276
14283
  # resp.node_details.kubernetes_config.desired_taints[0].effect #=> String, one of "NoSchedule", "PreferNoSchedule", "NoExecute"
14277
14284
  # resp.node_details.capacity_type #=> String, one of "Spot", "OnDemand"
14285
+ # resp.node_details.network_interface.interface_type #=> String, one of "efa", "efa-only"
14278
14286
  #
14279
14287
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeClusterNode AWS API Documentation
14280
14288
  #
@@ -28671,6 +28679,7 @@ module Aws::SageMaker
28671
28679
  # life_cycle_config: {
28672
28680
  # source_s3_uri: "S3Uri",
28673
28681
  # on_create: "ClusterLifeCycleConfigFileName",
28682
+ # on_init_complete: "ClusterLifeCycleConfigFileName",
28674
28683
  # },
28675
28684
  # execution_role: "RoleArn", # required
28676
28685
  # threads_per_core: 1,
@@ -28742,6 +28751,9 @@ module Aws::SageMaker
28742
28751
  # on_demand: {
28743
28752
  # },
28744
28753
  # },
28754
+ # network_interface: {
28755
+ # interface_type: "efa", # accepts efa, efa-only
28756
+ # },
28745
28757
  # },
28746
28758
  # ],
28747
28759
  # restricted_instance_groups: [
@@ -32613,7 +32625,7 @@ module Aws::SageMaker
32613
32625
  tracer: tracer
32614
32626
  )
32615
32627
  context[:gem_name] = 'aws-sdk-sagemaker'
32616
- context[:gem_version] = '1.359.0'
32628
+ context[:gem_version] = '1.360.0'
32617
32629
  Seahorse::Client::Request.new(handlers, context)
32618
32630
  end
32619
32631
 
@@ -392,6 +392,7 @@ module Aws::SageMaker
392
392
  ClusterInstanceTypeDetail = Shapes::StructureShape.new(name: 'ClusterInstanceTypeDetail')
393
393
  ClusterInstanceTypeDetails = Shapes::ListShape.new(name: 'ClusterInstanceTypeDetails')
394
394
  ClusterInstanceTypes = Shapes::ListShape.new(name: 'ClusterInstanceTypes')
395
+ ClusterInterfaceType = Shapes::StringShape.new(name: 'ClusterInterfaceType')
395
396
  ClusterKubernetesConfig = Shapes::StructureShape.new(name: 'ClusterKubernetesConfig')
396
397
  ClusterKubernetesConfigDetails = Shapes::StructureShape.new(name: 'ClusterKubernetesConfigDetails')
397
398
  ClusterKubernetesConfigNodeDetails = Shapes::StructureShape.new(name: 'ClusterKubernetesConfigNodeDetails')
@@ -409,6 +410,8 @@ module Aws::SageMaker
409
410
  ClusterMountName = Shapes::StringShape.new(name: 'ClusterMountName')
410
411
  ClusterName = Shapes::StringShape.new(name: 'ClusterName')
411
412
  ClusterNameOrArn = Shapes::StringShape.new(name: 'ClusterNameOrArn')
413
+ ClusterNetworkInterface = Shapes::StructureShape.new(name: 'ClusterNetworkInterface')
414
+ ClusterNetworkInterfaceDetails = Shapes::StructureShape.new(name: 'ClusterNetworkInterfaceDetails')
412
415
  ClusterNodeDetails = Shapes::StructureShape.new(name: 'ClusterNodeDetails')
413
416
  ClusterNodeId = Shapes::StringShape.new(name: 'ClusterNodeId')
414
417
  ClusterNodeIds = Shapes::ListShape.new(name: 'ClusterNodeIds')
@@ -3752,6 +3755,7 @@ module Aws::SageMaker
3752
3755
  ClusterInstanceGroupDetails.add_member(:software_update_status, Shapes::ShapeRef.new(shape: SoftwareUpdateStatus, location_name: "SoftwareUpdateStatus"))
3753
3756
  ClusterInstanceGroupDetails.add_member(:active_software_update_config, Shapes::ShapeRef.new(shape: DeploymentConfiguration, location_name: "ActiveSoftwareUpdateConfig"))
3754
3757
  ClusterInstanceGroupDetails.add_member(:slurm_config, Shapes::ShapeRef.new(shape: ClusterSlurmConfigDetails, location_name: "SlurmConfig"))
3758
+ ClusterInstanceGroupDetails.add_member(:network_interface, Shapes::ShapeRef.new(shape: ClusterNetworkInterfaceDetails, location_name: "NetworkInterface"))
3755
3759
  ClusterInstanceGroupDetails.struct_class = Types::ClusterInstanceGroupDetails
3756
3760
 
3757
3761
  ClusterInstanceGroupDetailsList.member = Shapes::ShapeRef.new(shape: ClusterInstanceGroupDetails)
@@ -3773,6 +3777,7 @@ module Aws::SageMaker
3773
3777
  ClusterInstanceGroupSpecification.add_member(:kubernetes_config, Shapes::ShapeRef.new(shape: ClusterKubernetesConfig, location_name: "KubernetesConfig"))
3774
3778
  ClusterInstanceGroupSpecification.add_member(:slurm_config, Shapes::ShapeRef.new(shape: ClusterSlurmConfig, location_name: "SlurmConfig"))
3775
3779
  ClusterInstanceGroupSpecification.add_member(:capacity_requirements, Shapes::ShapeRef.new(shape: ClusterCapacityRequirements, location_name: "CapacityRequirements"))
3780
+ ClusterInstanceGroupSpecification.add_member(:network_interface, Shapes::ShapeRef.new(shape: ClusterNetworkInterface, location_name: "NetworkInterface"))
3776
3781
  ClusterInstanceGroupSpecification.struct_class = Types::ClusterInstanceGroupSpecification
3777
3782
 
3778
3783
  ClusterInstanceGroupSpecifications.member = Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecification)
@@ -3843,6 +3848,7 @@ module Aws::SageMaker
3843
3848
 
3844
3849
  ClusterLifeCycleConfig.add_member(:source_s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "SourceS3Uri"))
3845
3850
  ClusterLifeCycleConfig.add_member(:on_create, Shapes::ShapeRef.new(shape: ClusterLifeCycleConfigFileName, location_name: "OnCreate"))
3851
+ ClusterLifeCycleConfig.add_member(:on_init_complete, Shapes::ShapeRef.new(shape: ClusterLifeCycleConfigFileName, location_name: "OnInitComplete"))
3846
3852
  ClusterLifeCycleConfig.struct_class = Types::ClusterLifeCycleConfig
3847
3853
 
3848
3854
  ClusterMetadata.add_member(:failure_message, Shapes::ShapeRef.new(shape: String, location_name: "FailureMessage"))
@@ -3850,6 +3856,12 @@ module Aws::SageMaker
3850
3856
  ClusterMetadata.add_member(:slr_access_entry, Shapes::ShapeRef.new(shape: String, location_name: "SlrAccessEntry"))
3851
3857
  ClusterMetadata.struct_class = Types::ClusterMetadata
3852
3858
 
3859
+ ClusterNetworkInterface.add_member(:interface_type, Shapes::ShapeRef.new(shape: ClusterInterfaceType, location_name: "InterfaceType"))
3860
+ ClusterNetworkInterface.struct_class = Types::ClusterNetworkInterface
3861
+
3862
+ ClusterNetworkInterfaceDetails.add_member(:interface_type, Shapes::ShapeRef.new(shape: ClusterInterfaceType, location_name: "InterfaceType"))
3863
+ ClusterNetworkInterfaceDetails.struct_class = Types::ClusterNetworkInterfaceDetails
3864
+
3853
3865
  ClusterNodeDetails.add_member(:instance_group_name, Shapes::ShapeRef.new(shape: ClusterInstanceGroupName, location_name: "InstanceGroupName"))
3854
3866
  ClusterNodeDetails.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "InstanceId"))
3855
3867
  ClusterNodeDetails.add_member(:node_logical_id, Shapes::ShapeRef.new(shape: ClusterNodeLogicalId, location_name: "NodeLogicalId"))
@@ -3870,6 +3882,7 @@ module Aws::SageMaker
3870
3882
  ClusterNodeDetails.add_member(:ultra_server_info, Shapes::ShapeRef.new(shape: UltraServerInfo, location_name: "UltraServerInfo"))
3871
3883
  ClusterNodeDetails.add_member(:kubernetes_config, Shapes::ShapeRef.new(shape: ClusterKubernetesConfigNodeDetails, location_name: "KubernetesConfig"))
3872
3884
  ClusterNodeDetails.add_member(:capacity_type, Shapes::ShapeRef.new(shape: ClusterCapacityType, location_name: "CapacityType"))
3885
+ ClusterNodeDetails.add_member(:network_interface, Shapes::ShapeRef.new(shape: ClusterNetworkInterfaceDetails, location_name: "NetworkInterface"))
3873
3886
  ClusterNodeDetails.struct_class = Types::ClusterNodeDetails
3874
3887
 
3875
3888
  ClusterNodeIds.member = Shapes::ShapeRef.new(shape: ClusterNodeId)
@@ -5698,6 +5698,10 @@ module Aws::SageMaker
5698
5698
  # The Slurm configuration for the instance group.
5699
5699
  # @return [Types::ClusterSlurmConfigDetails]
5700
5700
  #
5701
+ # @!attribute [rw] network_interface
5702
+ # The network interface configuration for the instance group.
5703
+ # @return [Types::ClusterNetworkInterfaceDetails]
5704
+ #
5701
5705
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupDetails AWS API Documentation
5702
5706
  #
5703
5707
  class ClusterInstanceGroupDetails < Struct.new(
@@ -5726,7 +5730,8 @@ module Aws::SageMaker
5726
5730
  :target_state_count,
5727
5731
  :software_update_status,
5728
5732
  :active_software_update_config,
5729
- :slurm_config)
5733
+ :slurm_config,
5734
+ :network_interface)
5730
5735
  SENSITIVE = []
5731
5736
  include Aws::Structure
5732
5737
  end
@@ -5897,6 +5902,10 @@ module Aws::SageMaker
5897
5902
  # Specifies the capacity requirements for the instance group.
5898
5903
  # @return [Types::ClusterCapacityRequirements]
5899
5904
  #
5905
+ # @!attribute [rw] network_interface
5906
+ # The network interface configuration for the instance group.
5907
+ # @return [Types::ClusterNetworkInterface]
5908
+ #
5900
5909
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupSpecification AWS API Documentation
5901
5910
  #
5902
5911
  class ClusterInstanceGroupSpecification < Struct.new(
@@ -5916,7 +5925,8 @@ module Aws::SageMaker
5916
5925
  :image_id,
5917
5926
  :kubernetes_config,
5918
5927
  :slurm_config,
5919
- :capacity_requirements)
5928
+ :capacity_requirements,
5929
+ :network_interface)
5920
5930
  SENSITIVE = []
5921
5931
  include Aws::Structure
5922
5932
  end
@@ -6207,11 +6217,18 @@ module Aws::SageMaker
6207
6217
  # `SourceS3Uri`. This entrypoint script runs during cluster creation.
6208
6218
  # @return [String]
6209
6219
  #
6220
+ # @!attribute [rw] on_init_complete
6221
+ # The file name of the entrypoint script of lifecycle scripts under
6222
+ # `SourceS3Uri`. This script runs on the node after the AMI-based
6223
+ # initialization is complete.
6224
+ # @return [String]
6225
+ #
6210
6226
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterLifeCycleConfig AWS API Documentation
6211
6227
  #
6212
6228
  class ClusterLifeCycleConfig < Struct.new(
6213
6229
  :source_s3_uri,
6214
- :on_create)
6230
+ :on_create,
6231
+ :on_init_complete)
6215
6232
  SENSITIVE = []
6216
6233
  include Aws::Structure
6217
6234
  end
@@ -6247,6 +6264,51 @@ module Aws::SageMaker
6247
6264
  include Aws::Structure
6248
6265
  end
6249
6266
 
6267
+ # The network interface configuration for a Amazon SageMaker HyperPod
6268
+ # cluster instance group.
6269
+ #
6270
+ # @!attribute [rw] interface_type
6271
+ # The type of network interface for the instance group. Valid values:
6272
+ #
6273
+ # * `efa` – An EFA with ENA interface, which provides both the EFA
6274
+ # device for low-latency, high-throughput communication and the ENA
6275
+ # device for IP networking.
6276
+ #
6277
+ # * `efa-only` – An EFA-only interface, which provides only the EFA
6278
+ # device capabilities without the ENA device for traditional IP
6279
+ # networking.
6280
+ #
6281
+ # For more information, see [Elastic Fabric Adapter][1].
6282
+ #
6283
+ #
6284
+ #
6285
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html
6286
+ # @return [String]
6287
+ #
6288
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterNetworkInterface AWS API Documentation
6289
+ #
6290
+ class ClusterNetworkInterface < Struct.new(
6291
+ :interface_type)
6292
+ SENSITIVE = []
6293
+ include Aws::Structure
6294
+ end
6295
+
6296
+ # The network interface configuration details for a Amazon SageMaker
6297
+ # HyperPod cluster instance group.
6298
+ #
6299
+ # @!attribute [rw] interface_type
6300
+ # The type of network interface for the instance group. Valid values
6301
+ # are `efa` and `efa-only`.
6302
+ # @return [String]
6303
+ #
6304
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterNetworkInterfaceDetails AWS API Documentation
6305
+ #
6306
+ class ClusterNetworkInterfaceDetails < Struct.new(
6307
+ :interface_type)
6308
+ SENSITIVE = []
6309
+ include Aws::Structure
6310
+ end
6311
+
6250
6312
  # Details of an instance (also called a *node* interchangeably) in a
6251
6313
  # SageMaker HyperPod cluster.
6252
6314
  #
@@ -6348,6 +6410,10 @@ module Aws::SageMaker
6348
6410
  # instance.
6349
6411
  # @return [String]
6350
6412
  #
6413
+ # @!attribute [rw] network_interface
6414
+ # The network interface configuration for the cluster node.
6415
+ # @return [Types::ClusterNetworkInterfaceDetails]
6416
+ #
6351
6417
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterNodeDetails AWS API Documentation
6352
6418
  #
6353
6419
  class ClusterNodeDetails < Struct.new(
@@ -6370,7 +6436,8 @@ module Aws::SageMaker
6370
6436
  :desired_image_id,
6371
6437
  :ultra_server_info,
6372
6438
  :kubernetes_config,
6373
- :capacity_type)
6439
+ :capacity_type,
6440
+ :network_interface)
6374
6441
  SENSITIVE = []
6375
6442
  include Aws::Structure
6376
6443
  end
@@ -55,7 +55,7 @@ module Aws::SageMaker
55
55
  autoload :EndpointProvider, 'aws-sdk-sagemaker/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-sagemaker/endpoints'
57
57
 
58
- GEM_VERSION = '1.359.0'
58
+ GEM_VERSION = '1.360.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -825,7 +825,8 @@ module Aws
825
825
  }?,
826
826
  life_cycle_config: {
827
827
  source_s3_uri: ::String?,
828
- on_create: ::String?
828
+ on_create: ::String?,
829
+ on_init_complete: ::String?
829
830
  }?,
830
831
  execution_role: ::String,
831
832
  threads_per_core: ::Integer?,
@@ -894,6 +895,9 @@ module Aws
894
895
  }?,
895
896
  on_demand: {
896
897
  }?
898
+ }?,
899
+ network_interface: {
900
+ interface_type: ("efa" | "efa-only")?
897
901
  }?
898
902
  },
899
903
  ],
@@ -9281,7 +9285,8 @@ module Aws
9281
9285
  }?,
9282
9286
  life_cycle_config: {
9283
9287
  source_s3_uri: ::String?,
9284
- on_create: ::String?
9288
+ on_create: ::String?,
9289
+ on_init_complete: ::String?
9285
9290
  }?,
9286
9291
  execution_role: ::String,
9287
9292
  threads_per_core: ::Integer?,
@@ -9350,6 +9355,9 @@ module Aws
9350
9355
  }?,
9351
9356
  on_demand: {
9352
9357
  }?
9358
+ }?,
9359
+ network_interface: {
9360
+ interface_type: ("efa" | "efa-only")?
9353
9361
  }?
9354
9362
  },
9355
9363
  ],
data/sig/types.rbs CHANGED
@@ -1047,6 +1047,7 @@ module Aws::SageMaker
1047
1047
  attr_accessor software_update_status: ("Pending" | "InProgress" | "Succeeded" | "Failed" | "RollbackInProgress" | "RollbackComplete")
1048
1048
  attr_accessor active_software_update_config: Types::DeploymentConfiguration
1049
1049
  attr_accessor slurm_config: Types::ClusterSlurmConfigDetails
1050
+ attr_accessor network_interface: Types::ClusterNetworkInterfaceDetails
1050
1051
  SENSITIVE: []
1051
1052
  end
1052
1053
 
@@ -1068,6 +1069,7 @@ module Aws::SageMaker
1068
1069
  attr_accessor kubernetes_config: Types::ClusterKubernetesConfig
1069
1070
  attr_accessor slurm_config: Types::ClusterSlurmConfig
1070
1071
  attr_accessor capacity_requirements: Types::ClusterCapacityRequirements
1072
+ attr_accessor network_interface: Types::ClusterNetworkInterface
1071
1073
  SENSITIVE: []
1072
1074
  end
1073
1075
 
@@ -1150,6 +1152,7 @@ module Aws::SageMaker
1150
1152
  class ClusterLifeCycleConfig
1151
1153
  attr_accessor source_s3_uri: ::String
1152
1154
  attr_accessor on_create: ::String
1155
+ attr_accessor on_init_complete: ::String
1153
1156
  SENSITIVE: []
1154
1157
  end
1155
1158
 
@@ -1160,6 +1163,16 @@ module Aws::SageMaker
1160
1163
  SENSITIVE: []
1161
1164
  end
1162
1165
 
1166
+ class ClusterNetworkInterface
1167
+ attr_accessor interface_type: ("efa" | "efa-only")
1168
+ SENSITIVE: []
1169
+ end
1170
+
1171
+ class ClusterNetworkInterfaceDetails
1172
+ attr_accessor interface_type: ("efa" | "efa-only")
1173
+ SENSITIVE: []
1174
+ end
1175
+
1163
1176
  class ClusterNodeDetails
1164
1177
  attr_accessor instance_group_name: ::String
1165
1178
  attr_accessor instance_id: ::String
@@ -1181,6 +1194,7 @@ module Aws::SageMaker
1181
1194
  attr_accessor ultra_server_info: Types::UltraServerInfo
1182
1195
  attr_accessor kubernetes_config: Types::ClusterKubernetesConfigNodeDetails
1183
1196
  attr_accessor capacity_type: ("Spot" | "OnDemand")
1197
+ attr_accessor network_interface: Types::ClusterNetworkInterfaceDetails
1184
1198
  SENSITIVE: []
1185
1199
  end
1186
1200
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.359.0
4
+ version: 1.360.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services