aws-sdk-elasticloadbalancingv2 1.90.0 → 1.91.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/client.rb +24 -1
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +7 -1
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- 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: c7c8ee60da4bf180df20d3c0c3c025430ead6be78c9c9fba03dd431525767783
|
4
|
+
data.tar.gz: b6ad648f5ac8289d6126906ccfcf8d1757db3810bbb4cacfc54f5faa92d603e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d611108183be46cfb9430d35aa57fd5b4787dd722f1303271bba5fcda2559d9cf4a0b5e51a19b4050df5d4f85600cb79b5ac69f8f51952b3b87e37ebce34ffe5
|
7
|
+
data.tar.gz: c6b7b7f622bebfabbad6c27adf3e85dc96084d9f5bba77ee082efdd767f85925a89cfe7d4e495a44f4b049588e282265eed757c22c64644c10af5fccedcd3c9e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.91.0 (2023-09-06)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release enables default UDP connection termination and disabling unhealthy target connection termination for Network Load Balancers.
|
8
|
+
|
4
9
|
1.90.0 (2023-08-10)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.91.0
|
@@ -1747,9 +1747,32 @@ module Aws::ElasticLoadBalancingV2
|
|
1747
1747
|
# After the targets are deregistered, they no longer receive traffic
|
1748
1748
|
# from the load balancer.
|
1749
1749
|
#
|
1750
|
+
# The load balancer stops sending requests to targets that are
|
1751
|
+
# deregistering, but uses connection draining to ensure that in-flight
|
1752
|
+
# traffic completes on the existing connections. This deregistration
|
1753
|
+
# delay is configured by default but can be updated for each target
|
1754
|
+
# group.
|
1755
|
+
#
|
1756
|
+
# For more information, see the following:
|
1757
|
+
#
|
1758
|
+
# * [ Deregistration delay][1] in the *Application Load Balancers User
|
1759
|
+
# Guide*
|
1760
|
+
#
|
1761
|
+
# * [ Deregistration delay][2] in the *Network Load Balancers User
|
1762
|
+
# Guide*
|
1763
|
+
#
|
1764
|
+
# * [ Deregistration delay][3] in the *Gateway Load Balancers User
|
1765
|
+
# Guide*
|
1766
|
+
#
|
1750
1767
|
# Note: If the specified target does not exist, the action returns
|
1751
1768
|
# successfully.
|
1752
1769
|
#
|
1770
|
+
#
|
1771
|
+
#
|
1772
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-target-groups.html#deregistration-delay
|
1773
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-target-groups.html#deregistration-delay
|
1774
|
+
# [3]: https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/target-groups.html#deregistration-delay
|
1775
|
+
#
|
1753
1776
|
# @option params [required, String] :target_group_arn
|
1754
1777
|
# The Amazon Resource Name (ARN) of the target group.
|
1755
1778
|
#
|
@@ -4362,7 +4385,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4362
4385
|
params: params,
|
4363
4386
|
config: config)
|
4364
4387
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4365
|
-
context[:gem_version] = '1.
|
4388
|
+
context[:gem_version] = '1.91.0'
|
4366
4389
|
Seahorse::Client::Request.new(handlers, context)
|
4367
4390
|
end
|
4368
4391
|
|
@@ -3274,7 +3274,8 @@ module Aws::ElasticLoadBalancingV2
|
|
3274
3274
|
#
|
3275
3275
|
# * `deregistration_delay.connection_termination.enabled` - Indicates
|
3276
3276
|
# whether the load balancer terminates connections at the end of the
|
3277
|
-
# deregistration timeout. The value is `true` or `false`.
|
3277
|
+
# deregistration timeout. The value is `true` or `false`. For new
|
3278
|
+
# UDP/TCP\_UDP target groups the default is `true`. Otherwise, the
|
3278
3279
|
# default is `false`.
|
3279
3280
|
#
|
3280
3281
|
# * `preserve_client_ip.enabled` - Indicates whether client IP
|
@@ -3288,6 +3289,11 @@ module Aws::ElasticLoadBalancingV2
|
|
3288
3289
|
# version 2 is enabled. The value is `true` or `false`. The default
|
3289
3290
|
# is `false`.
|
3290
3291
|
#
|
3292
|
+
# * `target_health_state.unhealthy.connection_termination.enabled` -
|
3293
|
+
# Indicates whether the load balancer terminates connections to
|
3294
|
+
# unhealthy targets. The value is `true` or `false`. The default is
|
3295
|
+
# `true`.
|
3296
|
+
#
|
3291
3297
|
# The following attributes are supported only by Gateway Load
|
3292
3298
|
# Balancers:
|
3293
3299
|
#
|
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.91.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: 2023-
|
11
|
+
date: 2023-09-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|