aws-sdk-emrcontainers 1.31.0 → 1.32.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: e6bb644e186e1897a09eb4ed334e5b3cbc33ab07670fbd7657da70c8adfba2ec
4
- data.tar.gz: 360ac06f14d3a17e9122ab9470cce92d53508bdb207793a26c69f956eb00ad41
3
+ metadata.gz: 565a15ea0f652d26cc9e3093b1c1772f159ee741033aec6114cd9c4a83b87332
4
+ data.tar.gz: 187d8d5330a5d76215ebc053297b32bc628bc5f597535aa2e76e2f608c4dcb2c
5
5
  SHA512:
6
- metadata.gz: e8951bf208a45f8412a96bc75dbe93fa1df9fc22174fa31e13339eea40efa8ff80510e5cd032f2fd9d4d1765995fcdf903c99de84b053c358dbabfc13584c514
7
- data.tar.gz: 4e361faa93ad2233b90615b00efb5f4f8de84631f71e474b5509f8711506042aecd59544826f958deba0068a4af5f36ce0d203c4d7e2e39d8e8165d97d8d377b
6
+ metadata.gz: 51b2ed58bd334b1b64824442dfc86085eecb9003e74f8c816a76d94eb5900d5aab06acdc0c56d52fbe66ef71e25cd1e892ef5955fe6698d755250433db756a26
7
+ data.tar.gz: b77e19d80bd3daa157d9e49314e2fde1d93898289fb1d8f8a99fbd9874862aec56a67a2db346913ff2123bf7d9f803db18a9451e08ee68d9cb030e0b0c26c442
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.32.0 (2024-04-04)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for integration with EKS AccessEntry APIs to enable automatic Cluster Access for EMR on EKS.
8
+
4
9
  1.31.0 (2024-03-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.31.0
1
+ 1.32.0
@@ -1410,6 +1410,12 @@ module Aws::EMRContainers
1410
1410
  # @option params [String] :next_token
1411
1411
  # The token for the next set of virtual clusters to return.
1412
1412
  #
1413
+ # @option params [Boolean] :eks_access_entry_integrated
1414
+ # Optional Boolean that specifies whether the operation should return
1415
+ # the virtual clusters that have the access entry integration enabled or
1416
+ # disabled. If not specified, the operation returns all applicable
1417
+ # virtual clusters.
1418
+ #
1413
1419
  # @return [Types::ListVirtualClustersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1414
1420
  #
1415
1421
  # * {Types::ListVirtualClustersResponse#virtual_clusters #virtual_clusters} => Array<Types::VirtualCluster>
@@ -1427,6 +1433,7 @@ module Aws::EMRContainers
1427
1433
  # states: ["RUNNING"], # accepts RUNNING, TERMINATING, TERMINATED, ARRESTED
1428
1434
  # max_results: 1,
1429
1435
  # next_token: "NextToken",
1436
+ # eks_access_entry_integrated: false,
1430
1437
  # })
1431
1438
  #
1432
1439
  # @example Response structure
@@ -1651,7 +1658,7 @@ module Aws::EMRContainers
1651
1658
  params: params,
1652
1659
  config: config)
1653
1660
  context[:gem_name] = 'aws-sdk-emrcontainers'
1654
- context[:gem_version] = '1.31.0'
1661
+ context[:gem_version] = '1.32.0'
1655
1662
  Seahorse::Client::Request.new(handlers, context)
1656
1663
  end
1657
1664
 
@@ -15,6 +15,7 @@ module Aws::EMRContainers
15
15
 
16
16
  ACMCertArn = Shapes::StringShape.new(name: 'ACMCertArn')
17
17
  Base64Encoded = Shapes::StringShape.new(name: 'Base64Encoded')
18
+ Boolean = Shapes::BooleanShape.new(name: 'Boolean')
18
19
  CancelJobRunRequest = Shapes::StructureShape.new(name: 'CancelJobRunRequest')
19
20
  CancelJobRunResponse = Shapes::StructureShape.new(name: 'CancelJobRunResponse')
