aws-sdk-eks 1.124.0 → 1.126.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: 02ae06a9baee4cb37b6fc2400ac1dd214cac1ea48f96d56661df4b32ba0ae3c4
4
- data.tar.gz: c54299ecf1988524ee260a3dbca86ef8fb31b0e934302a2eb042e02d608733dc
3
+ metadata.gz: c5048c9fe8ec237f630d5c0aeeded38bb843d5c1613d5a718573bed85da5a109
4
+ data.tar.gz: 9ce5dc30ba85d59391f9444f7accba1983fea32ccb8b1228cfa0de46f3d2c103
5
5
  SHA512:
6
- metadata.gz: dd440a08b05d4cfb8a906e05ff73a879ef07d41e4da93623bf98f1e8ba058d3fbfbac76160aa52ffda24cbca72934d6f8c1bad560ccde41395ceb98cdaac498b
7
- data.tar.gz: 73f1890dee53b8fb818946d2b7f6d95594c798d5a28920ad0421c616d5bbb5df336aff2b8e889b4472548f54e08fd9a1b6df0633fdac5b2d45d27e3ec5cc826b
6
+ metadata.gz: 76ff546316a17707b620bee5dac2b25ca74f1e0022caa87060a94ff89989bdf4d25da15cf8bbe796df6de5429bf29ce2f11a57d1652f3239c87e0a024a5d0122
7
+ data.tar.gz: 85e4dcd6a9323400c2447e2a9d4f5e6086ccd40648c388c12fb0cc7387bb53cf02b01153a20c634f5abf2dbccd70c7410378ab498195d81c85228c3d33978dfd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.126.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.125.0 (2024-12-23)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for DescribeClusterVersions API that provides important information about Kubernetes versions along with end of support dates
13
+
4
14
  1.124.0 (2024-12-20)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.124.0
1
+ 1.126.0
@@ -257,11 +257,34 @@ module Aws::EKS
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -2970,6 +2993,71 @@ module Aws::EKS
2970
2993
  req.send_request(options)
2971
2994
  end
2972
2995
 
2996
+ # Lists available Kubernetes versions for Amazon EKS clusters.
2997
+ #
2998
+ # @option params [String] :cluster_type
2999
+ # The type of cluster to filter versions by.
3000
+ #
3001
+ # @option params [Integer] :max_results
3002
+ # Maximum number of results to return.
3003
+ #
3004
+ # @option params [String] :next_token
3005
+ # Pagination token for the next set of results.
3006
+ #
3007
+ # @option params [Boolean] :default_only
3008
+ # Filter to show only default versions.
3009
+ #
3010
+ # @option params [Boolean] :include_all
3011
+ # Include all available versions in the response.
3012
+ #
3013
+ # @option params [Array<String>] :cluster_versions
3014
+ # List of specific cluster versions to describe.
3015
+ #
3016
+ # @option params [String] :status
3017
+ # Filter versions by their current status.
3018
+ #
3019
+ # @return [Types::DescribeClusterVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3020
+ #
3021
+ # * {Types::DescribeClusterVersionsResponse#next_token #next_token} => String
3022
+ # * {Types::DescribeClusterVersionsResponse#cluster_versions #cluster_versions} => Array&lt;Types::ClusterVersionInformation&gt;
3023
+ #
3024
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3025
+ #
3026
+ # @example Request syntax with placeholder values
3027
+ #
3028
+ # resp = client.describe_cluster_versions({
3029
+ # cluster_type: "String",
3030
+ # max_results: 1,
3031
+ # next_token: "String",
3032
+ # default_only: false,
3033
+ # include_all: false,
3034
+ # cluster_versions: ["String"],
3035
+ # status: "unsupported", # accepts unsupported, standard-support, extended-support
3036
+ # })
3037
+ #
3038
+ # @example Response structure
3039
+ #
3040
+ # resp.next_token #=> String
3041
+ # resp.cluster_versions #=> Array
3042
+ # resp.cluster_versions[0].cluster_version #=> String
3043
+ # resp.cluster_versions[0].cluster_type #=> String
3044
+ # resp.cluster_versions[0].default_platform_version #=> String
3045
+ # resp.cluster_versions[0].default_version #=> Boolean
3046
+ # resp.cluster_versions[0].release_date #=> Time
3047
+ # resp.cluster_versions[0].end_of_standard_support_date #=> Time
3048
+ # resp.cluster_versions[0].end_of_extended_support_date #=> Time
3049
+ # resp.cluster_versions[0].status #=> String, one of "unsupported", "standard-support", "extended-support"
3050
+ # resp.cluster_versions[0].kubernetes_patch_version #=> String
3051
+ #
3052
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeClusterVersions AWS API Documentation
3053
+ #
3054
+ # @overload describe_cluster_versions(params = {})
3055
+ # @param [Hash] params ({})
3056
+ def describe_cluster_versions(params = {}, options = {})
3057
+ req = build_request(:describe_cluster_versions, params)
3058
+ req.send_request(options)
3059
+ end
3060
+
2973
3061
  # Returns descriptive information about a subscription.
