aws-sdk-eks 1.123.0 → 1.124.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: a998fe0ba546cbb80041e1ca2cbf4672ffded1d3501f00e8c26db8f569bd9795
4
- data.tar.gz: e297d83ea695d9ede54c16842b312d30bbf329772a2c971d37b09488d15a9bcc
3
+ metadata.gz: 02ae06a9baee4cb37b6fc2400ac1dd214cac1ea48f96d56661df4b32ba0ae3c4
4
+ data.tar.gz: c54299ecf1988524ee260a3dbca86ef8fb31b0e934302a2eb042e02d608733dc
5
5
  SHA512:
6
- metadata.gz: 7df6db1b1c30324887d1054f22661000e7b431f151c41dac5f6868a53ce2fac8db033dc5a24fb9a4a69fa6228c3ed941ce412267200e39fe567cc5b314f00965
7
- data.tar.gz: 758919124e626761fa59f75a6ce4c636365b7e79a4faaed4a572475b16a18328f02948ef249ad4b447190611362bf07a56f5a6ee29157075d19ae30cdbf0c15c
6
+ metadata.gz: dd440a08b05d4cfb8a906e05ff73a879ef07d41e4da93623bf98f1e8ba058d3fbfbac76160aa52ffda24cbca72934d6f8c1bad560ccde41395ceb98cdaac498b
7
+ data.tar.gz: 73f1890dee53b8fb818946d2b7f6d95594c798d5a28920ad0421c616d5bbb5df336aff2b8e889b4472548f54e08fd9a1b6df0633fdac5b2d45d27e3ec5cc826b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.124.0 (2024-12-20)
5
+ ------------------
6
+
7
+ * Feature - This release expands the catalog of upgrade insight checks
8
+
4
9
  1.123.0 (2024-12-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.123.0
1
+ 1.124.0
@@ -3163,6 +3163,10 @@ module Aws::EKS
3163
3163
  # resp.insight.category_specific_summary.deprecation_details[0].client_stats[0].user_agent #=> String
3164
3164
  # resp.insight.category_specific_summary.deprecation_details[0].client_stats[0].number_of_requests_last_30_days #=> Integer
3165
3165
  # resp.insight.category_specific_summary.deprecation_details[0].client_stats[0].last_request_time #=> Time
3166
+ # resp.insight.category_specific_summary.addon_compatibility_details #=> Array
3167
+ # resp.insight.category_specific_summary.addon_compatibility_details[0].name #=> String
3168
+ # resp.insight.category_specific_summary.addon_compatibility_details[0].compatible_versions #=> Array
3169
+ # resp.insight.category_specific_summary.addon_compatibility_details[0].compatible_versions[0] #=> String
3166
3170
  #
3167
3171
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeInsight AWS API Documentation
3168
3172
  #
@@ -5348,7 +5352,7 @@ module Aws::EKS
5348
5352
  tracer: tracer
5349
5353
  )
5350
5354
  context[:gem_name] = 'aws-sdk-eks'
5351
- context[:gem_version] = '1.123.0'
5355
+ context[:gem_version] = '1.124.0'
5352
5356
  Seahorse::Client::Request.new(handlers, context)
5353
5357
  end
5354
5358
 
@@ -24,6 +24,8 @@ module Aws::EKS
24
24
  AccessScopeType = Shapes::StringShape.new(name: 'AccessScopeType')
25
25
  AdditionalInfoMap = Shapes::MapShape.new(name: 'AdditionalInfoMap')
26
26
  Addon = Shapes::StructureShape.new(name: 'Addon')
27
+ AddonCompatibilityDetail = Shapes::StructureShape.new(name: 'AddonCompatibilityDetail')
28
+ AddonCompatibilityDetails = Shapes::ListShape.new(name: 'AddonCompatibilityDetails')
27
29
  AddonHealth = Shapes::StructureShape.new(name: 'AddonHealth')
28
30
  AddonInfo = Shapes::StructureShape.new(name: 'AddonInfo')
29
31
  AddonIssue = Shapes::StructureShape.new(name: 'AddonIssue')
@@ -376,6 +378,12 @@ module Aws::EKS
376
378
  Addon.add_member(:pod_identity_associations, Shapes::ShapeRef.new(shape: StringList, location_name: "podIdentityAssociations"))
377
379
  Addon.struct_class = Types::Addon
378
380
 
