aws-sdk-elasticloadbalancingv2 1.63.0 → 1.67.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: e528855e747c8eb2b181f9e2cb4b9142f460bfcee9b8bb14feec9e4714f3c4a6
4
- data.tar.gz: 50683f361cfa0ea5c5b61b080401fa842babe8673770780bcc6bbea07cacd4e5
3
+ metadata.gz: f17362301fd33ef0c2ccba6fa89a48bbe494ea89ab09a69f18c2e5052c9051f3
4
+ data.tar.gz: 4bc5ee07f373f66bf9c206c791942bb8349c20bac8ed4bd5152b8dae7d2d09c4
5
5
  SHA512:
6
- metadata.gz: 28cac67b23406999244b5bcbd9b367f778956750fddf829d2824a69c44ebc7c518794d9a5159b5e60b7d702286a80b607bc8e8358e6f67952502a831a2e5ad15
7
- data.tar.gz: 8a60b17cf9dd6578ba349780362068cc67af0a3fa8ee620271a2229349380363cd13daedd56abac0f4d1f85ea04e13c1ea4eba26f9ecdb31fd52857923eede7c
6
+ metadata.gz: 00d3c1deeee1fae901172667a29f46491aa3877c22631dd733571bdba7fd6301bc1b7e54a6482d33039e4ac538f894bcffd268302133a0959d7df753487c41b5
7
+ data.tar.gz: c8d089be32ccb07e28870eef13076310fd5454a6ae6e0131d1fa73822ab79b1b234c814bce49495f8d0bd24a7d72bc4d2e601e7f68d3df46a6458f7a514c469f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.0 (2021-09-01)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.66.0 (2021-07-30)
10
+ ------------------
11
+
12
+ * Feature - Client Port Preservation ALB Attribute Launch
13
+
14
+ 1.65.0 (2021-07-28)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.64.0 (2021-07-22)
20
+ ------------------
21
+
22
+ * Feature - Adds support for enabling TLS protocol version and cipher suite headers to be sent to backend targets for Application Load Balancers.
23
+
4
24
  1.63.0 (2021-07-21)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.63.0
1
+ 1.67.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. The TCP protocol is supported for health checks only if the
3524
- # protocol of the target group is TCP, TLS, UDP, or TCP\_UDP. The
3525
- # GENEVE, TLS, UDP, and TCP\_UDP protocols are not supported for health
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.63.0'
4275
+ context[:gem_version] = '1.67.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
- # * Indicates whether the two headers (`x-amzn-tls-version` and
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`
@@ -2398,22 +2399,27 @@ module Aws::ElasticLoadBalancingV2
2398
2399
  # Both headers are in OpenSSL format. The possible values for the
2399
2400
  # attribute are `true` and `false`. The default is `false`.
2400
2401
  #
2402
+ # * `routing.http.xff_client_port.enabled` - Indicates whether the
2403
+ # `X-Forwarded-For` header should preserve the source port that the
2404
+ # client used to connect to the load balancer. The possible values
2405
+ # are `true` and `false`. The default is `false`.
2406
+ #
2401
2407
  # * `routing.http2.enabled` - Indicates whether HTTP/2 is enabled. The
2402
- # value is `true` or `false`. The default is `true`. Elastic Load
2403
- # Balancing requires that message header names contain only
2404
- # alphanumeric characters and hyphens.
2408
+ # possible values are `true` and `false`. The default is `true`.
2409
+ # Elastic Load Balancing requires that message header names contain
2410
+ # only alphanumeric characters and hyphens.
2405
2411
  #
2406
2412
  # * `waf.fail_open.enabled` - Indicates whether to allow a WAF-enabled
2407
2413
  # load balancer to route requests to targets if it is unable to
2408
- # forward the request to Amazon Web Services WAF. The value is
2409
- # `true` or `false`. The default is `false`.
2414
+ # forward the request to Amazon Web Services WAF. The possible
2415
+ # values are `true` and `false`. The default is `false`.
2410
2416
  #
2411
2417
  # The following attribute is supported by Network Load Balancers and
2412
2418
  # Gateway Load Balancers:
2413
2419
  #
2414
2420
  # * `load_balancing.cross_zone.enabled` - Indicates whether cross-zone
2415
- # load balancing is enabled. The value is `true` or `false`. The
2416
- # default is `false`.
2421
+ # load balancing is enabled. The possible values are `true` and
2422
+ # `false`. The default is `false`.
2417
2423
  #
2418
2424
  # ^
2419
2425
  # @return [String]
@@ -2906,10 +2912,13 @@ module Aws::ElasticLoadBalancingV2
2906
2912
  #
2907
2913
  # @!attribute [rw] health_check_protocol
2908
2914
  # The protocol the load balancer uses when performing health checks on
2909
- # targets. The TCP protocol is supported for health checks only if the
2910
- # protocol of the target group is TCP, TLS, UDP, or TCP\_UDP. The
2911
- # GENEVE, TLS, UDP, and TCP\_UDP protocols are not supported for
2912
- # health checks.
2915
+ # targets. For Application Load Balancers, the default is HTTP. For
2916
+ # Network Load Balancers and Gateway Load Balancers, the default is
2917
+ # TCP. The TCP protocol is not supported for health checks if the
2918
+ # protocol of the target group is HTTP or HTTPS. It is supported for
2919
+ # health checks only if the protocol of the target group is TCP, TLS,
2920
+ # UDP, or TCP\_UDP. The GENEVE, TLS, UDP, and TCP\_UDP protocols are
2921
+ # not supported for health checks.
2913
2922
  #
2914
2923
  # With Network Load Balancers, you can't modify this setting.
2915
2924
  # @return [String]
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-elasticloadbalancingv2/customizations'
49
49
  # @!group service
50
50
  module Aws::ElasticLoadBalancingV2
51
51
 
52
- GEM_VERSION = '1.63.0'
52
+ GEM_VERSION = '1.67.0'
53
53
 
54
54
  end
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.63.0
4
+ version: 1.67.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-21 00:00:00.000000000 Z
11
+ date: 2021-09-01 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.112.0
22
+ version: 3.120.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.112.0
32
+ version: 3.120.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -77,7 +77,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
77
77
  requirements:
78
78
  - - ">="
79
79
  - !ruby/object:Gem::Version
80
- version: '0'
80
+ version: '2.3'
81
81
  required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  requirements:
83
83
  - - ">="