2974
3062
  #
2975
3063
  # @option params [required, String] :id
@@ -5352,7 +5440,7 @@ module Aws::EKS
5352
5440
  tracer: tracer
5353
5441
  )
5354
5442
  context[:gem_name] = 'aws-sdk-eks'
5355
- context[:gem_version] = '1.124.0'
5443
+ context[:gem_version] = '1.126.0'
5356
5444
  Seahorse::Client::Request.new(handlers, context)
5357
5445
  end
5358
5446
 
@@ -70,6 +70,9 @@ module Aws::EKS
70
70
  ClusterIssueList = Shapes::ListShape.new(name: 'ClusterIssueList')
71
71
  ClusterName = Shapes::StringShape.new(name: 'ClusterName')
72
72
  ClusterStatus = Shapes::StringShape.new(name: 'ClusterStatus')
73
+ ClusterVersionInformation = Shapes::StructureShape.new(name: 'ClusterVersionInformation')
74
+ ClusterVersionList = Shapes::ListShape.new(name: 'ClusterVersionList')
75
+ ClusterVersionStatus = Shapes::StringShape.new(name: 'ClusterVersionStatus')
73
76
  Compatibilities = Shapes::ListShape.new(name: 'Compatibilities')
74
77
  Compatibility = Shapes::StructureShape.new(name: 'Compatibility')
75
78
  ComputeConfigRequest = Shapes::StructureShape.new(name: 'ComputeConfigRequest')
@@ -123,6 +126,9 @@ module Aws::EKS
123
126
  DescribeAddonVersionsResponse = Shapes::StructureShape.new(name: 'DescribeAddonVersionsResponse')
124
127
  DescribeClusterRequest = Shapes::StructureShape.new(name: 'DescribeClusterRequest')
125
128
  DescribeClusterResponse = Shapes::StructureShape.new(name: 'DescribeClusterResponse')
129
+ DescribeClusterVersionMaxResults = Shapes::IntegerShape.new(name: 'DescribeClusterVersionMaxResults')
130
+ DescribeClusterVersionsRequest = Shapes::StructureShape.new(name: 'DescribeClusterVersionsRequest')
131
+ DescribeClusterVersionsResponse = Shapes::StructureShape.new(name: 'DescribeClusterVersionsResponse')
126
132
  DescribeEksAnywhereSubscriptionRequest = Shapes::StructureShape.new(name: 'DescribeEksAnywhereSubscriptionRequest')
127
133
  DescribeEksAnywhereSubscriptionResponse = Shapes::StructureShape.new(name: 'DescribeEksAnywhereSubscriptionResponse')
128
134
  DescribeFargateProfileRequest = Shapes::StructureShape.new(name: 'DescribeFargateProfileRequest')
@@ -531,6 +537,19 @@ module Aws::EKS
531
537
 
532
538
  ClusterIssueList.member = Shapes::ShapeRef.new(shape: ClusterIssue)
533
539
 
540
+ ClusterVersionInformation.add_member(:cluster_version, Shapes::ShapeRef.new(shape: String, location_name: "clusterVersion"))
541
+ ClusterVersionInformation.add_member(:cluster_type, Shapes::ShapeRef.new(shape: String, location_name: "clusterType"))
542
+ ClusterVersionInformation.add_member(:default_platform_version, Shapes::ShapeRef.new(shape: String, location_name: "defaultPlatformVersion"))
543
+ ClusterVersionInformation.add_member(:default_version, Shapes::ShapeRef.new(shape: Boolean, location_name: "defaultVersion"))
544
+ ClusterVersionInformation.add_member(:release_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "releaseDate"))
545
+ ClusterVersionInformation.add_member(:end_of_standard_support_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "endOfStandardSupportDate"))
546
+ ClusterVersionInformation.add_member(:end_of_extended_support_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "endOfExtendedSupportDate"))
547
+ ClusterVersionInformation.add_member(:status, Shapes::ShapeRef.new(shape: ClusterVersionStatus, location_name: "status"))
548
+ ClusterVersionInformation.add_member(:kubernetes_patch_version, Shapes::ShapeRef.new(shape: String, location_name: "kubernetesPatchVersion"))
549
+ ClusterVersionInformation.struct_class = Types::ClusterVersionInformation
550
+
551
+ ClusterVersionList.member = Shapes::ShapeRef.new(shape: ClusterVersionInformation)
552
+
534
553
  Compatibilities.member = Shapes::ShapeRef.new(shape: Compatibility)
