aws-sdk-elasticloadbalancingv2 1.135.0 → 1.137.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 +10 -13
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +5 -1
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- 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: 41f8565ab278d7e9498de90f0720b2433db167243f021ff54300b21f794e2f88
|
4
|
+
data.tar.gz: b59bfe6c2b4c4370c948d0efa5540467df03947e1d528e8330fd362ab6c9646c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed3e0cf5a7dfd670c335793ddd0e32aee40a0998faf42a3b10e9e8bd98e561acf932fdbc81faf01d185abe076f0759e9782e276980a4582c0473f28cfadac477
|
7
|
+
data.tar.gz: b54410191b05580e591b6eb87a350c31a9c237fcaddac6b75131caa8a836301da4cfe3692ec1f0c7236872cd4c054db0fae9c227a5a41e9e6b534309c4c31939
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.137.0 (2025-08-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.136.0 (2025-07-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release enables secondary IP addresses for Network Load Balancers.
|
13
|
+
|
4
14
|
1.135.0 (2025-07-21)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.137.0
|
@@ -95,8 +95,8 @@ 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 used for authentication. This can be
|
99
|
-
# following classes:
|
98
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
99
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
102
102
|
# credentials.
|
@@ -124,8 +124,7 @@ module Aws::ElasticLoadBalancingV2
|
|
124
124
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
125
125
|
# from the Cognito Identity service.
|
126
126
|
#
|
127
|
-
# When `:credentials` are not configured directly, the following
|
128
|
-
# locations will be searched for credentials:
|
127
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
129
128
|
#
|
130
129
|
# * `Aws.config[:credentials]`
|
131
130
|
#
|
@@ -139,12 +138,10 @@ module Aws::ElasticLoadBalancingV2
|
|
139
138
|
#
|
140
139
|
# * `~/.aws/config`
|
141
140
|
#
|
142
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
143
|
-
#
|
144
|
-
#
|
145
|
-
#
|
146
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
-
# to `true`.
|
141
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
142
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
143
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
144
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
148
145
|
#
|
149
146
|
# @option options [required, String] :region
|
150
147
|
# The AWS region to connect to. The configured `:region` is
|
@@ -377,8 +374,8 @@ module Aws::ElasticLoadBalancingV2
|
|
377
374
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
378
375
|
#
|
379
376
|
# @option options [Aws::TokenProvider] :token_provider
|
380
|
-
# Your Bearer token used for authentication. This can be
|
381
|
-
# following classes:
|
377
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
378
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
382
379
|
#
|
383
380
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
384
381
|
# tokens.
|
@@ -5289,7 +5286,7 @@ module Aws::ElasticLoadBalancingV2
|
|
5289
5286
|
tracer: tracer
|
5290
5287
|
)
|
5291
5288
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
5292
|
-
context[:gem_version] = '1.
|
5289
|
+
context[:gem_version] = '1.137.0'
|
5293
5290
|
Seahorse::Client::Request.new(handlers, context)
|
5294
5291
|
end
|
5295
5292
|
|
@@ -2663,7 +2663,11 @@ module Aws::ElasticLoadBalancingV2
|
|
2663
2663
|
# percent zonal affinity, and `any_availability_zone` with 0 percent
|
2664
2664
|
# zonal affinity.
|
2665
2665
|
#
|
2666
|
-
#
|
2666
|
+
# * `secondary_ips.auto_assigned.per_subnet` - The number of secondary
|
2667
|
+
# IP addresses to configure for your load balancer nodes. Use to
|
2668
|
+
# address port allocation errors if you can't add targets. The
|
2669
|
+
# valid range is 0 to 7. The default is 0. After you set this value,
|
2670
|
+
# you can't decrease it.
|
2667
2671
|
# @return [String]
|
2668
2672
|
#
|
2669
2673
|
# @!attribute [rw] value
|
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.137.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.228.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.228.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|