aws-sdk-eks 1.130.0 → 1.132.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +49 -13
- data/lib/aws-sdk-eks/client_api.rb +26 -0
- data/lib/aws-sdk-eks/errors.rb +42 -0
- data/lib/aws-sdk-eks/types.rb +91 -7
- data/lib/aws-sdk-eks.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/errors.rbs +8 -0
- data/sig/types.rbs +20 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b2914199a8a84770122635f8c61ac9f4cb94af14c3776bd808a9876c66f60b9
|
4
|
+
data.tar.gz: d39dd20d613503df81bbe263153ec7010bbbb4d27ab94337b8923ca4cc2ca24c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d18c8f2f5ee54c9c2c6dc0931b92020e412bfec24df0aa290eae1f98231348f59818e452a3cc90a6a96d4dd9ae64e69ed4edc2df0f597762c98e9656711f382
|
7
|
+
data.tar.gz: 9d6dc9895941802b5e807565caec45f65b52a1ec528494ebf37567f1f9988175b0aee3aa9375b304f0c8721c99f76b06106dfad848cd3f75ff78312b22b6ba17
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.132.0 (2025-03-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added support to override upgrade-blocking readiness checks via force flag when updating a cluster.
|
8
|
+
|
9
|
+
1.131.0 (2025-02-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adding licenses to EKS Anywhere Subscription operations response.
|
13
|
+
|
4
14
|
1.130.0 (2025-02-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.132.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -1471,6 +1471,9 @@ module Aws::EKS
|
|
1471
1471
|
# resp.subscription.auto_renew #=> Boolean
|
1472
1472
|
# resp.subscription.license_arns #=> Array
|
1473
1473
|
# resp.subscription.license_arns[0] #=> String
|
1474
|
+
# resp.subscription.licenses #=> Array
|
1475
|
+
# resp.subscription.licenses[0].id #=> String
|
1476
|
+
# resp.subscription.licenses[0].token #=> String
|
1474
1477
|
# resp.subscription.tags #=> Hash
|
1475
1478
|
# resp.subscription.tags["TagKey"] #=> String
|
1476
1479
|
#
|
@@ -1627,8 +1630,15 @@ module Aws::EKS
|
|
1627
1630
|
# current Kubernetes version for the cluster. All node groups are
|
1628
1631
|
# created with the latest AMI release version for the respective minor
|
1629
1632
|
# Kubernetes version of the cluster, unless you deploy a custom AMI
|
1630
|
-
# using a launch template.
|
1631
|
-
#
|
1633
|
+
# using a launch template.
|
1634
|
+
#
|
1635
|
+
# For later updates, you will only be able to update a node group using
|
1636
|
+
# a launch template only if it was originally deployed with a launch
|
1637
|
+
# template. Additionally, the launch template ID or name must match what
|
1638
|
+
# was used when the node group was created. You can update the launch
|
1639
|
+
# template version with necessary changes. For more information about
|
1640
|
+
# using launch templates, see [Customizing managed nodes with launch
|
1641
|
+
# templates][1].
|
1632
1642
|
#
|
1633
1643
|
# An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group
|
1634
1644
|
# and associated Amazon EC2 instances that are managed by Amazon Web
|
@@ -1772,10 +1782,13 @@ module Aws::EKS
|
|
1772
1782
|
# @option params [Types::LaunchTemplateSpecification] :launch_template
|
1773
1783
|
# An object representing a node group's launch template specification.
|
1774
1784
|
# When using this object, don't directly specify `instanceTypes`,
|
1775
|
-
# `diskSize`, or `remoteAccess`.
|
1776
|
-
#
|
1777
|
-
#
|
1778
|
-
#
|
1785
|
+
# `diskSize`, or `remoteAccess`. You cannot later specify a different
|
1786
|
+
# launch template ID or name than what was used to create the node
|
1787
|
+
# group.
|
1788
|
+
#
|
1789
|
+
# Make sure that the launch template meets the requirements in
|
1790
|
+
# `launchTemplateSpecification`. Also refer to [Customizing managed
|
1791
|
+
# nodes with launch templates][1] in the *Amazon EKS User Guide*.
|
1779
1792
|
#
|
1780
1793
|
#
|
1781
1794
|
#
|
@@ -2304,6 +2317,9 @@ module Aws::EKS
|
|
2304
2317
|
# resp.subscription.auto_renew #=> Boolean
|
2305
2318
|
# resp.subscription.license_arns #=> Array
|
2306
2319
|
# resp.subscription.license_arns[0] #=> String
|
2320
|
+
# resp.subscription.licenses #=> Array
|
2321
|
+
# resp.subscription.licenses[0].id #=> String
|
2322
|
+
# resp.subscription.licenses[0].token #=> String
|
2307
2323
|
# resp.subscription.tags #=> Hash
|
2308
2324
|
# resp.subscription.tags["TagKey"] #=> String
|
2309
2325
|
#
|
@@ -3105,6 +3121,9 @@ module Aws::EKS
|
|
3105
3121
|
# resp.subscription.auto_renew #=> Boolean
|
3106
3122
|
# resp.subscription.license_arns #=> Array
|
3107
3123
|
# resp.subscription.license_arns[0] #=> String
|
3124
|
+
# resp.subscription.licenses #=> Array
|
3125
|
+
# resp.subscription.licenses[0].id #=> String
|
3126
|
+
# resp.subscription.licenses[0].token #=> String
|
3108
3127
|
# resp.subscription.tags #=> Hash
|
3109
3128
|
# resp.subscription.tags["TagKey"] #=> String
|
3110
3129
|
#
|
@@ -3943,6 +3962,9 @@ module Aws::EKS
|
|
3943
3962
|
# resp.subscriptions[0].auto_renew #=> Boolean
|
3944
3963
|
# resp.subscriptions[0].license_arns #=> Array
|
3945
3964
|
# resp.subscriptions[0].license_arns[0] #=> String
|
3965
|
+
# resp.subscriptions[0].licenses #=> Array
|
3966
|
+
# resp.subscriptions[0].licenses[0].id #=> String
|
3967
|
+
# resp.subscriptions[0].licenses[0].token #=> String
|
3946
3968
|
# resp.subscriptions[0].tags #=> Hash
|
3947
3969
|
# resp.subscriptions[0].tags["TagKey"] #=> String
|
3948
3970
|
# resp.next_token #=> String
|
@@ -5043,6 +5065,10 @@ module Aws::EKS
|
|
5043
5065
|
# **A suitable default value is auto-generated.** You should normally
|
5044
5066
|
# not need to pass this option.**
|
5045
5067
|
#
|
5068
|
+
# @option params [Boolean] :force
|
5069
|
+
# Set this value to `true` to override upgrade-blocking readiness checks
|
5070
|
+
# when updating a cluster.
|
5071
|
+
#
|
5046
5072
|
# @return [Types::UpdateClusterVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5047
5073
|
#
|
5048
5074
|
# * {Types::UpdateClusterVersionResponse#update #update} => Types::Update
|
@@ -5053,6 +5079,7 @@ module Aws::EKS
|
|
5053
5079
|
# name: "String", # required
|
5054
5080
|
# version: "String", # required
|
5055
5081
|
# client_request_token: "String",
|
5082
|
+
# force: false,
|
5056
5083
|
# })
|
5057
5084
|
#
|
5058
5085
|
# @example Response structure
|
@@ -5123,6 +5150,9 @@ module Aws::EKS
|
|
5123
5150
|
# resp.subscription.auto_renew #=> Boolean
|
5124
5151
|
# resp.subscription.license_arns #=> Array
|
5125
5152
|
# resp.subscription.license_arns[0] #=> String
|
5153
|
+
# resp.subscription.licenses #=> Array
|
5154
|
+
# resp.subscription.licenses[0].id #=> String
|
5155
|
+
# resp.subscription.licenses[0].token #=> String
|
5126
5156
|
# resp.subscription.tags #=> Hash
|
5127
5157
|
# resp.subscription.tags["TagKey"] #=> String
|
5128
5158
|
#
|
@@ -5257,11 +5287,15 @@ module Aws::EKS
|
|
5257
5287
|
# node group.
|
5258
5288
|
#
|
5259
5289
|
# You can update a node group using a launch template only if the node
|
5260
|
-
# group was originally deployed with a launch template.
|
5261
|
-
#
|
5262
|
-
#
|
5263
|
-
#
|
5264
|
-
#
|
5290
|
+
# group was originally deployed with a launch template. Additionally,
|
5291
|
+
# the launch template ID or name must match what was used when the node
|
5292
|
+
# group was created. You can update the launch template version with
|
5293
|
+
# necessary changes.
|
5294
|
+
#
|
5295
|
+
# If you need to update a custom AMI in a node group that was deployed
|
5296
|
+
# with a launch template, then update your custom AMI, specify the new
|
5297
|
+
# ID in a new version of the launch template, and then update the node
|
5298
|
+
# group to the new version of the launch template.
|
5265
5299
|
#
|
5266
5300
|
# If you update without a launch template, then you can update to the
|
5267
5301
|
# latest available AMI version of a node group's current Kubernetes
|
@@ -5333,7 +5367,9 @@ module Aws::EKS
|
|
5333
5367
|
# @option params [Types::LaunchTemplateSpecification] :launch_template
|
5334
5368
|
# An object representing a node group's launch template specification.
|
5335
5369
|
# You can only update a node group using a launch template if the node
|
5336
|
-
# group was originally deployed with a launch template.
|
5370
|
+
# group was originally deployed with a launch template. When updating,
|
5371
|
+
# you must specify the same launch template ID or name that was used to
|
5372
|
+
# create the node group.
|
5337
5373
|
#
|
5338
5374
|
# @option params [Boolean] :force
|
5339
5375
|
# Force the update if any `Pod` on the existing node group can't be
|
@@ -5469,7 +5505,7 @@ module Aws::EKS
|
|
5469
5505
|
tracer: tracer
|
5470
5506
|
)
|
5471
5507
|
context[:gem_name] = 'aws-sdk-eks'
|
5472
|
-
context[:gem_version] = '1.
|
5508
|
+
context[:gem_version] = '1.132.0'
|
5473
5509
|
Seahorse::Client::Request.new(handlers, context)
|
5474
5510
|
end
|
5475
5511
|
|
@@ -189,12 +189,15 @@ module Aws::EKS
|
|
189
189
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
190
190
|
InvalidParameterException = Shapes::StructureShape.new(name: 'InvalidParameterException')
|
191
191
|
InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
|
192
|
+
InvalidStateException = Shapes::StructureShape.new(name: 'InvalidStateException')
|
192
193
|
IpFamily = Shapes::StringShape.new(name: 'IpFamily')
|
193
194
|
Issue = Shapes::StructureShape.new(name: 'Issue')
|
194
195
|
IssueList = Shapes::ListShape.new(name: 'IssueList')
|
195
196
|
KubernetesNetworkConfigRequest = Shapes::StructureShape.new(name: 'KubernetesNetworkConfigRequest')
|
196
197
|
KubernetesNetworkConfigResponse = Shapes::StructureShape.new(name: 'KubernetesNetworkConfigResponse')
|
197
198
|
LaunchTemplateSpecification = Shapes::StructureShape.new(name: 'LaunchTemplateSpecification')
|
199
|
+
License = Shapes::StructureShape.new(name: 'License')
|
200
|
+
LicenseList = Shapes::ListShape.new(name: 'LicenseList')
|
198
201
|
ListAccessEntriesRequest = Shapes::StructureShape.new(name: 'ListAccessEntriesRequest')
|
199
202
|
ListAccessEntriesRequestMaxResults = Shapes::IntegerShape.new(name: 'ListAccessEntriesRequestMaxResults')
|
200
203
|
ListAccessEntriesResponse = Shapes::StructureShape.new(name: 'ListAccessEntriesResponse')
|
@@ -289,6 +292,7 @@ module Aws::EKS
|
|
289
292
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
290
293
|
Taint = Shapes::StructureShape.new(name: 'Taint')
|
291
294
|
TaintEffect = Shapes::StringShape.new(name: 'TaintEffect')
|
295
|
+
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
292
296
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
293
297
|
UnsupportedAvailabilityZoneException = Shapes::StructureShape.new(name: 'UnsupportedAvailabilityZoneException')
|
294
298
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
@@ -893,6 +897,7 @@ module Aws::EKS
|
|
893
897
|
EksAnywhereSubscription.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "status"))
|
894
898
|
EksAnywhereSubscription.add_member(:auto_renew, Shapes::ShapeRef.new(shape: Boolean, location_name: "autoRenew"))
|
895
899
|
EksAnywhereSubscription.add_member(:license_arns, Shapes::ShapeRef.new(shape: StringList, location_name: "licenseArns"))
|
900
|
+
EksAnywhereSubscription.add_member(:licenses, Shapes::ShapeRef.new(shape: LicenseList, location_name: "licenses"))
|
896
901
|
EksAnywhereSubscription.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
897
902
|
EksAnywhereSubscription.struct_class = Types::EksAnywhereSubscription
|
898
903
|
|
@@ -1028,6 +1033,10 @@ module Aws::EKS
|
|
1028
1033
|
InvalidRequestException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
1029
1034
|
InvalidRequestException.struct_class = Types::InvalidRequestException
|
1030
1035
|
|
1036
|
+
InvalidStateException.add_member(:cluster_name, Shapes::ShapeRef.new(shape: String, location_name: "clusterName"))
|
1037
|
+
InvalidStateException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
1038
|
+
InvalidStateException.struct_class = Types::InvalidStateException
|
1039
|
+
|
1031
1040
|
Issue.add_member(:code, Shapes::ShapeRef.new(shape: NodegroupIssueCode, location_name: "code"))
|
1032
1041
|
Issue.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
1033
1042
|
Issue.add_member(:resource_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "resourceIds"))
|
@@ -1051,6 +1060,12 @@ module Aws::EKS
|
|
1051
1060
|
LaunchTemplateSpecification.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "id"))
|
1052
1061
|
LaunchTemplateSpecification.struct_class = Types::LaunchTemplateSpecification
|
1053
1062
|
|
1063
|
+
License.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "id"))
|
1064
|
+
License.add_member(:token, Shapes::ShapeRef.new(shape: String, location_name: "token"))
|
1065
|
+
License.struct_class = Types::License
|
1066
|
+
|
1067
|
+
LicenseList.member = Shapes::ShapeRef.new(shape: License)
|
1068
|
+
|
1054
1069
|
ListAccessEntriesRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "name"))
|
1055
1070
|
ListAccessEntriesRequest.add_member(:associated_policy_arn, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "associatedPolicyArn"))
|
1056
1071
|
ListAccessEntriesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListAccessEntriesRequestMaxResults, location: "querystring", location_name: "maxResults"))
|
@@ -1387,6 +1402,10 @@ module Aws::EKS
|
|
1387
1402
|
Taint.add_member(:effect, Shapes::ShapeRef.new(shape: TaintEffect, location_name: "effect"))
|
1388
1403
|
Taint.struct_class = Types::Taint
|
1389
1404
|
|
1405
|
+
ThrottlingException.add_member(:cluster_name, Shapes::ShapeRef.new(shape: String, location_name: "clusterName"))
|
1406
|
+
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
1407
|
+
ThrottlingException.struct_class = Types::ThrottlingException
|
1408
|
+
|
1390
1409
|
UnsupportedAvailabilityZoneException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
1391
1410
|
UnsupportedAvailabilityZoneException.add_member(:cluster_name, Shapes::ShapeRef.new(shape: String, location_name: "clusterName"))
|
1392
1411
|
UnsupportedAvailabilityZoneException.add_member(:nodegroup_name, Shapes::ShapeRef.new(shape: String, location_name: "nodegroupName"))
|
@@ -1451,6 +1470,7 @@ module Aws::EKS
|
|
1451
1470
|
UpdateClusterVersionRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "name"))
|
1452
1471
|
UpdateClusterVersionRequest.add_member(:version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "version"))
|
1453
1472
|
UpdateClusterVersionRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: String, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
|
1473
|
+
UpdateClusterVersionRequest.add_member(:force, Shapes::ShapeRef.new(shape: Boolean, location_name: "force"))
|
1454
1474
|
UpdateClusterVersionRequest.struct_class = Types::UpdateClusterVersionRequest
|
1455
1475
|
|
1456
1476
|
UpdateClusterVersionResponse.add_member(:update, Shapes::ShapeRef.new(shape: Update, location_name: "update"))
|
@@ -1595,6 +1615,7 @@ module Aws::EKS
|
|
1595
1615
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1596
1616
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1597
1617
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1618
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1598
1619
|
end)
|
1599
1620
|
|
1600
1621
|
api.add_operation(:associate_identity_provider_config, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1609,6 +1630,7 @@ module Aws::EKS
|
|
1609
1630
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1610
1631
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1611
1632
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1633
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1612
1634
|
end)
|
1613
1635
|
|
1614
1636
|
api.add_operation(:create_access_entry, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2001,6 +2023,7 @@ module Aws::EKS
|
|
2001
2023
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
2002
2024
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2003
2025
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2026
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2004
2027
|
end)
|
2005
2028
|
|
2006
2029
|
api.add_operation(:list_access_entries, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2302,6 +2325,7 @@ module Aws::EKS
|
|
2302
2325
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
2303
2326
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2304
2327
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2328
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2305
2329
|
end)
|
2306
2330
|
|
2307
2331
|
api.add_operation(:update_cluster_version, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2316,6 +2340,8 @@ module Aws::EKS
|
|
2316
2340
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
2317
2341
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2318
2342
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2343
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2344
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
2319
2345
|
end)
|
2320
2346
|
|
2321
2347
|
api.add_operation(:update_eks_anywhere_subscription, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-eks/errors.rb
CHANGED
@@ -32,6 +32,7 @@ module Aws::EKS
|
|
32
32
|
# * {ClientException}
|
33
33
|
# * {InvalidParameterException}
|
34
34
|
# * {InvalidRequestException}
|
35
|
+
# * {InvalidStateException}
|
35
36
|
# * {NotFoundException}
|
36
37
|
# * {ResourceInUseException}
|
37
38
|
# * {ResourceLimitExceededException}
|
@@ -39,6 +40,7 @@ module Aws::EKS
|
|
39
40
|
# * {ResourcePropagationDelayException}
|
40
41
|
# * {ServerException}
|
41
42
|
# * {ServiceUnavailableException}
|
43
|
+
# * {ThrottlingException}
|
42
44
|
# * {UnsupportedAvailabilityZoneException}
|
43
45
|
#
|
44
46
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
@@ -187,6 +189,26 @@ module Aws::EKS
|
|
187
189
|
end
|
188
190
|
end
|
189
191
|
|
192
|
+
class InvalidStateException < ServiceError
|
193
|
+
|
194
|
+
# @param [Seahorse::Client::RequestContext] context
|
195
|
+
# @param [String] message
|
196
|
+
# @param [Aws::EKS::Types::InvalidStateException] data
|
197
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
198
|
+
super(context, message, data)
|
199
|
+
end
|
200
|
+
|
201
|
+
# @return [String]
|
202
|
+
def cluster_name
|
203
|
+
@data[:cluster_name]
|
204
|
+
end
|
205
|
+
|
206
|
+
# @return [String]
|
207
|
+
def message
|
208
|
+
@message || @data[:message]
|
209
|
+
end
|
210
|
+
end
|
211
|
+
|
190
212
|
class NotFoundException < ServiceError
|
191
213
|
|
192
214
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -367,6 +389,26 @@ module Aws::EKS
|
|
367
389
|
end
|
368
390
|
end
|
369
391
|
|
392
|
+
class ThrottlingException < ServiceError
|
393
|
+
|
394
|
+
# @param [Seahorse::Client::RequestContext] context
|
395
|
+
# @param [String] message
|
396
|
+
# @param [Aws::EKS::Types::ThrottlingException] data
|
397
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
398
|
+
super(context, message, data)
|
399
|
+
end
|
400
|
+
|
401
|
+
# @return [String]
|
402
|
+
def cluster_name
|
403
|
+
@data[:cluster_name]
|
404
|
+
end
|
405
|
+
|
406
|
+
# @return [String]
|
407
|
+
def message
|
408
|
+
@message || @data[:message]
|
409
|
+
end
|
410
|
+
end
|
411
|
+
|
370
412
|
class UnsupportedAvailabilityZoneException < ServiceError
|
371
413
|
|
372
414
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -2068,8 +2068,11 @@ module Aws::EKS
|
|
2068
2068
|
# @!attribute [rw] launch_template
|
2069
2069
|
# An object representing a node group's launch template
|
2070
2070
|
# specification. When using this object, don't directly specify
|
2071
|
-
# `instanceTypes`, `diskSize`, or `remoteAccess`.
|
2072
|
-
# launch template
|
2071
|
+
# `instanceTypes`, `diskSize`, or `remoteAccess`. You cannot later
|
2072
|
+
# specify a different launch template ID or name than what was used to
|
2073
|
+
# create the node group.
|
2074
|
+
#
|
2075
|
+
# Make sure that the launch template meets the requirements in
|
2073
2076
|
# `launchTemplateSpecification`. Also refer to [Customizing managed
|
2074
2077
|
# nodes with launch templates][1] in the *Amazon EKS User Guide*.
|
2075
2078
|
#
|
@@ -3169,6 +3172,11 @@ module Aws::EKS
|
|
3169
3172
|
# subscription.
|
3170
3173
|
# @return [Array<String>]
|
3171
3174
|
#
|
3175
|
+
# @!attribute [rw] licenses
|
3176
|
+
# Includes all of the claims in the license token necessary to
|
3177
|
+
# validate the license for extended support.
|
3178
|
+
# @return [Array<Types::License>]
|
3179
|
+
#
|
3172
3180
|
# @!attribute [rw] tags
|
3173
3181
|
# The metadata for a subscription to assist with categorization and
|
3174
3182
|
# organization. Each tag consists of a key and an optional value.
|
@@ -3190,6 +3198,7 @@ module Aws::EKS
|
|
3190
3198
|
:status,
|
3191
3199
|
:auto_renew,
|
3192
3200
|
:license_arns,
|
3201
|
+
:licenses,
|
3193
3202
|
:tags)
|
3194
3203
|
SENSITIVE = []
|
3195
3204
|
include Aws::Structure
|
@@ -3789,6 +3798,32 @@ module Aws::EKS
|
|
3789
3798
|
include Aws::Structure
|
3790
3799
|
end
|
3791
3800
|
|
3801
|
+
# Amazon EKS detected upgrade readiness issues. Call the [
|
3802
|
+
# `ListInsights` ][1] API to view detected upgrade blocking issues. Pass
|
3803
|
+
# the [ `force` ][2] flag when updating to override upgrade readiness
|
3804
|
+
# errors.
|
3805
|
+
#
|
3806
|
+
#
|
3807
|
+
#
|
3808
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_ListInsights.html
|
3809
|
+
# [2]: https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateClusterVersion.html#API_UpdateClusterVersion_RequestBody
|
3810
|
+
#
|
3811
|
+
# @!attribute [rw] cluster_name
|
3812
|
+
# The Amazon EKS cluster associated with the exception.
|
3813
|
+
# @return [String]
|
3814
|
+
#
|
3815
|
+
# @!attribute [rw] message
|
3816
|
+
# @return [String]
|
3817
|
+
#
|
3818
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/InvalidStateException AWS API Documentation
|
3819
|
+
#
|
3820
|
+
class InvalidStateException < Struct.new(
|
3821
|
+
:cluster_name,
|
3822
|
+
:message)
|
3823
|
+
SENSITIVE = []
|
3824
|
+
include Aws::Structure
|
3825
|
+
end
|
3826
|
+
|
3792
3827
|
# An object representing an issue with an Amazon EKS resource.
|
3793
3828
|
#
|
3794
3829
|
# @!attribute [rw] code
|
@@ -4026,19 +4061,22 @@ module Aws::EKS
|
|
4026
4061
|
# The name of the launch template.
|
4027
4062
|
#
|
4028
4063
|
# You must specify either the launch template name or the launch
|
4029
|
-
# template ID in the request, but not both.
|
4064
|
+
# template ID in the request, but not both. After node group creation,
|
4065
|
+
# you cannot use a different name.
|
4030
4066
|
# @return [String]
|
4031
4067
|
#
|
4032
4068
|
# @!attribute [rw] version
|
4033
4069
|
# The version number of the launch template to use. If no version is
|
4034
|
-
# specified, then the template's default version is used.
|
4070
|
+
# specified, then the template's default version is used. You can use
|
4071
|
+
# a different version for node group updates.
|
4035
4072
|
# @return [String]
|
4036
4073
|
#
|
4037
4074
|
# @!attribute [rw] id
|
4038
4075
|
# The ID of the launch template.
|
4039
4076
|
#
|
4040
4077
|
# You must specify either the launch template ID or the launch
|
4041
|
-
# template name in the request, but not both.
|
4078
|
+
# template name in the request, but not both. After node group
|
4079
|
+
# creation, you cannot use a different ID.
|
4042
4080
|
# @return [String]
|
4043
4081
|
#
|
4044
4082
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/LaunchTemplateSpecification AWS API Documentation
|
@@ -4051,6 +4089,26 @@ module Aws::EKS
|
|
4051
4089
|
include Aws::Structure
|
4052
4090
|
end
|
4053
4091
|
|
4092
|
+
# An EKS Anywhere license associated with a subscription.
|
4093
|
+
#
|
4094
|
+
# @!attribute [rw] id
|
4095
|
+
# An id associated with an EKS Anywhere subscription license.
|
4096
|
+
# @return [String]
|
4097
|
+
#
|
4098
|
+
# @!attribute [rw] token
|
4099
|
+
# An optional license token that can be used for extended support
|
4100
|
+
# verification.
|
4101
|
+
# @return [String]
|
4102
|
+
#
|
4103
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/License AWS API Documentation
|
4104
|
+
#
|
4105
|
+
class License < Struct.new(
|
4106
|
+
:id,
|
4107
|
+
:token)
|
4108
|
+
SENSITIVE = []
|
4109
|
+
include Aws::Structure
|
4110
|
+
end
|
4111
|
+
|
4054
4112
|
# @!attribute [rw] cluster_name
|
4055
4113
|
# The name of your cluster.
|
4056
4114
|
# @return [String]
|
@@ -6335,6 +6393,25 @@ module Aws::EKS
|
|
6335
6393
|
include Aws::Structure
|
6336
6394
|
end
|
6337
6395
|
|
6396
|
+
# The request or operation couldn't be performed because a service is
|
6397
|
+
# throttling requests.
|
6398
|
+
#
|
6399
|
+
# @!attribute [rw] cluster_name
|
6400
|
+
# The Amazon EKS cluster associated with the exception.
|
6401
|
+
# @return [String]
|
6402
|
+
#
|
6403
|
+
# @!attribute [rw] message
|
6404
|
+
# @return [String]
|
6405
|
+
#
|
6406
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ThrottlingException AWS API Documentation
|
6407
|
+
#
|
6408
|
+
class ThrottlingException < Struct.new(
|
6409
|
+
:cluster_name,
|
6410
|
+
:message)
|
6411
|
+
SENSITIVE = []
|
6412
|
+
include Aws::Structure
|
6413
|
+
end
|
6414
|
+
|
6338
6415
|
# At least one of your specified cluster subnets is in an Availability
|
6339
6416
|
# Zone that does not support Amazon EKS. The exception output specifies
|
6340
6417
|
# the supported Availability Zones for your account, from which you can
|
@@ -6774,12 +6851,18 @@ module Aws::EKS
|
|
6774
6851
|
# not need to pass this option.
|
6775
6852
|
# @return [String]
|
6776
6853
|
#
|
6854
|
+
# @!attribute [rw] force
|
6855
|
+
# Set this value to `true` to override upgrade-blocking readiness
|
6856
|
+
# checks when updating a cluster.
|
6857
|
+
# @return [Boolean]
|
6858
|
+
#
|
6777
6859
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/UpdateClusterVersionRequest AWS API Documentation
|
6778
6860
|
#
|
6779
6861
|
class UpdateClusterVersionRequest < Struct.new(
|
6780
6862
|
:name,
|
6781
6863
|
:version,
|
6782
|
-
:client_request_token
|
6864
|
+
:client_request_token,
|
6865
|
+
:force)
|
6783
6866
|
SENSITIVE = []
|
6784
6867
|
include Aws::Structure
|
6785
6868
|
end
|
@@ -6977,7 +7060,8 @@ module Aws::EKS
|
|
6977
7060
|
# An object representing a node group's launch template
|
6978
7061
|
# specification. You can only update a node group using a launch
|
6979
7062
|
# template if the node group was originally deployed with a launch
|
6980
|
-
# template.
|
7063
|
+
# template. When updating, you must specify the same launch template
|
7064
|
+
# ID or name that was used to create the node group.
|
6981
7065
|
# @return [Types::LaunchTemplateSpecification]
|
6982
7066
|
#
|
6983
7067
|
# @!attribute [rw] force
|
data/lib/aws-sdk-eks.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -949,7 +949,8 @@ module Aws
|
|
949
949
|
def update_cluster_version: (
|
950
950
|
name: ::String,
|
951
951
|
version: ::String,
|
952
|
-
?client_request_token: ::String
|
952
|
+
?client_request_token: ::String,
|
953
|
+
?force: bool
|
953
954
|
) -> _UpdateClusterVersionResponseSuccess
|
954
955
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterVersionResponseSuccess
|
955
956
|
|
data/sig/errors.rbs
CHANGED
@@ -39,6 +39,10 @@ module Aws
|
|
39
39
|
def subscription_id: () -> ::String
|
40
40
|
def message: () -> ::String
|
41
41
|
end
|
42
|
+
class InvalidStateException < ::Aws::Errors::ServiceError
|
43
|
+
def cluster_name: () -> ::String
|
44
|
+
def message: () -> ::String
|
45
|
+
end
|
42
46
|
class NotFoundException < ::Aws::Errors::ServiceError
|
43
47
|
def message: () -> ::String
|
44
48
|
end
|
@@ -75,6 +79,10 @@ module Aws
|
|
75
79
|
class ServiceUnavailableException < ::Aws::Errors::ServiceError
|
76
80
|
def message: () -> ::String
|
77
81
|
end
|
82
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
83
|
+
def cluster_name: () -> ::String
|
84
|
+
def message: () -> ::String
|
85
|
+
end
|
78
86
|
class UnsupportedAvailabilityZoneException < ::Aws::Errors::ServiceError
|
79
87
|
def message: () -> ::String
|
80
88
|
def cluster_name: () -> ::String
|
data/sig/types.rbs
CHANGED
@@ -727,6 +727,7 @@ module Aws::EKS
|
|
727
727
|
attr_accessor status: ::String
|
728
728
|
attr_accessor auto_renew: bool
|
729
729
|
attr_accessor license_arns: ::Array[::String]
|
730
|
+
attr_accessor licenses: ::Array[Types::License]
|
730
731
|
attr_accessor tags: ::Hash[::String, ::String]
|
731
732
|
SENSITIVE: []
|
732
733
|
end
|
@@ -876,6 +877,12 @@ module Aws::EKS
|
|
876
877
|
SENSITIVE: []
|
877
878
|
end
|
878
879
|
|
880
|
+
class InvalidStateException
|
881
|
+
attr_accessor cluster_name: ::String
|
882
|
+
attr_accessor message: ::String
|
883
|
+
SENSITIVE: []
|
884
|
+
end
|
885
|
+
|
879
886
|
class Issue
|
880
887
|
attr_accessor code: ("AutoScalingGroupNotFound" | "AutoScalingGroupInvalidConfiguration" | "Ec2SecurityGroupNotFound" | "Ec2SecurityGroupDeletionFailure" | "Ec2LaunchTemplateNotFound" | "Ec2LaunchTemplateVersionMismatch" | "Ec2SubnetNotFound" | "Ec2SubnetInvalidConfiguration" | "IamInstanceProfileNotFound" | "Ec2SubnetMissingIpv6Assignment" | "IamLimitExceeded" | "IamNodeRoleNotFound" | "NodeCreationFailure" | "AsgInstanceLaunchFailures" | "InstanceLimitExceeded" | "InsufficientFreeAddresses" | "AccessDenied" | "InternalFailure" | "ClusterUnreachable" | "AmiIdNotFound" | "AutoScalingGroupOptInRequired" | "AutoScalingGroupRateLimitExceeded" | "Ec2LaunchTemplateDeletionFailure" | "Ec2LaunchTemplateInvalidConfiguration" | "Ec2LaunchTemplateMaxLimitExceeded" | "Ec2SubnetListTooLong" | "IamThrottling" | "NodeTerminationFailure" | "PodEvictionFailure" | "SourceEc2LaunchTemplateNotFound" | "LimitExceeded" | "Unknown" | "AutoScalingGroupInstanceRefreshActive" | "KubernetesLabelInvalid" | "Ec2LaunchTemplateVersionMaxLimitExceeded" | "Ec2InstanceTypeDoesNotExist")
|
881
888
|
attr_accessor message: ::String
|
@@ -905,6 +912,12 @@ module Aws::EKS
|
|
905
912
|
SENSITIVE: []
|
906
913
|
end
|
907
914
|
|
915
|
+
class License
|
916
|
+
attr_accessor id: ::String
|
917
|
+
attr_accessor token: ::String
|
918
|
+
SENSITIVE: []
|
919
|
+
end
|
920
|
+
|
908
921
|
class ListAccessEntriesRequest
|
909
922
|
attr_accessor cluster_name: ::String
|
910
923
|
attr_accessor associated_policy_arn: ::String
|
@@ -1347,6 +1360,12 @@ module Aws::EKS
|
|
1347
1360
|
SENSITIVE: []
|
1348
1361
|
end
|
1349
1362
|
|
1363
|
+
class ThrottlingException
|
1364
|
+
attr_accessor cluster_name: ::String
|
1365
|
+
attr_accessor message: ::String
|
1366
|
+
SENSITIVE: []
|
1367
|
+
end
|
1368
|
+
|
1350
1369
|
class UnsupportedAvailabilityZoneException
|
1351
1370
|
attr_accessor message: ::String
|
1352
1371
|
attr_accessor cluster_name: ::String
|
@@ -1433,6 +1452,7 @@ module Aws::EKS
|
|
1433
1452
|
attr_accessor name: ::String
|
1434
1453
|
attr_accessor version: ::String
|
1435
1454
|
attr_accessor client_request_token: ::String
|
1455
|
+
attr_accessor force: bool
|
1436
1456
|
SENSITIVE: []
|
1437
1457
|
end
|
1438
1458
|
|
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.
|
4
|
+
version: 1.132.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: 2025-
|
11
|
+
date: 2025-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|