aws-sdk-eks 1.175.0 → 1.176.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +1 -1
- data/lib/aws-sdk-eks/client_api.rb +1 -1
- data/lib/aws-sdk-eks/types.rb +4 -0
- data/lib/aws-sdk-eks.rb +1 -1
- 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: 9009c22f5f087bb172377e3b34498ed556236ae8dbb70b7aa1c940327bcad1d9
|
|
4
|
+
data.tar.gz: 5baff09b247fe0f11ab81681035928b500cf8830d967347e1a75fce54bd1f2c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35d85382554aeb0fac0999734c7f4296adbcb18d9cf529735e53b8db137fd59b3c33c135310e715397a41128be094cf8ca905abfb2f8ed94d6d6d1240ff5e81d
|
|
7
|
+
data.tar.gz: 68b5e3efd8de33c1f9e8fb9140649fcdd5fd3e49a8763175dcaa4659442fa6c25fd21703257f0df959dad1ae0499feed6ddacf92af77b66f3ba34a61bb30fa4d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.176.0 (2026-09-03)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Deprecate EncryptionConfig resources field. Amazon EKS encrypts all Kubernetes API data with envelope encryption by default for clusters running Kubernetes version 1.28 or higher, so this field no longer affects which resources are encrypted.
|
|
8
|
+
|
|
4
9
|
1.175.0 (2026-08-25)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.176.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
|
@@ -1286,7 +1286,7 @@ module Aws::EKS
|
|
|
1286
1286
|
ElasticLoadBalancing.add_member(:enabled, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "enabled"))
|
|
1287
1287
|
ElasticLoadBalancing.struct_class = Types::ElasticLoadBalancing
|
|
1288
1288
|
|
|
1289
|
-
EncryptionConfig.add_member(:resources, Shapes::ShapeRef.new(shape: StringList, location_name: "resources"))
|
|
1289
|
+
EncryptionConfig.add_member(:resources, Shapes::ShapeRef.new(shape: StringList, deprecated: true, location_name: "resources", metadata: {"deprecatedMessage" => "Deprecated. Amazon EKS encrypts all Kubernetes API data by default, so this value no longer determines which resources are encrypted.", "deprecatedSince" => "2025-03-05"}))
|
|
1290
1290
|
EncryptionConfig.add_member(:provider, Shapes::ShapeRef.new(shape: Provider, location_name: "provider"))
|
|
1291
1291
|
EncryptionConfig.struct_class = Types::EncryptionConfig
|
|
1292
1292
|
|
data/lib/aws-sdk-eks/types.rb
CHANGED
|
@@ -4718,6 +4718,10 @@ module Aws::EKS
|
|
|
4718
4718
|
# The encryption configuration for the cluster.
|
|
4719
4719
|
#
|
|
4720
4720
|
# @!attribute [rw] resources
|
|
4721
|
+
# Amazon EKS encrypts all Kubernetes API data with envelope encryption
|
|
4722
|
+
# by default for clusters running Kubernetes version 1.28 or higher,
|
|
4723
|
+
# so this field no longer affects which resources are encrypted.
|
|
4724
|
+
#
|
|
4721
4725
|
# Specifies the resources to be encrypted. The only supported value is
|
|
4722
4726
|
# `secrets`.
|
|
4723
4727
|
# @return [Array<String>]
|
data/lib/aws-sdk-eks.rb
CHANGED