aws-sdk-elasticloadbalancingv2 1.110.0 → 1.112.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 +11 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client_api.rb +10 -0
- data/lib/aws-sdk-elasticloadbalancingv2/waiters.rb +3 -3
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c3efe0f73969dad52e5e2e242ffca419c26c254d8e2bf0853c202137cbb879e
|
4
|
+
data.tar.gz: f1c6e2c94bd96d99a2b5d5800adb51e98c601efc2e162dc7d8c3077bb4906eee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4d2d64e0d5eb2b26af78c24e56285f128e3e222c97bdbcd94d77219e5b7f06f48752047b1830dd82217194cbe7638586d26f13c954c3620340d184bd6e7af81
|
7
|
+
data.tar.gz: 9bb47023783633e71bc169cbe318530845e533d4bb6775bd04630223812ae1a133729011a7733467d8f005a22c3ada6c53a98cfccc8f0d89e5859e20c4317b16
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.112.0 (2024-09-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.111.0 (2024-09-09)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add paginators for the ELBv2 DescribeListenerCertificates and DescribeRules APIs. Fix broken waiter for the ELBv2 DescribeLoadBalancers API.
|
13
|
+
|
4
14
|
1.110.0 (2024-09-03)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.112.0
|
@@ -425,6 +425,12 @@ module Aws::ElasticLoadBalancingV2
|
|
425
425
|
# @option options [String] :ssl_ca_store
|
426
426
|
# Sets the X509::Store to verify peer certificate.
|
427
427
|
#
|
428
|
+
# @option options [OpenSSL::X509::Certificate] :ssl_cert
|
429
|
+
# Sets a client certificate when creating http connections.
|
430
|
+
#
|
431
|
+
# @option options [OpenSSL::PKey] :ssl_key
|
432
|
+
# Sets a client key when creating http connections.
|
433
|
+
#
|
428
434
|
# @option options [Float] :ssl_timeout
|
429
435
|
# Sets the SSL timeout in seconds
|
430
436
|
#
|
@@ -2178,6 +2184,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2178
2184
|
# * {Types::DescribeListenerCertificatesOutput#certificates #certificates} => Array<Types::Certificate>
|
2179
2185
|
# * {Types::DescribeListenerCertificatesOutput#next_marker #next_marker} => String
|
2180
2186
|
#
|
2187
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2188
|
+
#
|
2181
2189
|
# @example Request syntax with placeholder values
|
2182
2190
|
#
|
2183
2191
|
# resp = client.describe_listener_certificates({
|
@@ -2555,6 +2563,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2555
2563
|
# * {Types::DescribeRulesOutput#rules #rules} => Array<Types::Rule>
|
2556
2564
|
# * {Types::DescribeRulesOutput#next_marker #next_marker} => String
|
2557
2565
|
#
|
2566
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2567
|
+
#
|
2558
2568
|
#
|
2559
2569
|
# @example Example: To describe a rule
|
2560
2570
|
#
|
@@ -5078,7 +5088,7 @@ module Aws::ElasticLoadBalancingV2
|
|
5078
5088
|
tracer: tracer
|
5079
5089
|
)
|
5080
5090
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
5081
|
-
context[:gem_version] = '1.
|
5091
|
+
context[:gem_version] = '1.112.0'
|
5082
5092
|
Seahorse::Client::Request.new(handlers, context)
|
5083
5093
|
end
|
5084
5094
|
|
@@ -1495,6 +1495,11 @@ module Aws::ElasticLoadBalancingV2
|
|
1495
1495
|
o.input = Shapes::ShapeRef.new(shape: DescribeListenerCertificatesInput)
|
1496
1496
|
o.output = Shapes::ShapeRef.new(shape: DescribeListenerCertificatesOutput)
|
1497
1497
|
o.errors << Shapes::ShapeRef.new(shape: ListenerNotFoundException)
|
1498
|
+
o[:pager] = Aws::Pager.new(
|
1499
|
+
tokens: {
|
1500
|
+
"next_marker" => "marker"
|
1501
|
+
}
|
1502
|
+
)
|
1498
1503
|
end)
|
1499
1504
|
|
1500
1505
|
api.add_operation(:describe_listeners, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1545,6 +1550,11 @@ module Aws::ElasticLoadBalancingV2
|
|
1545
1550
|
o.errors << Shapes::ShapeRef.new(shape: ListenerNotFoundException)
|
1546
1551
|
o.errors << Shapes::ShapeRef.new(shape: RuleNotFoundException)
|
1547
1552
|
o.errors << Shapes::ShapeRef.new(shape: UnsupportedProtocolException)
|
1553
|
+
o[:pager] = Aws::Pager.new(
|
1554
|
+
tokens: {
|
1555
|
+
"next_marker" => "marker"
|
1556
|
+
}
|
1557
|
+
)
|
1548
1558
|
end)
|
1549
1559
|
|
1550
1560
|
api.add_operation(:describe_ssl_policies, Seahorse::Model::Operation.new.tap do |o|
|
@@ -108,7 +108,7 @@ module Aws::ElasticLoadBalancingV2
|
|
108
108
|
{
|
109
109
|
"state" => "retry",
|
110
110
|
"matcher" => "error",
|
111
|
-
"expected" => "
|
111
|
+
"expected" => "LoadBalancerNotFoundException"
|
112
112
|
}
|
113
113
|
]
|
114
114
|
)
|
@@ -149,7 +149,7 @@ module Aws::ElasticLoadBalancingV2
|
|
149
149
|
},
|
150
150
|
{
|
151
151
|
"matcher" => "error",
|
152
|
-
"expected" => "
|
152
|
+
"expected" => "LoadBalancerNotFoundException",
|
153
153
|
"state" => "retry"
|
154
154
|
}
|
155
155
|
]
|
@@ -192,7 +192,7 @@ module Aws::ElasticLoadBalancingV2
|
|
192
192
|
},
|
193
193
|
{
|
194
194
|
"matcher" => "error",
|
195
|
-
"expected" => "
|
195
|
+
"expected" => "LoadBalancerNotFoundException",
|
196
196
|
"state" => "success"
|
197
197
|
}
|
198
198
|
]
|
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.112.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: 2024-09-
|
11
|
+
date: 2024-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|