aws-sdk-elasticloadbalancingv2 1.79.0 → 1.80.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: f729865c6d0439e9ee5a425e7ffaac39e011b9517688dd130a39cb0e1a575e47
4
- data.tar.gz: 968802ac07b56f6f08df7f79390424c581db339b06f0b2789dc5eac21ef495b9
3
+ metadata.gz: 9f00f6639c66b0d191e31bffcd6976dc90fb621cb26561a47e658dca1e2e06b2
4
+ data.tar.gz: 145ab9d24da6556a977d261edc53fc261b6c4b56f7db35ad2e2e93060182fbc7
5
5
  SHA512:
6
- metadata.gz: d6a646836b29e25afb3a6ec8f76f7c3777909a51a4a12b5041a2899adb1790bcecc2efa699d063a238003ac6ecdfc72bd1dd3580120d94d83d985bc55cc348d0
7
- data.tar.gz: d1ad00d4a3b7e8cb421243b28b076267e94a8cd1a7ca9ed98655011de3a772f69ceb03ca2d9a8042b971060605835b9a342082c19d49969ed9ce54c47c1dcac2
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.79.0
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
- # Application Load Balancer or Network Load Balancer.
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.79.0'
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
@@ -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.79.0'
52
+ GEM_VERSION = '1.80.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.79.0
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-08-25 00:00:00.000000000 Z
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