aws-sdk-eks 1.106.0 → 1.108.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 +12 -1
- data/lib/aws-sdk-eks/client_api.rb +1 -0
- data/lib/aws-sdk-eks/types.rb +13 -1
- data/lib/aws-sdk-eks.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- 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: 5395a194978f6147940f5c155f66401f91f34a67663d8ec9644e2f9fc593c119
|
4
|
+
data.tar.gz: 40170c0bd2733f7ed1bca0ff55360a5252d7e43e159ea82cfa5651119326afa3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6395d14622d1dface18776eb766095f92d471ffe9dfbcb794a6952c60c573e20994add28b4aa151599901f9df6d0fc6d7d394ef009279d9f62cbda2e33f52af8
|
7
|
+
data.tar.gz: 320490bdd3a9728b53b27435060e9cd7079a1d1cf64e972331c199b5277ae8cf7351fa85bab354d3f7b24d212c110cbbbfac12e73b45ecf62ac0415ccb461c54
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.108.0 (2024-06-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added support for disabling unmanaged addons during cluster creation.
|
8
|
+
|
9
|
+
1.107.0 (2024-06-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.106.0 (2024-06-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.108.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -1078,6 +1078,16 @@ module Aws::EKS
|
|
1078
1078
|
# @option params [Types::CreateAccessConfigRequest] :access_config
|
1079
1079
|
# The access configuration for the cluster.
|
1080
1080
|
#
|
1081
|
+
# @option params [Boolean] :bootstrap_self_managed_addons
|
1082
|
+
# If you set this value to `False` when creating a cluster, the default
|
1083
|
+
# networking add-ons will not be installed.
|
1084
|
+
#
|
1085
|
+
# The default networking addons include vpc-cni, coredns, and
|
1086
|
+
# kube-proxy.
|
1087
|
+
#
|
1088
|
+
# Use this option when you plan to install third-party alternative
|
1089
|
+
# add-ons or self-manage the default networking add-ons.
|
1090
|
+
#
|
1081
1091
|
# @return [Types::CreateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1082
1092
|
#
|
1083
1093
|
# * {Types::CreateClusterResponse#cluster #cluster} => Types::Cluster
|
@@ -1155,6 +1165,7 @@ module Aws::EKS
|
|
1155
1165
|
# bootstrap_cluster_creator_admin_permissions: false,
|
1156
1166
|
# authentication_mode: "API", # accepts API, API_AND_CONFIG_MAP, CONFIG_MAP
|
1157
1167
|
# },
|
1168
|
+
# bootstrap_self_managed_addons: false,
|
1158
1169
|
# })
|
1159
1170
|
#
|
1160
1171
|
# @example Response structure
|
@@ -5061,7 +5072,7 @@ module Aws::EKS
|
|
5061
5072
|
params: params,
|
5062
5073
|
config: config)
|
5063
5074
|
context[:gem_name] = 'aws-sdk-eks'
|
5064
|
-
context[:gem_version] = '1.
|
5075
|
+
context[:gem_version] = '1.108.0'
|
5065
5076
|
Seahorse::Client::Request.new(handlers, context)
|
5066
5077
|
end
|
5067
5078
|
|
@@ -560,6 +560,7 @@ module Aws::EKS
|
|
560
560
|
CreateClusterRequest.add_member(:encryption_config, Shapes::ShapeRef.new(shape: EncryptionConfigList, location_name: "encryptionConfig"))
|
561
561
|
CreateClusterRequest.add_member(:outpost_config, Shapes::ShapeRef.new(shape: OutpostConfigRequest, location_name: "outpostConfig"))
|
562
562
|
CreateClusterRequest.add_member(:access_config, Shapes::ShapeRef.new(shape: CreateAccessConfigRequest, location_name: "accessConfig"))
|
563
|
+
CreateClusterRequest.add_member(:bootstrap_self_managed_addons, Shapes::ShapeRef.new(shape: BoxedBoolean, location_name: "bootstrapSelfManagedAddons"))
|
563
564
|
CreateClusterRequest.struct_class = Types::CreateClusterRequest
|
564
565
|
|
565
566
|
CreateClusterResponse.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "cluster"))
|
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -1442,6 +1442,17 @@ module Aws::EKS
|
|
1442
1442
|
# The access configuration for the cluster.
|
1443
1443
|
# @return [Types::CreateAccessConfigRequest]
|
1444
1444
|
#
|
1445
|
+
# @!attribute [rw] bootstrap_self_managed_addons
|
1446
|
+
# If you set this value to `False` when creating a cluster, the
|
1447
|
+
# default networking add-ons will not be installed.
|
1448
|
+
#
|
1449
|
+
# The default networking addons include vpc-cni, coredns, and
|
1450
|
+
# kube-proxy.
|
1451
|
+
#
|
1452
|
+
# Use this option when you plan to install third-party alternative
|
1453
|
+
# add-ons or self-manage the default networking add-ons.
|
1454
|
+
# @return [Boolean]
|
1455
|
+
#
|
1445
1456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateClusterRequest AWS API Documentation
|
1446
1457
|
#
|
1447
1458
|
class CreateClusterRequest < Struct.new(
|
@@ -1455,7 +1466,8 @@ module Aws::EKS
|
|
1455
1466
|
:tags,
|
1456
1467
|
:encryption_config,
|
1457
1468
|
:outpost_config,
|
1458
|
-
:access_config
|
1469
|
+
:access_config,
|
1470
|
+
:bootstrap_self_managed_addons)
|
1459
1471
|
SENSITIVE = []
|
1460
1472
|
include Aws::Structure
|
1461
1473
|
end
|
data/lib/aws-sdk-eks.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -219,7 +219,8 @@ module Aws
|
|
219
219
|
?access_config: {
|
220
220
|
bootstrap_cluster_creator_admin_permissions: bool?,
|
221
221
|
authentication_mode: ("API" | "API_AND_CONFIG_MAP" | "CONFIG_MAP")?
|
222
|
-
}
|
222
|
+
},
|
223
|
+
?bootstrap_self_managed_addons: bool
|
223
224
|
) -> _CreateClusterResponseSuccess
|
224
225
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterResponseSuccess
|
225
226
|
|
data/sig/types.rbs
CHANGED
@@ -307,6 +307,7 @@ module Aws::EKS
|
|
307
307
|
attr_accessor encryption_config: ::Array[Types::EncryptionConfig]
|
308
308
|
attr_accessor outpost_config: Types::OutpostConfigRequest
|
309
309
|
attr_accessor access_config: Types::CreateAccessConfigRequest
|
310
|
+
attr_accessor bootstrap_self_managed_addons: bool
|
310
311
|
SENSITIVE: []
|
311
312
|
end
|
312
313
|
|
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.108.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-06-
|
11
|
+
date: 2024-06-26 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.
|
22
|
+
version: 3.199.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.
|
32
|
+
version: 3.199.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|