20
21
  Certificate = Shapes::StructureShape.new(name: 'Certificate')
@@ -51,6 +52,7 @@ module Aws::EMRContainers
51
52
  DescribeManagedEndpointResponse = Shapes::StructureShape.new(name: 'DescribeManagedEndpointResponse')
52
53
  DescribeVirtualClusterRequest = Shapes::StructureShape.new(name: 'DescribeVirtualClusterRequest')
53
54
  DescribeVirtualClusterResponse = Shapes::StructureShape.new(name: 'DescribeVirtualClusterResponse')
55
+ EKSRequestThrottledException = Shapes::StructureShape.new(name: 'EKSRequestThrottledException')
54
56
  EksInfo = Shapes::StructureShape.new(name: 'EksInfo')
55
57
  Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
56
58
  EndpointArn = Shapes::StringShape.new(name: 'EndpointArn')
@@ -282,6 +284,9 @@ module Aws::EMRContainers
282
284
  DescribeVirtualClusterResponse.add_member(:virtual_cluster, Shapes::ShapeRef.new(shape: VirtualCluster, location_name: "virtualCluster"))
283
285
  DescribeVirtualClusterResponse.struct_class = Types::DescribeVirtualClusterResponse
284
286
 
287
+ EKSRequestThrottledException.add_member(:message, Shapes::ShapeRef.new(shape: String1024, location_name: "message"))
288
+ EKSRequestThrottledException.struct_class = Types::EKSRequestThrottledException
289
+
285
290
  EksInfo.add_member(:namespace, Shapes::ShapeRef.new(shape: KubernetesNamespace, location_name: "namespace"))
286
291
  EksInfo.struct_class = Types::EksInfo
287
292
 
@@ -428,6 +433,7 @@ module Aws::EMRContainers
428
433
  ListVirtualClustersRequest.add_member(:states, Shapes::ShapeRef.new(shape: VirtualClusterStates, location: "querystring", location_name: "states"))
429
434
  ListVirtualClustersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: JavaInteger, location: "querystring", location_name: "maxResults"))
430
435
  ListVirtualClustersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
436
+ ListVirtualClustersRequest.add_member(:eks_access_entry_integrated, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "eksAccessEntryIntegrated"))
431
437
  ListVirtualClustersRequest.struct_class = Types::ListVirtualClustersRequest
432
438
 
433
439
  ListVirtualClustersResponse.add_member(:virtual_clusters, Shapes::ShapeRef.new(shape: VirtualClusters, location_name: "virtualClusters"))
@@ -606,6 +612,7 @@ module Aws::EMRContainers
606
612
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
607
613
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
608
614
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
615
+ o.errors << Shapes::ShapeRef.new(shape: EKSRequestThrottledException)
609
616
  end)
610
617
 