535
554
 
536
555
  Compatibility.add_member(:cluster_version, Shapes::ShapeRef.new(shape: String, location_name: "clusterVersion"))
@@ -781,6 +800,19 @@ module Aws::EKS
781
800
  DescribeClusterResponse.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "cluster"))
782
801
  DescribeClusterResponse.struct_class = Types::DescribeClusterResponse
783
802
 
803
+ DescribeClusterVersionsRequest.add_member(:cluster_type, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "clusterType"))
804
+ DescribeClusterVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeClusterVersionMaxResults, location: "querystring", location_name: "maxResults"))
805
+ DescribeClusterVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
806
+ DescribeClusterVersionsRequest.add_member(:default_only, Shapes::ShapeRef.new(shape: BoxedBoolean, location: "querystring", location_name: "defaultOnly"))
807
+ DescribeClusterVersionsRequest.add_member(:include_all, Shapes::ShapeRef.new(shape: BoxedBoolean, location: "querystring", location_name: "includeAll"))
808
+ DescribeClusterVersionsRequest.add_member(:cluster_versions, Shapes::ShapeRef.new(shape: StringList, location: "querystring", location_name: "clusterVersions"))
809
+ DescribeClusterVersionsRequest.add_member(:status, Shapes::ShapeRef.new(shape: ClusterVersionStatus, location: "querystring", location_name: "status"))
810
+ DescribeClusterVersionsRequest.struct_class = Types::DescribeClusterVersionsRequest
811
+
812
+ DescribeClusterVersionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
813
+ DescribeClusterVersionsResponse.add_member(:cluster_versions, Shapes::ShapeRef.new(shape: ClusterVersionList, location_name: "clusterVersions"))
814
+ DescribeClusterVersionsResponse.struct_class = Types::DescribeClusterVersionsResponse
815
+
784
816
  DescribeEksAnywhereSubscriptionRequest.add_member(:id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "id"))
785
817
  DescribeEksAnywhereSubscriptionRequest.struct_class = Types::DescribeEksAnywhereSubscriptionRequest
786
818
 
@@ -1838,6 +1870,23 @@ module Aws::EKS
1838
1870
  o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1839
1871
  end)
1840
1872
 
