aws-sdk-elasticloadbalancingv2 1.133.0 → 1.134.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 +41 -23
- data/lib/aws-sdk-elasticloadbalancingv2/client_api.rb +5 -0
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +29 -14
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- 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: 00e43501413c074f2efd5a65a5bf8d8fcfaf3a0489f9375ed7d43509c73e14ec
|
4
|
+
data.tar.gz: 22b2847fff5231c804c20f871884ef3b4d73f66125206d3d01a2dd7dc0a75ed4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d80afe0ad17edad0b3b7fb514b21b9c196e7f78844e814cd996b5dabebeb52e2bc9a1b93d871eb2ac9cba3979e6efdc0b11916812c8b60972058df09468a6fd5
|
7
|
+
data.tar.gz: 1f22a67681c6205fcae5f088a25fcb928abc943d6f13009222b7b23ab606acf7cd48065c5b6f3858cb7c239188017c1985b4023f22e1f3572971456da0f64fed
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.134.0 (2025-06-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add Paginator for DescribeAccountLimits, and fix Paginators for DescribeTrustStoreAssociations, DescribeTrustStoreRevocations, and DescribeTrustStores
|
8
|
+
|
4
9
|
1.133.0 (2025-06-02)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.134.0
|
@@ -475,14 +475,14 @@ module Aws::ElasticLoadBalancingV2
|
|
475
475
|
# If the certificate in already in the certificate list, the call is
|
476
476
|
# successful but the certificate is not added again.
|
477
477
|
#
|
478
|
-
# For more information, see [
|
479
|
-
# Load Balancers Guide* or [
|
478
|
+
# For more information, see [SSL certificates][1] in the *Application
|
479
|
+
# Load Balancers Guide* or [Server certificates][2] in the *Network Load
|
480
480
|
# Balancers Guide*.
|
481
481
|
#
|
482
482
|
#
|
483
483
|
#
|
484
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
485
|
-
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
484
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/https-listener-certificates.html
|
485
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/tls-listener-certificates.html
|
486
486
|
#
|
487
487
|
# @option params [required, String] :listener_arn
|
488
488
|
# The Amazon Resource Name (ARN) of the listener.
|
@@ -669,8 +669,8 @@ module Aws::ElasticLoadBalancingV2
|
|
669
669
|
#
|
670
670
|
#
|
671
671
|
#
|
672
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
673
|
-
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
672
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html
|
673
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html
|
674
674
|
#
|
675
675
|
# @option params [Array<Types::Certificate>] :certificates
|
676
676
|
# \[HTTPS and TLS listeners\] The default certificate for the listener.
|
@@ -700,7 +700,7 @@ module Aws::ElasticLoadBalancingV2
|
|
700
700
|
#
|
701
701
|
#
|
702
702
|
#
|
703
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
703
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-listeners.html#alpn-policies
|
704
704
|
#
|
705
705
|
# @option params [Array<Types::Tag>] :tags
|
706
706
|
# The tags to assign to the listener.
|
@@ -1758,6 +1758,13 @@ module Aws::ElasticLoadBalancingV2
|
|
1758
1758
|
|
1759
1759
|
# Creates a trust store.
|
1760
1760
|
#
|
1761
|
+
# For more information, see [Mutual TLS for Application Load
|
1762
|
+
# Balancers][1].
|
1763
|
+
#
|
1764
|
+
#
|
1765
|
+
#
|
1766
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/mutual-authentication.html
|
1767
|
+
#
|
1761
1768
|
# @option params [required, String] :name
|
1762
1769
|
# The name of the trust store.
|
1763
1770
|
#
|
@@ -2044,9 +2051,9 @@ module Aws::ElasticLoadBalancingV2
|
|
2044
2051
|
#
|
2045
2052
|
#
|
2046
2053
|
#
|
2047
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
2048
|
-
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
2049
|
-
# [3]: https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/target-
|
2054
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/edit-target-group-attributes.html#deregistration-delay
|
2055
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/edit-target-group-attributes.html#deregistration-delay
|
2056
|
+
# [3]: https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/edit-target-group-attributes.html#deregistration-delay
|
2050
2057
|
#
|
2051
2058
|
# @option params [required, String] :target_group_arn
|
2052
2059
|
# The Amazon Resource Name (ARN) of the target group.
|
@@ -2123,6 +2130,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2123
2130
|
# * {Types::DescribeAccountLimitsOutput#limits #limits} => Array<Types::Limit>
|
2124
2131
|
# * {Types::DescribeAccountLimitsOutput#next_marker #next_marker} => String
|
2125
2132
|
#
|
2133
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2134
|
+
#
|
2126
2135
|
# @example Request syntax with placeholder values
|
2127
2136
|
#
|
2128
2137
|
# resp = client.describe_account_limits({
|
@@ -2241,8 +2250,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2241
2250
|
#
|
2242
2251
|
#
|
2243
2252
|
#
|
2244
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
2245
|
-
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
2253
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/https-listener-certificates.html
|
2254
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/tls-listener-certificates.html
|
2246
2255
|
#
|
2247
2256
|
# @option params [required, String] :listener_arn
|
2248
2257
|
# The Amazon Resource Names (ARN) of the listener.
|
@@ -2769,13 +2778,13 @@ module Aws::ElasticLoadBalancingV2
|
|
2769
2778
|
# negotiation.
|
2770
2779
|
#
|
2771
2780
|
# For more information, see [Security policies][1] in the *Application
|
2772
|
-
# Load Balancers Guide*
|
2781
|
+
# Load Balancers Guide* and [Security policies][2] in the *Network Load
|
2773
2782
|
# Balancers Guide*.
|
2774
2783
|
#
|
2775
2784
|
#
|
2776
2785
|
#
|
2777
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
2778
|
-
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
2786
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html
|
2787
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html
|
2779
2788
|
#
|
2780
2789
|
# @option params [Array<String>] :names
|
2781
2790
|
# The names of the policies.
|
@@ -3682,8 +3691,8 @@ module Aws::ElasticLoadBalancingV2
|
|
3682
3691
|
#
|
3683
3692
|
#
|
3684
3693
|
#
|
3685
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
3686
|
-
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
3694
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html
|
3695
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html
|
3687
3696
|
#
|
3688
3697
|
# @option params [Array<Types::Certificate>] :certificates
|
3689
3698
|
# \[HTTPS and TLS listeners\] The default certificate for the listener.
|
@@ -3713,7 +3722,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3713
3722
|
#
|
3714
3723
|
#
|
3715
3724
|
#
|
3716
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
3725
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-listeners.html#alpn-policies
|
3717
3726
|
#
|
3718
3727
|
# @option params [Types::MutualAuthenticationAttributes] :mutual_authentication
|
3719
3728
|
# The mutual authentication configuration information.
|
@@ -4670,10 +4679,19 @@ module Aws::ElasticLoadBalancingV2
|
|
4670
4679
|
# register each EC2 instance or IP address with the same target group
|
4671
4680
|
# multiple times using different ports.
|
4672
4681
|
#
|
4673
|
-
#
|
4674
|
-
#
|
4675
|
-
#
|
4676
|
-
#
|
4682
|
+
# For more information, see the following:
|
4683
|
+
#
|
4684
|
+
# * [Register targets for your Application Load Balancer][1]
|
4685
|
+
#
|
4686
|
+
# * [Register targets for your Network Load Balancer][2]
|
4687
|
+
#
|
4688
|
+
# * [Register targets for your Gateway Load Balancer][3]
|
4689
|
+
#
|
4690
|
+
#
|
4691
|
+
#
|
4692
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/target-group-register-targets.html
|
4693
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/target-group-register-targets.html
|
4694
|
+
# [3]: https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/target-group-register-targets.html
|
4677
4695
|
#
|
4678
4696
|
# @option params [required, String] :target_group_arn
|
4679
4697
|
# The Amazon Resource Name (ARN) of the target group.
|
@@ -5261,7 +5279,7 @@ module Aws::ElasticLoadBalancingV2
|
|
5261
5279
|
tracer: tracer
|
5262
5280
|
)
|
5263
5281
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
5264
|
-
context[:gem_version] = '1.
|
5282
|
+
context[:gem_version] = '1.134.0'
|
5265
5283
|
Seahorse::Client::Request.new(handlers, context)
|
5266
5284
|
end
|
5267
5285
|
|
@@ -1584,6 +1584,11 @@ module Aws::ElasticLoadBalancingV2
|
|
1584
1584
|
o.http_request_uri = "/"
|
1585
1585
|
o.input = Shapes::ShapeRef.new(shape: DescribeAccountLimitsInput)
|
1586
1586
|
o.output = Shapes::ShapeRef.new(shape: DescribeAccountLimitsOutput)
|
1587
|
+
o[:pager] = Aws::Pager.new(
|
1588
|
+
tokens: {
|
1589
|
+
"next_marker" => "marker"
|
1590
|
+
}
|
1591
|
+
)
|
1587
1592
|
end)
|
1588
1593
|
|
1589
1594
|
api.add_operation(:describe_capacity_reservation, Seahorse::Model::Operation.new.tap do |o|
|
@@ -543,8 +543,8 @@ module Aws::ElasticLoadBalancingV2
|
|
543
543
|
#
|
544
544
|
#
|
545
545
|
#
|
546
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
547
|
-
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
546
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html
|
547
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html
|
548
548
|
# @return [String]
|
549
549
|
#
|
550
550
|
# @!attribute [rw] certificates
|
@@ -577,7 +577,7 @@ module Aws::ElasticLoadBalancingV2
|
|
577
577
|
#
|
578
578
|
#
|
579
579
|
#
|
580
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
580
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-listeners.html#alpn-policies
|
581
581
|
# @return [Array<String>]
|
582
582
|
#
|
583
583
|
# @!attribute [rw] tags
|
@@ -1978,7 +1978,9 @@ module Aws::ElasticLoadBalancingV2
|
|
1978
1978
|
# The host names. The maximum size of each name is 128 characters. The
|
1979
1979
|
# comparison is case insensitive. The following wildcard characters
|
1980
1980
|
# are supported: * (matches 0 or more characters) and ? (matches
|
1981
|
-
# exactly 1 character).
|
1981
|
+
# exactly 1 character). You must include at least one "." character.
|
1982
|
+
# You can include only alphabetical characters after the final "."
|
1983
|
+
# character.
|
1982
1984
|
#
|
1983
1985
|
# If you specify multiple strings, the condition is satisfied if one
|
1984
1986
|
# of the strings matches the host name.
|
@@ -2003,7 +2005,11 @@ module Aws::ElasticLoadBalancingV2
|
|
2003
2005
|
# characters are specified by RFC 7230. Wildcards are not supported.
|
2004
2006
|
#
|
2005
2007
|
# You can't use an HTTP header condition to specify the host header.
|
2006
|
-
#
|
2008
|
+
# Instead, use a [host condition][1].
|
2009
|
+
#
|
2010
|
+
#
|
2011
|
+
#
|
2012
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-listeners.html#host-conditions
|
2007
2013
|
# @return [String]
|
2008
2014
|
#
|
2009
2015
|
# @!attribute [rw] values
|
@@ -2893,8 +2899,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2893
2899
|
#
|
2894
2900
|
#
|
2895
2901
|
#
|
2896
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
2897
|
-
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
2902
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html
|
2903
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html
|
2898
2904
|
# @return [String]
|
2899
2905
|
#
|
2900
2906
|
# @!attribute [rw] certificates
|
@@ -2927,7 +2933,7 @@ module Aws::ElasticLoadBalancingV2
|
|
2927
2933
|
#
|
2928
2934
|
#
|
2929
2935
|
#
|
2930
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
2936
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-listeners.html#alpn-policies
|
2931
2937
|
# @return [Array<String>]
|
2932
2938
|
#
|
2933
2939
|
# @!attribute [rw] mutual_authentication
|
@@ -3238,7 +3244,11 @@ module Aws::ElasticLoadBalancingV2
|
|
3238
3244
|
# If you specify multiple strings, the condition is satisfied if one
|
3239
3245
|
# of them matches the request URL. The path pattern is compared only
|
3240
3246
|
# to the path of the URL, not to its query string. To compare against
|
3241
|
-
# the query string, use
|
3247
|
+
# the query string, use a [query string condition][1].
|
3248
|
+
#
|
3249
|
+
#
|
3250
|
+
#
|
3251
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-listeners.html#query-string-conditions
|
3242
3252
|
# @return [Array<String>]
|
3243
3253
|
#
|
3244
3254
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/PathPatternConditionConfig AWS API Documentation
|
@@ -3930,9 +3940,13 @@ module Aws::ElasticLoadBalancingV2
|
|
3930
3940
|
# source IP address of the request matches one of the CIDR blocks.
|
3931
3941
|
# This condition is not satisfied by the addresses in the
|
3932
3942
|
# X-Forwarded-For header. To search for addresses in the
|
3933
|
-
# X-Forwarded-For header, use
|
3943
|
+
# X-Forwarded-For header, use an [HTTP header condition][1].
|
3934
3944
|
#
|
3935
3945
|
# The total number of values must be less than, or equal to five.
|
3946
|
+
#
|
3947
|
+
#
|
3948
|
+
#
|
3949
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/load-balancer-listeners.html#http-header-conditions
|
3936
3950
|
# @return [Array<String>]
|
3937
3951
|
#
|
3938
3952
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/SourceIpConditionConfig AWS API Documentation
|
@@ -4270,7 +4284,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4270
4284
|
# of healthy targets is below this value, mark the zone as unhealthy
|
4271
4285
|
# in DNS, so that traffic is routed only to healthy zones. The
|
4272
4286
|
# possible values are `off` or an integer from 1 to the maximum
|
4273
|
-
# number of targets. The default is
|
4287
|
+
# number of targets. The default is 1.
|
4274
4288
|
#
|
4275
4289
|
# * `target_group_health.dns_failover.minimum_healthy_targets.percentage`
|
4276
4290
|
# - The minimum percentage of targets that must be healthy. If the
|
@@ -4428,7 +4442,8 @@ module Aws::ElasticLoadBalancingV2
|
|
4428
4442
|
# @!attribute [rw] duration_seconds
|
4429
4443
|
# The time period, in seconds, during which requests from a client
|
4430
4444
|
# should be routed to the same target group. The range is 1-604800
|
4431
|
-
# seconds (7 days).
|
4445
|
+
# seconds (7 days). You must specify this value when enabling target
|
4446
|
+
# group stickiness.
|
4432
4447
|
# @return [Integer]
|
4433
4448
|
#
|
4434
4449
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TargetGroupStickinessConfig AWS API Documentation
|
@@ -4773,14 +4788,14 @@ module Aws::ElasticLoadBalancingV2
|
|
4773
4788
|
#
|
4774
4789
|
class UnsupportedProtocolException < Aws::EmptyStructure; end
|
4775
4790
|
|
4776
|
-
# The capacity reservation status for each
|
4791
|
+
# The capacity reservation status for each Availability Zone.
|
4777
4792
|
#
|
4778
4793
|
# @!attribute [rw] state
|
4779
4794
|
# The state of the capacity reservation.
|
4780
4795
|
# @return [Types::CapacityReservationStatus]
|
4781
4796
|
#
|
4782
4797
|
# @!attribute [rw] availability_zone
|
4783
|
-
# Information about the
|
4798
|
+
# Information about the Availability Zone.
|
4784
4799
|
# @return [String]
|
4785
4800
|
#
|
4786
4801
|
# @!attribute [rw] effective_capacity_units
|