aws-sdk-elasticloadbalancingv2 1.64.0 → 1.68.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client.rb +9 -7
- data/lib/aws-sdk-elasticloadbalancingv2/client_api.rb +3 -0
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +27 -16
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 371cafb430a26edf2a9d2538bcb8573b7edf5feab4dbccb8aa9cab30aaca1618
|
4
|
+
data.tar.gz: 5ddb9055f3b4dfb7af1fa9c16c5e4061c96ee941ac150598e9cb69318135f65b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c218b0f32691012ab7e54bf29ac47a7f30a92b8ff4203be31d0ba8f1fdb2bfb0a45cf8087cbf817bc3d4224fe82ec9a57b1e9cf8ed6173d328558dfb537ebcb5
|
7
|
+
data.tar.gz: a4e3a7e84c9e9faff33b291eeece31f47de52b46dd2a8af094650e22cef0e60b4246ba0fc4ea839a8fbae989d2ca0f34c9cf08f6891bcaeb0d3726627dabfa15
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.68.0 (2021-09-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds new ALB-type target group to facilitate forwarding traffic from NLB to ALB
|
8
|
+
|
9
|
+
1.67.0 (2021-09-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.66.0 (2021-07-30)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Client Port Preservation ALB Attribute Launch
|
18
|
+
|
19
|
+
1.65.0 (2021-07-28)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.64.0 (2021-07-22)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.68.0
|
@@ -1355,8 +1355,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1355
1355
|
# @option params [Boolean] :health_check_enabled
|
1356
1356
|
# Indicates whether health checks are enabled. If the target type is
|
1357
1357
|
# `lambda`, health checks are disabled by default but can be enabled. If
|
1358
|
-
# the target type is `instance` or `
|
1359
|
-
# enabled and cannot be disabled.
|
1358
|
+
# the target type is `instance`, `ip`, or `alb`, health checks are
|
1359
|
+
# always enabled and cannot be disabled.
|
1360
1360
|
#
|
1361
1361
|
# @option params [String] :health_check_path
|
1362
1362
|
# \[HTTP/HTTPS health checks\] The destination for health checks on the
|
@@ -1419,6 +1419,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1419
1419
|
#
|
1420
1420
|
# * `lambda` - Register a single Lambda function as a target.
|
1421
1421
|
#
|
1422
|
+
# * `alb` - Register a single Application Load Balancer as a target.
|
1423
|
+
#
|
1422
1424
|
# @option params [Array<Types::Tag>] :tags
|
1423
1425
|
# The tags to assign to the target group.
|
1424
1426
|
#
|
@@ -1482,7 +1484,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1482
1484
|
# http_code: "HttpCode",
|
1483
1485
|
# grpc_code: "GrpcCode",
|
1484
1486
|
# },
|
1485
|
-
# target_type: "instance", # accepts instance, ip, lambda
|
1487
|
+
# target_type: "instance", # accepts instance, ip, lambda, alb
|
1486
1488
|
# tags: [
|
1487
1489
|
# {
|
1488
1490
|
# key: "TagKey", # required
|
@@ -1511,7 +1513,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1511
1513
|
# resp.target_groups[0].matcher.grpc_code #=> String
|
1512
1514
|
# resp.target_groups[0].load_balancer_arns #=> Array
|
1513
1515
|
# resp.target_groups[0].load_balancer_arns[0] #=> String
|
1514
|
-
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda"
|
1516
|
+
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
|
1515
1517
|
# resp.target_groups[0].protocol_version #=> String
|
1516
1518
|
#
|
1517
1519
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTargetGroup AWS API Documentation
|
@@ -2690,7 +2692,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2690
2692
|
# resp.target_groups[0].matcher.grpc_code #=> String
|
2691
2693
|
# resp.target_groups[0].load_balancer_arns #=> Array
|
2692
2694
|
# resp.target_groups[0].load_balancer_arns[0] #=> String
|
2693
|
-
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda"
|
2695
|
+
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
|
2694
2696
|
# resp.target_groups[0].protocol_version #=> String
|
2695
2697
|
# resp.next_marker #=> String
|
2696
2698
|
#
|
@@ -3655,7 +3657,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3655
3657
|
# resp.target_groups[0].matcher.grpc_code #=> String
|
3656
3658
|
# resp.target_groups[0].load_balancer_arns #=> Array
|
3657
3659
|
# resp.target_groups[0].load_balancer_arns[0] #=> String
|
3658
|
-
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda"
|
3660
|
+
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
|
3659
3661
|
# resp.target_groups[0].protocol_version #=> String
|
3660
3662
|
#
|
3661
3663
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTargetGroup AWS API Documentation
|
@@ -4272,7 +4274,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4272
4274
|
params: params,
|
4273
4275
|
config: config)
|
4274
4276
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4275
|
-
context[:gem_version] = '1.
|
4277
|
+
context[:gem_version] = '1.68.0'
|
4276
4278
|
Seahorse::Client::Request.new(handlers, context)
|
4277
4279
|
end
|
4278
4280
|
|
@@ -992,6 +992,8 @@ module Aws::ElasticLoadBalancingV2
|
|
992
992
|
o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
|
993
993
|
o.errors << Shapes::ShapeRef.new(shape: LoadBalancerNotFoundException)
|
994
994
|
o.errors << Shapes::ShapeRef.new(shape: TargetGroupNotFoundException)
|
995
|
+
o.errors << Shapes::ShapeRef.new(shape: ListenerNotFoundException)
|
996
|
+
o.errors << Shapes::ShapeRef.new(shape: RuleNotFoundException)
|
995
997
|
end)
|
996
998
|
|
997
999
|
api.add_operation(:create_listener, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1083,6 +1085,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1083
1085
|
o.input = Shapes::ShapeRef.new(shape: DeleteListenerInput)
|
1084
1086
|
o.output = Shapes::ShapeRef.new(shape: DeleteListenerOutput)
|
1085
1087
|
o.errors << Shapes::ShapeRef.new(shape: ListenerNotFoundException)
|
1088
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1086
1089
|
end)
|
1087
1090
|
|
1088
1091
|
api.add_operation(:delete_load_balancer, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1027,7 +1027,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1027
1027
|
# http_code: "HttpCode",
|
1028
1028
|
# grpc_code: "GrpcCode",
|
1029
1029
|
# },
|
1030
|
-
# target_type: "instance", # accepts instance, ip, lambda
|
1030
|
+
# target_type: "instance", # accepts instance, ip, lambda, alb
|
1031
1031
|
# tags: [
|
1032
1032
|
# {
|
1033
1033
|
# key: "TagKey", # required
|
@@ -1094,8 +1094,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1094
1094
|
# @!attribute [rw] health_check_enabled
|
1095
1095
|
# Indicates whether health checks are enabled. If the target type is
|
1096
1096
|
# `lambda`, health checks are disabled by default but can be enabled.
|
1097
|
-
# If the target type is `instance` or `
|
1098
|
-
# enabled and cannot be disabled.
|
1097
|
+
# If the target type is `instance`, `ip`, or `alb`, health checks are
|
1098
|
+
# always enabled and cannot be disabled.
|
1099
1099
|
# @return [Boolean]
|
1100
1100
|
#
|
1101
1101
|
# @!attribute [rw] health_check_path
|
@@ -1165,6 +1165,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1165
1165
|
# can't specify publicly routable IP addresses.
|
1166
1166
|
#
|
1167
1167
|
# * `lambda` - Register a single Lambda function as a target.
|
1168
|
+
#
|
1169
|
+
# * `alb` - Register a single Application Load Balancer as a target.
|
1168
1170
|
# @return [String]
|
1169
1171
|
#
|
1170
1172
|
# @!attribute [rw] tags
|
@@ -2399,22 +2401,27 @@ module Aws::ElasticLoadBalancingV2
|
|
2399
2401
|
# Both headers are in OpenSSL format. The possible values for the
|
2400
2402
|
# attribute are `true` and `false`. The default is `false`.
|
2401
2403
|
#
|
2404
|
+
# * `routing.http.xff_client_port.enabled` - Indicates whether the
|
2405
|
+
# `X-Forwarded-For` header should preserve the source port that the
|
2406
|
+
# client used to connect to the load balancer. The possible values
|
2407
|
+
# are `true` and `false`. The default is `false`.
|
2408
|
+
#
|
2402
2409
|
# * `routing.http2.enabled` - Indicates whether HTTP/2 is enabled. The
|
2403
|
-
#
|
2404
|
-
# Balancing requires that message header names contain
|
2405
|
-
# alphanumeric characters and hyphens.
|
2410
|
+
# possible values are `true` and `false`. The default is `true`.
|
2411
|
+
# Elastic Load Balancing requires that message header names contain
|
2412
|
+
# only alphanumeric characters and hyphens.
|
2406
2413
|
#
|
2407
2414
|
# * `waf.fail_open.enabled` - Indicates whether to allow a WAF-enabled
|
2408
2415
|
# load balancer to route requests to targets if it is unable to
|
2409
|
-
# forward the request to Amazon Web Services WAF. The
|
2410
|
-
# `true`
|
2416
|
+
# forward the request to Amazon Web Services WAF. The possible
|
2417
|
+
# values are `true` and `false`. The default is `false`.
|
2411
2418
|
#
|
2412
2419
|
# The following attribute is supported by Network Load Balancers and
|
2413
2420
|
# Gateway Load Balancers:
|
2414
2421
|
#
|
2415
2422
|
# * `load_balancing.cross_zone.enabled` - Indicates whether cross-zone
|
2416
|
-
# load balancing is enabled. The
|
2417
|
-
# default is `false`.
|
2423
|
+
# load balancing is enabled. The possible values are `true` and
|
2424
|
+
# `false`. The default is `false`.
|
2418
2425
|
#
|
2419
2426
|
# ^
|
2420
2427
|
# @return [String]
|
@@ -3890,13 +3897,16 @@ module Aws::ElasticLoadBalancingV2
|
|
3890
3897
|
# The ID of the target. If the target type of the target group is
|
3891
3898
|
# `instance`, specify an instance ID. If the target type is `ip`,
|
3892
3899
|
# specify an IP address. If the target type is `lambda`, specify the
|
3893
|
-
# ARN of the Lambda function.
|
3900
|
+
# ARN of the Lambda function. If the target type is `alb`, specify the
|
3901
|
+
# ARN of the Application Load Balancer target.
|
3894
3902
|
# @return [String]
|
3895
3903
|
#
|
3896
3904
|
# @!attribute [rw] port
|
3897
3905
|
# The port on which the target is listening. If the target group
|
3898
|
-
# protocol is GENEVE, the supported port is 6081.
|
3899
|
-
#
|
3906
|
+
# protocol is GENEVE, the supported port is 6081. If the target type
|
3907
|
+
# is `alb`, the targeted Application Load Balancer must have at least
|
3908
|
+
# one listener whose port matches the target group port. Not used if
|
3909
|
+
# the target is a Lambda function.
|
3900
3910
|
# @return [Integer]
|
3901
3911
|
#
|
3902
3912
|
# @!attribute [rw] availability_zone
|
@@ -3906,7 +3916,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3906
3916
|
# load balancer.
|
3907
3917
|
#
|
3908
3918
|
# This parameter is not supported if the target type of the target
|
3909
|
-
# group is `instance`.
|
3919
|
+
# group is `instance` or `alb`.
|
3910
3920
|
#
|
3911
3921
|
# If the target type is `ip` and the IP address is in a subnet of the
|
3912
3922
|
# VPC for the target group, the Availability Zone is automatically
|
@@ -4004,8 +4014,9 @@ module Aws::ElasticLoadBalancingV2
|
|
4004
4014
|
# @!attribute [rw] target_type
|
4005
4015
|
# The type of target that you must specify when registering targets
|
4006
4016
|
# with this target group. The possible values are `instance` (register
|
4007
|
-
# targets by instance ID), `ip` (register targets by IP address),
|
4008
|
-
# `lambda` (register a single Lambda function as a target)
|
4017
|
+
# targets by instance ID), `ip` (register targets by IP address),
|
4018
|
+
# `lambda` (register a single Lambda function as a target), or `alb`
|
4019
|
+
# (register a single Application Load Balancer as a target).
|
4009
4020
|
# @return [String]
|
4010
4021
|
#
|
4011
4022
|
# @!attribute [rw] protocol_version
|
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.68.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-
|
11
|
+
date: 2021-09-27 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.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.
|
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: '
|
80
|
+
version: '2.3'
|
81
81
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
82
|
requirements:
|
83
83
|
- - ">="
|