aws-sdk-elasticloadbalancingv2 1.75.0 → 1.78.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client.rb +20 -16
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +35 -17
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c268c3d3abc90398548fc4f10535926b3e247a0c16ac3a766419f096a8a77a1
|
4
|
+
data.tar.gz: 0d90844622e4c9cbccf7b387246725e02de30aa090e06058ebf96ea298dd855e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6793c1566a9ac786e71960785d8d26fff651c5cea9e0dc255751f5c4dfa87ee3b6a937de659a42d3c51b8d767a2575211fbec74ec7c4fb8be26296c2c0fb947f
|
7
|
+
data.tar.gz: cacf818a78ecaafc2547fdc4969c067482dbb91c25e787d5a80ba9f979ef8d6113c0f8e09bc4d436e1883ed4e54110a6ad34ef263c18eb6cd79b9d8d7a04413d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.78.0 (2022-06-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds two attributes for ALB. One, helps to preserve the host header and the other helps to modify, preserve, or remove the X-Forwarded-For header in the HTTP request.
|
8
|
+
|
9
|
+
1.77.0 (2022-02-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.76.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.75.0 (2021-12-21)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.78.0
|
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::ElasticLoadBalancingV2
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::Query)
|
80
84
|
|
@@ -805,7 +809,9 @@ module Aws::ElasticLoadBalancingV2
|
|
805
809
|
#
|
806
810
|
# @option params [Array<String>] :subnets
|
807
811
|
# The IDs of the public subnets. You can specify only one subnet per
|
808
|
-
# Availability Zone. You must specify either subnets or subnet mappings
|
812
|
+
# Availability Zone. You must specify either subnets or subnet mappings,
|
813
|
+
# but not both. To specify an Elastic IP address, specify subnet
|
814
|
+
# mappings instead of subnets.
|
809
815
|
#
|
810
816
|
# \[Application Load Balancers\] You must specify subnets from at least
|
811
817
|
# two Availability Zones.
|
@@ -824,7 +830,8 @@ module Aws::ElasticLoadBalancingV2
|
|
824
830
|
#
|
825
831
|
# @option params [Array<Types::SubnetMapping>] :subnet_mappings
|
826
832
|
# The IDs of the public subnets. You can specify only one subnet per
|
827
|
-
# Availability Zone. You must specify either subnets or subnet mappings
|
833
|
+
# Availability Zone. You must specify either subnets or subnet mappings,
|
834
|
+
# but not both.
|
828
835
|
#
|
829
836
|
# \[Application Load Balancers\] You must specify subnets from at least
|
830
837
|
# two Availability Zones. You cannot specify Elastic IP addresses for
|
@@ -1389,11 +1396,12 @@ module Aws::ElasticLoadBalancingV2
|
|
1389
1396
|
#
|
1390
1397
|
# @option params [Integer] :health_check_interval_seconds
|
1391
1398
|
# The approximate amount of time, in seconds, between health checks of
|
1392
|
-
# an individual target. If the target group protocol is
|
1393
|
-
#
|
1394
|
-
#
|
1395
|
-
#
|
1396
|
-
# target type is `lambda`, the default is
|
1399
|
+
# an individual target. If the target group protocol is HTTP or HTTPS,
|
1400
|
+
# the default is 30 seconds. If the target group protocol is TCP, TLS,
|
1401
|
+
# UDP, or TCP\_UDP, the supported values are 10 and 30 seconds and the
|
1402
|
+
# default is 30 seconds. If the target group protocol is GENEVE, the
|
1403
|
+
# default is 10 seconds. If the target type is `lambda`, the default is
|
1404
|
+
# 35 seconds.
|
1397
1405
|
#
|
1398
1406
|
# @option params [Integer] :health_check_timeout_seconds
|
1399
1407
|
# The amount of time, in seconds, during which no response from a target
|
@@ -3551,6 +3559,10 @@ module Aws::ElasticLoadBalancingV2
|
|
3551
3559
|
# Modifies the health checks used when evaluating the health state of
|
3552
3560
|
# the targets in the specified target group.
|
3553
3561
|
#
|
3562
|
+
# If the protocol of the target group is TCP, TLS, UDP, or TCP\_UDP, you
|
3563
|
+
# can't modify the health check protocol, interval, timeout, or success
|
3564
|
+
# codes.
|
3565
|
+
#
|
3554
3566
|
# @option params [required, String] :target_group_arn
|
3555
3567
|
# The Amazon Resource Name (ARN) of the target group.
|
3556
3568
|
#
|
@@ -3564,8 +3576,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3564
3576
|
# TCP\_UDP. The GENEVE, TLS, UDP, and TCP\_UDP protocols are not
|
3565
3577
|
# supported for health checks.
|
3566
3578
|
#
|
3567
|
-
# With Network Load Balancers, you can't modify this setting.
|
3568
|
-
#
|
3569
3579
|
# @option params [String] :health_check_port
|
3570
3580
|
# The port the load balancer uses when performing health checks on
|
3571
3581
|
# targets.
|
@@ -3588,14 +3598,10 @@ module Aws::ElasticLoadBalancingV2
|
|
3588
3598
|
# an individual target. For TCP health checks, the supported values are
|
3589
3599
|
# 10 or 30 seconds.
|
3590
3600
|
#
|
3591
|
-
# With Network Load Balancers, you can't modify this setting.
|
3592
|
-
#
|
3593
3601
|
# @option params [Integer] :health_check_timeout_seconds
|
3594
3602
|
# \[HTTP/HTTPS health checks\] The amount of time, in seconds, during
|
3595
3603
|
# which no response means a failed health check.
|
3596
3604
|
#
|
3597
|
-
# With Network Load Balancers, you can't modify this setting.
|
3598
|
-
#
|
3599
3605
|
# @option params [Integer] :healthy_threshold_count
|
3600
3606
|
# The number of consecutive health checks successes required before
|
3601
3607
|
# considering an unhealthy target healthy.
|
@@ -3610,8 +3616,6 @@ module Aws::ElasticLoadBalancingV2
|
|
3610
3616
|
# \[HTTP/HTTPS health checks\] The HTTP or gRPC codes to use when
|
3611
3617
|
# checking for a successful response from a target.
|
3612
3618
|
#
|
3613
|
-
# With Network Load Balancers, you can't modify this setting.
|
3614
|
-
#
|
3615
3619
|
# @return [Types::ModifyTargetGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3616
3620
|
#
|
3617
3621
|
# * {Types::ModifyTargetGroupOutput#target_groups #target_groups} => Array<Types::TargetGroup>
|
@@ -4309,7 +4313,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4309
4313
|
params: params,
|
4310
4314
|
config: config)
|
4311
4315
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4312
|
-
context[:gem_version] = '1.
|
4316
|
+
context[:gem_version] = '1.78.0'
|
4313
4317
|
Seahorse::Client::Request.new(handlers, context)
|
4314
4318
|
end
|
4315
4319
|
|
@@ -740,7 +740,8 @@ module Aws::ElasticLoadBalancingV2
|
|
740
740
|
# @!attribute [rw] subnets
|
741
741
|
# The IDs of the public subnets. You can specify only one subnet per
|
742
742
|
# Availability Zone. You must specify either subnets or subnet
|
743
|
-
# mappings.
|
743
|
+
# mappings, but not both. To specify an Elastic IP address, specify
|
744
|
+
# subnet mappings instead of subnets.
|
744
745
|
#
|
745
746
|
# \[Application Load Balancers\] You must specify subnets from at
|
746
747
|
# least two Availability Zones.
|
@@ -761,7 +762,7 @@ module Aws::ElasticLoadBalancingV2
|
|
761
762
|
# @!attribute [rw] subnet_mappings
|
762
763
|
# The IDs of the public subnets. You can specify only one subnet per
|
763
764
|
# Availability Zone. You must specify either subnets or subnet
|
764
|
-
# mappings.
|
765
|
+
# mappings, but not both.
|
765
766
|
#
|
766
767
|
# \[Application Load Balancers\] You must specify subnets from at
|
767
768
|
# least two Availability Zones. You cannot specify Elastic IP
|
@@ -1111,11 +1112,12 @@ module Aws::ElasticLoadBalancingV2
|
|
1111
1112
|
#
|
1112
1113
|
# @!attribute [rw] health_check_interval_seconds
|
1113
1114
|
# The approximate amount of time, in seconds, between health checks of
|
1114
|
-
# an individual target. If the target group protocol is
|
1115
|
-
#
|
1116
|
-
#
|
1117
|
-
# If the target group protocol is GENEVE, the
|
1118
|
-
# If the target type is `lambda`, the default
|
1115
|
+
# an individual target. If the target group protocol is HTTP or HTTPS,
|
1116
|
+
# the default is 30 seconds. If the target group protocol is TCP, TLS,
|
1117
|
+
# UDP, or TCP\_UDP, the supported values are 10 and 30 seconds and the
|
1118
|
+
# default is 30 seconds. If the target group protocol is GENEVE, the
|
1119
|
+
# default is 10 seconds. If the target type is `lambda`, the default
|
1120
|
+
# is 35 seconds.
|
1119
1121
|
# @return [Integer]
|
1120
1122
|
#
|
1121
1123
|
# @!attribute [rw] health_check_timeout_seconds
|
@@ -2387,7 +2389,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2387
2389
|
# * `access_logs.s3.prefix` - The prefix for the location in the S3
|
2388
2390
|
# bucket for the access logs.
|
2389
2391
|
#
|
2390
|
-
# * `ipv6.
|
2392
|
+
# * `ipv6.deny_all_igw_traffic` - Blocks internet gateway (IGW) access
|
2391
2393
|
# to the load balancer. It is set to `false` for internet-facing
|
2392
2394
|
# load balancers and `true` for internal load balancers, preventing
|
2393
2395
|
# unintended access to your internal load balancer through an
|
@@ -2410,6 +2412,11 @@ module Aws::ElasticLoadBalancingV2
|
|
2410
2412
|
# load balancer (`true`) or routed to targets (`false`). The default
|
2411
2413
|
# is `false`.
|
2412
2414
|
#
|
2415
|
+
# * `routing.http.preserve_host_header.enabled` - Indicates whether
|
2416
|
+
# the Application Load Balancer should preserve the `Host` header in
|
2417
|
+
# the HTTP request and send it to the target without any change. The
|
2418
|
+
# possible values are `true` and `false`. The default is `false`.
|
2419
|
+
#
|
2413
2420
|
# * `routing.http.x_amzn_tls_version_and_cipher_suite.enabled` -
|
2414
2421
|
# Indicates whether the two headers (`x-amzn-tls-version` and
|
2415
2422
|
# `x-amzn-tls-cipher-suite`), which contain information about the
|
@@ -2426,6 +2433,24 @@ module Aws::ElasticLoadBalancingV2
|
|
2426
2433
|
# client used to connect to the load balancer. The possible values
|
2427
2434
|
# are `true` and `false`. The default is `false`.
|
2428
2435
|
#
|
2436
|
+
# * `routing.http.xff_header_processing.mode` - Enables you to modify,
|
2437
|
+
# preserve, or remove the `X-Forwarded-For` header in the HTTP
|
2438
|
+
# request before the Application Load Balancer sends the request to
|
2439
|
+
# the target. The possible values are `append`, `preserve`, and
|
2440
|
+
# `remove`. The default is `append`.
|
2441
|
+
#
|
2442
|
+
# * If the value is `append`, the Application Load Balancer adds the
|
2443
|
+
# client IP address (of the last hop) to the `X-Forwarded-For`
|
2444
|
+
# header in the HTTP request before it sends it to targets.
|
2445
|
+
#
|
2446
|
+
# * If the value is `preserve` the Application Load Balancer
|
2447
|
+
# preserves the `X-Forwarded-For` header in the HTTP request, and
|
2448
|
+
# sends it to targets without any change.
|
2449
|
+
#
|
2450
|
+
# * If the value is `remove`, the Application Load Balancer removes
|
2451
|
+
# the `X-Forwarded-For` header in the HTTP request before it sends
|
2452
|
+
# it to targets.
|
2453
|
+
#
|
2429
2454
|
# * `routing.http2.enabled` - Indicates whether HTTP/2 is enabled. The
|
2430
2455
|
# possible values are `true` and `false`. The default is `true`.
|
2431
2456
|
# Elastic Load Balancing requires that message header names contain
|
@@ -2944,8 +2969,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2944
2969
|
# health checks only if the protocol of the target group is TCP, TLS,
|
2945
2970
|
# UDP, or TCP\_UDP. The GENEVE, TLS, UDP, and TCP\_UDP protocols are
|
2946
2971
|
# not supported for health checks.
|
2947
|
-
#
|
2948
|
-
# With Network Load Balancers, you can't modify this setting.
|
2949
2972
|
# @return [String]
|
2950
2973
|
#
|
2951
2974
|
# @!attribute [rw] health_check_port
|
@@ -2972,15 +2995,11 @@ module Aws::ElasticLoadBalancingV2
|
|
2972
2995
|
# The approximate amount of time, in seconds, between health checks of
|
2973
2996
|
# an individual target. For TCP health checks, the supported values
|
2974
2997
|
# are 10 or 30 seconds.
|
2975
|
-
#
|
2976
|
-
# With Network Load Balancers, you can't modify this setting.
|
2977
2998
|
# @return [Integer]
|
2978
2999
|
#
|
2979
3000
|
# @!attribute [rw] health_check_timeout_seconds
|
2980
3001
|
# \[HTTP/HTTPS health checks\] The amount of time, in seconds, during
|
2981
3002
|
# which no response means a failed health check.
|
2982
|
-
#
|
2983
|
-
# With Network Load Balancers, you can't modify this setting.
|
2984
3003
|
# @return [Integer]
|
2985
3004
|
#
|
2986
3005
|
# @!attribute [rw] healthy_threshold_count
|
@@ -2998,8 +3017,6 @@ module Aws::ElasticLoadBalancingV2
|
|
2998
3017
|
# @!attribute [rw] matcher
|
2999
3018
|
# \[HTTP/HTTPS health checks\] The HTTP or gRPC codes to use when
|
3000
3019
|
# checking for a successful response from a target.
|
3001
|
-
#
|
3002
|
-
# With Network Load Balancers, you can't modify this setting.
|
3003
3020
|
# @return [Types::Matcher]
|
3004
3021
|
#
|
3005
3022
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTargetGroupInput AWS API Documentation
|
@@ -3371,7 +3388,8 @@ module Aws::ElasticLoadBalancingV2
|
|
3371
3388
|
# Each rule can optionally include up to one of each of the following
|
3372
3389
|
# conditions: `http-request-method`, `host-header`, `path-pattern`, and
|
3373
3390
|
# `source-ip`. Each rule can also optionally include one or more of each
|
3374
|
-
# of the following conditions: `http-header` and `query-string`.
|
3391
|
+
# of the following conditions: `http-header` and `query-string`. Note
|
3392
|
+
# that the value for a condition cannot be empty.
|
3375
3393
|
#
|
3376
3394
|
# @note When making an API call, you may pass RuleCondition
|
3377
3395
|
# data as a hash:
|
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.78.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:
|
11
|
+
date: 2022-06-29 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.
|
22
|
+
version: 3.127.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.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|