aws-sdk-elasticloadbalancingv2 1.110.0 → 1.111.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cc3577927217285e1e043d344ae4c97033935d1e354ae5b4613dd2624f22105b
4
- data.tar.gz: 2a65bc7f53673737d2e20e6cf113c098a950eae97d8bc35d583e8178242d2daa
3
+ metadata.gz: c0073a9ada32b7a09124d6409431eacdb7d505911dfde540caf04cbee15a9f01
4
+ data.tar.gz: 2a589c67d45638480f1ff4dc57d4858d9f7da758ad6a1d3b498cbec650afd041
5
5
  SHA512:
6
- metadata.gz: bcd4bdc1c932353a5abd7f876830d49ddaa658e6586a987b1c69bfc56608ef8a7cd14f4ac0671abb25cb96ed9ffd56ff4840586511cd741d42831bb60198d6bf
7
- data.tar.gz: f11f74cfed0531aaaa9881c8c0afe54f35b7340bbf448c95a3591f0d0d208927ef0b7a693552dc73fc8dd89297ebdcfccaef997ad0b86389555de197737e4581
6
+ metadata.gz: 82ea4aa023e84166ba4feb91aa994adaee4bc0a78d2b3f1ec4d34424bbeb853ce7d206324d9e0f3da4381acba4354356dffbfa91a4f72f55fac07b282dfcda3f
7
+ data.tar.gz: 25785329d7c3460a77f8966cecf48fec65c52aff86fde80914be432837ef1272b2d83bb7823bdbcacdfe419bdfaa5546772045574e889b1448eb717f6affbae9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.111.0 (2024-09-09)
5
+ ------------------
6
+
7
+ * Feature - Add paginators for the ELBv2 DescribeListenerCertificates and DescribeRules APIs. Fix broken waiter for the ELBv2 DescribeLoadBalancers API.
8
+
4
9
  1.110.0 (2024-09-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.110.0
1
+ 1.111.0
@@ -2178,6 +2178,8 @@ module Aws::ElasticLoadBalancingV2
2178
2178
  # * {Types::DescribeListenerCertificatesOutput#certificates #certificates} => Array<Types::Certificate>
2179
2179
  # * {Types::DescribeListenerCertificatesOutput#next_marker #next_marker} => String
2180
2180
  #
2181
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2182
+ #
2181
2183
  # @example Request syntax with placeholder values
2182
2184
  #
2183
2185
  # resp = client.describe_listener_certificates({
@@ -2555,6 +2557,8 @@ module Aws::ElasticLoadBalancingV2
2555
2557
  # * {Types::DescribeRulesOutput#rules #rules} => Array<Types::Rule>
2556
2558
  # * {Types::DescribeRulesOutput#next_marker #next_marker} => String
2557
2559
  #
2560
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2561
+ #
2558
2562
  #
2559
2563
  # @example Example: To describe a rule
2560
2564
  #
@@ -5078,7 +5082,7 @@ module Aws::ElasticLoadBalancingV2
5078
5082
  tracer: tracer
5079
5083
  )
5080
5084
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
5081
- context[:gem_version] = '1.110.0'
5085
+ context[:gem_version] = '1.111.0'
5082
5086
  Seahorse::Client::Request.new(handlers, context)
5083
5087
  end
5084
5088
 
@@ -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" => "LoadBalancerNotFound"
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" => "LoadBalancerNotFound",
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" => "LoadBalancerNotFound",
195
+ "expected" => "LoadBalancerNotFoundException",
196
196
  "state" => "success"
197
197
  }
198
198
  ]
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-elasticloadbalancingv2/customizations'
53
53
  # @!group service
54
54
  module Aws::ElasticLoadBalancingV2
55
55
 
56
- GEM_VERSION = '1.110.0'
56
+ GEM_VERSION = '1.111.0'
57
57
 
58
58
  end
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.110.0
4
+ version: 1.111.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-03 00:00:00.000000000 Z
11
+ date: 2024-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core