1873
+ api.add_operation(:describe_cluster_versions, Seahorse::Model::Operation.new.tap do |o|
1874
+ o.name = "DescribeClusterVersions"
1875
+ o.http_method = "GET"
1876
+ o.http_request_uri = "/cluster-versions"
1877
+ o.input = Shapes::ShapeRef.new(shape: DescribeClusterVersionsRequest)
1878
+ o.output = Shapes::ShapeRef.new(shape: DescribeClusterVersionsResponse)
1879
+ o.errors << Shapes::ShapeRef.new(shape: ServerException)
1880
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
1881
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1882
+ o[:pager] = Aws::Pager.new(
1883
+ limit_key: "max_results",
1884
+ tokens: {
1885
+ "next_token" => "next_token"
1886
+ }
1887
+ )
1888
+ end)
1889
+
1841
1890
  api.add_operation(:describe_eks_anywhere_subscription, Seahorse::Model::Operation.new.tap do |o|
1842
1891
  o.name = "DescribeEksAnywhereSubscription"
1843
1892
  o.http_method = "GET"
@@ -286,17 +286,14 @@ 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.
289
+ # Contains compatibility information for an Amazon EKS add-on.
292
290
  #
293
291
  # @!attribute [rw] name
294
292
  # The name of the Amazon EKS add-on.
295
293
  # @return [String]
296
294
  #
297
295
  # @!attribute [rw] compatible_versions
298
- # The list of compatible Amazon EKS add-on versions for the next
299
- # Kubernetes version.
296
+ # A list of compatible add-on versions.
300
297
  # @return [Array<String>]
301
298
  #
302
299
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonCompatibilityDetail AWS API Documentation
@@ -1019,6 +1016,60 @@ module Aws::EKS
1019
1016
  include Aws::Structure
1020
1017
  end
1021
1018
 
1019
+ # Contains details about a specific EKS cluster version.
1020
+ #
1021
+ # @!attribute [rw] cluster_version
1022
+ # The Kubernetes version for the cluster.
1023
+ # @return [String]
1024
+ #
1025
+ # @!attribute [rw] cluster_type
1026
+ # The type of cluster this version is for.
1027
+ # @return [String]
1028
+ #
1029
+ # @!attribute [rw] default_platform_version
1030
+ # Default platform version for this Kubernetes version.
1031
+ # @return [String]
1032
+ #
1033
+ # @!attribute [rw] default_version
1034
+ # Indicates if this is a default version.
1035
+ # @return [Boolean]
1036
+ #
1037
+ # @!attribute [rw] release_date
1038
+ # The release date of this cluster version.
1039
+ # @return [Time]
1040
+ #
1041
+ # @!attribute [rw] end_of_standard_support_date
1042
+ # Date when standard support ends for this version.
1043
+ # @return [Time]
1044
+ #
1045
+ # @!attribute [rw] end_of_extended_support_date
1046
+ # Date when extended support ends for this version.
1047
+ # @return [Time]
1048
+ #
1049
+ # @!attribute [rw] status
1050
+ # Current status of this cluster version.
1051
+ # @return [String]
1052
+ #
1053
+ # @!attribute [rw] kubernetes_patch_version
1054
+ # The patch version of Kubernetes for this cluster version.
1055
+ # @return [String]
1056
+ #
1057
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ClusterVersionInformation AWS API Documentation
1058
+ #
1059
+ class ClusterVersionInformation < Struct.new(
1060
+ :cluster_version,
1061
+ :cluster_type,
1062
+ :default_platform_version,
1063
+ :default_version,
1064
+ :release_date,
1065
+ :end_of_standard_support_date,
1066
+ :end_of_extended_support_date,
1067
+ :status,
1068
+ :kubernetes_patch_version)
1069
+ SENSITIVE = []
1070
+ include Aws::Structure
1071
+ end
1072
+
1022
1073
  # Compatibility information.
1023
1074
  #
1024
1075
  # @!attribute [rw] cluster_version
@@ -2692,6 +2743,65 @@ module Aws::EKS
2692
2743
  include Aws::Structure
2693
2744
  end
2694
2745
 
2746
+ # @!attribute [rw] cluster_type
2747
+ # The type of cluster to filter versions by.
2748
+ # @return [String]
2749
+ #
2750
+ # @!attribute [rw] max_results
2751
+ # Maximum number of results to return.
2752
+ # @return [Integer]
2753
+ #
2754
+ # @!attribute [rw] next_token
2755
+ # Pagination token for the next set of results.
2756
+ # @return [String]
2757
+ #
2758
+ # @!attribute [rw] default_only
2759
+ # Filter to show only default versions.
2760
+ # @return [Boolean]
2761
+ #
2762
+ # @!attribute [rw] include_all
2763
+ # Include all available versions in the response.
2764
+ # @return [Boolean]
2765
+ #
2766
+ # @!attribute [rw] cluster_versions
2767
+ # List of specific cluster versions to describe.
2768
+ # @return [Array<String>]
2769
+ #
2770
+ # @!attribute [rw] status
2771
+ # Filter versions by their current status.
2772
+ # @return [String]
2773
+ #
2774
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeClusterVersionsRequest AWS API Documentation
2775
+ #
2776
+ class DescribeClusterVersionsRequest < Struct.new(
2777
+ :cluster_type,
2778
+ :max_results,
2779
+ :next_token,
2780
+ :default_only,
2781
+ :include_all,
2782
+ :cluster_versions,
2783
+ :status)
2784
+ SENSITIVE = []
2785
+ include Aws::Structure
2786
+ end
2787
+
2788
+ # @!attribute [rw] next_token
2789
+ # Pagination token for the next set of results.
2790
+ # @return [String]
2791
+ #
2792
+ # @!attribute [rw] cluster_versions
2793
+ # List of cluster version information objects.
2794
+ # @return [Array<Types::ClusterVersionInformation>]
2795
+ #
2796
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeClusterVersionsResponse AWS API Documentation
2797
+ #
2798
+ class DescribeClusterVersionsResponse < Struct.new(
2799
+ :next_token,
2800
+ :cluster_versions)
2801
+ SENSITIVE = []
2802
+ include Aws::Structure
2803
+ end
2804
+
2695
2805
  # @!attribute [rw] id
2696
2806
  # The ID of the subscription.
2697
2807
  # @return [String]
@@ -3440,7 +3550,7 @@ module Aws::EKS
3440
3550
  # @return [Array<Types::DeprecationDetail>]
3441
3551
  #
3442
3552
  # @!attribute [rw] addon_compatibility_details
3443
- # A list of `AddonCompatibilityDetail` objects for Amazon EKS add-ons.
3553
+ # A list of AddonCompatibilityDetail objects for Amazon EKS add-ons.
3444
3554
  # @return [Array<Types::AddonCompatibilityDetail>]
3445
3555
  #
3446
3556
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/InsightCategorySpecificSummary AWS API Documentation
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.124.0'
58
+ GEM_VERSION = '1.126.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
@@ -511,6 +513,23 @@ module Aws
511
513
  ) -> _DescribeClusterResponseSuccess
