aws-sdk-elasticloadbalancingv2 1.79.0 → 1.80.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client.rb +2 -2
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +22 -3
- 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: 9f00f6639c66b0d191e31bffcd6976dc90fb621cb26561a47e658dca1e2e06b2
|
|
4
|
+
data.tar.gz: 145ab9d24da6556a977d261edc53fc261b6c4b56f7db35ad2e2e93060182fbc7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b506e363c3986191883a5e93fb4eb0ec623554a658505a28595e49458d16fbf426b97d7213428648daea6569caf88d3c48ee339fcdae898f664f93f47186cc5
|
|
7
|
+
data.tar.gz: b47975cd6781bfe4f5d0bec27e7b1d34b38845f51c97b913f6feae38740cd7e2fec696d1eedc6c2363ef234848afd2d36188d2f77e43a372040563ef1e5ced8d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.80.0 (2022-10-07)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Gateway Load Balancer adds a new feature (target_failover) for customers to rebalance existing flows to a healthy target after marked unhealthy or deregistered. This allows graceful patching/upgrades of target appliances during maintenance windows, and helps reduce unhealthy target failover time.
|
|
8
|
+
|
|
4
9
|
1.79.0 (2022-08-25)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.80.0
|
|
@@ -3945,7 +3945,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
3945
3945
|
end
|
|
3946
3946
|
|
|
3947
3947
|
# Sets the type of IP addresses used by the subnets of the specified
|
|
3948
|
-
#
|
|
3948
|
+
# load balancer.
|
|
3949
3949
|
#
|
|
3950
3950
|
# @option params [required, String] :load_balancer_arn
|
|
3951
3951
|
# The Amazon Resource Name (ARN) of the load balancer.
|
|
@@ -4313,7 +4313,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4313
4313
|
params: params,
|
|
4314
4314
|
config: config)
|
|
4315
4315
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
|
4316
|
-
context[:gem_version] = '1.
|
|
4316
|
+
context[:gem_version] = '1.80.0'
|
|
4317
4317
|
Seahorse::Client::Request.new(handlers, context)
|
|
4318
4318
|
end
|
|
4319
4319
|
|
|
@@ -4140,12 +4140,12 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4140
4140
|
# * `stickiness.type` - Indicates the type of stickiness. The possible
|
|
4141
4141
|
# values are:
|
|
4142
4142
|
#
|
|
4143
|
-
# * `lb_cookie` and `app_cookie` for Application Load Balancers
|
|
4143
|
+
# * `lb_cookie` and `app_cookie` for Application Load Balancers.
|
|
4144
4144
|
#
|
|
4145
|
-
# * `source_ip` for Network Load Balancers
|
|
4145
|
+
# * `source_ip` for Network Load Balancers.
|
|
4146
4146
|
#
|
|
4147
4147
|
# * `source_ip_dest_ip` and `source_ip_dest_ip_proto` for Gateway
|
|
4148
|
-
# Load Balancers
|
|
4148
|
+
# Load Balancers.
|
|
4149
4149
|
#
|
|
4150
4150
|
# The following attributes are supported only if the load balancer is
|
|
4151
4151
|
# an Application Load Balancer and the target is an instance or an IP
|
|
@@ -4212,6 +4212,25 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4212
4212
|
# * `proxy_protocol_v2.enabled` - Indicates whether Proxy Protocol
|
|
4213
4213
|
# version 2 is enabled. The value is `true` or `false`. The default
|
|
4214
4214
|
# is `false`.
|
|
4215
|
+
#
|
|
4216
|
+
# The following attributes are supported only by Gateway Load
|
|
4217
|
+
# Balancers:
|
|
4218
|
+
#
|
|
4219
|
+
# * `target_failover.on_deregistration` - Indicates how the Gateway
|
|
4220
|
+
# Load Balancer handles existing flows when a target is
|
|
4221
|
+
# deregistered. The possible values are `rebalance` and
|
|
4222
|
+
# `no_rebalance`. The default is `no_rebalance`. The two attributes
|
|
4223
|
+
# (`target_failover.on_deregistration` and
|
|
4224
|
+
# `target_failover.on_unhealthy`) can't be set independently. The
|
|
4225
|
+
# value you set for both attributes must be the same.
|
|
4226
|
+
#
|
|
4227
|
+
# * `target_failover.on_unhealthy` - Indicates how the Gateway Load
|
|
4228
|
+
# Balancer handles existing flows when a target is unhealthy. The
|
|
4229
|
+
# possible values are `rebalance` and `no_rebalance`. The default is
|
|
4230
|
+
# `no_rebalance`. The two attributes
|
|
4231
|
+
# (`target_failover.on_deregistration` and
|
|
4232
|
+
# `target_failover.on_unhealthy`) cannot be set independently. The
|
|
4233
|
+
# value you set for both attributes must be the same.
|
|
4215
4234
|
# @return [String]
|
|
4216
4235
|
#
|
|
4217
4236
|
# @!attribute [rw] value
|
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.80.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: 2022-
|
|
11
|
+
date: 2022-10-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|