aws-sdk-elasticloadbalancingv2 1.63.0 → 1.64.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client.rb +8 -5
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +9 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '06291b831db2efc3caa1e316b4e7046f554b627515789a87d60860d6a309ede6'
|
4
|
+
data.tar.gz: 7b57e9811a6dce93520c4a68de744854813d48b7dc8b4c3e01dc4ee623aab6da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e93b058bd8fd95090aad8c633dd8f960ab7d85d6b02ea7a03f784aa1eda029b57ccb441f4ecc774a90f4ed6c61b691e8e001337260a06f8a6dac9a18e5cb8565
|
7
|
+
data.tar.gz: 652a708417ab53dd3df1dac80e0146f38f1e32454d1ae04650021721f3b41bcc2d543a1430904bbbdab25a18304872432b84c0a4d331801240360b288c3f9a66
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.64.0 (2021-07-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds support for enabling TLS protocol version and cipher suite headers to be sent to backend targets for Application Load Balancers.
|
8
|
+
|
4
9
|
1.63.0 (2021-07-21)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.64.0
|
@@ -3520,10 +3520,13 @@ module Aws::ElasticLoadBalancingV2
|
|
3520
3520
|
#
|
3521
3521
|
# @option params [String] :health_check_protocol
|
3522
3522
|
# The protocol the load balancer uses when performing health checks on
|
3523
|
-
# targets.
|
3524
|
-
#
|
3525
|
-
#
|
3526
|
-
# checks
|
3523
|
+
# targets. For Application Load Balancers, the default is HTTP. For
|
3524
|
+
# Network Load Balancers and Gateway Load Balancers, the default is TCP.
|
3525
|
+
# The TCP protocol is not supported for health checks if the protocol of
|
3526
|
+
# the target group is HTTP or HTTPS. It is supported for health checks
|
3527
|
+
# only if the protocol of the target group is TCP, TLS, UDP, or
|
3528
|
+
# TCP\_UDP. The GENEVE, TLS, UDP, and TCP\_UDP protocols are not
|
3529
|
+
# supported for health checks.
|
3527
3530
|
#
|
3528
3531
|
# With Network Load Balancers, you can't modify this setting.
|
3529
3532
|
#
|
@@ -4269,7 +4272,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4269
4272
|
params: params,
|
4270
4273
|
config: config)
|
4271
4274
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4272
|
-
context[:gem_version] = '1.
|
4275
|
+
context[:gem_version] = '1.64.0'
|
4273
4276
|
Seahorse::Client::Request.new(handlers, context)
|
4274
4277
|
end
|
4275
4278
|
|
@@ -2388,7 +2388,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2388
2388
|
# load balancer (`true`) or routed to targets (`false`). The default
|
2389
2389
|
# is `false`.
|
2390
2390
|
#
|
2391
|
-
# *
|
2391
|
+
# * `routing.http.x_amzn_tls_version_and_cipher_suite.enabled` -
|
2392
|
+
# Indicates whether the two headers (`x-amzn-tls-version` and
|
2392
2393
|
# `x-amzn-tls-cipher-suite`), which contain information about the
|
2393
2394
|
# negotiated TLS version and cipher suite, are added to the client
|
2394
2395
|
# request before sending it to the target. The `x-amzn-tls-version`
|
@@ -2906,10 +2907,13 @@ module Aws::ElasticLoadBalancingV2
|
|
2906
2907
|
#
|
2907
2908
|
# @!attribute [rw] health_check_protocol
|
2908
2909
|
# The protocol the load balancer uses when performing health checks on
|
2909
|
-
# targets.
|
2910
|
-
#
|
2911
|
-
#
|
2912
|
-
#
|
2910
|
+
# targets. For Application Load Balancers, the default is HTTP. For
|
2911
|
+
# Network Load Balancers and Gateway Load Balancers, the default is
|
2912
|
+
# TCP. The TCP protocol is not supported for health checks if the
|
2913
|
+
# protocol of the target group is HTTP or HTTPS. It is supported for
|
2914
|
+
# health checks only if the protocol of the target group is TCP, TLS,
|
2915
|
+
# UDP, or TCP\_UDP. The GENEVE, TLS, UDP, and TCP\_UDP protocols are
|
2916
|
+
# not supported for health checks.
|
2913
2917
|
#
|
2914
2918
|
# With Network Load Balancers, you can't modify this setting.
|
2915
2919
|
# @return [String]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-elasticloadbalancingv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.64.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-07-
|
11
|
+
date: 2021-07-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|