aws-sdk-eks 1.172.0 → 1.174.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 +569 -33
- data/lib/aws-sdk-eks/client_api.rb +323 -0
- data/lib/aws-sdk-eks/types.rb +1028 -4
- data/lib/aws-sdk-eks/waiters.rb +61 -10
- data/lib/aws-sdk-eks.rb +2 -2
- data/sig/client.rbs +96 -0
- data/sig/params.rbs +16 -0
- data/sig/types.rbs +280 -2
- data/sig/waiters.rbs +14 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 012777266f5217141bb2b61ed6e7233173d341c91f413607521f4e3ab0f2dedc
|
|
4
|
+
data.tar.gz: e99f3c4f834196a55541b43fcbee09c438ddbdbc28fb4ca500cb0a237451472b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37163cc3e07dc078a5ec763a1902d5209f8ae52785f8dba425754da158286db799cfccc07080ccf8649a72b7d9620678aa9395a5b98981ed864da4e597b22996
|
|
7
|
+
data.tar.gz: 84be8a1667fdec653e0dd667dc75376f0c6c5cfd69450981161d66f541a05b49f20d40952ad338256ee1f3b4485869dda09a9568299b40fc6c0290a9a4acf63f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.174.0 (2026-08-19)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for EKS cluster certificate authorities (CA)
|
|
8
|
+
|
|
9
|
+
1.173.0 (2026-08-11)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This feature would give customers the ability to selectively tune certain configurations of Kubernetes control plane components in an Amazon EKS cluster.
|
|
13
|
+
|
|
4
14
|
1.172.0 (2026-07-09)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.174.0
|