aws-sdk-elasticloadbalancingv2 1.67.0 → 1.71.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 +25 -7
- data/lib/aws-sdk-elasticloadbalancingv2/client_api.rb +8 -0
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +49 -13
- 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: 7a0770735ba380d3b5c0a003d2b848c6df335060f7c06761544877e3f4311b77
|
4
|
+
data.tar.gz: b3bed9243276aa78e863f53a6461f792a0ebcc455b639ea8df10638f59faaaf0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fb6da40c72fc7affdd5cde6fc0223cf8ef8ce83534e02099cced793b6731385832cf5eba3d85461540741cdc1042e365b47b1d5609e252b7aaa5e20c2d128caf
|
7
|
+
data.tar.gz: fecae1d5bf0706aa1919b8626cc99c54a3ff7e98d04f2c189ede64f5a6bd006c317df0f9163a979719ecd05d086d57dc6b4fcdb6a1b4e711f93f3ed35939efd0
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.71.0 (2021-10-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.70.0 (2021-10-14)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds new option to filter by availability on each type of load balancer when describing ssl policies.
|
13
|
+
|
14
|
+
1.69.0 (2021-10-11)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Enable support for ALB IPv6 Target Groups (IP Address Type)
|
18
|
+
|
19
|
+
1.68.0 (2021-09-27)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Adds new ALB-type target group to facilitate forwarding traffic from NLB to ALB
|
23
|
+
|
4
24
|
1.67.0 (2021-09-01)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.71.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,9 +1419,16 @@ 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
|
#
|
1427
|
+
# @option params [String] :ip_address_type
|
1428
|
+
# The type of IP address used for this target group. The possible values
|
1429
|
+
# are `ipv4` and `ipv6`. This is an optional parameter. If not
|
1430
|
+
# specified, the IP address type defaults to `ipv4`.
|
1431
|
+
#
|
1425
1432
|
# @return [Types::CreateTargetGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1426
1433
|
#
|
1427
1434
|
# * {Types::CreateTargetGroupOutput#target_groups #target_groups} => Array<Types::TargetGroup>
|
@@ -1482,13 +1489,14 @@ module Aws::ElasticLoadBalancingV2
|
|
1482
1489
|
# http_code: "HttpCode",
|
1483
1490
|
# grpc_code: "GrpcCode",
|
1484
1491
|
# },
|
1485
|
-
# target_type: "instance", # accepts instance, ip, lambda
|
1492
|
+
# target_type: "instance", # accepts instance, ip, lambda, alb
|
1486
1493
|
# tags: [
|
1487
1494
|
# {
|
1488
1495
|
# key: "TagKey", # required
|
1489
1496
|
# value: "TagValue",
|
1490
1497
|
# },
|
1491
1498
|
# ],
|
1499
|
+
# ip_address_type: "ipv4", # accepts ipv4, ipv6
|
1492
1500
|
# })
|
1493
1501
|
#
|
1494
1502
|
# @example Response structure
|
@@ -1511,8 +1519,9 @@ module Aws::ElasticLoadBalancingV2
|
|
1511
1519
|
# resp.target_groups[0].matcher.grpc_code #=> String
|
1512
1520
|
# resp.target_groups[0].load_balancer_arns #=> Array
|
1513
1521
|
# resp.target_groups[0].load_balancer_arns[0] #=> String
|
1514
|
-
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda"
|
1522
|
+
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
|
1515
1523
|
# resp.target_groups[0].protocol_version #=> String
|
1524
|
+
# resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
|
1516
1525
|
#
|
1517
1526
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTargetGroup AWS API Documentation
|
1518
1527
|
#
|
@@ -2316,6 +2325,10 @@ module Aws::ElasticLoadBalancingV2
|
|
2316
2325
|
# @option params [Integer] :page_size
|
2317
2326
|
# The maximum number of results to return with this call.
|
2318
2327
|
#
|
2328
|
+
# @option params [String] :load_balancer_type
|
2329
|
+
# The type of load balancer. The default lists the SSL policies for all
|
2330
|
+
# load balancers.
|
2331
|
+
#
|
2319
2332
|
# @return [Types::DescribeSSLPoliciesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2320
2333
|
#
|
2321
2334
|
# * {Types::DescribeSSLPoliciesOutput#ssl_policies #ssl_policies} => Array<Types::SslPolicy>
|
@@ -2430,6 +2443,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2430
2443
|
# names: ["SslPolicyName"],
|
2431
2444
|
# marker: "Marker",
|
2432
2445
|
# page_size: 1,
|
2446
|
+
# load_balancer_type: "application", # accepts application, network, gateway
|
2433
2447
|
# })
|
2434
2448
|
#
|
2435
2449
|
# @example Response structure
|
@@ -2441,6 +2455,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2441
2455
|
# resp.ssl_policies[0].ciphers[0].name #=> String
|
2442
2456
|
# resp.ssl_policies[0].ciphers[0].priority #=> Integer
|
2443
2457
|
# resp.ssl_policies[0].name #=> String
|
2458
|
+
# resp.ssl_policies[0].supported_load_balancer_types #=> Array
|
2459
|
+
# resp.ssl_policies[0].supported_load_balancer_types[0] #=> String
|
2444
2460
|
# resp.next_marker #=> String
|
2445
2461
|
#
|
2446
2462
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeSSLPolicies AWS API Documentation
|
@@ -2690,8 +2706,9 @@ module Aws::ElasticLoadBalancingV2
|
|
2690
2706
|
# resp.target_groups[0].matcher.grpc_code #=> String
|
2691
2707
|
# resp.target_groups[0].load_balancer_arns #=> Array
|
2692
2708
|
# resp.target_groups[0].load_balancer_arns[0] #=> String
|
2693
|
-
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda"
|
2709
|
+
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
|
2694
2710
|
# resp.target_groups[0].protocol_version #=> String
|
2711
|
+
# resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
|
2695
2712
|
# resp.next_marker #=> String
|
2696
2713
|
#
|
2697
2714
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTargetGroups AWS API Documentation
|
@@ -3655,8 +3672,9 @@ module Aws::ElasticLoadBalancingV2
|
|
3655
3672
|
# resp.target_groups[0].matcher.grpc_code #=> String
|
3656
3673
|
# resp.target_groups[0].load_balancer_arns #=> Array
|
3657
3674
|
# resp.target_groups[0].load_balancer_arns[0] #=> String
|
3658
|
-
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda"
|
3675
|
+
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
|
3659
3676
|
# resp.target_groups[0].protocol_version #=> String
|
3677
|
+
# resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
|
3660
3678
|
#
|
3661
3679
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTargetGroup AWS API Documentation
|
3662
3680
|
#
|
@@ -4272,7 +4290,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4272
4290
|
params: params,
|
4273
4291
|
config: config)
|
4274
4292
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4275
|
-
context[:gem_version] = '1.
|
4293
|
+
context[:gem_version] = '1.71.0'
|
4276
4294
|
Seahorse::Client::Request.new(handlers, context)
|
4277
4295
|
end
|
4278
4296
|
|
@@ -263,6 +263,7 @@ module Aws::ElasticLoadBalancingV2
|
|
263
263
|
TargetGroupAttributeKey = Shapes::StringShape.new(name: 'TargetGroupAttributeKey')
|
264
264
|
TargetGroupAttributeValue = Shapes::StringShape.new(name: 'TargetGroupAttributeValue')
|
265
265
|
TargetGroupAttributes = Shapes::ListShape.new(name: 'TargetGroupAttributes')
|
266
|
+
TargetGroupIpAddressTypeEnum = Shapes::StringShape.new(name: 'TargetGroupIpAddressTypeEnum')
|
266
267
|
TargetGroupList = Shapes::ListShape.new(name: 'TargetGroupList')
|
267
268
|
TargetGroupName = Shapes::StringShape.new(name: 'TargetGroupName')
|
268
269
|
TargetGroupNames = Shapes::ListShape.new(name: 'TargetGroupNames')
|
@@ -432,6 +433,7 @@ module Aws::ElasticLoadBalancingV2
|
|
432
433
|
CreateTargetGroupInput.add_member(:matcher, Shapes::ShapeRef.new(shape: Matcher, location_name: "Matcher"))
|
433
434
|
CreateTargetGroupInput.add_member(:target_type, Shapes::ShapeRef.new(shape: TargetTypeEnum, location_name: "TargetType"))
|
434
435
|
CreateTargetGroupInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
436
|
+
CreateTargetGroupInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: TargetGroupIpAddressTypeEnum, location_name: "IpAddressType"))
|
435
437
|
CreateTargetGroupInput.struct_class = Types::CreateTargetGroupInput
|
436
438
|
|
437
439
|
CreateTargetGroupOutput.add_member(:target_groups, Shapes::ShapeRef.new(shape: TargetGroups, location_name: "TargetGroups"))
|
@@ -519,6 +521,7 @@ module Aws::ElasticLoadBalancingV2
|
|
519
521
|
DescribeSSLPoliciesInput.add_member(:names, Shapes::ShapeRef.new(shape: SslPolicyNames, location_name: "Names"))
|
520
522
|
DescribeSSLPoliciesInput.add_member(:marker, Shapes::ShapeRef.new(shape: Marker, location_name: "Marker"))
|
521
523
|
DescribeSSLPoliciesInput.add_member(:page_size, Shapes::ShapeRef.new(shape: PageSize, location_name: "PageSize"))
|
524
|
+
DescribeSSLPoliciesInput.add_member(:load_balancer_type, Shapes::ShapeRef.new(shape: LoadBalancerTypeEnum, location_name: "LoadBalancerType"))
|
522
525
|
DescribeSSLPoliciesInput.struct_class = Types::DescribeSSLPoliciesInput
|
523
526
|
|
524
527
|
DescribeSSLPoliciesOutput.add_member(:ssl_policies, Shapes::ShapeRef.new(shape: SslPolicies, location_name: "SslPolicies"))
|
@@ -835,6 +838,7 @@ module Aws::ElasticLoadBalancingV2
|
|
835
838
|
SslPolicy.add_member(:ssl_protocols, Shapes::ShapeRef.new(shape: SslProtocols, location_name: "SslProtocols"))
|
836
839
|
SslPolicy.add_member(:ciphers, Shapes::ShapeRef.new(shape: Ciphers, location_name: "Ciphers"))
|
837
840
|
SslPolicy.add_member(:name, Shapes::ShapeRef.new(shape: SslPolicyName, location_name: "Name"))
|
841
|
+
SslPolicy.add_member(:supported_load_balancer_types, Shapes::ShapeRef.new(shape: ListOfString, location_name: "SupportedLoadBalancerTypes"))
|
838
842
|
SslPolicy.struct_class = Types::SslPolicy
|
839
843
|
|
840
844
|
SslPolicyNames.member = Shapes::ShapeRef.new(shape: SslPolicyName)
|
@@ -891,6 +895,7 @@ module Aws::ElasticLoadBalancingV2
|
|
891
895
|
TargetGroup.add_member(:load_balancer_arns, Shapes::ShapeRef.new(shape: LoadBalancerArns, location_name: "LoadBalancerArns"))
|
892
896
|
TargetGroup.add_member(:target_type, Shapes::ShapeRef.new(shape: TargetTypeEnum, location_name: "TargetType"))
|
893
897
|
TargetGroup.add_member(:protocol_version, Shapes::ShapeRef.new(shape: ProtocolVersion, location_name: "ProtocolVersion"))
|
898
|
+
TargetGroup.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: TargetGroupIpAddressTypeEnum, location_name: "IpAddressType"))
|
894
899
|
TargetGroup.struct_class = Types::TargetGroup
|
895
900
|
|
896
901
|
TargetGroupArns.member = Shapes::ShapeRef.new(shape: TargetGroupArn)
|
@@ -992,6 +997,8 @@ module Aws::ElasticLoadBalancingV2
|
|
992
997
|
o.errors << Shapes::ShapeRef.new(shape: TooManyTagsException)
|
993
998
|
o.errors << Shapes::ShapeRef.new(shape: LoadBalancerNotFoundException)
|
994
999
|
o.errors << Shapes::ShapeRef.new(shape: TargetGroupNotFoundException)
|
1000
|
+
o.errors << Shapes::ShapeRef.new(shape: ListenerNotFoundException)
|
1001
|
+
o.errors << Shapes::ShapeRef.new(shape: RuleNotFoundException)
|
995
1002
|
end)
|
996
1003
|
|
997
1004
|
api.add_operation(:create_listener, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1083,6 +1090,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1083
1090
|
o.input = Shapes::ShapeRef.new(shape: DeleteListenerInput)
|
1084
1091
|
o.output = Shapes::ShapeRef.new(shape: DeleteListenerOutput)
|
1085
1092
|
o.errors << Shapes::ShapeRef.new(shape: ListenerNotFoundException)
|
1093
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1086
1094
|
end)
|
1087
1095
|
|
1088
1096
|
api.add_operation(:delete_load_balancer, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1027,13 +1027,14 @@ 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
|
1034
1034
|
# value: "TagValue",
|
1035
1035
|
# },
|
1036
1036
|
# ],
|
1037
|
+
# ip_address_type: "ipv4", # accepts ipv4, ipv6
|
1037
1038
|
# }
|
1038
1039
|
#
|
1039
1040
|
# @!attribute [rw] name
|
@@ -1094,8 +1095,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1094
1095
|
# @!attribute [rw] health_check_enabled
|
1095
1096
|
# Indicates whether health checks are enabled. If the target type is
|
1096
1097
|
# `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.
|
1098
|
+
# If the target type is `instance`, `ip`, or `alb`, health checks are
|
1099
|
+
# always enabled and cannot be disabled.
|
1099
1100
|
# @return [Boolean]
|
1100
1101
|
#
|
1101
1102
|
# @!attribute [rw] health_check_path
|
@@ -1165,12 +1166,20 @@ module Aws::ElasticLoadBalancingV2
|
|
1165
1166
|
# can't specify publicly routable IP addresses.
|
1166
1167
|
#
|
1167
1168
|
# * `lambda` - Register a single Lambda function as a target.
|
1169
|
+
#
|
1170
|
+
# * `alb` - Register a single Application Load Balancer as a target.
|
1168
1171
|
# @return [String]
|
1169
1172
|
#
|
1170
1173
|
# @!attribute [rw] tags
|
1171
1174
|
# The tags to assign to the target group.
|
1172
1175
|
# @return [Array<Types::Tag>]
|
1173
1176
|
#
|
1177
|
+
# @!attribute [rw] ip_address_type
|
1178
|
+
# The type of IP address used for this target group. The possible
|
1179
|
+
# values are `ipv4` and `ipv6`. This is an optional parameter. If not
|
1180
|
+
# specified, the IP address type defaults to `ipv4`.
|
1181
|
+
# @return [String]
|
1182
|
+
#
|
1174
1183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTargetGroupInput AWS API Documentation
|
1175
1184
|
#
|
1176
1185
|
class CreateTargetGroupInput < Struct.new(
|
@@ -1189,7 +1198,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1189
1198
|
:unhealthy_threshold_count,
|
1190
1199
|
:matcher,
|
1191
1200
|
:target_type,
|
1192
|
-
:tags
|
1201
|
+
:tags,
|
1202
|
+
:ip_address_type)
|
1193
1203
|
SENSITIVE = []
|
1194
1204
|
include Aws::Structure
|
1195
1205
|
end
|
@@ -1636,6 +1646,7 @@ module Aws::ElasticLoadBalancingV2
|
|
1636
1646
|
# names: ["SslPolicyName"],
|
1637
1647
|
# marker: "Marker",
|
1638
1648
|
# page_size: 1,
|
1649
|
+
# load_balancer_type: "application", # accepts application, network, gateway
|
1639
1650
|
# }
|
1640
1651
|
#
|
1641
1652
|
# @!attribute [rw] names
|
@@ -1651,12 +1662,18 @@ module Aws::ElasticLoadBalancingV2
|
|
1651
1662
|
# The maximum number of results to return with this call.
|
1652
1663
|
# @return [Integer]
|
1653
1664
|
#
|
1665
|
+
# @!attribute [rw] load_balancer_type
|
1666
|
+
# The type of load balancer. The default lists the SSL policies for
|
1667
|
+
# all load balancers.
|
1668
|
+
# @return [String]
|
1669
|
+
#
|
1654
1670
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeSSLPoliciesInput AWS API Documentation
|
1655
1671
|
#
|
1656
1672
|
class DescribeSSLPoliciesInput < Struct.new(
|
1657
1673
|
:names,
|
1658
1674
|
:marker,
|
1659
|
-
:page_size
|
1675
|
+
:page_size,
|
1676
|
+
:load_balancer_type)
|
1660
1677
|
SENSITIVE = []
|
1661
1678
|
include Aws::Structure
|
1662
1679
|
end
|
@@ -2487,6 +2504,9 @@ module Aws::ElasticLoadBalancingV2
|
|
2487
2504
|
#
|
2488
2505
|
# For Network Load Balancers and Gateway Load Balancers, this must be
|
2489
2506
|
# "200–399".
|
2507
|
+
#
|
2508
|
+
# Note that when using shorthand syntax, some values such as commas
|
2509
|
+
# need to be escaped.
|
2490
2510
|
# @return [String]
|
2491
2511
|
#
|
2492
2512
|
# @!attribute [rw] grpc_code
|
@@ -3777,12 +3797,17 @@ module Aws::ElasticLoadBalancingV2
|
|
3777
3797
|
# The name of the policy.
|
3778
3798
|
# @return [String]
|
3779
3799
|
#
|
3800
|
+
# @!attribute [rw] supported_load_balancer_types
|
3801
|
+
# The supported load balancers.
|
3802
|
+
# @return [Array<String>]
|
3803
|
+
#
|
3780
3804
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SslPolicy AWS API Documentation
|
3781
3805
|
#
|
3782
3806
|
class SslPolicy < Struct.new(
|
3783
3807
|
:ssl_protocols,
|
3784
3808
|
:ciphers,
|
3785
|
-
:name
|
3809
|
+
:name,
|
3810
|
+
:supported_load_balancer_types)
|
3786
3811
|
SENSITIVE = []
|
3787
3812
|
include Aws::Structure
|
3788
3813
|
end
|
@@ -3895,13 +3920,16 @@ module Aws::ElasticLoadBalancingV2
|
|
3895
3920
|
# The ID of the target. If the target type of the target group is
|
3896
3921
|
# `instance`, specify an instance ID. If the target type is `ip`,
|
3897
3922
|
# specify an IP address. If the target type is `lambda`, specify the
|
3898
|
-
# ARN of the Lambda function.
|
3923
|
+
# ARN of the Lambda function. If the target type is `alb`, specify the
|
3924
|
+
# ARN of the Application Load Balancer target.
|
3899
3925
|
# @return [String]
|
3900
3926
|
#
|
3901
3927
|
# @!attribute [rw] port
|
3902
3928
|
# The port on which the target is listening. If the target group
|
3903
|
-
# protocol is GENEVE, the supported port is 6081.
|
3904
|
-
#
|
3929
|
+
# protocol is GENEVE, the supported port is 6081. If the target type
|
3930
|
+
# is `alb`, the targeted Application Load Balancer must have at least
|
3931
|
+
# one listener whose port matches the target group port. Not used if
|
3932
|
+
# the target is a Lambda function.
|
3905
3933
|
# @return [Integer]
|
3906
3934
|
#
|
3907
3935
|
# @!attribute [rw] availability_zone
|
@@ -3911,7 +3939,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3911
3939
|
# load balancer.
|
3912
3940
|
#
|
3913
3941
|
# This parameter is not supported if the target type of the target
|
3914
|
-
# group is `instance`.
|
3942
|
+
# group is `instance` or `alb`.
|
3915
3943
|
#
|
3916
3944
|
# If the target type is `ip` and the IP address is in a subnet of the
|
3917
3945
|
# VPC for the target group, the Availability Zone is automatically
|
@@ -4009,8 +4037,9 @@ module Aws::ElasticLoadBalancingV2
|
|
4009
4037
|
# @!attribute [rw] target_type
|
4010
4038
|
# The type of target that you must specify when registering targets
|
4011
4039
|
# with this target group. The possible values are `instance` (register
|
4012
|
-
# targets by instance ID), `ip` (register targets by IP address),
|
4013
|
-
# `lambda` (register a single Lambda function as a target)
|
4040
|
+
# targets by instance ID), `ip` (register targets by IP address),
|
4041
|
+
# `lambda` (register a single Lambda function as a target), or `alb`
|
4042
|
+
# (register a single Application Load Balancer as a target).
|
4014
4043
|
# @return [String]
|
4015
4044
|
#
|
4016
4045
|
# @!attribute [rw] protocol_version
|
@@ -4018,6 +4047,12 @@ module Aws::ElasticLoadBalancingV2
|
|
4018
4047
|
# are `GRPC`, `HTTP1`, and `HTTP2`.
|
4019
4048
|
# @return [String]
|
4020
4049
|
#
|
4050
|
+
# @!attribute [rw] ip_address_type
|
4051
|
+
# The type of IP address used for this target group. The possible
|
4052
|
+
# values are `ipv4` and `ipv6`. This is an optional parameter. If not
|
4053
|
+
# specified, the IP address type defaults to `ipv4`.
|
4054
|
+
# @return [String]
|
4055
|
+
#
|
4021
4056
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TargetGroup AWS API Documentation
|
4022
4057
|
#
|
4023
4058
|
class TargetGroup < Struct.new(
|
@@ -4037,7 +4072,8 @@ module Aws::ElasticLoadBalancingV2
|
|
4037
4072
|
:matcher,
|
4038
4073
|
:load_balancer_arns,
|
4039
4074
|
:target_type,
|
4040
|
-
:protocol_version
|
4075
|
+
:protocol_version,
|
4076
|
+
:ip_address_type)
|
4041
4077
|
SENSITIVE = []
|
4042
4078
|
include Aws::Structure
|
4043
4079
|
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.
|
4
|
+
version: 1.71.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-10-18 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.121.2
|
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.121.2
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|