381
+ AddonCompatibilityDetail.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
382
+ AddonCompatibilityDetail.add_member(:compatible_versions, Shapes::ShapeRef.new(shape: StringList, location_name: "compatibleVersions"))
383
+ AddonCompatibilityDetail.struct_class = Types::AddonCompatibilityDetail
384
+
385
+ AddonCompatibilityDetails.member = Shapes::ShapeRef.new(shape: AddonCompatibilityDetail)
386
+
379
387
  AddonHealth.add_member(:issues, Shapes::ShapeRef.new(shape: AddonIssueList, location_name: "issues"))
380
388
  AddonHealth.struct_class = Types::AddonHealth
381
389
 
@@ -936,6 +944,7 @@ module Aws::EKS
936
944
  Insight.struct_class = Types::Insight
937
945
 
938
946
  InsightCategorySpecificSummary.add_member(:deprecation_details, Shapes::ShapeRef.new(shape: DeprecationDetails, location_name: "deprecationDetails"))
947
+ InsightCategorySpecificSummary.add_member(:addon_compatibility_details, Shapes::ShapeRef.new(shape: AddonCompatibilityDetails, location_name: "addonCompatibilityDetails"))
939
948
  InsightCategorySpecificSummary.struct_class = Types::InsightCategorySpecificSummary
940
949
 
941
950
  InsightResourceDetail.add_member(:insight_status, Shapes::ShapeRef.new(shape: InsightStatus, location_name: "insightStatus"))
@@ -286,6 +286,28 @@ module Aws::EKS
286
286
  include Aws::Structure
287
287
  end
288
288
 
289
+ # The summary information about the Amazon EKS add-on compatibility for
290
+ # the next Kubernetes version for an insight check in the
291
+ # `UPGRADE_READINESS` category.
292
+ #
293
+ # @!attribute [rw] name
294
+ # The name of the Amazon EKS add-on.
295
+ # @return [String]
296
+ #
297
+ # @!attribute [rw] compatible_versions
298
+ # The list of compatible Amazon EKS add-on versions for the next
299
+ # Kubernetes version.
300
+ # @return [Array<String>]
301
+ #
302
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonCompatibilityDetail AWS API Documentation
303
+ #
304
+ class AddonCompatibilityDetail < Struct.new(
305
+ :name,
306
+ :compatible_versions)
307
+ SENSITIVE = []
308
+ include Aws::Structure
309
+ end
310
+
289
311
  # The health of the add-on.
290
312
  #
291
313
  # @!attribute [rw] issues
@@ -3417,10 +3439,15 @@ module Aws::EKS
3417
3439
  # insight check in the `UPGRADE_READINESS` category.
3418
3440
  # @return [Array<Types::DeprecationDetail>]
3419
3441
  #
3442
+ # @!attribute [rw] addon_compatibility_details
3443
+ # A list of `AddonCompatibilityDetail` objects for Amazon EKS add-ons.
3444
+ # @return [Array<Types::AddonCompatibilityDetail>]
3445
+ #
3420
3446
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/InsightCategorySpecificSummary AWS API Documentation
3421
3447
  #
3422
3448
  class InsightCategorySpecificSummary < Struct.new(
3423
- :deprecation_details)
3449
+ :deprecation_details,
3450
+ :addon_compatibility_details)
3424
3451
  SENSITIVE = []
3425
3452
  include Aws::Structure
3426
3453
  end
data/lib/aws-sdk-eks.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::EKS
55
55
  autoload :EndpointProvider, 'aws-sdk-eks/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-eks/endpoints'
57
57
 
58
- GEM_VERSION = '1.123.0'
58
+ GEM_VERSION = '1.124.0'
59
59
 
60
60
  end
61
61
 
data/sig/types.rbs CHANGED
@@ -63,6 +63,12 @@ module Aws::EKS
63
63
  SENSITIVE: []
64
64
  end
65
65
 
66
+ class AddonCompatibilityDetail
67
+ attr_accessor name: ::String
68
+ attr_accessor compatible_versions: ::Array[::String]
69
+ SENSITIVE: []
70
+ end
71
+
66
72
  class AddonHealth
67
73
  attr_accessor issues: ::Array[Types::AddonIssue]
68
74
  SENSITIVE: []
@@ -783,6 +789,7 @@ module Aws::EKS
783
789
 
784
790
  class InsightCategorySpecificSummary
785
791
  attr_accessor deprecation_details: ::Array[Types::DeprecationDetail]
792
+ attr_accessor addon_compatibility_details: ::Array[Types::AddonCompatibilityDetail]
786
793
  SENSITIVE: []
787
794
  end
788
795
 
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.123.0
4
+ version: 1.124.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-12-13 00:00:00.000000000 Z
11
+ date: 2024-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core