aws-sdk-elasticloadbalancingv2 1.133.0 → 1.135.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client.rb +59 -31
- data/lib/aws-sdk-elasticloadbalancingv2/client_api.rb +5 -0
- data/lib/aws-sdk-elasticloadbalancingv2/errors.rb +0 -1
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +29 -14
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 758d2f2d1c76ce3fbb16fb61fa36c633f60dced0168d6a0482b383fac5021402
|
4
|
+
data.tar.gz: d572703c9b7dd9059f6c849d26498339aea0a530d00500ff676d41ecb4f54fe8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20f2fe8159b0598f446815498e9d72352c4d770bda0cc2d0f602b086a8e5ddb1f8dfa7a0256d5ffa14d0dc8452dc91a17f89782e05f013d19d4f40cd23344740
|
7
|
+
data.tar.gz: 7fd1c3d0e00ad20f0050fb97f961ff6efcda2468c680dd14ea35c1c1ab1256ecf760e62929cfc5034bb26a34d67dab8566468d0887241b0a94c6781a5542b8b8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.135.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.134.0 (2025-06-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add Paginator for DescribeAccountLimits, and fix Paginators for DescribeTrustStoreAssociations, DescribeTrustStoreRevocations, and DescribeTrustStores
|
13
|
+
|
4
14
|
1.133.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.135.0
|
@@ -95,7 +95,7 @@ module Aws::ElasticLoadBalancingV2
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::ElasticLoadBalancingV2
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::ElasticLoadBalancingV2
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::ElasticLoadBalancingV2
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::ElasticLoadBalancingV2
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -475,14 +485,14 @@ module Aws::ElasticLoadBalancingV2
|
|
475
485
|
# If the certificate in already in the certificate list, the call is
|
476
486
|
# successful but the certificate is not added again.
|
477
487
|
#
|
478
|
-
# For more information, see [
|
479
|
-
# Load Balancers Guide* or [
|
488
|
+
# For more information, see [SSL certificates][1] in the *Application
|
489
|
+
# Load Balancers Guide* or [Server certificates][2] in the *Network Load
|
480
490
|
# Balancers Guide*.
|
481
491
|
#
|
482
492
|
#
|
483
493
|
#
|
484
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
485
|
-
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
494
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/https-listener-certificates.html
|
495
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/tls-listener-certificates.html
|
486
496
|
#
|
487
497
|
# @option params [required, String] :listener_arn
|
488
498
|
# The Amazon Resource Name (ARN) of the listener.
|
@@ -669,8 +679,8 @@ module Aws::ElasticLoadBalancingV2
|
|
669
679
|
#
|
670
680
|
#
|
671
681
|
#
|
672
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
673
|
-
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
682
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html
|
683
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html
|
674
684
|
#
|
675
685
|
# @option params [Array<Types::Certificate>] :certificates
|
676
686
|
# \[HTTPS and TLS listeners\] The default certificate for the listener.
|
@@ -700,7 +710,7 @@ module Aws::ElasticLoadBalancingV2
|
|
700
710
|
#
|
701
711
|
#
|
702
712
|
#
|
703
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
713
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-listeners.html#alpn-policies
|
704
714
|
#
|
705
715
|
# @option params [Array<Types::Tag>] :tags
|
706
716
|
# The tags to assign to the listener.
|
@@ -1758,6 +1768,13 @@ module Aws::ElasticLoadBalancingV2
|
|
1758
1768
|
|
1759
1769
|
# Creates a trust store.
|
1760
1770
|
#
|
1771
|
+
# For more information, see [Mutual TLS for Application Load
|
1772
|
+
# Balancers][1].
|
1773
|
+
#
|
1774
|
+
#
|
1775
|
+
#
|
1776
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/mutual-authentication.html
|
1777
|
+
#
|
1761
1778
|
# @option params [required, String] :name
|
1762
1779
|
# The name of the trust store.
|
1763
1780
|
#
|
@@ -2044,9 +2061,9 @@ module Aws::ElasticLoadBalancingV2
|
|
2044
2061
|
#
|
2045
2062
|
#
|
2046
2063
|
#
|
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-
|
2064
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/edit-target-group-attributes.html#deregistration-delay
|
2065
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/edit-target-group-attributes.html#deregistration-delay
|
2066
|
+
# [3]: https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/edit-target-group-attributes.html#deregistration-delay
|
2050
2067
|
#
|
2051
2068
|
# @option params [required, String] :target_group_arn
|
2052
2069
|
# The Amazon Resource Name (ARN) of the target group.
|
@@ -2123,6 +2140,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2123
2140
|
# * {Types::DescribeAccountLimitsOutput#limits #limits} => Array<Types::Limit>
|
2124
2141
|
# * {Types::DescribeAccountLimitsOutput#next_marker #next_marker} => String
|
2125
2142
|
#
|
2143
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2144
|
+
#
|
2126
2145
|
# @example Request syntax with placeholder values
|
2127
2146
|
#
|
2128
2147
|
# resp = client.describe_account_limits({
|
@@ -2241,8 +2260,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2241
2260
|
#
|
2242
2261
|
#
|
2243
2262
|
#
|
2244
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
2245
|
-
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
2263
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/https-listener-certificates.html
|
2264
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/tls-listener-certificates.html
|
2246
2265
|
#
|
2247
2266
|
# @option params [required, String] :listener_arn
|
2248
2267
|
# The Amazon Resource Names (ARN) of the listener.
|
@@ -2769,13 +2788,13 @@ module Aws::ElasticLoadBalancingV2
|
|
2769
2788
|
# negotiation.
|
2770
2789
|
#
|
2771
2790
|
# For more information, see [Security policies][1] in the *Application
|
2772
|
-
# Load Balancers Guide*
|
2791
|
+
# Load Balancers Guide* and [Security policies][2] in the *Network Load
|
2773
2792
|
# Balancers Guide*.
|
2774
2793
|
#
|
2775
2794
|
#
|
2776
2795
|
#
|
2777
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
2778
|
-
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
2796
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html
|
2797
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html
|
2779
2798
|
#
|
2780
2799
|
# @option params [Array<String>] :names
|
2781
2800
|
# The names of the policies.
|
@@ -3682,8 +3701,8 @@ module Aws::ElasticLoadBalancingV2
|
|
3682
3701
|
#
|
3683
3702
|
#
|
3684
3703
|
#
|
3685
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/
|
3686
|
-
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
3704
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/describe-ssl-policies.html
|
3705
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/describe-ssl-policies.html
|
3687
3706
|
#
|
3688
3707
|
# @option params [Array<Types::Certificate>] :certificates
|
3689
3708
|
# \[HTTPS and TLS listeners\] The default certificate for the listener.
|
@@ -3713,7 +3732,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3713
3732
|
#
|
3714
3733
|
#
|
3715
3734
|
#
|
3716
|
-
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/
|
3735
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/load-balancer-listeners.html#alpn-policies
|
3717
3736
|
#
|
3718
3737
|
# @option params [Types::MutualAuthenticationAttributes] :mutual_authentication
|
3719
3738
|
# The mutual authentication configuration information.
|
@@ -4670,10 +4689,19 @@ module Aws::ElasticLoadBalancingV2
|
|
4670
4689
|
# register each EC2 instance or IP address with the same target group
|
4671
4690
|
# multiple times using different ports.
|
4672
4691
|
#
|
4673
|
-
#
|
4674
|
-
#
|
4675
|
-
#
|
4676
|
-
#
|
4692
|
+
# For more information, see the following:
|
4693
|
+
#
|
4694
|
+
# * [Register targets for your Application Load Balancer][1]
|
4695
|
+
#
|
4696
|
+
# * [Register targets for your Network Load Balancer][2]
|
4697
|
+
#
|
4698
|
+
# * [Register targets for your Gateway Load Balancer][3]
|
4699
|
+
#
|
4700
|
+
#
|
4701
|
+
#
|
4702
|
+
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/target-group-register-targets.html
|
4703
|
+
# [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/target-group-register-targets.html
|
4704
|
+
# [3]: https://docs.aws.amazon.com/elasticloadbalancing/latest/gateway/target-group-register-targets.html
|
4677
4705
|
#
|
4678
4706
|
# @option params [required, String] :target_group_arn
|
4679
4707
|
# The Amazon Resource Name (ARN) of the target group.
|
@@ -5261,7 +5289,7 @@ module Aws::ElasticLoadBalancingV2
|
|
5261
5289
|
tracer: tracer
|
5262
5290
|
)
|
5263
5291
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
5264
|
-
context[:gem_version] = '1.
|
5292
|
+
context[:gem_version] = '1.135.0'
|
5265
5293
|
Seahorse::Client::Request.new(handlers, context)
|
5266
5294
|
end
|
5267
5295
|
|
@@ -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|
|
@@ -142,7 +142,6 @@ module Aws::ElasticLoadBalancingV2
|
|
142
142
|
#
|
143
143
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
144
144
|
# if they are not defined above.
|
145
|
-
# Some existing error classes may use a different class name than the one documented.
|
146
145
|
module Errors
|
147
146
|
|
148
147
|
extend Aws::Errors::DynamicErrors
|
@@ -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
|
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.135.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|