512
514
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterResponseSuccess
513
515
 
516
+ interface _DescribeClusterVersionsResponseSuccess
517
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterVersionsResponse]
518
+ def next_token: () -> ::String
519
+ def cluster_versions: () -> ::Array[Types::ClusterVersionInformation]
520
+ end
521
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_cluster_versions-instance_method
522
+ def describe_cluster_versions: (
523
+ ?cluster_type: ::String,
524
+ ?max_results: ::Integer,
525
+ ?next_token: ::String,
526
+ ?default_only: bool,
527
+ ?include_all: bool,
528
+ ?cluster_versions: Array[::String],
529
+ ?status: ("unsupported" | "standard-support" | "extended-support")
530
+ ) -> _DescribeClusterVersionsResponseSuccess
531
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterVersionsResponseSuccess
532
+
514
533
  interface _DescribeEksAnywhereSubscriptionResponseSuccess
515
534
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEksAnywhereSubscriptionResponse]
516
535
  def subscription: () -> Types::EksAnywhereSubscription
data/sig/resource.rbs CHANGED
@@ -39,7 +39,9 @@ module Aws
39
39
  ?logger: untyped,
40
40
  ?max_attempts: Integer,
41
41
  ?profile: String,
42
+ ?request_checksum_calculation: String,
42
43
  ?request_min_compression_size_bytes: Integer,
44
+ ?response_checksum_validation: String,
43
45
  ?retry_backoff: Proc,
44
46
  ?retry_base_delay: Float,
45
47
  ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
data/sig/types.rbs CHANGED
@@ -240,6 +240,19 @@ module Aws::EKS
240
240
  SENSITIVE: []
241
241
  end
242
242
 
243
+ class ClusterVersionInformation
244
+ attr_accessor cluster_version: ::String
245
+ attr_accessor cluster_type: ::String
246
+ attr_accessor default_platform_version: ::String
247
+ attr_accessor default_version: bool
248
+ attr_accessor release_date: ::Time
249
+ attr_accessor end_of_standard_support_date: ::Time
250
+ attr_accessor end_of_extended_support_date: ::Time
251
+ attr_accessor status: ("unsupported" | "standard-support" | "extended-support")
252
+ attr_accessor kubernetes_patch_version: ::String
253
+ SENSITIVE: []
254
+ end
255
+
243
256
  class Compatibility
244
257
  attr_accessor cluster_version: ::String
245
258
  attr_accessor platform_versions: ::Array[::String]
@@ -583,6 +596,23 @@ module Aws::EKS
583
596
  SENSITIVE: []
584
597
  end
585
598
 
599
+ class DescribeClusterVersionsRequest
600
+ attr_accessor cluster_type: ::String
601
+ attr_accessor max_results: ::Integer
602
+ attr_accessor next_token: ::String
603
+ attr_accessor default_only: bool
604
+ attr_accessor include_all: bool
605
+ attr_accessor cluster_versions: ::Array[::String]
606
+ attr_accessor status: ("unsupported" | "standard-support" | "extended-support")
607
+ SENSITIVE: []
608
+ end
609
+
610
+ class DescribeClusterVersionsResponse
611
+ attr_accessor next_token: ::String
612
+ attr_accessor cluster_versions: ::Array[Types::ClusterVersionInformation]
613
+ SENSITIVE: []
614
+ end
615
+
586
616
  class DescribeEksAnywhereSubscriptionRequest
587
617
  attr_accessor id: ::String
588
618
  SENSITIVE: []
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.124.0
4
+ version: 1.126.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-20 00:00:00.000000000 Z
11
+ date: 2025-01-15 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.210.0
22
+ version: 3.216.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.210.0
32
+ version: 3.216.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement