aws-sdk-elasticloadbalancingv2 1.40.1 → 1.41.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a6c0b6fbbbec744daf2292cbb94358c905b9b6b1
|
4
|
+
data.tar.gz: e9479c3668a2c9c53d6e85fe485c5308d216ad02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 739f971219abf62d80393e1cedfa76e6ae723833c1ff17f3164afcd04d1976090cba2a83c12634896d44697f604acbf3b9e77b49e868e9b2d515a143bdc08d0f
|
7
|
+
data.tar.gz: f30d191a493dd5d656193ed0741181247a84322520416351e376c613dfd7bcdb3c037baf220abc85087a84969a9df4935de624e49f12c763eeef410d7b8385a2
|
@@ -25,17 +25,20 @@ require_relative 'aws-sdk-elasticloadbalancingv2/customizations'
|
|
25
25
|
# methods each accept a hash of request parameters and return a response
|
26
26
|
# structure.
|
27
27
|
#
|
28
|
+
# elastic_load_balancing_v2 = Aws::ElasticLoadBalancingV2::Client.new
|
29
|
+
# resp = elastic_load_balancing_v2.add_listener_certificates(params)
|
30
|
+
#
|
28
31
|
# See {Client} for more information.
|
29
32
|
#
|
30
33
|
# # Errors
|
31
34
|
#
|
32
|
-
# Errors returned from Elastic Load Balancing
|
33
|
-
# extend {Errors::ServiceError}.
|
35
|
+
# Errors returned from Elastic Load Balancing are defined in the
|
36
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
34
37
|
#
|
35
38
|
# begin
|
36
39
|
# # do stuff
|
37
40
|
# rescue Aws::ElasticLoadBalancingV2::Errors::ServiceError
|
38
|
-
# # rescues all
|
41
|
+
# # rescues all Elastic Load Balancing API errors
|
39
42
|
# end
|
40
43
|
#
|
41
44
|
# See {Errors} for more information.
|
@@ -43,6 +46,6 @@ require_relative 'aws-sdk-elasticloadbalancingv2/customizations'
|
|
43
46
|
# @service
|
44
47
|
module Aws::ElasticLoadBalancingV2
|
45
48
|
|
46
|
-
GEM_VERSION = '1.
|
49
|
+
GEM_VERSION = '1.41.0'
|
47
50
|
|
48
51
|
end
|
@@ -30,6 +30,18 @@ require 'aws-sdk-core/plugins/protocols/query.rb'
|
|
30
30
|
Aws::Plugins::GlobalConfiguration.add_identifier(:elasticloadbalancingv2)
|
31
31
|
|
32
32
|
module Aws::ElasticLoadBalancingV2
|
33
|
+
# An API client for ElasticLoadBalancingV2. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
|
+
#
|
35
|
+
# client = Aws::ElasticLoadBalancingV2::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
|
+
#
|
41
|
+
# For details on configuring region and credentials see
|
42
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
43
|
+
#
|
44
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
45
|
class Client < Seahorse::Client::Base
|
34
46
|
|
35
47
|
include Aws::ClientStubs
|
@@ -108,6 +120,12 @@ module Aws::ElasticLoadBalancingV2
|
|
108
120
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
121
|
# the background every 60 secs (default). Defaults to `false`.
|
110
122
|
#
|
123
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
124
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
125
|
+
# until there is sufficent client side capacity to retry the request.
|
126
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
127
|
+
# not retry instead of sleeping.
|
128
|
+
#
|
111
129
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
130
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
131
|
# this client.
|
@@ -132,6 +150,10 @@ module Aws::ElasticLoadBalancingV2
|
|
132
150
|
# When `true`, an attempt is made to coerce request parameters into
|
133
151
|
# the required types.
|
134
152
|
#
|
153
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
154
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
155
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
156
|
+
#
|
135
157
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
158
|
# Set to true to disable SDK automatically adding host prefix
|
137
159
|
# to default service endpoint when available.
|
@@ -166,15 +188,29 @@ module Aws::ElasticLoadBalancingV2
|
|
166
188
|
# The Logger instance to send log messages to. If this option
|
167
189
|
# is not set, logging will be disabled.
|
168
190
|
#
|
191
|
+
# @option options [Integer] :max_attempts (3)
|
192
|
+
# An integer representing the maximum number attempts that will be made for
|
193
|
+
# a single request, including the initial attempt. For example,
|
194
|
+
# setting this value to 5 will result in a request being retried up to
|
195
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
196
|
+
#
|
169
197
|
# @option options [String] :profile ("default")
|
170
198
|
# Used when loading credentials from the shared credentials file
|
171
199
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
200
|
#
|
201
|
+
# @option options [Proc] :retry_backoff
|
202
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
203
|
+
# This option is only used in the `legacy` retry mode.
|
204
|
+
#
|
173
205
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
206
|
+
# The base delay in seconds used by the default backoff function. This option
|
207
|
+
# is only used in the `legacy` retry mode.
|
175
208
|
#
|
176
209
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
210
|
+
# A delay randomiser function used by the default backoff function.
|
211
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
212
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
213
|
+
# in the `legacy` retry mode.
|
178
214
|
#
|
179
215
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
216
|
#
|
@@ -182,11 +218,26 @@ module Aws::ElasticLoadBalancingV2
|
|
182
218
|
# The maximum number of times to retry failed requests. Only
|
183
219
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
220
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
221
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
222
|
+
# endpoint discovery, and errors from expired credentials.
|
223
|
+
# This option is only used in the `legacy` retry mode.
|
187
224
|
#
|
188
225
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
226
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
227
|
+
# used by the default backoff function. This option is only used in the
|
228
|
+
# `legacy` retry mode.
|
229
|
+
#
|
230
|
+
# @option options [String] :retry_mode ("legacy")
|
231
|
+
# Specifies which retry algorithm to use. Values are:
|
232
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
233
|
+
# no retry mode is provided.
|
234
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
235
|
+
# This includes support for retry quotas, which limit the number of
|
236
|
+
# unsuccessful retries a client can make.
|
237
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
238
|
+
# functionality of `standard` mode along with automatic client side
|
239
|
+
# throttling. This is a provisional mode that may change behavior
|
240
|
+
# in the future.
|
190
241
|
#
|
191
242
|
# @option options [String] :secret_access_key
|
192
243
|
#
|
@@ -209,16 +260,16 @@ module Aws::ElasticLoadBalancingV2
|
|
209
260
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
261
|
#
|
211
262
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
263
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
264
|
# `Timeout::Error`.
|
214
265
|
#
|
215
266
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
267
|
# number of seconds to wait for response data. This value can
|
217
268
|
# safely be set
|
218
|
-
# per-request on the session
|
269
|
+
# per-request on the session yielded by {#session_for}.
|
219
270
|
#
|
220
271
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
272
|
+
# seconds a connection is allowed to sit idle before it is
|
222
273
|
# considered stale. Stale connections are closed and removed
|
223
274
|
# from the pool before making a request.
|
224
275
|
#
|
@@ -227,7 +278,7 @@ module Aws::ElasticLoadBalancingV2
|
|
227
278
|
# request body. This option has no effect unless the request has
|
228
279
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
280
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
281
|
+
# request on the session yielded by {#session_for}.
|
231
282
|
#
|
232
283
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
284
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -4142,7 +4193,7 @@ module Aws::ElasticLoadBalancingV2
|
|
4142
4193
|
params: params,
|
4143
4194
|
config: config)
|
4144
4195
|
context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
|
4145
|
-
context[:gem_version] = '1.
|
4196
|
+
context[:gem_version] = '1.41.0'
|
4146
4197
|
Seahorse::Client::Request.new(handlers, context)
|
4147
4198
|
end
|
4148
4199
|
|
@@ -6,6 +6,64 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::ElasticLoadBalancingV2
|
9
|
+
|
10
|
+
# When ElasticLoadBalancingV2 returns an error response, the Ruby SDK constructs and raises an error.
|
11
|
+
# These errors all extend Aws::ElasticLoadBalancingV2::Errors::ServiceError < {Aws::Errors::ServiceError}
|
12
|
+
#
|
13
|
+
# You can rescue all ElasticLoadBalancingV2 errors using ServiceError:
|
14
|
+
#
|
15
|
+
# begin
|
16
|
+
# # do stuff
|
17
|
+
# rescue Aws::ElasticLoadBalancingV2::Errors::ServiceError
|
18
|
+
# # rescues all ElasticLoadBalancingV2 API errors
|
19
|
+
# end
|
20
|
+
#
|
21
|
+
#
|
22
|
+
# ## Request Context
|
23
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
24
|
+
# information about the request that generated the error.
|
25
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
26
|
+
#
|
27
|
+
# ## Error Classes
|
28
|
+
# * {AllocationIdNotFoundException}
|
29
|
+
# * {AvailabilityZoneNotSupportedException}
|
30
|
+
# * {CertificateNotFoundException}
|
31
|
+
# * {DuplicateListenerException}
|
32
|
+
# * {DuplicateLoadBalancerNameException}
|
33
|
+
# * {DuplicateTagKeysException}
|
34
|
+
# * {DuplicateTargetGroupNameException}
|
35
|
+
# * {HealthUnavailableException}
|
36
|
+
# * {IncompatibleProtocolsException}
|
37
|
+
# * {InvalidConfigurationRequestException}
|
38
|
+
# * {InvalidLoadBalancerActionException}
|
39
|
+
# * {InvalidSchemeException}
|
40
|
+
# * {InvalidSecurityGroupException}
|
41
|
+
# * {InvalidSubnetException}
|
42
|
+
# * {InvalidTargetException}
|
43
|
+
# * {ListenerNotFoundException}
|
44
|
+
# * {LoadBalancerNotFoundException}
|
45
|
+
# * {OperationNotPermittedException}
|
46
|
+
# * {PriorityInUseException}
|
47
|
+
# * {ResourceInUseException}
|
48
|
+
# * {RuleNotFoundException}
|
49
|
+
# * {SSLPolicyNotFoundException}
|
50
|
+
# * {SubnetNotFoundException}
|
51
|
+
# * {TargetGroupAssociationLimitException}
|
52
|
+
# * {TargetGroupNotFoundException}
|
53
|
+
# * {TooManyActionsException}
|
54
|
+
# * {TooManyCertificatesException}
|
55
|
+
# * {TooManyListenersException}
|
56
|
+
# * {TooManyLoadBalancersException}
|
57
|
+
# * {TooManyRegistrationsForTargetIdException}
|
58
|
+
# * {TooManyRulesException}
|
59
|
+
# * {TooManyTagsException}
|
60
|
+
# * {TooManyTargetGroupsException}
|
61
|
+
# * {TooManyTargetsException}
|
62
|
+
# * {TooManyUniqueTargetGroupsPerLoadBalancerException}
|
63
|
+
# * {UnsupportedProtocolException}
|
64
|
+
#
|
65
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
66
|
+
# if they are not defined above.
|
9
67
|
module Errors
|
10
68
|
|
11
69
|
extend Aws::Errors::DynamicErrors
|
@@ -18,7 +76,6 @@ module Aws::ElasticLoadBalancingV2
|
|
18
76
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
19
77
|
super(context, message, data)
|
20
78
|
end
|
21
|
-
|
22
79
|
end
|
23
80
|
|
24
81
|
class AvailabilityZoneNotSupportedException < ServiceError
|
@@ -29,7 +86,6 @@ module Aws::ElasticLoadBalancingV2
|
|
29
86
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
30
87
|
super(context, message, data)
|
31
88
|
end
|
32
|
-
|
33
89
|
end
|
34
90
|
|
35
91
|
class CertificateNotFoundException < ServiceError
|
@@ -40,7 +96,6 @@ module Aws::ElasticLoadBalancingV2
|
|
40
96
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
41
97
|
super(context, message, data)
|
42
98
|
end
|
43
|
-
|
44
99
|
end
|
45
100
|
|
46
101
|
class DuplicateListenerException < ServiceError
|
@@ -51,7 +106,6 @@ module Aws::ElasticLoadBalancingV2
|
|
51
106
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
52
107
|
super(context, message, data)
|
53
108
|
end
|
54
|
-
|
55
109
|
end
|
56
110
|
|
57
111
|
class DuplicateLoadBalancerNameException < ServiceError
|
@@ -62,7 +116,6 @@ module Aws::ElasticLoadBalancingV2
|
|
62
116
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
63
117
|
super(context, message, data)
|
64
118
|
end
|
65
|
-
|
66
119
|
end
|
67
120
|
|
68
121
|
class DuplicateTagKeysException < ServiceError
|
@@ -73,7 +126,6 @@ module Aws::ElasticLoadBalancingV2
|
|
73
126
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
74
127
|
super(context, message, data)
|
75
128
|
end
|
76
|
-
|
77
129
|
end
|
78
130
|
|
79
131
|
class DuplicateTargetGroupNameException < ServiceError
|
@@ -84,7 +136,6 @@ module Aws::ElasticLoadBalancingV2
|
|
84
136
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
85
137
|
super(context, message, data)
|
86
138
|
end
|
87
|
-
|
88
139
|
end
|
89
140
|
|
90
141
|
class HealthUnavailableException < ServiceError
|
@@ -95,7 +146,6 @@ module Aws::ElasticLoadBalancingV2
|
|
95
146
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
96
147
|
super(context, message, data)
|
97
148
|
end
|
98
|
-
|
99
149
|
end
|
100
150
|
|
101
151
|
class IncompatibleProtocolsException < ServiceError
|
@@ -106,7 +156,6 @@ module Aws::ElasticLoadBalancingV2
|
|
106
156
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
107
157
|
super(context, message, data)
|
108
158
|
end
|
109
|
-
|
110
159
|
end
|
111
160
|
|
112
161
|
class InvalidConfigurationRequestException < ServiceError
|
@@ -117,7 +166,6 @@ module Aws::ElasticLoadBalancingV2
|
|
117
166
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
118
167
|
super(context, message, data)
|
119
168
|
end
|
120
|
-
|
121
169
|
end
|
122
170
|
|
123
171
|
class InvalidLoadBalancerActionException < ServiceError
|
@@ -128,7 +176,6 @@ module Aws::ElasticLoadBalancingV2
|
|
128
176
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
129
177
|
super(context, message, data)
|
130
178
|
end
|
131
|
-
|
132
179
|
end
|
133
180
|
|
134
181
|
class InvalidSchemeException < ServiceError
|
@@ -139,7 +186,6 @@ module Aws::ElasticLoadBalancingV2
|
|
139
186
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
140
187
|
super(context, message, data)
|
141
188
|
end
|
142
|
-
|
143
189
|
end
|
144
190
|
|
145
191
|
class InvalidSecurityGroupException < ServiceError
|
@@ -150,7 +196,6 @@ module Aws::ElasticLoadBalancingV2
|
|
150
196
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
151
197
|
super(context, message, data)
|
152
198
|
end
|
153
|
-
|
154
199
|
end
|
155
200
|
|
156
201
|
class InvalidSubnetException < ServiceError
|
@@ -161,7 +206,6 @@ module Aws::ElasticLoadBalancingV2
|
|
161
206
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
162
207
|
super(context, message, data)
|
163
208
|
end
|
164
|
-
|
165
209
|
end
|
166
210
|
|
167
211
|
class InvalidTargetException < ServiceError
|
@@ -172,7 +216,6 @@ module Aws::ElasticLoadBalancingV2
|
|
172
216
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
173
217
|
super(context, message, data)
|
174
218
|
end
|
175
|
-
|
176
219
|
end
|
177
220
|
|
178
221
|
class ListenerNotFoundException < ServiceError
|
@@ -183,7 +226,6 @@ module Aws::ElasticLoadBalancingV2
|
|
183
226
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
184
227
|
super(context, message, data)
|
185
228
|
end
|
186
|
-
|
187
229
|
end
|
188
230
|
|
189
231
|
class LoadBalancerNotFoundException < ServiceError
|
@@ -194,7 +236,6 @@ module Aws::ElasticLoadBalancingV2
|
|
194
236
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
195
237
|
super(context, message, data)
|
196
238
|
end
|
197
|
-
|
198
239
|
end
|
199
240
|
|
200
241
|
class OperationNotPermittedException < ServiceError
|
@@ -205,7 +246,6 @@ module Aws::ElasticLoadBalancingV2
|
|
205
246
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
206
247
|
super(context, message, data)
|
207
248
|
end
|
208
|
-
|
209
249
|
end
|
210
250
|
|
211
251
|
class PriorityInUseException < ServiceError
|
@@ -216,7 +256,6 @@ module Aws::ElasticLoadBalancingV2
|
|
216
256
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
217
257
|
super(context, message, data)
|
218
258
|
end
|
219
|
-
|
220
259
|
end
|
221
260
|
|
222
261
|
class ResourceInUseException < ServiceError
|
@@ -227,7 +266,6 @@ module Aws::ElasticLoadBalancingV2
|
|
227
266
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
228
267
|
super(context, message, data)
|
229
268
|
end
|
230
|
-
|
231
269
|
end
|
232
270
|
|
233
271
|
class RuleNotFoundException < ServiceError
|
@@ -238,7 +276,6 @@ module Aws::ElasticLoadBalancingV2
|
|
238
276
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
239
277
|
super(context, message, data)
|
240
278
|
end
|
241
|
-
|
242
279
|
end
|
243
280
|
|
244
281
|
class SSLPolicyNotFoundException < ServiceError
|
@@ -249,7 +286,6 @@ module Aws::ElasticLoadBalancingV2
|
|
249
286
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
250
287
|
super(context, message, data)
|
251
288
|
end
|
252
|
-
|
253
289
|
end
|
254
290
|
|
255
291
|
class SubnetNotFoundException < ServiceError
|
@@ -260,7 +296,6 @@ module Aws::ElasticLoadBalancingV2
|
|
260
296
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
261
297
|
super(context, message, data)
|
262
298
|
end
|
263
|
-
|
264
299
|
end
|
265
300
|
|
266
301
|
class TargetGroupAssociationLimitException < ServiceError
|
@@ -271,7 +306,6 @@ module Aws::ElasticLoadBalancingV2
|
|
271
306
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
272
307
|
super(context, message, data)
|
273
308
|
end
|
274
|
-
|
275
309
|
end
|
276
310
|
|
277
311
|
class TargetGroupNotFoundException < ServiceError
|
@@ -282,7 +316,6 @@ module Aws::ElasticLoadBalancingV2
|
|
282
316
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
283
317
|
super(context, message, data)
|
284
318
|
end
|
285
|
-
|
286
319
|
end
|
287
320
|
|
288
321
|
class TooManyActionsException < ServiceError
|
@@ -293,7 +326,6 @@ module Aws::ElasticLoadBalancingV2
|
|
293
326
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
294
327
|
super(context, message, data)
|
295
328
|
end
|
296
|
-
|
297
329
|
end
|
298
330
|
|
299
331
|
class TooManyCertificatesException < ServiceError
|
@@ -304,7 +336,6 @@ module Aws::ElasticLoadBalancingV2
|
|
304
336
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
305
337
|
super(context, message, data)
|
306
338
|
end
|
307
|
-
|
308
339
|
end
|
309
340
|
|
310
341
|
class TooManyListenersException < ServiceError
|
@@ -315,7 +346,6 @@ module Aws::ElasticLoadBalancingV2
|
|
315
346
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
316
347
|
super(context, message, data)
|
317
348
|
end
|
318
|
-
|
319
349
|
end
|
320
350
|
|
321
351
|
class TooManyLoadBalancersException < ServiceError
|
@@ -326,7 +356,6 @@ module Aws::ElasticLoadBalancingV2
|
|
326
356
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
327
357
|
super(context, message, data)
|
328
358
|
end
|
329
|
-
|
330
359
|
end
|
331
360
|
|
332
361
|
class TooManyRegistrationsForTargetIdException < ServiceError
|
@@ -337,7 +366,6 @@ module Aws::ElasticLoadBalancingV2
|
|
337
366
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
338
367
|
super(context, message, data)
|
339
368
|
end
|
340
|
-
|
341
369
|
end
|
342
370
|
|
343
371
|
class TooManyRulesException < ServiceError
|
@@ -348,7 +376,6 @@ module Aws::ElasticLoadBalancingV2
|
|
348
376
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
349
377
|
super(context, message, data)
|
350
378
|
end
|
351
|
-
|
352
379
|
end
|
353
380
|
|
354
381
|
class TooManyTagsException < ServiceError
|
@@ -359,7 +386,6 @@ module Aws::ElasticLoadBalancingV2
|
|
359
386
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
360
387
|
super(context, message, data)
|
361
388
|
end
|
362
|
-
|
363
389
|
end
|
364
390
|
|
365
391
|
class TooManyTargetGroupsException < ServiceError
|
@@ -370,7 +396,6 @@ module Aws::ElasticLoadBalancingV2
|
|
370
396
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
371
397
|
super(context, message, data)
|
372
398
|
end
|
373
|
-
|
374
399
|
end
|
375
400
|
|
376
401
|
class TooManyTargetsException < ServiceError
|
@@ -381,7 +406,6 @@ module Aws::ElasticLoadBalancingV2
|
|
381
406
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
382
407
|
super(context, message, data)
|
383
408
|
end
|
384
|
-
|
385
409
|
end
|
386
410
|
|
387
411
|
class TooManyUniqueTargetGroupsPerLoadBalancerException < ServiceError
|
@@ -392,7 +416,6 @@ module Aws::ElasticLoadBalancingV2
|
|
392
416
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
393
417
|
super(context, message, data)
|
394
418
|
end
|
395
|
-
|
396
419
|
end
|
397
420
|
|
398
421
|
class UnsupportedProtocolException < ServiceError
|
@@ -403,7 +426,6 @@ module Aws::ElasticLoadBalancingV2
|
|
403
426
|
def initialize(context, message, data = Aws::EmptyStructure.new)
|
404
427
|
super(context, message, data)
|
405
428
|
end
|
406
|
-
|
407
429
|
end
|
408
430
|
|
409
431
|
end
|
@@ -6,6 +6,13 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::ElasticLoadBalancingV2
|
9
|
+
# This class provides a resource oriented interface for ElasticLoadBalancingV2.
|
10
|
+
# To create a resource object:
|
11
|
+
# resource = Aws::ElasticLoadBalancingV2::Resource.new(region: 'us-west-2')
|
12
|
+
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
+
# If you do not pass +:client+, a default client will be constructed.
|
14
|
+
# client = Aws::ElasticLoadBalancingV2::Client.new(region: 'us-west-2')
|
15
|
+
# resource = Aws::ElasticLoadBalancingV2::Resource.new(client: client)
|
9
16
|
class Resource
|
10
17
|
|
11
18
|
# @param options ({})
|
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.41.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: 2020-03-
|
11
|
+
date: 2020-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|