aws-sdk-eks 1.82.0 → 1.84.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: d9b4968db51335c0c88c1ac88526deed1a9850f13561f520eb66f5569f3a81bb
4
- data.tar.gz: 17c49b9504cc4e2d489f0cbc070994ebdf5c6ea591c6c085ca4dd96f64585b0a
3
+ metadata.gz: 1f39db88ac18bcc20fb29c580802dab79b0dc112502e55126bd65a38a5463a04
4
+ data.tar.gz: 606d6c24313759450d9f807888dafab37bf85690f6cc533b81fce967ff82c8d6
5
5
  SHA512:
6
- metadata.gz: b06168d9390ba63e0d1a2548e19501e1e1a1d14cea873a9409147c4adc543569b9bfb9368b9cf4348577c98aa2630d52ecf677057409a70f651b11f212a44ccb
7
- data.tar.gz: 87a97a8efe3c5682d74e6469ebf933f0d4b55574ec4b9f38ccdd29810e7b3a7ac43188dab0ab69906552b0e9ba74c52174e4c076be2a5752ce7645b708cbcff5
6
+ metadata.gz: 528b019c81ab047c9098896c960bdd5a7e7eef26e203cafe225e18bd4da4bf27f833643121b4812606af9c877309258ba8d8437fda03af2e389cafaa807bcd18
7
+ data.tar.gz: 46e5084fbd66a1d256117258107c55c2e231e58b16ed53e33c140907b06e953cf7ef1a33555a76806269cff1bd699648e176ebc0ad4f29ffea61f001c27b08fe
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.84.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.83.0 (2023-01-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
15
+
4
16
  1.82.0 (2022-12-15)
5
17
  ------------------
6
18
 
@@ -420,4 +432,4 @@ Unreleased Changes
420
432
  1.0.0 (2018-06-04)
421
433
  ------------------
422
434
 
423
- * Feature - Initial release of `aws-sdk-eks`.
435
+ * Feature - Initial release of `aws-sdk-eks`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.82.0
1
+ 1.84.0
@@ -275,6 +275,11 @@ module Aws::EKS
275
275
  # in the future.
276
276
  #
277
277
  #
278
+ # @option options [String] :sdk_ua_app_id
279
+ # A unique and opaque application ID that is appended to the
280
+ # User-Agent header as app/<sdk_ua_app_id>. It should have a
281
+ # maximum length of 50.
282
+ #
278
283
  # @option options [String] :secret_access_key
279
284
  #
280
285
  # @option options [String] :session_token
@@ -3515,7 +3520,7 @@ module Aws::EKS
3515
3520
  params: params,
3516
3521
  config: config)
3517
3522
  context[:gem_name] = 'aws-sdk-eks'
3518
- context[:gem_version] = '1.82.0'
3523
+ context[:gem_version] = '1.84.0'
3519
3524
  Seahorse::Client::Request.new(handlers, context)
3520
3525
  end
3521
3526
 
@@ -9,112 +9,49 @@
9
9
 
