aws-sdk-emrcontainers 1.59.0 → 1.61.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: '058d5f9d2f1177469469d035616c2e02d6c893226388a1d8fe7abf5d975684aa'
4
- data.tar.gz: 23bf256ffcce7cb49b8d66ae77af9bc5517ea3a0a646e5eb2a94df7d869dd3d8
3
+ metadata.gz: 387137579a67db7c2942d431e927a4000fea46343298a9d6181686f05be116e9
4
+ data.tar.gz: 2af5cca6be3ada71f06a9ce4318c99264eae9e11b7c422bf1c4722e57cecae99
5
5
  SHA512:
6
- metadata.gz: d5472398101aec8373ac5987d7848f5ab096772a704627c1930d9592e1dcf5268642bc673ad15e31deae3ef20f02da2bf29130e126a51848bf7fc314157ef6b6
7
- data.tar.gz: 8a8ffdef3e0383b3efcd05cb51b5aa9878ee5264459b8dcb0745a72b84ea0315c4cb183907bf8f9749347105546dcf81823da3ae5715a055d6d0e24f49fdf256
6
+ metadata.gz: 467fd1699396cbbdb61b29c00eaa3aed6a0d6247f8333c584e0fc7b8841c75d41bc6e9511eaa64f5f68f037919cf1bbd05f197c77eda4c600d99794909619017
7
+ data.tar.gz: c44cae96273907b7c3e8997f856dda9c71b618127aed8ad4d16f863f8fdf948656afb62bcc56f867a3d3c8b3ba594de62c042913949d7825716ba2935ec831f7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.0 (2025-09-11)
5
+ ------------------
6
+
7
+ * Feature - Added nodeLabel support in container provider to aid hardware isolation support for virtual cluster and security configuration.
8
+
9
+ 1.60.0 (2025-08-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.59.0 (2025-08-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.59.0
1
+ 1.61.0
@@ -737,6 +737,9 @@ module Aws::EMRContainers
737
737
  # @option params [required, String] :name
738
738
  # The name of the security configuration.
739
739
  #
740
+ # @option params [Types::ContainerProvider] :container_provider
741
+ # The container provider associated with the security configuration.
742
+ #
740
743
  # @option params [required, Types::SecurityConfigurationData] :security_configuration_data
741
744
  # Security configuration input for the request.
742
745
  #
@@ -754,6 +757,16 @@ module Aws::EMRContainers
754
757
  # resp = client.create_security_configuration({
755
758
  # client_token: "ClientToken", # required
756
759
  # name: "ResourceNameString", # required
760
+ # container_provider: {
761
+ # type: "EKS", # required, accepts EKS
762
+ # id: "ClusterId", # required
763
+ # info: {
764
+ # eks_info: {
765
+ # namespace: "KubernetesNamespace",
766
+ # node_label: "ResourceNameString",
767
+ # },
768
+ # },
769
+ # },
757
770
  # security_configuration_data: { # required
758
771
  # authorization_configuration: {
759
772
  # lake_formation_configuration: {
@@ -836,6 +849,7 @@ module Aws::EMRContainers
836
849
  # info: {
837
850
  # eks_info: {
838
851
  # namespace: "KubernetesNamespace",
852
+ # node_label: "ResourceNameString",
839
853
  # },
840
854
  # },
841
855
  # },
@@ -1235,6 +1249,7 @@ module Aws::EMRContainers
1235
1249
  # resp.virtual_cluster.container_provider.type #=> String, one of "EKS"
1236
1250
  # resp.virtual_cluster.container_provider.id #=> String
1237
1251
  # resp.virtual_cluster.container_provider.info.eks_info.namespace #=> String
1252
+ # resp.virtual_cluster.container_provider.info.eks_info.node_label #=> String
1238
1253
  # resp.virtual_cluster.created_at #=> Time
1239
1254
  # resp.virtual_cluster.tags #=> Hash
1240
1255
  # resp.virtual_cluster.tags["String128"] #=> String
@@ -1734,6 +1749,7 @@ module Aws::EMRContainers
1734
1749
  # resp.virtual_clusters[0].container_provider.type #=> String, one of "EKS"
1735
1750
  # resp.virtual_clusters[0].container_provider.id #=> String
1736
1751
  # resp.virtual_clusters[0].container_provider.info.eks_info.namespace #=> String
1752
+ # resp.virtual_clusters[0].container_provider.info.eks_info.node_label #=> String
1737
1753
  # resp.virtual_clusters[0].created_at #=> Time
1738
1754
  # resp.virtual_clusters[0].tags #=> Hash
1739
1755
  # resp.virtual_clusters[0].tags["String128"] #=> String
@@ -1956,7 +1972,7 @@ module Aws::EMRContainers
1956
1972
  tracer: tracer
1957
1973
  )
1958
1974
  context[:gem_name] = 'aws-sdk-emrcontainers'
1959
- context[:gem_version] = '1.59.0'
1975
+ context[:gem_version] = '1.61.0'
1960
1976
  Seahorse::Client::Request.new(handlers, context)
1961
1977
  end
1962
1978
 
@@ -249,6 +249,7 @@ module Aws::EMRContainers
249
249
 
250
250
  CreateSecurityConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
251
251
  CreateSecurityConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceNameString, required: true, location_name: "name"))
