aws-sdk-eks 1.107.0 → 1.108.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a2f9389508877e2a339b668129c5a00a0bdd7b89286e113e0ab42b4f87de133a
4
- data.tar.gz: 9b7357dfb1d9eb7facde60f3239cfc004182b1d29726030f8ec87989cb4bc896
3
+ metadata.gz: 5395a194978f6147940f5c155f66401f91f34a67663d8ec9644e2f9fc593c119
4
+ data.tar.gz: 40170c0bd2733f7ed1bca0ff55360a5252d7e43e159ea82cfa5651119326afa3
5
5
  SHA512:
6
- metadata.gz: 7ae350694e568e8d27c1da240e836591587d5a421778ec63277fa0cd38b55da21ea0bcf8f062af9ada3aff6a16db57ae5d2586bc2b6c72a7ffef986d7cabed3e
7
- data.tar.gz: 66389a7217e5a9e3b29118d83879d9a1ffb63c06198016933a02de23dad06823238566a79aeb4422e93bb11d256751241dc4f31a4db50ce6cc319f2def88fd0a
6
+ metadata.gz: 6395d14622d1dface18776eb766095f92d471ffe9dfbcb794a6952c60c573e20994add28b4aa151599901f9df6d0fc6d7d394ef009279d9f62cbda2e33f52af8
7
+ data.tar.gz: 320490bdd3a9728b53b27435060e9cd7079a1d1cf64e972331c199b5277ae8cf7351fa85bab354d3f7b24d212c110cbbbfac12e73b45ecf62ac0415ccb461c54
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.107.0 (2024-06-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.107.0
1
+ 1.108.0
@@ -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.107.0'
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"))
@@ -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
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-eks/customizations'
53
53
  # @!group service
54
54
  module Aws::EKS
55
55
 
56
- GEM_VERSION = '1.107.0'
56
+ GEM_VERSION = '1.108.0'
57
57
 
58
58
  end
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.107.0
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-25 00:00:00.000000000 Z
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