10
10
  module Aws::EKS
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint)
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://eks-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.string_equals?("aws", Aws::Endpoints::Matchers.attr(partition_result, "name"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://fips.eks.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
39
+ return Aws::Endpoints::Endpoint.new(url: "https://eks.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
40
+ end
41
+ return Aws::Endpoints::Endpoint.new(url: "https://eks-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
44
+ end
45
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
46
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
47
+ return Aws::Endpoints::Endpoint.new(url: "https://eks.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
48
+ end
49
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
50
+ end
51
+ return Aws::Endpoints::Endpoint.new(url: "https://eks.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
52
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
53
+ raise ArgumentError, 'No endpoint could be resolved'
24
54
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
55
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
33
- YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
34
- ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
35
- aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
36
- ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
37
- IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
38
- bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
39
- aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
40
- IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
41
- IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
42
- aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
43
- Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
44
- cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
45
- bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
46
- YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
47
- bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
48
- ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
49
- IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
50
- b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
51
- ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
52
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
53
- c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfV0sInR5cGUiOiJ0
54
- cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
55
- dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJlcnJv
56
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRklQUyBhbmQgY3VzdG9tIGVu
57
- ZHBvaW50IGFyZSBub3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJj
58
- b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
59
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
60
- VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZp
61
- Z3VyYXRpb246IER1YWxzdGFjayBhbmQgY3VzdG9tIGVuZHBvaW50IGFyZSBu
62
- b3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJjb25kaXRpb25zIjpb
63
- XSwiZW5kcG9pbnQiOnsidXJsIjp7InJlZiI6IkVuZHBvaW50In0sInByb3Bl
64
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
65
- fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
66
- Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
67
- bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0
68
- eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
69
- b2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFy
70
- Z3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMi
71
- XX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
72
- OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
73
- InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
74
- IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
75
- Ly9la3MtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFj
76
- a0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0
77
- eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoi
78
- RklQUyBhbmQgRHVhbFN0YWNrIGFyZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0
79
- aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBvbmUgb3IgYm90aCIsInR5cGUiOiJl
80
- cnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
81
- LCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19XSwidHlwZSI6InRy
82
- ZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1
83
- YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJy
84
- ZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0
85
- eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbXSwidHlwZSI6
86
- InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJzdHJpbmdF
87
- cXVhbHMiLCJhcmd2IjpbImF3cyIseyJmbiI6ImdldEF0dHIiLCJhcmd2Ijpb
88
- eyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwibmFtZSJdfV19XSwiZW5kcG9p
89
- bnQiOnsidXJsIjoiaHR0cHM6Ly9maXBzLmVrcy57UmVnaW9ufS57UGFydGl0
90
- aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVy
91
- cyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifSx7ImNvbmRpdGlvbnMiOlt7ImZu
92
- Ijoic3RyaW5nRXF1YWxzIiwiYXJndiI6WyJhd3MtdXMtZ292Iix7ImZuIjoi
93
- Z2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJu
94
- YW1lIl19XX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Vrcy57UmVn
95
- aW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVz
96
- Ijp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifSx7ImNvbmRp
97
- dGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Vrcy1maXBz
98
- LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
99
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
100
- fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxlZCBi
101
- dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwidHlw
102
- ZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
103
- dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0s
104
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
105
- Ym9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwi
106
- YXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRHVh
107
- bFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
108
- b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9la3Mue1JlZ2lv
109
- bn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJv
110
- cGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1d
111
- fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFjayBpcyBlbmFi
112
- bGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IER1YWxT
113
- dGFjayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbXSwiZW5k
114
- cG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9la3Mue1JlZ2lvbn0ue1BhcnRpdGlv
115
- blJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMi
116
- Ont9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
117
-
118
- JSON
119
56
  end
120
57
  end
@@ -1818,26 +1818,26 @@ module Aws::EKS
1818
1818
  # @!attribute [rw] error_code
1819
1819
  # A brief description of the error.
1820
1820
  #
1821
- # * **SubnetNotFound**\: We couldn't find one of the subnets
1821
+ # * **SubnetNotFound**: We couldn't find one of the subnets
1822
1822
  # associated with the cluster.
1823
1823
  #
1824
- # * **SecurityGroupNotFound**\: We couldn't find one of the security
1824
+ # * **SecurityGroupNotFound**: We couldn't find one of the security
1825
1825
  # groups associated with the cluster.
1826
1826
  #
1827
- # * **EniLimitReached**\: You have reached the elastic network
1827
+ # * **EniLimitReached**: You have reached the elastic network
1828
1828
  # interface limit for your account.
1829
1829
  #
1830
- # * **IpNotAvailable**\: A subnet associated with the cluster doesn't
1830
+ # * **IpNotAvailable**: A subnet associated with the cluster doesn't
1831
1831
  # have any free IP addresses.
1832
1832
  #
1833
- # * **AccessDenied**\: You don't have permissions to perform the
1833
+ # * **AccessDenied**: You don't have permissions to perform the
1834
1834
  # specified operation.
1835
1835
  #
1836
- # * **OperationNotPermitted**\: The service role associated with the
1836
+ # * **OperationNotPermitted**: The service role associated with the
1837
1837
  # cluster doesn't have the required access permissions for Amazon
1838
1838
  # EKS.
1839
1839
  #
1840
- # * **VpcIdNotFound**\: We couldn't find the VPC associated with the
1840
+ # * **VpcIdNotFound**: We couldn't find the VPC associated with the
1841
1841
  # cluster.
1842
1842
  # @return [String]
1843
1843
  #
@@ -2068,39 +2068,39 @@ module Aws::EKS
2068
2068
  # @!attribute [rw] code
2069
2069
  # A brief description of the error.
2070
2070
  #
2071
- # * **AccessDenied**\: Amazon EKS or one or more of your managed nodes
2071
+ # * **AccessDenied**: Amazon EKS or one or more of your managed nodes
2072
2072
  # is failing to authenticate or authorize with your Kubernetes
2073
2073
  # cluster API server.
2074
2074
  #
2075
- # * **AsgInstanceLaunchFailures**\: Your Auto Scaling group is
2075
+ # * **AsgInstanceLaunchFailures**: Your Auto Scaling group is
2076
2076
  # experiencing failures while attempting to launch instances.
2077
2077
  #
2078
- # * **AutoScalingGroupNotFound**\: We couldn't find the Auto Scaling
2078
+ # * **AutoScalingGroupNotFound**: We couldn't find the Auto Scaling
2079
2079
  # group associated with the managed node group. You may be able to
2080
2080
  # recreate an Auto Scaling group with the same settings to recover.
2081
2081
  #
2082
- # * **ClusterUnreachable**\: Amazon EKS or one or more of your managed
2082
+ # * **ClusterUnreachable**: Amazon EKS or one or more of your managed
2083
2083
  # nodes is unable to to communicate with your Kubernetes cluster API
2084
2084
  # server. This can happen if there are network disruptions or if API
2085
2085
  # servers are timing out processing requests.
2086
2086
  #
2087
- # * **Ec2LaunchTemplateNotFound**\: We couldn't find the Amazon EC2
2087
+ # * **Ec2LaunchTemplateNotFound**: We couldn't find the Amazon EC2
2088
2088
  # launch template for your managed node group. You may be able to
2089
2089
  # recreate a launch template with the same settings to recover.
2090
2090
  #
2091
- # * **Ec2LaunchTemplateVersionMismatch**\: The Amazon EC2 launch
2091
+ # * **Ec2LaunchTemplateVersionMismatch**: The Amazon EC2 launch
2092
2092
  # template version for your managed node group does not match the
2093
2093
  # version that Amazon EKS created. You may be able to revert to the
2094
2094
  # version that Amazon EKS created to recover.
2095
2095
  #
2096
- # * **Ec2SecurityGroupDeletionFailure**\: We could not delete the
2096
+ # * **Ec2SecurityGroupDeletionFailure**: We could not delete the
2097
2097
  # remote access security group for your managed node group. Remove
2098
2098
  # any dependencies from the security group.
2099
2099
  #
2100
- # * **Ec2SecurityGroupNotFound**\: We couldn't find the cluster
2100
+ # * **Ec2SecurityGroupNotFound**: We couldn't find the cluster
2101
2101
  # security group for the cluster. You must recreate your cluster.
2102
2102
  #
2103
- # * **Ec2SubnetInvalidConfiguration**\: One or more Amazon EC2 subnets
2103
+ # * **Ec2SubnetInvalidConfiguration**: One or more Amazon EC2 subnets
2104
2104
  # specified for a node group do not automatically assign public IP
2105
2105
  # addresses to instances launched into it. If you want your
2106
2106
  # instances to be assigned a public IP address, then you need to
@@ -2108,27 +2108,27 @@ module Aws::EKS
2108
2108
  # See [Modifying the public IPv4 addressing attribute for your
2109
2109
  # subnet][1] in the *Amazon VPC User Guide*.
2110
2110
  #
2111
- # * **IamInstanceProfileNotFound**\: We couldn't find the IAM
2112
- # instance profile for your managed node group. You may be able to
2113
- # recreate an instance profile with the same settings to recover.
2111
+ # * **IamInstanceProfileNotFound**: We couldn't find the IAM instance
2112
+ # profile for your managed node group. You may be able to recreate
2113
+ # an instance profile with the same settings to recover.
2114
2114
  #
2115
- # * **IamNodeRoleNotFound**\: We couldn't find the IAM role for your
2115
+ # * **IamNodeRoleNotFound**: We couldn't find the IAM role for your
2116
2116
  # managed node group. You may be able to recreate an IAM role with
2117
2117
  # the same settings to recover.
2118
2118
  #
2119
- # * **InstanceLimitExceeded**\: Your Amazon Web Services account is
2119
+ # * **InstanceLimitExceeded**: Your Amazon Web Services account is
2120
2120
  # unable to launch any more instances of the specified instance
2121
2121
  # type. You may be able to request an Amazon EC2 instance limit
2122
2122
  # increase to recover.
2123
2123
  #
2124
- # * **InsufficientFreeAddresses**\: One or more of the subnets
2124
+ # * **InsufficientFreeAddresses**: One or more of the subnets
2125
2125
  # associated with your managed node group does not have enough
2126
2126
  # available IP addresses for new nodes.
2127
2127
  #
2128
- # * **InternalFailure**\: These errors are usually caused by an Amazon
2128
+ # * **InternalFailure**: These errors are usually caused by an Amazon
2129
2129
  # EKS server-side issue.
2130
2130
  #
2131
- # * **NodeCreationFailure**\: Your launched instances are unable to
2131
+ # * **NodeCreationFailure**: Your launched instances are unable to
2132
2132
  # register with your Amazon EKS cluster. Common causes of this
2133
2133
  # failure are insufficient [node IAM role][2] permissions or lack of
2134
2134
  # outbound internet access for the nodes.
data/lib/aws-sdk-eks.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-eks/customizations'
53
53
  # @!group service
54
54
  module Aws::EKS
55
55
 
56
- GEM_VERSION = '1.82.0'
56
+ GEM_VERSION = '1.84.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-eks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.82.0
4
+ version: 1.84.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: 2022-12-15 00:00:00.000000000 Z
11
+ date: 2023-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.165.0
22
+ version: 3.174.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement