aws-sdk-eks 1.136.0 → 1.138.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 +17 -7
- data/lib/aws-sdk-eks/types.rb +10 -1
- data/lib/aws-sdk-eks.rb +1 -1
- data/sig/client.rbs +1 -1
- data/sig/types.rbs +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a839b4da440cd4aff716ff553d4dc8185ad4475ccc1d2c3bd15cb1f9d8203d3d
|
4
|
+
data.tar.gz: b6ecfc2a337511c20c601da1066e1f4cf40d7c6b5770e452b5b9d0653dee3d62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e5b1f7218ff939f712867e558028f5c0af3b9b5ae3159d9f496872e92e5b51583ee34ac8e9c20e9e8d0b8ccab5f66b4375df40d3a93b00bf8aef06af9428741
|
7
|
+
data.tar.gz: 3b7ca320fe01ceccb78a530b9e1bc0dba074f0ab09b8bb0af42ac57a2826b0ba2d17a46e924b89c2ae6c7509ac2268e18cbbe1d797b9ec36f4467d0f6268d885
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.138.0 (2025-06-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add support for filtering ListInsights API calls on MISCONFIGURATION insight category
|
8
|
+
|
9
|
+
1.137.0 (2025-05-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.136.0 (2025-05-01)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.138.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -200,8 +200,7 @@ module Aws::EKS
|
|
200
200
|
# accepted modes and the configuration defaults that are included.
|
201
201
|
#
|
202
202
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
203
|
-
#
|
204
|
-
# to default service endpoint when available.
|
203
|
+
# When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
|
205
204
|
#
|
206
205
|
# @option options [Boolean] :disable_request_compression (false)
|
207
206
|
# When set to 'true' the request body will not be compressed
|
@@ -3263,7 +3262,7 @@ module Aws::EKS
|
|
3263
3262
|
#
|
3264
3263
|
# resp.insight.id #=> String
|
3265
3264
|
# resp.insight.name #=> String
|
3266
|
-
# resp.insight.category #=> String, one of "UPGRADE_READINESS"
|
3265
|
+
# resp.insight.category #=> String, one of "UPGRADE_READINESS", "MISCONFIGURATION"
|
3267
3266
|
# resp.insight.kubernetes_version #=> String
|
3268
3267
|
# resp.insight.last_refresh_time #=> Time
|
3269
3268
|
# resp.insight.last_transition_time #=> Time
|
@@ -4097,7 +4096,18 @@ module Aws::EKS
|
|
4097
4096
|
|
4098
4097
|
# Returns a list of all insights checked for against the specified
|
4099
4098
|
# cluster. You can filter which insights are returned by category,
|
4100
|
-
# associated Kubernetes version, and status.
|
4099
|
+
# associated Kubernetes version, and status. The default filter lists
|
4100
|
+
# all categories and every status.
|
4101
|
+
#
|
4102
|
+
# The following lists the available categories:
|
4103
|
+
#
|
4104
|
+
# * `UPGRADE_READINESS`: Amazon EKS identifies issues that could impact
|
4105
|
+
# your ability to upgrade to new versions of Kubernetes. These are
|
4106
|
+
# called upgrade insights.
|
4107
|
+
#
|
4108
|
+
# * `MISCONFIGURATION`: Amazon EKS identifies misconfiguration in your
|
4109
|
+
# EKS Hybrid Nodes setup that could impair functionality of your
|
4110
|
+
# cluster or workloads. These are called configuration insights.
|
4101
4111
|
#
|
4102
4112
|
# @option params [required, String] :cluster_name
|
4103
4113
|
# The name of the Amazon EKS cluster associated with the insights.
|
@@ -4136,7 +4146,7 @@ module Aws::EKS
|
|
4136
4146
|
# resp = client.list_insights({
|
4137
4147
|
# cluster_name: "String", # required
|
4138
4148
|
# filter: {
|
4139
|
-
# categories: ["UPGRADE_READINESS"], # accepts UPGRADE_READINESS
|
4149
|
+
# categories: ["UPGRADE_READINESS"], # accepts UPGRADE_READINESS, MISCONFIGURATION
|
4140
4150
|
# kubernetes_versions: ["String"],
|
4141
4151
|
# statuses: ["PASSING"], # accepts PASSING, WARNING, ERROR, UNKNOWN
|
4142
4152
|
# },
|
@@ -4149,7 +4159,7 @@ module Aws::EKS
|
|
4149
4159
|
# resp.insights #=> Array
|
4150
4160
|
# resp.insights[0].id #=> String
|
4151
4161
|
# resp.insights[0].name #=> String
|
4152
|
-
# resp.insights[0].category #=> String, one of "UPGRADE_READINESS"
|
4162
|
+
# resp.insights[0].category #=> String, one of "UPGRADE_READINESS", "MISCONFIGURATION"
|
4153
4163
|
# resp.insights[0].kubernetes_version #=> String
|
4154
4164
|
# resp.insights[0].last_refresh_time #=> Time
|
4155
4165
|
# resp.insights[0].last_transition_time #=> Time
|
@@ -5530,7 +5540,7 @@ module Aws::EKS
|
|
5530
5540
|
tracer: tracer
|
5531
5541
|
)
|
5532
5542
|
context[:gem_name] = 'aws-sdk-eks'
|
5533
|
-
context[:gem_version] = '1.
|
5543
|
+
context[:gem_version] = '1.138.0'
|
5534
5544
|
Seahorse::Client::Request.new(handlers, context)
|
5535
5545
|
end
|
5536
5546
|
|
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -3699,7 +3699,16 @@ module Aws::EKS
|
|
3699
3699
|
# The criteria to use for the insights.
|
3700
3700
|
#
|
3701
3701
|
# @!attribute [rw] categories
|
3702
|
-
# The categories to use to filter insights.
|
3702
|
+
# The categories to use to filter insights. The following lists the
|
3703
|
+
# available categories:
|
3704
|
+
#
|
3705
|
+
# * `UPGRADE_READINESS`: Amazon EKS identifies issues that could
|
3706
|
+
# impact your ability to upgrade to new versions of Kubernetes.
|
3707
|
+
# These are called upgrade insights.
|
3708
|
+
#
|
3709
|
+
# * `MISCONFIGURATION`: Amazon EKS identifies misconfiguration in your
|
3710
|
+
# EKS Hybrid Nodes setup that could impair functionality of your
|
3711
|
+
# cluster or workloads. These are called configuration insights.
|
3703
3712
|
# @return [Array<String>]
|
3704
3713
|
#
|
3705
3714
|
# @!attribute [rw] kubernetes_versions
|
data/lib/aws-sdk-eks.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -755,7 +755,7 @@ module Aws
|
|
755
755
|
def list_insights: (
|
756
756
|
cluster_name: ::String,
|
757
757
|
?filter: {
|
758
|
-
categories: Array[("UPGRADE_READINESS")]?,
|
758
|
+
categories: Array[("UPGRADE_READINESS" | "MISCONFIGURATION")]?,
|
759
759
|
kubernetes_versions: Array[::String]?,
|
760
760
|
statuses: Array[("PASSING" | "WARNING" | "ERROR" | "UNKNOWN")]?
|
761
761
|
},
|
data/sig/types.rbs
CHANGED
@@ -807,7 +807,7 @@ module Aws::EKS
|
|
807
807
|
class Insight
|
808
808
|
attr_accessor id: ::String
|
809
809
|
attr_accessor name: ::String
|
810
|
-
attr_accessor category: ("UPGRADE_READINESS")
|
810
|
+
attr_accessor category: ("UPGRADE_READINESS" | "MISCONFIGURATION")
|
811
811
|
attr_accessor kubernetes_version: ::String
|
812
812
|
attr_accessor last_refresh_time: ::Time
|
813
813
|
attr_accessor last_transition_time: ::Time
|
@@ -842,7 +842,7 @@ module Aws::EKS
|
|
842
842
|
class InsightSummary
|
843
843
|
attr_accessor id: ::String
|
844
844
|
attr_accessor name: ::String
|
845
|
-
attr_accessor category: ("UPGRADE_READINESS")
|
845
|
+
attr_accessor category: ("UPGRADE_READINESS" | "MISCONFIGURATION")
|
846
846
|
attr_accessor kubernetes_version: ::String
|
847
847
|
attr_accessor last_refresh_time: ::Time
|
848
848
|
attr_accessor last_transition_time: ::Time
|
@@ -852,7 +852,7 @@ module Aws::EKS
|
|
852
852
|
end
|
853
853
|
|
854
854
|
class InsightsFilter
|
855
|
-
attr_accessor categories: ::Array[("UPGRADE_READINESS")]
|
855
|
+
attr_accessor categories: ::Array[("UPGRADE_READINESS" | "MISCONFIGURATION")]
|
856
856
|
attr_accessor kubernetes_versions: ::Array[::String]
|
857
857
|
attr_accessor statuses: ::Array[("PASSING" | "WARNING" | "ERROR" | "UNKNOWN")]
|
858
858
|
SENSITIVE: []
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.138.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.225.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.225.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -84,7 +84,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
84
84
|
requirements:
|
85
85
|
- - ">="
|
86
86
|
- !ruby/object:Gem::Version
|
87
|
-
version: '2.
|
87
|
+
version: '2.7'
|
88
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
89
|
requirements:
|
90
90
|
- - ">="
|