252
+ CreateSecurityConfigurationRequest.add_member(:container_provider, Shapes::ShapeRef.new(shape: ContainerProvider, location_name: "containerProvider"))
252
253
  CreateSecurityConfigurationRequest.add_member(:security_configuration_data, Shapes::ShapeRef.new(shape: SecurityConfigurationData, required: true, location_name: "securityConfigurationData"))
253
254
  CreateSecurityConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
254
255
  CreateSecurityConfigurationRequest.struct_class = Types::CreateSecurityConfigurationRequest
@@ -332,6 +333,7 @@ module Aws::EMRContainers
332
333
  EKSRequestThrottledException.struct_class = Types::EKSRequestThrottledException
333
334
 
334
335
  EksInfo.add_member(:namespace, Shapes::ShapeRef.new(shape: KubernetesNamespace, location_name: "namespace"))
336
+ EksInfo.add_member(:node_label, Shapes::ShapeRef.new(shape: ResourceNameString, location_name: "nodeLabel"))
335
337
  EksInfo.struct_class = Types::EksInfo
336
338
 
337
339
  EncryptionConfiguration.add_member(:in_transit_encryption_configuration, Shapes::ShapeRef.new(shape: InTransitEncryptionConfiguration, location_name: "inTransitEncryptionConfiguration"))
@@ -388,6 +388,10 @@ module Aws::EMRContainers
388
388
  # The name of the security configuration.
389
389
  # @return [String]
390
390
  #
391
+ # @!attribute [rw] container_provider
392
+ # The container provider associated with the security configuration.
393
+ # @return [Types::ContainerProvider]
394
+ #
391
395
  # @!attribute [rw] security_configuration_data
392
396
  # Security configuration input for the request.
393
397
  # @return [Types::SecurityConfigurationData]
@@ -401,6 +405,7 @@ module Aws::EMRContainers
401
405
  class CreateSecurityConfigurationRequest < Struct.new(
402
406
  :client_token,
403
407
  :name,
408
+ :container_provider,
404
409
  :security_configuration_data,
405
410
  :tags)
406
411
  SENSITIVE = []
@@ -740,10 +745,17 @@ module Aws::EMRContainers
740
745
  # The namespaces of the Amazon EKS cluster.
741
746
  # @return [String]
742
747
  #
748
+ # @!attribute [rw] node_label
749
+ # The nodeLabel of the nodes where the resources of this virtual
750
+ # cluster can get scheduled. It requires relevant scaling and policy
751
+ # engine addons.
752
+ # @return [String]
753
+ #
743
754
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/EksInfo AWS API Documentation
744
755
  #
745
756
  class EksInfo < Struct.new(
746
- :namespace)
757
+ :namespace,
758
+ :node_label)
747
759
  SENSITIVE = []
748
760
  include Aws::Structure
749
761
  end
@@ -54,7 +54,7 @@ module Aws::EMRContainers
54
54
  autoload :EndpointProvider, 'aws-sdk-emrcontainers/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-emrcontainers/endpoints'
56
56
 
57
- GEM_VERSION = '1.59.0'
57
+ GEM_VERSION = '1.61.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -202,6 +202,16 @@ module Aws
202
202
  def create_security_configuration: (
203
203
  client_token: ::String,
204
204
  name: ::String,
205
+ ?container_provider: {
206
+ type: ("EKS"),
207
+ id: ::String,
208
+ info: {
209
+ eks_info: {
210
+ namespace: ::String?,
211
+ node_label: ::String?
212
+ }?
213
+ }?
214
+ },
205
215
  security_configuration_data: {
206
216
  authorization_configuration: {
207
217
  lake_formation_configuration: {
@@ -241,7 +251,8 @@ module Aws
241
251
  id: ::String,
242
252
  info: {
243
253
  eks_info: {
244
- namespace: ::String?
254
+ namespace: ::String?,
255
+ node_label: ::String?
245
256
  }?
246
257
  }?
247
258
  },
data/sig/types.rbs CHANGED
@@ -116,6 +116,7 @@ module Aws::EMRContainers
116
116
  class CreateSecurityConfigurationRequest
117
117
  attr_accessor client_token: ::String
118
118
  attr_accessor name: ::String
119
+ attr_accessor container_provider: Types::ContainerProvider
119
120
  attr_accessor security_configuration_data: Types::SecurityConfigurationData
120
121
  attr_accessor tags: ::Hash[::String, ::String]
121
122
  SENSITIVE: []
@@ -246,6 +247,7 @@ module Aws::EMRContainers
246
247
 
247
248
  class EksInfo
248
249
  attr_accessor namespace: ::String
250
+ attr_accessor node_label: ::String
249
251
  SENSITIVE: []
250
252
  end
251
253
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emrcontainers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.59.0
4
+ version: 1.61.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.228.0
21
+ version: 3.231.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.228.0
31
+ version: 3.231.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement