aws-sdk-eks 1.70.0 → 1.73.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e70e1cf5ef4898d9783666f4ef7a90a8ee323bbe4eb9f8eff7137a60605ed01
4
- data.tar.gz: 2c834024a74a35f76ee69154073c6907454ae9d2a6dbaccab2bbf9a47744b320
3
+ metadata.gz: 2640dc4723f3be14c53787c337c2b6a6ff87deecf791138a88ed82cfd022e913
4
+ data.tar.gz: 623226810328fa29626568edad0c18e3ef7b0232098cd55b8137d6237eb4b8a5
5
5
  SHA512:
6
- metadata.gz: e3d7d87cf2f623741813552e7a59d2bfa432ed11a45d54eb1b18a8539e1266599a07ae7e9084a7746000e9496ffe56ebbcfc98634e3420f19b143a97610d4202
7
- data.tar.gz: b1e05b84d71dd2b8d7e26d02696ad89172843a32aa8f96fffc2a15cad6352018fc92c8502e33280d07348d82f7fea21061fd08ebf9a0abd2604e84407b78f087
6
+ metadata.gz: 24ffcf31374c605cccf11e6652fda0aa55c3df96370b48bfb517e71fe76f41a35df1c96ee1b3483666ef3db6870f453940e887ed53c9dcbfe454a8199a600870
7
+ data.tar.gz: bd36de730a86694cce52810b796b2b6e140222d1155f991932499b813d808158b1e2973c19c3254d02f067c43d07944c9be6b93e7d9cb6fbbc2926f2752b867c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.73.0 (2022-02-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.72.0 (2022-02-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.71.0 (2022-01-05)
15
+ ------------------
16
+
17
+ * Feature - Amazon EKS now supports running applications using IPv6 address space
18
+
4
19
  1.70.0 (2021-12-21)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.70.0
1
+ 1.73.0
@@ -27,7 +27,9 @@ 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/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::EKS
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
80
84
 
@@ -755,6 +759,7 @@ module Aws::EKS
755
759
  # },
756
760
  # kubernetes_network_config: {
757
761
  # service_ipv_4_cidr: "String",
762
+ # ip_family: "ipv4", # accepts ipv4, ipv6
758
763
  # },
759
764
  # logging: {
760
765
  # cluster_logging: [
@@ -797,6 +802,8 @@ module Aws::EKS
797
802
  # resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
798
803
  # resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
799
804
  # resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
805
+ # resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
806
+ # resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
800
807
  # resp.cluster.logging.cluster_logging #=> Array
801
808
  # resp.cluster.logging.cluster_logging[0].types #=> Array
802
809
  # resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
@@ -1372,6 +1379,8 @@ module Aws::EKS
1372
1379
  # resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
1373
1380
  # resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
1374
1381
  # resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
1382
+ # resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
1383
+ # resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
1375
1384
  # resp.cluster.logging.cluster_logging #=> Array
1376
1385
  # resp.cluster.logging.cluster_logging[0].types #=> Array
1377
1386
  # resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
@@ -1568,6 +1577,8 @@ module Aws::EKS
1568
1577
  # resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
1569
1578
  # resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
1570
1579
  # resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
1580
+ # resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
1581
+ # resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
1571
1582
  # resp.cluster.logging.cluster_logging #=> Array
1572
1583
  # resp.cluster.logging.cluster_logging[0].types #=> Array
1573
1584
  # resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
@@ -1808,6 +1819,8 @@ module Aws::EKS
1808
1819
  # resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
1809
1820
  # resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
1810
1821
  # resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
1822
+ # resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
1823
+ # resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
1811
1824
  # resp.cluster.logging.cluster_logging #=> Array
1812
1825
  # resp.cluster.logging.cluster_logging[0].types #=> Array
1813
1826
  # resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
@@ -2628,6 +2641,8 @@ module Aws::EKS
2628
2641
  # resp.cluster.resources_vpc_config.public_access_cidrs #=> Array
2629
2642
  # resp.cluster.resources_vpc_config.public_access_cidrs[0] #=> String
2630
2643
  # resp.cluster.kubernetes_network_config.service_ipv_4_cidr #=> String
2644
+ # resp.cluster.kubernetes_network_config.service_ipv_6_cidr #=> String
2645
+ # resp.cluster.kubernetes_network_config.ip_family #=> String, one of "ipv4", "ipv6"
2631
2646
  # resp.cluster.logging.cluster_logging #=> Array
2632
2647
  # resp.cluster.logging.cluster_logging[0].types #=> Array
2633
2648
  # resp.cluster.logging.cluster_logging[0].types[0] #=> String, one of "api", "audit", "authenticator", "controllerManager", "scheduler"
@@ -3245,7 +3260,7 @@ module Aws::EKS
3245
3260
  params: params,
3246
3261
  config: config)
3247
3262
  context[:gem_name] = 'aws-sdk-eks'
3248
- context[:gem_version] = '1.70.0'
3263
+ context[:gem_version] = '1.73.0'
3249
3264
  Seahorse::Client::Request.new(handlers, context)
3250
3265
  end
3251
3266
 
@@ -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"))
@@ -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
- # The CIDR block to assign Kubernetes service IP addresses from. If
2193
- # you don't specify a block, Kubernetes assigns addresses from either
2194
- # the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. We recommend that
2195
- # you specify a block that does not overlap with resources in other
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 service IP addresses are assigned
2223
- # from. If you didn't specify a CIDR block when you created the
2224
- # cluster, then Kubernetes assigns addresses from either the
2225
- # 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. If this was specified,
2226
- # then it was specified when the cluster was created and it cannot be
2227
- # changed.
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
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-eks/customizations'
49
49
  # @!group service
50
50
  module Aws::EKS
51
51
 
52
- GEM_VERSION = '1.70.0'
52
+ GEM_VERSION = '1.73.0'
53
53
 
54
54
  end
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.70.0
4
+ version: 1.73.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: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-02-24 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.125.0
22
+ version: 3.127.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.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement