aws-sdk-elasticloadbalancingv2 1.143.0 → 1.144.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 +40 -29
- data/lib/aws-sdk-elasticloadbalancingv2/client_api.rb +3 -0
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +48 -31
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fa78693e17db5b10393cc44534d72ed8b46122f99a5a080337978b47c9478f42
|
|
4
|
+
data.tar.gz: d88ca4902910f330560ac0c1d732d4ded29013c83675864d041ae8af285357ff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e5540a1dbd207f592546bb708add444a8a3cd642bb9d12b72d17d43b93c6b8823eb1577a5876714b763a9bc73407684107196c3e2a6a5d8329ee462bf8ea1f5b
|
|
7
|
+
data.tar.gz: 022e2fe6270ec1dac3961a4d8525bf6992a9abf2b4aa6699d1a36cb362cdb17a153e468eb627a5279dce71b79a33472841c6aea6fb2590ddbfe164ee24c97467
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.144.0
|
|
@@ -658,9 +658,9 @@ module Aws::ElasticLoadBalancingV2
|
|
|
658
658
|
# The protocol for connections from clients to the load balancer. For
|
|
659
659
|
# Application Load Balancers, the supported protocols are HTTP and
|
|
660
660
|
# HTTPS. For Network Load Balancers, the supported protocols are TCP,
|
|
661
|
-
# TLS, UDP, and TCP\
|
|
662
|
-
# if dual-stack mode is enabled.
|
|
663
|
-
# Gateway Load Balancer.
|
|
661
|
+
# TLS, UDP, TCP\_UDP, QUIC, and TCP\_QUIC. You can’t specify the UDP,
|
|
662
|
+
# TCP\_UDP, QUIC, or TCP\_QUIC protocol if dual-stack mode is enabled.
|
|
663
|
+
# You can't specify a protocol for a Gateway Load Balancer.
|
|
664
664
|
#
|
|
665
665
|
# @option params [Integer] :port
|
|
666
666
|
# The port on which the load balancer is listening. You can't specify a
|
|
@@ -1630,10 +1630,11 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1630
1630
|
# The protocol to use for routing traffic to the targets. For
|
|
1631
1631
|
# Application Load Balancers, the supported protocols are HTTP and
|
|
1632
1632
|
# HTTPS. For Network Load Balancers, the supported protocols are TCP,
|
|
1633
|
-
# TLS, UDP, or TCP\
|
|
1634
|
-
# protocol is GENEVE. A TCP\_UDP listener must be
|
|
1635
|
-
# TCP\_UDP target group.
|
|
1636
|
-
#
|
|
1633
|
+
# TLS, UDP, TCP\_UDP, QUIC, or TCP\_QUIC. For Gateway Load Balancers,
|
|
1634
|
+
# the supported protocol is GENEVE. A TCP\_UDP listener must be
|
|
1635
|
+
# associated with a TCP\_UDP target group. A TCP\_QUIC listener must be
|
|
1636
|
+
# associated with a TCP\_QUIC target group. If the target is a Lambda
|
|
1637
|
+
# function, this parameter does not apply.
|
|
1637
1638
|
#
|
|
1638
1639
|
# @option params [String] :protocol_version
|
|
1639
1640
|
# \[HTTP/HTTPS protocol\] The protocol version. Specify `GRPC` to send
|
|
@@ -1657,15 +1658,15 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1657
1658
|
# targets. For Application Load Balancers, the default is HTTP. For
|
|
1658
1659
|
# Network Load Balancers and Gateway Load Balancers, the default is TCP.
|
|
1659
1660
|
# The TCP protocol is not supported for health checks if the protocol of
|
|
1660
|
-
# the target group is HTTP or HTTPS. The GENEVE, TLS, UDP,
|
|
1661
|
-
# protocols are not supported for health checks.
|
|
1661
|
+
# the target group is HTTP or HTTPS. The GENEVE, TLS, UDP, TCP\_UDP,
|
|
1662
|
+
# QUIC, and TCP\_QUIC protocols are not supported for health checks.
|
|
1662
1663
|
#
|
|
1663
1664
|
# @option params [String] :health_check_port
|
|
1664
1665
|
# The port the load balancer uses when performing health checks on
|
|
1665
|
-
# targets. If the protocol is HTTP, HTTPS, TCP, TLS, UDP,
|
|
1666
|
-
# the default is `traffic-port`, which is the port on
|
|
1667
|
-
# receives traffic from the load balancer. If the
|
|
1668
|
-
# the default is port 80.
|
|
1666
|
+
# targets. If the protocol is HTTP, HTTPS, TCP, TLS, UDP, TCP\_UDP,
|
|
1667
|
+
# QUIC, or TCP\_QUIC the default is `traffic-port`, which is the port on
|
|
1668
|
+
# which each target receives traffic from the load balancer. If the
|
|
1669
|
+
# protocol is GENEVE, the default is port 80.
|
|
1669
1670
|
#
|
|
1670
1671
|
# @option params [Boolean] :health_check_enabled
|
|
1671
1672
|
# Indicates whether health checks are enabled. If the target type is
|
|
@@ -1686,9 +1687,10 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1686
1687
|
# @option params [Integer] :health_check_interval_seconds
|
|
1687
1688
|
# The approximate amount of time, in seconds, between health checks of
|
|
1688
1689
|
# an individual target. The range is 5-300. If the target group protocol
|
|
1689
|
-
# is TCP, TLS, UDP, TCP\_UDP, HTTP or HTTPS, the
|
|
1690
|
-
# If the target group protocol is GENEVE, the
|
|
1691
|
-
# the target type is `lambda`, the default is
|
|
1690
|
+
# is TCP, TLS, UDP, TCP\_UDP, QUIC, TCP\_QUIC, HTTP or HTTPS, the
|
|
1691
|
+
# default is 30 seconds. If the target group protocol is GENEVE, the
|
|
1692
|
+
# default is 10 seconds. If the target type is `lambda`, the default is
|
|
1693
|
+
# 35 seconds.
|
|
1692
1694
|
#
|
|
1693
1695
|
# @option params [Integer] :health_check_timeout_seconds
|
|
1694
1696
|
# The amount of time, in seconds, during which no response from a target
|
|
@@ -1708,16 +1710,17 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1708
1710
|
# @option params [Integer] :unhealthy_threshold_count
|
|
1709
1711
|
# The number of consecutive health check failures required before
|
|
1710
1712
|
# considering a target unhealthy. The range is 2-10. If the target group
|
|
1711
|
-
# protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or HTTPS,
|
|
1712
|
-
# For target groups with a protocol of GENEVE, the
|
|
1713
|
-
# target type is `lambda`, the default is 5.
|
|
1713
|
+
# protocol is TCP, TCP\_UDP, UDP, TLS, QUIC, TCP\_QUIC, HTTP or HTTPS,
|
|
1714
|
+
# the default is 2. For target groups with a protocol of GENEVE, the
|
|
1715
|
+
# default is 2. If the target type is `lambda`, the default is 5.
|
|
1714
1716
|
#
|
|
1715
1717
|
# @option params [Types::Matcher] :matcher
|
|
1716
1718
|
# \[HTTP/HTTPS health checks\] The HTTP or gRPC codes to use when
|
|
1717
1719
|
# checking for a successful response from a target. For target groups
|
|
1718
|
-
# with a protocol of TCP, TCP\_UDP, UDP or TLS the
|
|
1719
|
-
# target groups with a protocol of HTTP or HTTPS,
|
|
1720
|
-
# For target groups with a protocol of GENEVE, the
|
|
1720
|
+
# with a protocol of TCP, TCP\_UDP, UDP, QUIC, TCP\_QUIC, or TLS the
|
|
1721
|
+
# range is 200-599. For target groups with a protocol of HTTP or HTTPS,
|
|
1722
|
+
# the range is 200-499. For target groups with a protocol of GENEVE, the
|
|
1723
|
+
# range is 200-399.
|
|
1721
1724
|
#
|
|
1722
1725
|
# @option params [String] :target_type
|
|
1723
1726
|
# The type of target that you must specify when registering targets with
|
|
@@ -1743,6 +1746,10 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1743
1746
|
# @option params [String] :ip_address_type
|
|
1744
1747
|
# The IP address type. The default value is `ipv4`.
|
|
1745
1748
|
#
|
|
1749
|
+
# @option params [Integer] :target_control_port
|
|
1750
|
+
# The port on which the target control agent and application load
|
|
1751
|
+
# balancer exchange management traffic for the target optimizer feature.
|
|
1752
|
+
#
|
|
1746
1753
|
# @return [Types::CreateTargetGroupOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1747
1754
|
#
|
|
1748
1755
|
# * {Types::CreateTargetGroupOutput#target_groups #target_groups} => Array<Types::TargetGroup>
|
|
@@ -1811,6 +1818,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1811
1818
|
# },
|
|
1812
1819
|
# ],
|
|
1813
1820
|
# ip_address_type: "ipv4", # accepts ipv4, ipv6
|
|
1821
|
+
# target_control_port: 1,
|
|
1814
1822
|
# })
|
|
1815
1823
|
#
|
|
1816
1824
|
# @example Response structure
|
|
@@ -1836,6 +1844,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1836
1844
|
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
|
|
1837
1845
|
# resp.target_groups[0].protocol_version #=> String
|
|
1838
1846
|
# resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
|
|
1847
|
+
# resp.target_groups[0].target_control_port #=> Integer
|
|
1839
1848
|
#
|
|
1840
1849
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTargetGroup AWS API Documentation
|
|
1841
1850
|
#
|
|
@@ -3301,6 +3310,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
3301
3310
|
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
|
|
3302
3311
|
# resp.target_groups[0].protocol_version #=> String
|
|
3303
3312
|
# resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
|
|
3313
|
+
# resp.target_groups[0].target_control_port #=> Integer
|
|
3304
3314
|
# resp.next_marker #=> String
|
|
3305
3315
|
#
|
|
3306
3316
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTargetGroups AWS API Documentation
|
|
@@ -3799,10 +3809,10 @@ module Aws::ElasticLoadBalancingV2
|
|
|
3799
3809
|
# @option params [String] :protocol
|
|
3800
3810
|
# The protocol for connections from clients to the load balancer.
|
|
3801
3811
|
# Application Load Balancers support the HTTP and HTTPS protocols.
|
|
3802
|
-
# Network Load Balancers support the TCP, TLS, UDP,
|
|
3803
|
-
# protocols. You can’t change the protocol to UDP
|
|
3804
|
-
# dual-stack mode is enabled. You can't specify a
|
|
3805
|
-
# Gateway Load Balancer.
|
|
3812
|
+
# Network Load Balancers support the TCP, TLS, UDP, TCP\_UDP, QUIC, and
|
|
3813
|
+
# TCP\_QUIC protocols. You can’t change the protocol to UDP, TCP\_UDP,
|
|
3814
|
+
# QUIC, or TCP\_QUIC if dual-stack mode is enabled. You can't specify a
|
|
3815
|
+
# protocol for a Gateway Load Balancer.
|
|
3806
3816
|
#
|
|
3807
3817
|
# @option params [String] :ssl_policy
|
|
3808
3818
|
# \[HTTPS and TLS listeners\] The security policy that defines which
|
|
@@ -4622,8 +4632,8 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4622
4632
|
# The TCP protocol is not supported for health checks if the protocol of
|
|
4623
4633
|
# the target group is HTTP or HTTPS. It is supported for health checks
|
|
4624
4634
|
# only if the protocol of the target group is TCP, TLS, UDP, or
|
|
4625
|
-
# TCP\_UDP. The GENEVE, TLS, UDP,
|
|
4626
|
-
# supported for health checks.
|
|
4635
|
+
# TCP\_UDP. The GENEVE, TLS, UDP, TCP\_UDP, QUIC, and TCP\_QUIC
|
|
4636
|
+
# protocols are not supported for health checks.
|
|
4627
4637
|
#
|
|
4628
4638
|
# @option params [String] :health_check_port
|
|
4629
4639
|
# The port the load balancer uses when performing health checks on
|
|
@@ -4750,6 +4760,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4750
4760
|
# resp.target_groups[0].target_type #=> String, one of "instance", "ip", "lambda", "alb"
|
|
4751
4761
|
# resp.target_groups[0].protocol_version #=> String
|
|
4752
4762
|
# resp.target_groups[0].ip_address_type #=> String, one of "ipv4", "ipv6"
|
|
4763
|
+
# resp.target_groups[0].target_control_port #=> Integer
|
|
4753
4764
|
#
|
|
4754
4765
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTargetGroup AWS API Documentation
|
|
4755
4766
|
#
|
|
@@ -5519,7 +5530,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
5519
5530
|
tracer: tracer
|
|
5520
5531
|
)
|
|
5521
5532
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
|
5522
|
-
context[:gem_version] = '1.
|
|
5533
|
+
context[:gem_version] = '1.144.0'
|
|
5523
5534
|
Seahorse::Client::Request.new(handlers, context)
|
|
5524
5535
|
end
|
|
5525
5536
|
|
|
@@ -364,6 +364,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
364
364
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
|
365
365
|
TargetAdministrativeOverrideReasonEnum = Shapes::StringShape.new(name: 'TargetAdministrativeOverrideReasonEnum')
|
|
366
366
|
TargetAdministrativeOverrideStateEnum = Shapes::StringShape.new(name: 'TargetAdministrativeOverrideStateEnum')
|
|
367
|
+
TargetControlPort = Shapes::IntegerShape.new(name: 'TargetControlPort')
|
|
367
368
|
TargetDescription = Shapes::StructureShape.new(name: 'TargetDescription')
|
|
368
369
|
TargetDescriptions = Shapes::ListShape.new(name: 'TargetDescriptions')
|
|
369
370
|
TargetGroup = Shapes::StructureShape.new(name: 'TargetGroup')
|
|
@@ -603,6 +604,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
603
604
|
CreateTargetGroupInput.add_member(:target_type, Shapes::ShapeRef.new(shape: TargetTypeEnum, location_name: "TargetType"))
|
|
604
605
|
CreateTargetGroupInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
605
606
|
CreateTargetGroupInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: TargetGroupIpAddressTypeEnum, location_name: "IpAddressType"))
|
|
607
|
+
CreateTargetGroupInput.add_member(:target_control_port, Shapes::ShapeRef.new(shape: TargetControlPort, location_name: "TargetControlPort"))
|
|
606
608
|
CreateTargetGroupInput.struct_class = Types::CreateTargetGroupInput
|
|
607
609
|
|
|
608
610
|
CreateTargetGroupOutput.add_member(:target_groups, Shapes::ShapeRef.new(shape: TargetGroups, location_name: "TargetGroups"))
|
|
@@ -1300,6 +1302,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1300
1302
|
TargetGroup.add_member(:target_type, Shapes::ShapeRef.new(shape: TargetTypeEnum, location_name: "TargetType"))
|
|
1301
1303
|
TargetGroup.add_member(:protocol_version, Shapes::ShapeRef.new(shape: ProtocolVersion, location_name: "ProtocolVersion"))
|
|
1302
1304
|
TargetGroup.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: TargetGroupIpAddressTypeEnum, location_name: "IpAddressType"))
|
|
1305
|
+
TargetGroup.add_member(:target_control_port, Shapes::ShapeRef.new(shape: TargetControlPort, location_name: "TargetControlPort"))
|
|
1303
1306
|
TargetGroup.struct_class = Types::TargetGroup
|
|
1304
1307
|
|
|
1305
1308
|
TargetGroupArns.member = Shapes::ShapeRef.new(shape: TargetGroupArn)
|
|
@@ -533,9 +533,9 @@ module Aws::ElasticLoadBalancingV2
|
|
|
533
533
|
# The protocol for connections from clients to the load balancer. For
|
|
534
534
|
# Application Load Balancers, the supported protocols are HTTP and
|
|
535
535
|
# HTTPS. For Network Load Balancers, the supported protocols are TCP,
|
|
536
|
-
# TLS, UDP, and TCP\
|
|
537
|
-
# protocol if dual-stack mode is enabled.
|
|
538
|
-
# protocol for a Gateway Load Balancer.
|
|
536
|
+
# TLS, UDP, TCP\_UDP, QUIC, and TCP\_QUIC. You can’t specify the UDP,
|
|
537
|
+
# TCP\_UDP, QUIC, or TCP\_QUIC protocol if dual-stack mode is enabled.
|
|
538
|
+
# You can't specify a protocol for a Gateway Load Balancer.
|
|
539
539
|
# @return [String]
|
|
540
540
|
#
|
|
541
541
|
# @!attribute [rw] port
|
|
@@ -836,10 +836,11 @@ module Aws::ElasticLoadBalancingV2
|
|
|
836
836
|
# The protocol to use for routing traffic to the targets. For
|
|
837
837
|
# Application Load Balancers, the supported protocols are HTTP and
|
|
838
838
|
# HTTPS. For Network Load Balancers, the supported protocols are TCP,
|
|
839
|
-
# TLS, UDP, or TCP\
|
|
840
|
-
# protocol is GENEVE. A TCP\_UDP listener must be
|
|
841
|
-
# TCP\_UDP target group.
|
|
842
|
-
#
|
|
839
|
+
# TLS, UDP, TCP\_UDP, QUIC, or TCP\_QUIC. For Gateway Load Balancers,
|
|
840
|
+
# the supported protocol is GENEVE. A TCP\_UDP listener must be
|
|
841
|
+
# associated with a TCP\_UDP target group. A TCP\_QUIC listener must
|
|
842
|
+
# be associated with a TCP\_QUIC target group. If the target is a
|
|
843
|
+
# Lambda function, this parameter does not apply.
|
|
843
844
|
# @return [String]
|
|
844
845
|
#
|
|
845
846
|
# @!attribute [rw] protocol_version
|
|
@@ -868,15 +869,16 @@ module Aws::ElasticLoadBalancingV2
|
|
|
868
869
|
# Network Load Balancers and Gateway Load Balancers, the default is
|
|
869
870
|
# TCP. The TCP protocol is not supported for health checks if the
|
|
870
871
|
# protocol of the target group is HTTP or HTTPS. The GENEVE, TLS, UDP,
|
|
871
|
-
# and TCP\
|
|
872
|
+
# TCP\_UDP, QUIC, and TCP\_QUIC protocols are not supported for health
|
|
873
|
+
# checks.
|
|
872
874
|
# @return [String]
|
|
873
875
|
#
|
|
874
876
|
# @!attribute [rw] health_check_port
|
|
875
877
|
# The port the load balancer uses when performing health checks on
|
|
876
|
-
# targets. If the protocol is HTTP, HTTPS, TCP, TLS, UDP,
|
|
877
|
-
# the default is `traffic-port`, which is the port
|
|
878
|
-
# target receives traffic from the load balancer. If the
|
|
879
|
-
# GENEVE, the default is port 80.
|
|
878
|
+
# targets. If the protocol is HTTP, HTTPS, TCP, TLS, UDP, TCP\_UDP,
|
|
879
|
+
# QUIC, or TCP\_QUIC the default is `traffic-port`, which is the port
|
|
880
|
+
# on which each target receives traffic from the load balancer. If the
|
|
881
|
+
# protocol is GENEVE, the default is port 80.
|
|
880
882
|
# @return [String]
|
|
881
883
|
#
|
|
882
884
|
# @!attribute [rw] health_check_enabled
|
|
@@ -900,10 +902,10 @@ module Aws::ElasticLoadBalancingV2
|
|
|
900
902
|
# @!attribute [rw] health_check_interval_seconds
|
|
901
903
|
# The approximate amount of time, in seconds, between health checks of
|
|
902
904
|
# an individual target. The range is 5-300. If the target group
|
|
903
|
-
# protocol is TCP, TLS, UDP, TCP\_UDP, HTTP or HTTPS,
|
|
904
|
-
# 30 seconds. If the target group protocol is GENEVE,
|
|
905
|
-
# 10 seconds. If the target type is `lambda`, the
|
|
906
|
-
# seconds.
|
|
905
|
+
# protocol is TCP, TLS, UDP, TCP\_UDP, QUIC, TCP\_QUIC, HTTP or HTTPS,
|
|
906
|
+
# the default is 30 seconds. If the target group protocol is GENEVE,
|
|
907
|
+
# the default is 10 seconds. If the target type is `lambda`, the
|
|
908
|
+
# default is 35 seconds.
|
|
907
909
|
# @return [Integer]
|
|
908
910
|
#
|
|
909
911
|
# @!attribute [rw] health_check_timeout_seconds
|
|
@@ -927,18 +929,19 @@ module Aws::ElasticLoadBalancingV2
|
|
|
927
929
|
# @!attribute [rw] unhealthy_threshold_count
|
|
928
930
|
# The number of consecutive health check failures required before
|
|
929
931
|
# considering a target unhealthy. The range is 2-10. If the target
|
|
930
|
-
# group protocol is TCP, TCP\_UDP, UDP, TLS, HTTP or
|
|
931
|
-
# default is 2. For target groups with a protocol of
|
|
932
|
-
# default is 2. If the target type is `lambda`, the
|
|
932
|
+
# group protocol is TCP, TCP\_UDP, UDP, TLS, QUIC, TCP\_QUIC, HTTP or
|
|
933
|
+
# HTTPS, the default is 2. For target groups with a protocol of
|
|
934
|
+
# GENEVE, the default is 2. If the target type is `lambda`, the
|
|
935
|
+
# default is 5.
|
|
933
936
|
# @return [Integer]
|
|
934
937
|
#
|
|
935
938
|
# @!attribute [rw] matcher
|
|
936
939
|
# \[HTTP/HTTPS health checks\] The HTTP or gRPC codes to use when
|
|
937
940
|
# checking for a successful response from a target. For target groups
|
|
938
|
-
# with a protocol of TCP, TCP\_UDP, UDP or TLS the
|
|
939
|
-
# For target groups with a protocol of HTTP or
|
|
940
|
-
# 200-499. For target groups with a protocol of
|
|
941
|
-
# 200-399.
|
|
941
|
+
# with a protocol of TCP, TCP\_UDP, UDP, QUIC, TCP\_QUIC, or TLS the
|
|
942
|
+
# range is 200-599. For target groups with a protocol of HTTP or
|
|
943
|
+
# HTTPS, the range is 200-499. For target groups with a protocol of
|
|
944
|
+
# GENEVE, the range is 200-399.
|
|
942
945
|
# @return [Types::Matcher]
|
|
943
946
|
#
|
|
944
947
|
# @!attribute [rw] target_type
|
|
@@ -968,6 +971,12 @@ module Aws::ElasticLoadBalancingV2
|
|
|
968
971
|
# The IP address type. The default value is `ipv4`.
|
|
969
972
|
# @return [String]
|
|
970
973
|
#
|
|
974
|
+
# @!attribute [rw] target_control_port
|
|
975
|
+
# The port on which the target control agent and application load
|
|
976
|
+
# balancer exchange management traffic for the target optimizer
|
|
977
|
+
# feature.
|
|
978
|
+
# @return [Integer]
|
|
979
|
+
#
|
|
971
980
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTargetGroupInput AWS API Documentation
|
|
972
981
|
#
|
|
973
982
|
class CreateTargetGroupInput < Struct.new(
|
|
@@ -987,7 +996,8 @@ module Aws::ElasticLoadBalancingV2
|
|
|
987
996
|
:matcher,
|
|
988
997
|
:target_type,
|
|
989
998
|
:tags,
|
|
990
|
-
:ip_address_type
|
|
999
|
+
:ip_address_type,
|
|
1000
|
+
:target_control_port)
|
|
991
1001
|
SENSITIVE = []
|
|
992
1002
|
include Aws::Structure
|
|
993
1003
|
end
|
|
@@ -2956,10 +2966,10 @@ module Aws::ElasticLoadBalancingV2
|
|
|
2956
2966
|
# @!attribute [rw] protocol
|
|
2957
2967
|
# The protocol for connections from clients to the load balancer.
|
|
2958
2968
|
# Application Load Balancers support the HTTP and HTTPS protocols.
|
|
2959
|
-
# Network Load Balancers support the TCP, TLS, UDP,
|
|
2960
|
-
# protocols. You can’t change the protocol to UDP
|
|
2961
|
-
# dual-stack mode is enabled. You
|
|
2962
|
-
# Gateway Load Balancer.
|
|
2969
|
+
# Network Load Balancers support the TCP, TLS, UDP, TCP\_UDP, QUIC,
|
|
2970
|
+
# and TCP\_QUIC protocols. You can’t change the protocol to UDP,
|
|
2971
|
+
# TCP\_UDP, QUIC, or TCP\_QUIC if dual-stack mode is enabled. You
|
|
2972
|
+
# can't specify a protocol for a Gateway Load Balancer.
|
|
2963
2973
|
# @return [String]
|
|
2964
2974
|
#
|
|
2965
2975
|
# @!attribute [rw] ssl_policy
|
|
@@ -3157,8 +3167,8 @@ module Aws::ElasticLoadBalancingV2
|
|
|
3157
3167
|
# TCP. The TCP protocol is not supported for health checks if the
|
|
3158
3168
|
# protocol of the target group is HTTP or HTTPS. It is supported for
|
|
3159
3169
|
# health checks only if the protocol of the target group is TCP, TLS,
|
|
3160
|
-
# UDP, or TCP\_UDP. The GENEVE, TLS, UDP,
|
|
3161
|
-
# not supported for health checks.
|
|
3170
|
+
# UDP, or TCP\_UDP. The GENEVE, TLS, UDP, TCP\_UDP, QUIC, and
|
|
3171
|
+
# TCP\_QUIC protocols are not supported for health checks.
|
|
3162
3172
|
# @return [String]
|
|
3163
3173
|
#
|
|
3164
3174
|
# @!attribute [rw] health_check_port
|
|
@@ -4395,6 +4405,12 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4395
4405
|
# The IP address type. The default value is `ipv4`.
|
|
4396
4406
|
# @return [String]
|
|
4397
4407
|
#
|
|
4408
|
+
# @!attribute [rw] target_control_port
|
|
4409
|
+
# The port on which the target control agent and application load
|
|
4410
|
+
# balancer exchange management traffic for the target optimizer
|
|
4411
|
+
# feature.
|
|
4412
|
+
# @return [Integer]
|
|
4413
|
+
#
|
|
4398
4414
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TargetGroup AWS API Documentation
|
|
4399
4415
|
#
|
|
4400
4416
|
class TargetGroup < Struct.new(
|
|
@@ -4415,7 +4431,8 @@ module Aws::ElasticLoadBalancingV2
|
|
|
4415
4431
|
:load_balancer_arns,
|
|
4416
4432
|
:target_type,
|
|
4417
4433
|
:protocol_version,
|
|
4418
|
-
:ip_address_type
|
|
4434
|
+
:ip_address_type,
|
|
4435
|
+
:target_control_port)
|
|
4419
4436
|
SENSITIVE = []
|
|
4420
4437
|
include Aws::Structure
|
|
4421
4438
|
end
|
data/sig/client.rbs
CHANGED
|
@@ -431,7 +431,8 @@ module Aws
|
|
|
431
431
|
value: ::String?
|
|
432
432
|
},
|
|
433
433
|
],
|
|
434
|
-
?ip_address_type: ("ipv4" | "ipv6")
|
|
434
|
+
?ip_address_type: ("ipv4" | "ipv6"),
|
|
435
|
+
?target_control_port: ::Integer
|
|
435
436
|
) -> _CreateTargetGroupResponseSuccess
|
|
436
437
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTargetGroupResponseSuccess
|
|
437
438
|
|
data/sig/types.rbs
CHANGED
|
@@ -215,6 +215,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
215
215
|
attr_accessor target_type: ("instance" | "ip" | "lambda" | "alb")
|
|
216
216
|
attr_accessor tags: ::Array[Types::Tag]
|
|
217
217
|
attr_accessor ip_address_type: ("ipv4" | "ipv6")
|
|
218
|
+
attr_accessor target_control_port: ::Integer
|
|
218
219
|
SENSITIVE: []
|
|
219
220
|
end
|
|
220
221
|
|
|
@@ -1110,6 +1111,7 @@ module Aws::ElasticLoadBalancingV2
|
|
|
1110
1111
|
attr_accessor target_type: ("instance" | "ip" | "lambda" | "alb")
|
|
1111
1112
|
attr_accessor protocol_version: ::String
|
|
1112
1113
|
attr_accessor ip_address_type: ("ipv4" | "ipv6")
|
|
1114
|
+
attr_accessor target_control_port: ::Integer
|
|
1113
1115
|
SENSITIVE: []
|
|
1114
1116
|
end
|
|
1115
1117
|
|