aws-sdk-eks 1.123.0 → 1.125.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 +70 -1
- data/lib/aws-sdk-eks/client_api.rb +58 -0
- data/lib/aws-sdk-eks/types.rb +138 -1
- data/lib/aws-sdk-eks.rb +1 -1
- data/sig/client.rbs +17 -0
- data/sig/types.rbs +37 -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: 6d19db4e40a4e5b8204537c27d2ca12412b79594527d0ba650ba3a415a23ec3f
|
|
4
|
+
data.tar.gz: 6aab48422cb4626a9ae0aeff3fb9f68203ff8cd71118e82bfaa06a905a55e1fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d8503e64fb520cc6ff7abdad381f870da6cefb4855b1495c37366ba854298a319d0d849d81fdf3749253c3e76de08b21fae06ab92f93c9e5adcf525a1a8b73a2
|
|
7
|
+
data.tar.gz: 47befc2c1bffdf1b7b788bf8fec04f01586479a4a89701cb54bdd959b069cf74a156e33002cc3b17b6c48bb966500fa90b6e222451a6171d01366190ba7f56ea
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.125.0 (2024-12-23)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for DescribeClusterVersions API that provides important information about Kubernetes versions along with end of support dates
|
|
8
|
+
|
|
9
|
+
1.124.0 (2024-12-20)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release expands the catalog of upgrade insight checks
|
|
13
|
+
|
|
4
14
|
1.123.0 (2024-12-13)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.125.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
|
@@ -2970,6 +2970,71 @@ module Aws::EKS
|
|
|
2970
2970
|
req.send_request(options)
|
|
2971
2971
|
end
|
|
2972
2972
|
|
|
2973
|
+
# Lists available Kubernetes versions for Amazon EKS clusters.
|
|
2974
|
+
#
|
|
2975
|
+
# @option params [String] :cluster_type
|
|
2976
|
+
# The type of cluster to filter versions by.
|
|
2977
|
+
#
|
|
2978
|
+
# @option params [Integer] :max_results
|
|
2979
|
+
# Maximum number of results to return.
|
|
2980
|
+
#
|
|
2981
|
+
# @option params [String] :next_token
|
|
2982
|
+
# Pagination token for the next set of results.
|
|
2983
|
+
#
|
|
2984
|
+
# @option params [Boolean] :default_only
|
|
2985
|
+
# Filter to show only default versions.
|
|
2986
|
+
#
|
|
2987
|
+
# @option params [Boolean] :include_all
|
|
2988
|
+
# Include all available versions in the response.
|
|
2989
|
+
#
|
|
2990
|
+
# @option params [Array<String>] :cluster_versions
|
|
2991
|
+
# List of specific cluster versions to describe.
|
|
2992
|
+
#
|
|
2993
|
+
# @option params [String] :status
|
|
2994
|
+
# Filter versions by their current status.
|
|
2995
|
+
#
|
|
2996
|
+
# @return [Types::DescribeClusterVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2997
|
+
#
|
|
2998
|
+
# * {Types::DescribeClusterVersionsResponse#next_token #next_token} => String
|
|
2999
|
+
# * {Types::DescribeClusterVersionsResponse#cluster_versions #cluster_versions} => Array<Types::ClusterVersionInformation>
|
|
3000
|
+
#
|
|
3001
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
3002
|
+
#
|
|
3003
|
+
# @example Request syntax with placeholder values
|
|
3004
|
+
#
|
|
3005
|
+
# resp = client.describe_cluster_versions({
|
|
3006
|
+
# cluster_type: "String",
|
|
3007
|
+
# max_results: 1,
|
|
3008
|
+
# next_token: "String",
|
|
3009
|
+
# default_only: false,
|
|
3010
|
+
# include_all: false,
|
|
3011
|
+
# cluster_versions: ["String"],
|
|
3012
|
+
# status: "unsupported", # accepts unsupported, standard-support, extended-support
|
|
3013
|
+
# })
|
|
3014
|
+
#
|
|
3015
|
+
# @example Response structure
|
|
3016
|
+
#
|
|
3017
|
+
# resp.next_token #=> String
|
|
3018
|
+
# resp.cluster_versions #=> Array
|
|
3019
|
+
# resp.cluster_versions[0].cluster_version #=> String
|
|
3020
|
+
# resp.cluster_versions[0].cluster_type #=> String
|
|
3021
|
+
# resp.cluster_versions[0].default_platform_version #=> String
|
|
3022
|
+
# resp.cluster_versions[0].default_version #=> Boolean
|
|
3023
|
+
# resp.cluster_versions[0].release_date #=> Time
|
|
3024
|
+
# resp.cluster_versions[0].end_of_standard_support_date #=> Time
|
|
3025
|
+
# resp.cluster_versions[0].end_of_extended_support_date #=> Time
|
|
3026
|
+
# resp.cluster_versions[0].status #=> String, one of "unsupported", "standard-support", "extended-support"
|
|
3027
|
+
# resp.cluster_versions[0].kubernetes_patch_version #=> String
|
|
3028
|
+
#
|
|
3029
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeClusterVersions AWS API Documentation
|
|
3030
|
+
#
|
|
3031
|
+
# @overload describe_cluster_versions(params = {})
|
|
3032
|
+
# @param [Hash] params ({})
|
|
3033
|
+
def describe_cluster_versions(params = {}, options = {})
|
|
3034
|
+
req = build_request(:describe_cluster_versions, params)
|
|
3035
|
+
req.send_request(options)
|
|
3036
|
+
end
|
|
3037
|
+
|
|
2973
3038
|
# Returns descriptive information about a subscription.
|
|
2974
3039
|
#
|
|
2975
3040
|
# @option params [required, String] :id
|
|
@@ -3163,6 +3228,10 @@ module Aws::EKS
|
|
|
3163
3228
|
# resp.insight.category_specific_summary.deprecation_details[0].client_stats[0].user_agent #=> String
|
|
3164
3229
|
# resp.insight.category_specific_summary.deprecation_details[0].client_stats[0].number_of_requests_last_30_days #=> Integer
|
|
3165
3230
|
# resp.insight.category_specific_summary.deprecation_details[0].client_stats[0].last_request_time #=> Time
|
|
3231
|
+
# resp.insight.category_specific_summary.addon_compatibility_details #=> Array
|
|
3232
|
+
# resp.insight.category_specific_summary.addon_compatibility_details[0].name #=> String
|
|
3233
|
+
# resp.insight.category_specific_summary.addon_compatibility_details[0].compatible_versions #=> Array
|
|
3234
|
+
# resp.insight.category_specific_summary.addon_compatibility_details[0].compatible_versions[0] #=> String
|
|
3166
3235
|
#
|
|
3167
3236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeInsight AWS API Documentation
|
|
3168
3237
|
#
|
|
@@ -5348,7 +5417,7 @@ module Aws::EKS
|
|
|
5348
5417
|
tracer: tracer
|
|
5349
5418
|
)
|
|
5350
5419
|
context[:gem_name] = 'aws-sdk-eks'
|
|
5351
|
-
context[:gem_version] = '1.
|
|
5420
|
+
context[:gem_version] = '1.125.0'
|
|
5352
5421
|
Seahorse::Client::Request.new(handlers, context)
|
|
5353
5422
|
end
|
|
5354
5423
|
|
|
@@ -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')
|
|
@@ -68,6 +70,9 @@ module Aws::EKS
|
|
|
68
70
|
ClusterIssueList = Shapes::ListShape.new(name: 'ClusterIssueList')
|
|
69
71
|
ClusterName = Shapes::StringShape.new(name: 'ClusterName')
|
|
70
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')
|
|
71
76
|
Compatibilities = Shapes::ListShape.new(name: 'Compatibilities')
|
|
72
77
|
Compatibility = Shapes::StructureShape.new(name: 'Compatibility')
|
|
73
78
|
ComputeConfigRequest = Shapes::StructureShape.new(name: 'ComputeConfigRequest')
|
|
@@ -121,6 +126,9 @@ module Aws::EKS
|
|
|
121
126
|
DescribeAddonVersionsResponse = Shapes::StructureShape.new(name: 'DescribeAddonVersionsResponse')
|
|
122
127
|
DescribeClusterRequest = Shapes::StructureShape.new(name: 'DescribeClusterRequest')
|
|
123
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')
|
|
124
132
|
DescribeEksAnywhereSubscriptionRequest = Shapes::StructureShape.new(name: 'DescribeEksAnywhereSubscriptionRequest')
|
|
125
133
|
DescribeEksAnywhereSubscriptionResponse = Shapes::StructureShape.new(name: 'DescribeEksAnywhereSubscriptionResponse')
|
|
126
134
|
DescribeFargateProfileRequest = Shapes::StructureShape.new(name: 'DescribeFargateProfileRequest')
|
|
@@ -376,6 +384,12 @@ module Aws::EKS
|
|
|
376
384
|
Addon.add_member(:pod_identity_associations, Shapes::ShapeRef.new(shape: StringList, location_name: "podIdentityAssociations"))
|
|
377
385
|
Addon.struct_class = Types::Addon
|
|
378
386
|
|
|
387
|
+
AddonCompatibilityDetail.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
|
388
|
+
AddonCompatibilityDetail.add_member(:compatible_versions, Shapes::ShapeRef.new(shape: StringList, location_name: "compatibleVersions"))
|
|
389
|
+
AddonCompatibilityDetail.struct_class = Types::AddonCompatibilityDetail
|
|
390
|
+
|
|
391
|
+
AddonCompatibilityDetails.member = Shapes::ShapeRef.new(shape: AddonCompatibilityDetail)
|
|
392
|
+
|
|
379
393
|
AddonHealth.add_member(:issues, Shapes::ShapeRef.new(shape: AddonIssueList, location_name: "issues"))
|
|
380
394
|
AddonHealth.struct_class = Types::AddonHealth
|
|
381
395
|
|
|
@@ -523,6 +537,19 @@ module Aws::EKS
|
|
|
523
537
|
|
|
524
538
|
ClusterIssueList.member = Shapes::ShapeRef.new(shape: ClusterIssue)
|
|
525
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
|
+
|
|
526
553
|
Compatibilities.member = Shapes::ShapeRef.new(shape: Compatibility)
|
|
527
554
|
|
|
528
555
|
Compatibility.add_member(:cluster_version, Shapes::ShapeRef.new(shape: String, location_name: "clusterVersion"))
|
|
@@ -773,6 +800,19 @@ module Aws::EKS
|
|
|
773
800
|
DescribeClusterResponse.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "cluster"))
|
|
774
801
|
DescribeClusterResponse.struct_class = Types::DescribeClusterResponse
|
|
775
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
|
+
|
|
776
816
|
DescribeEksAnywhereSubscriptionRequest.add_member(:id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "id"))
|
|
777
817
|
DescribeEksAnywhereSubscriptionRequest.struct_class = Types::DescribeEksAnywhereSubscriptionRequest
|
|
778
818
|
|
|
@@ -936,6 +976,7 @@ module Aws::EKS
|
|
|
936
976
|
Insight.struct_class = Types::Insight
|
|
937
977
|
|
|
938
978
|
InsightCategorySpecificSummary.add_member(:deprecation_details, Shapes::ShapeRef.new(shape: DeprecationDetails, location_name: "deprecationDetails"))
|
|
979
|
+
InsightCategorySpecificSummary.add_member(:addon_compatibility_details, Shapes::ShapeRef.new(shape: AddonCompatibilityDetails, location_name: "addonCompatibilityDetails"))
|
|
939
980
|
InsightCategorySpecificSummary.struct_class = Types::InsightCategorySpecificSummary
|
|
940
981
|
|
|
941
982
|
InsightResourceDetail.add_member(:insight_status, Shapes::ShapeRef.new(shape: InsightStatus, location_name: "insightStatus"))
|
|
@@ -1829,6 +1870,23 @@ module Aws::EKS
|
|
|
1829
1870
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
1830
1871
|
end)
|
|
1831
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
|
+
|
|
1832
1890
|
api.add_operation(:describe_eks_anywhere_subscription, Seahorse::Model::Operation.new.tap do |o|
|
|
1833
1891
|
o.name = "DescribeEksAnywhereSubscription"
|
|
1834
1892
|
o.http_method = "GET"
|
data/lib/aws-sdk-eks/types.rb
CHANGED
|
@@ -286,6 +286,25 @@ module Aws::EKS
|
|
|
286
286
|
include Aws::Structure
|
|
287
287
|
end
|
|
288
288
|
|
|
289
|
+
# Contains compatibility information for an Amazon EKS add-on.
|
|
290
|
+
#
|
|
291
|
+
# @!attribute [rw] name
|
|
292
|
+
# The name of the Amazon EKS add-on.
|
|
293
|
+
# @return [String]
|
|
294
|
+
#
|
|
295
|
+
# @!attribute [rw] compatible_versions
|
|
296
|
+
# A list of compatible add-on versions.
|
|
297
|
+
# @return [Array<String>]
|
|
298
|
+
#
|
|
299
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonCompatibilityDetail AWS API Documentation
|
|
300
|
+
#
|
|
301
|
+
class AddonCompatibilityDetail < Struct.new(
|
|
302
|
+
:name,
|
|
303
|
+
:compatible_versions)
|
|
304
|
+
SENSITIVE = []
|
|
305
|
+
include Aws::Structure
|
|
306
|
+
end
|
|
307
|
+
|
|
289
308
|
# The health of the add-on.
|
|
290
309
|
#
|
|
291
310
|
# @!attribute [rw] issues
|
|
@@ -997,6 +1016,60 @@ module Aws::EKS
|
|
|
997
1016
|
include Aws::Structure
|
|
998
1017
|
end
|
|
999
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
|
+
|
|
1000
1073
|
# Compatibility information.
|
|
1001
1074
|
#
|
|
1002
1075
|
# @!attribute [rw] cluster_version
|
|
@@ -2670,6 +2743,65 @@ module Aws::EKS
|
|
|
2670
2743
|
include Aws::Structure
|
|
2671
2744
|
end
|
|
2672
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
|
+
|
|
2673
2805
|
# @!attribute [rw] id
|
|
2674
2806
|
# The ID of the subscription.
|
|
2675
2807
|
# @return [String]
|
|
@@ -3417,10 +3549,15 @@ module Aws::EKS
|
|
|
3417
3549
|
# insight check in the `UPGRADE_READINESS` category.
|
|
3418
3550
|
# @return [Array<Types::DeprecationDetail>]
|
|
3419
3551
|
#
|
|
3552
|
+
# @!attribute [rw] addon_compatibility_details
|
|
3553
|
+
# A list of AddonCompatibilityDetail objects for Amazon EKS add-ons.
|
|
3554
|
+
# @return [Array<Types::AddonCompatibilityDetail>]
|
|
3555
|
+
#
|
|
3420
3556
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/InsightCategorySpecificSummary AWS API Documentation
|
|
3421
3557
|
#
|
|
3422
3558
|
class InsightCategorySpecificSummary < Struct.new(
|
|
3423
|
-
:deprecation_details
|
|
3559
|
+
:deprecation_details,
|
|
3560
|
+
:addon_compatibility_details)
|
|
3424
3561
|
SENSITIVE = []
|
|
3425
3562
|
include Aws::Structure
|
|
3426
3563
|
end
|
data/lib/aws-sdk-eks.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -511,6 +511,23 @@ module Aws
|
|
|
511
511
|
) -> _DescribeClusterResponseSuccess
|
|
512
512
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterResponseSuccess
|
|
513
513
|
|
|
514
|
+
interface _DescribeClusterVersionsResponseSuccess
|
|
515
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeClusterVersionsResponse]
|
|
516
|
+
def next_token: () -> ::String
|
|
517
|
+
def cluster_versions: () -> ::Array[Types::ClusterVersionInformation]
|
|
518
|
+
end
|
|
519
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_cluster_versions-instance_method
|
|
520
|
+
def describe_cluster_versions: (
|
|
521
|
+
?cluster_type: ::String,
|
|
522
|
+
?max_results: ::Integer,
|
|
523
|
+
?next_token: ::String,
|
|
524
|
+
?default_only: bool,
|
|
525
|
+
?include_all: bool,
|
|
526
|
+
?cluster_versions: Array[::String],
|
|
527
|
+
?status: ("unsupported" | "standard-support" | "extended-support")
|
|
528
|
+
) -> _DescribeClusterVersionsResponseSuccess
|
|
529
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeClusterVersionsResponseSuccess
|
|
530
|
+
|
|
514
531
|
interface _DescribeEksAnywhereSubscriptionResponseSuccess
|
|
515
532
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEksAnywhereSubscriptionResponse]
|
|
516
533
|
def subscription: () -> Types::EksAnywhereSubscription
|
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: []
|
|
@@ -234,6 +240,19 @@ module Aws::EKS
|
|
|
234
240
|
SENSITIVE: []
|
|
235
241
|
end
|
|
236
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
|
+
|
|
237
256
|
class Compatibility
|
|
238
257
|
attr_accessor cluster_version: ::String
|
|
239
258
|
attr_accessor platform_versions: ::Array[::String]
|
|
@@ -577,6 +596,23 @@ module Aws::EKS
|
|
|
577
596
|
SENSITIVE: []
|
|
578
597
|
end
|
|
579
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
|
+
|
|
580
616
|
class DescribeEksAnywhereSubscriptionRequest
|
|
581
617
|
attr_accessor id: ::String
|
|
582
618
|
SENSITIVE: []
|
|
@@ -783,6 +819,7 @@ module Aws::EKS
|
|
|
783
819
|
|
|
784
820
|
class InsightCategorySpecificSummary
|
|
785
821
|
attr_accessor deprecation_details: ::Array[Types::DeprecationDetail]
|
|
822
|
+
attr_accessor addon_compatibility_details: ::Array[Types::AddonCompatibilityDetail]
|
|
786
823
|
SENSITIVE: []
|
|
787
824
|
end
|
|
788
825
|
|
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.125.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-
|
|
11
|
+
date: 2024-12-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|