611
618
  api.add_operation(:delete_job_template, Seahorse::Model::Operation.new.tap do |o|
@@ -27,6 +27,7 @@ module Aws::EMRContainers
27
27
  # See {Seahorse::Client::RequestContext} for more information.
28
28
  #
29
29
  # ## Error Classes
30
+ # * {EKSRequestThrottledException}
30
31
  # * {InternalServerException}
31
32
  # * {RequestThrottledException}
32
33
  # * {ResourceNotFoundException}
@@ -38,6 +39,21 @@ module Aws::EMRContainers
38
39
 
39
40
  extend Aws::Errors::DynamicErrors
40
41
 
42
+ class EKSRequestThrottledException < ServiceError
43
+
44
+ # @param [Seahorse::Client::RequestContext] context
45
+ # @param [String] message
46
+ # @param [Aws::EMRContainers::Types::EKSRequestThrottledException] data
47
+ def initialize(context, message, data = Aws::EmptyStructure.new)
48
+ super(context, message, data)
49
+ end
50
+
51
+ # @return [String]
52
+ def message
53
+ @message || @data[:message]
54
+ end
55
+ end
56
+
41
57
  class InternalServerException < ServiceError
42
58
 
43
59
  # @param [Seahorse::Client::RequestContext] context
@@ -617,6 +617,19 @@ module Aws::EMRContainers
617
617
  include Aws::Structure
618
618
  end
619
619
 
620
+ # The request exceeded the Amazon EKS API operation limits.
621
+ #
622
+ # @!attribute [rw] message
623
+ # @return [String]
624
+ #
625
+ # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/EKSRequestThrottledException AWS API Documentation
626
+ #
627
+ class EKSRequestThrottledException < Struct.new(
628
+ :message)
629
+ SENSITIVE = []
630
+ include Aws::Structure
631
+ end
632
+
620
633
  # The information about the Amazon EKS cluster.
621
634
  #
622
635
  # @!attribute [rw] namespace
@@ -1257,6 +1270,13 @@ module Aws::EMRContainers
1257
1270
  # The token for the next set of virtual clusters to return.
1258
1271
  # @return [String]
1259
1272
  #
1273
+ # @!attribute [rw] eks_access_entry_integrated
1274
+ # Optional Boolean that specifies whether the operation should return
1275
+ # the virtual clusters that have the access entry integration enabled
1276
+ # or disabled. If not specified, the operation returns all applicable
1277
+ # virtual clusters.
1278
+ # @return [Boolean]
1279
+ #
1260
1280
  # @see http://docs.aws.amazon.com/goto/WebAPI/emr-containers-2020-10-01/ListVirtualClustersRequest AWS API Documentation
1261
1281
  #
1262
1282
  class ListVirtualClustersRequest < Struct.new(
@@ -1266,7 +1286,8 @@ module Aws::EMRContainers
1266
1286
  :created_before,
1267
1287
  :states,
1268
1288
  :max_results,
1269
- :next_token)
1289
+ :next_token,
1290
+ :eks_access_entry_integrated)
1270
1291
  SENSITIVE = []
1271
1292
  include Aws::Structure
1272
1293
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-emrcontainers/customizations'
52
52
  # @!group service
53
53
  module Aws::EMRContainers
54
54
 
55
- GEM_VERSION = '1.31.0'
55
+ GEM_VERSION = '1.32.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -368,7 +368,8 @@ module Aws
368
368
  ?created_before: ::Time,
369
369
  ?states: Array[("RUNNING" | "TERMINATING" | "TERMINATED" | "ARRESTED")],
370
370
  ?max_results: ::Integer,
371
- ?next_token: ::String
371
+ ?next_token: ::String,
372
+ ?eks_access_entry_integrated: bool
372
373
  ) -> _ListVirtualClustersResponseSuccess
373
374
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVirtualClustersResponseSuccess
374
375
 
data/sig/errors.rbs CHANGED
@@ -11,6 +11,9 @@ module Aws
11
11
  class ServiceError < ::Aws::Errors::ServiceError
12
12
  end
13
13
 
14
+ class EKSRequestThrottledException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
14
17
  class InternalServerException < ::Aws::Errors::ServiceError
15
18
  def message: () -> ::String
16
19
  end
data/sig/types.rbs CHANGED
@@ -207,6 +207,11 @@ module Aws::EMRContainers
207
207
  SENSITIVE: []
208
208
  end
209
209
 
210
+ class EKSRequestThrottledException
211
+ attr_accessor message: ::String
212
+ SENSITIVE: []
213
+ end
214
+
210
215
  class EksInfo
211
216
  attr_accessor namespace: ::String
212
217
  SENSITIVE: []
@@ -374,6 +379,7 @@ module Aws::EMRContainers
374
379
  attr_accessor states: ::Array[("RUNNING" | "TERMINATING" | "TERMINATED" | "ARRESTED")]
375
380
  attr_accessor max_results: ::Integer
376
381
  attr_accessor next_token: ::String
382
+ attr_accessor eks_access_entry_integrated: bool
377
383
  SENSITIVE: []
378
384
  end
379
385
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-emrcontainers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.31.0
4
+ version: 1.32.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-03-25 00:00:00.000000000 Z
11
+ date: 2024-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core