aws-sdk-eks 1.68.0 → 1.72.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +27 -3
- data/lib/aws-sdk-eks/client_api.rb +4 -0
- data/lib/aws-sdk-eks/types.rb +59 -13
- data/lib/aws-sdk-eks.rb +1 -1
- 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: fc961a8fa2aa06e643cd6c0477bc401975bdeb327fd11dc4a5b46629a607a9fb
|
4
|
+
data.tar.gz: 041c43ab1a2af6ab24129bb43fa28e3a9d2407e595555e1544fb98ae4cce930d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a06b2b1788b767cad8cb2cc78814d58752d0b575bc2b6e420afff5b37831f4be6f2503b7934b735bd244c2bb34f8b756c4c95c1e20d34a8ff2b3392ce2f2249
|
7
|
+
data.tar.gz: 38febee4490727d7fdcb5f230f2de84d7ef7d3100532c144a80ff81fae05ac885f88ccd75c6e6ad636003c5fb367a1392fb9b52ef4f09b97f5609bcfae475d8a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.72.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.71.0 (2022-01-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Amazon EKS now supports running applications using IPv6 address space
|
13
|
+
|
14
|
+
1.70.0 (2021-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.69.0 (2021-11-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.68.0 (2021-11-22)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.72.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::EKS
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::EKS
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::EKS
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -295,7 +305,7 @@ module Aws::EKS
|
|
295
305
|
# seconds to wait when opening a HTTP session before raising a
|
296
306
|
# `Timeout::Error`.
|
297
307
|
#
|
298
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
299
309
|
# number of seconds to wait for response data. This value can
|
300
310
|
# safely be set per-request on the session.
|
301
311
|
#
|
@@ -311,6 +321,9 @@ module Aws::EKS
|
|
311
321
|
# disables this behaviour. This value can safely be set per
|
312
322
|
# request on the session.
|
313
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
314
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
315
328
|
# HTTP debug output will be sent to the `:logger`.
|
316
329
|
#
|
@@ -744,6 +757,7 @@ module Aws::EKS
|
|
744
757
|
# },
|
745
758
|
# kubernetes_network_config: {
|
746
759
|
# service_ipv_4_cidr: "String",
|
760
|
+
# ip_family: "ipv4", # accepts ipv4, ipv6
|
747
761
|
# },
|
748
762
|
# logging: {
|
749
763
|
# cluster_logging: [
|
@@ -786,6 +800,8 @@ module Aws::EKS
|
|
786
800
|
# resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
|
787
801
|
# resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
|
788
802
|
# resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
|
803
|
+
# resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
|
804
|
+
# resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
|
789
805
|
# resp.cluster.logging.cluster_logging #=> Array
|
790
806
|
# resp.cluster.logging.cluster_logging[0].types #=> Array
|
791
807
|
# resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
|
@@ -1361,6 +1377,8 @@ module Aws::EKS
|
|
1361
1377
|
# resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
|
1362
1378
|
# resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
|
1363
1379
|
# resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
|
1380
|
+
# resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
|
1381
|
+
# resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
|
1364
1382
|
# resp.cluster.logging.cluster_logging #=> Array
|
1365
1383
|
# resp.cluster.logging.cluster_logging[0].types #=> Array
|
1366
1384
|
# resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
|
@@ -1557,6 +1575,8 @@ module Aws::EKS
|
|
1557
1575
|
# resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
|
1558
1576
|
# resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
|
1559
1577
|
# resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
|
1578
|
+
# resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
|
1579
|
+
# resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
|
1560
1580
|
# resp.cluster.logging.cluster_logging #=> Array
|
1561
1581
|
# resp.cluster.logging.cluster_logging[0].types #=> Array
|
1562
1582
|
# resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
|
@@ -1797,6 +1817,8 @@ module Aws::EKS
|
|
1797
1817
|
# resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
|
1798
1818
|
# resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
|
1799
1819
|
# resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
|
1820
|
+
# resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
|
1821
|
+
# resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
|
1800
1822
|
# resp.cluster.logging.cluster_logging #=> Array
|
1801
1823
|
# resp.cluster.logging.cluster_logging[0].types #=> Array
|
1802
1824
|
# resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
|
@@ -2617,6 +2639,8 @@ module Aws::EKS
|
|
2617
2639
|
# resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
|
2618
2640
|
# resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
|
2619
2641
|
# resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
|
2642
|
+
# resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
|
2643
|
+
# resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
|
2620
2644
|
# resp.cluster.logging.cluster_logging #=> Array
|
2621
2645
|
# resp.cluster.logging.cluster_logging[0].types #=> Array
|
2622
2646
|
# resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
|
@@ -3234,7 +3258,7 @@ module Aws::EKS
|
|
3234
3258
|
params: params,
|
3235
3259
|
config: config)
|
3236
3260
|
context[:gem_name] = 'aws-sdk-eks'
|
3237
|
-
context[:gem_version] = '1.
|
3261
|
+
context[:gem_version] = '1.72.0'
|
3238
3262
|
Seahorse::Client::Request.new(handlers, context)
|
3239
3263
|
end
|
3240
3264
|
|
@@ -100,6 +100,7 @@ module Aws::EKS
|
|
100
100
|
IncludeClustersList = Shapes::ListShape.new(name: 'IncludeClustersList')
|
101
101
|
InvalidParameterException = Shapes::StructureShape.new(name: 'InvalidParameterException')
|
102
102
|
InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
|
103
|
+
IpFamily = Shapes::StringShape.new(name: 'IpFamily')
|
103
104
|
Issue = Shapes::StructureShape.new(name: 'Issue')
|
104
105
|
IssueList = Shapes::ListShape.new(name: 'IssueList')
|
105
106
|
KubernetesNetworkConfigRequest = Shapes::StructureShape.new(name: 'KubernetesNetworkConfigRequest')
|
@@ -536,9 +537,12 @@ module Aws::EKS
|
|
536
537
|
IssueList.member = Shapes::ShapeRef.new(shape: Issue)
|
537
538
|
|
538
539
|
KubernetesNetworkConfigRequest.add_member(:service_ipv_4_cidr, Shapes::ShapeRef.new(shape: String, location_name: "serviceIpv4Cidr"))
|
540
|
+
KubernetesNetworkConfigRequest.add_member(:ip_family, Shapes::ShapeRef.new(shape: IpFamily, location_name: "ipFamily"))
|
539
541
|
KubernetesNetworkConfigRequest.struct_class = Types::KubernetesNetworkConfigRequest
|
540
542
|
|
541
543
|
KubernetesNetworkConfigResponse.add_member(:service_ipv_4_cidr, Shapes::ShapeRef.new(shape: String, location_name: "serviceIpv4Cidr"))
|
544
|
+
KubernetesNetworkConfigResponse.add_member(:service_ipv_6_cidr, Shapes::ShapeRef.new(shape: String, location_name: "serviceIpv6Cidr"))
|
545
|
+
KubernetesNetworkConfigResponse.add_member(:ip_family, Shapes::ShapeRef.new(shape: IpFamily, location_name: "ipFamily"))
|
542
546
|
KubernetesNetworkConfigResponse.struct_class = Types::KubernetesNetworkConfigResponse
|
543
547
|
|
544
548
|
LaunchTemplateSpecification.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -721,6 +721,7 @@ module Aws::EKS
|
|
721
721
|
# },
|
722
722
|
# kubernetes_network_config: {
|
723
723
|
# service_ipv_4_cidr: "String",
|
724
|
+
# ip_family: "ipv4", # accepts ipv4, ipv6
|
724
725
|
# },
|
725
726
|
# logging: {
|
726
727
|
# cluster_logging: [
|
@@ -2186,13 +2187,15 @@ module Aws::EKS
|
|
2186
2187
|
#
|
2187
2188
|
# {
|
2188
2189
|
# service_ipv_4_cidr: "String",
|
2190
|
+
# ip_family: "ipv4", # accepts ipv4, ipv6
|
2189
2191
|
# }
|
2190
2192
|
#
|
2191
2193
|
# @!attribute [rw] service_ipv_4_cidr
|
2192
|
-
#
|
2193
|
-
#
|
2194
|
-
#
|
2195
|
-
#
|
2194
|
+
# Don't specify a value if you select `ipv6` for **ipFamily**. The
|
2195
|
+
# CIDR block to assign Kubernetes service IP addresses from. If you
|
2196
|
+
# don't specify a block, Kubernetes assigns addresses from either the
|
2197
|
+
# 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. We recommend that you
|
2198
|
+
# specify a block that does not overlap with resources in other
|
2196
2199
|
# networks that are peered or connected to your VPC. The block must
|
2197
2200
|
# meet the following requirements:
|
2198
2201
|
#
|
@@ -2208,29 +2211,72 @@ module Aws::EKS
|
|
2208
2211
|
# and can't change this value once the cluster is created.
|
2209
2212
|
# @return [String]
|
2210
2213
|
#
|
2214
|
+
# @!attribute [rw] ip_family
|
2215
|
+
# Specify which IP version is used to assign Kubernetes Pod and
|
2216
|
+
# Service IP addresses. If you don't specify a value, `ipv4` is used
|
2217
|
+
# by default. You can only specify an IP family when you create a
|
2218
|
+
# cluster and can't change this value once the cluster is created. If
|
2219
|
+
# you specify `ipv6`, the VPC and subnets that you specify for cluster
|
2220
|
+
# creation must have both IPv4 and IPv6 CIDR blocks assigned to them.
|
2221
|
+
#
|
2222
|
+
# You can only specify `ipv6` for 1.21 and later clusters that use
|
2223
|
+
# version 1.10.0 or later of the Amazon VPC CNI add-on. If you specify
|
2224
|
+
# `ipv6`, then ensure that your VPC meets the requirements and that
|
2225
|
+
# you're familiar with the considerations listed in [Assigning IPv6
|
2226
|
+
# addresses to Pods and Services][1] in the Amazon EKS User Guide. If
|
2227
|
+
# you specify `ipv6`, Kubernetes assigns Service and Pod addresses
|
2228
|
+
# from the unique local address range (fc00::/7). You can't specify a
|
2229
|
+
# custom IPv6 CIDR block.
|
2230
|
+
#
|
2231
|
+
#
|
2232
|
+
#
|
2233
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/cni-ipv6.html
|
2234
|
+
# @return [String]
|
2235
|
+
#
|
2211
2236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubernetesNetworkConfigRequest AWS API Documentation
|
2212
2237
|
#
|
2213
2238
|
class KubernetesNetworkConfigRequest < Struct.new(
|
2214
|
-
:service_ipv_4_cidr
|
2239
|
+
:service_ipv_4_cidr,
|
2240
|
+
:ip_family)
|
2215
2241
|
SENSITIVE = []
|
2216
2242
|
include Aws::Structure
|
2217
2243
|
end
|
2218
2244
|
|
2219
|
-
# The Kubernetes network configuration for the cluster.
|
2245
|
+
# The Kubernetes network configuration for the cluster. The response
|
2246
|
+
# contains a value for **serviceIpv6Cidr** or **serviceIpv4Cidr**, but
|
2247
|
+
# not both.
|
2220
2248
|
#
|
2221
2249
|
# @!attribute [rw] service_ipv_4_cidr
|
2222
|
-
# The CIDR block that Kubernetes
|
2223
|
-
# from.
|
2224
|
-
#
|
2225
|
-
#
|
2226
|
-
#
|
2227
|
-
#
|
2250
|
+
# The CIDR block that Kubernetes Pod and Service IP addresses are
|
2251
|
+
# assigned from. Kubernetes assigns addresses from an IPv4 CIDR block
|
2252
|
+
# assigned to a subnet that the node is in. If you didn't specify a
|
2253
|
+
# CIDR block when you created the cluster, then Kubernetes assigns
|
2254
|
+
# addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR
|
2255
|
+
# blocks. If this was specified, then it was specified when the
|
2256
|
+
# cluster was created and it can't be changed.
|
2257
|
+
# @return [String]
|
2258
|
+
#
|
2259
|
+
# @!attribute [rw] service_ipv_6_cidr
|
2260
|
+
# The CIDR block that Kubernetes Pod and Service IP addresses are
|
2261
|
+
# assigned from if you created a 1.21 or later cluster with version
|
2262
|
+
# 1.10.0 or later of the Amazon VPC CNI add-on and specified `ipv6`
|
2263
|
+
# for **ipFamily** when you created the cluster. Kubernetes assigns
|
2264
|
+
# addresses from the unique local address range (fc00::/7).
|
2265
|
+
# @return [String]
|
2266
|
+
#
|
2267
|
+
# @!attribute [rw] ip_family
|
2268
|
+
# The IP family used to assign Kubernetes Pod and Service IP
|
2269
|
+
# addresses. The IP family is always `ipv4`, unless you have a `1.21`
|
2270
|
+
# or later cluster running version 1.10.0 or later of the Amazon VPC
|
2271
|
+
# CNI add-on and specified `ipv6` when you created the cluster.
|
2228
2272
|
# @return [String]
|
2229
2273
|
#
|
2230
2274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubernetesNetworkConfigResponse AWS API Documentation
|
2231
2275
|
#
|
2232
2276
|
class KubernetesNetworkConfigResponse < Struct.new(
|
2233
|
-
:service_ipv_4_cidr
|
2277
|
+
:service_ipv_4_cidr,
|
2278
|
+
:service_ipv_6_cidr,
|
2279
|
+
:ip_family)
|
2234
2280
|
SENSITIVE = []
|
2235
2281
|
include Aws::Structure
|
2236
2282
|
end
|
data/lib/aws-sdk-eks.rb
CHANGED
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.72.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:
|
11
|
+
date: 2022-02-03 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.126.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.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|