aws-sdk-elasticloadbalancingv2 1.99.0 → 1.101.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: d4d9e478c0a585075b757ec568baf94e7b6a498dbdbf418b790284d463000ed5
4
- data.tar.gz: acf5cf1f6590e0255878e3015ab81751ab88166134863f61fff91d990cf754d7
3
+ metadata.gz: e013feb17f7037b37d9a2dc55dd48f2cc7436a7d6ad276511284c8634c0836b5
4
+ data.tar.gz: 914ce3bdf756e4a7ba8756b1c6a54f26ee14211015e44bf7c095587d124988d0
5
5
  SHA512:
6
- metadata.gz: c2e6e865dc66a6f490706c232710157adbb506ae5cd49988ef841e374519735d978b54b54de76997d2a7bf0d91905e70ce64121f2599636efa428934e6f359ef
7
- data.tar.gz: a98e842546258c64be315bfdd663c977d5174655370c33ea8c76bcf4aee4a2a05222df3e863f66e5bbadece82899e594d9c5891d7a5707fa19327a1520004a0f
6
+ metadata.gz: ffc2c6c32081567d9b0be26e0f1e52257b61763e75aa9ec7eddaf86fdddfb3c4abf07142c46c77f57ccfdfd1fb8ec02a6521600ba1a9c6fba73421e0b38e1d66
7
+ data.tar.gz: 661185f4009f77f9c763bbb2252368857b4d9a78a368158f1ddfd2c19787638300e6403579c809b327548052af098c4c635f9de86df2244086bb99c46ea676b0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.101.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.100.0 (2024-04-16)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.99.0 (2024-03-14)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.99.0
1
+ 1.101.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::ElasticLoadBalancingV2
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::ElasticLoadBalancingV2
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::ElasticLoadBalancingV2
337
346
  # @option options [Aws::ElasticLoadBalancingV2::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::ElasticLoadBalancingV2::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
365
399
  #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
368
402
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
372
405
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
378
- #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -4831,7 +4855,7 @@ module Aws::ElasticLoadBalancingV2
4831
4855
  params: params,
4832
4856
  config: config)
4833
4857
  context[:gem_name] = 'aws-sdk-elasticloadbalancingv2'
4834
- context[:gem_version] = '1.99.0'
4858
+ context[:gem_version] = '1.101.0'
4835
4859
  Seahorse::Client::Request.new(handlers, context)
4836
4860
  end
4837
4861
 
@@ -13,7 +13,7 @@ module Aws::ElasticLoadBalancingV2
13
13
 
14
14
  include Seahorse::Model
15
15
 
16
- ALPNPolicyNotSupportedException = Shapes::StructureShape.new(name: 'ALPNPolicyNotSupportedException')
16
+ ALPNPolicyNotSupportedException = Shapes::StructureShape.new(name: 'ALPNPolicyNotSupportedException', error: {"code"=>"ALPNPolicyNotFound", "httpStatusCode"=>400, "senderFault"=>true})
17
17
  Action = Shapes::StructureShape.new(name: 'Action')
18
18
  ActionOrder = Shapes::IntegerShape.new(name: 'ActionOrder')
19
19
  ActionTypeEnum = Shapes::StringShape.new(name: 'ActionTypeEnum')
@@ -25,7 +25,7 @@ module Aws::ElasticLoadBalancingV2
25
25
  AddTrustStoreRevocationsInput = Shapes::StructureShape.new(name: 'AddTrustStoreRevocationsInput')
26
26
  AddTrustStoreRevocationsOutput = Shapes::StructureShape.new(name: 'AddTrustStoreRevocationsOutput')
27
27
  AllocationId = Shapes::StringShape.new(name: 'AllocationId')
28
- AllocationIdNotFoundException = Shapes::StructureShape.new(name: 'AllocationIdNotFoundException')
28
+ AllocationIdNotFoundException = Shapes::StructureShape.new(name: 'AllocationIdNotFoundException', error: {"code"=>"AllocationIdNotFound", "httpStatusCode"=>400, "senderFault"=>true})
29
29
  AlpnPolicyName = Shapes::ListShape.new(name: 'AlpnPolicyName')
30
30
  AlpnPolicyValue = Shapes::StringShape.new(name: 'AlpnPolicyValue')
31
31
  AnomalyDetection = Shapes::StructureShape.new(name: 'AnomalyDetection')
@@ -57,14 +57,14 @@ module Aws::ElasticLoadBalancingV2
57
57
  AuthenticateOidcActionUseExistingClientSecret = Shapes::BooleanShape.new(name: 'AuthenticateOidcActionUseExistingClientSecret')
58
58
  AuthenticateOidcActionUserInfoEndpoint = Shapes::StringShape.new(name: 'AuthenticateOidcActionUserInfoEndpoint')
59
59
  AvailabilityZone = Shapes::StructureShape.new(name: 'AvailabilityZone')
60
- AvailabilityZoneNotSupportedException = Shapes::StructureShape.new(name: 'AvailabilityZoneNotSupportedException')
60
+ AvailabilityZoneNotSupportedException = Shapes::StructureShape.new(name: 'AvailabilityZoneNotSupportedException', error: {"code"=>"AvailabilityZoneNotSupported", "httpStatusCode"=>400, "senderFault"=>true})
61
61
  AvailabilityZones = Shapes::ListShape.new(name: 'AvailabilityZones')
62
- CaCertificatesBundleNotFoundException = Shapes::StructureShape.new(name: 'CaCertificatesBundleNotFoundException')
62
+ CaCertificatesBundleNotFoundException = Shapes::StructureShape.new(name: 'CaCertificatesBundleNotFoundException', error: {"code"=>"CaCertificatesBundleNotFound", "httpStatusCode"=>400, "senderFault"=>true})
63
63
  CanonicalHostedZoneId = Shapes::StringShape.new(name: 'CanonicalHostedZoneId')
64
64
  Certificate = Shapes::StructureShape.new(name: 'Certificate')
65
65
  CertificateArn = Shapes::StringShape.new(name: 'CertificateArn')
66
66
  CertificateList = Shapes::ListShape.new(name: 'CertificateList')
67
- CertificateNotFoundException = Shapes::StructureShape.new(name: 'CertificateNotFoundException')
67
+ CertificateNotFoundException = Shapes::StructureShape.new(name: 'CertificateNotFoundException', error: {"code"=>"CertificateNotFound", "httpStatusCode"=>400, "senderFault"=>true})
68
68
  Cipher = Shapes::StructureShape.new(name: 'Cipher')
69
69
  CipherName = Shapes::StringShape.new(name: 'CipherName')
70
70
  CipherPriority = Shapes::IntegerShape.new(name: 'CipherPriority')
@@ -128,11 +128,11 @@ module Aws::ElasticLoadBalancingV2
128
128
  DescribeTrustStoresInput = Shapes::StructureShape.new(name: 'DescribeTrustStoresInput')
129
129
  DescribeTrustStoresOutput = Shapes::StructureShape.new(name: 'DescribeTrustStoresOutput')
130
130
  Description = Shapes::StringShape.new(name: 'Description')
131
- DuplicateListenerException = Shapes::StructureShape.new(name: 'DuplicateListenerException')
132
- DuplicateLoadBalancerNameException = Shapes::StructureShape.new(name: 'DuplicateLoadBalancerNameException')
133
- DuplicateTagKeysException = Shapes::StructureShape.new(name: 'DuplicateTagKeysException')
134
- DuplicateTargetGroupNameException = Shapes::StructureShape.new(name: 'DuplicateTargetGroupNameException')
135
- DuplicateTrustStoreNameException = Shapes::StructureShape.new(name: 'DuplicateTrustStoreNameException')
131
+ DuplicateListenerException = Shapes::StructureShape.new(name: 'DuplicateListenerException', error: {"code"=>"DuplicateListener", "httpStatusCode"=>400, "senderFault"=>true})
132
+ DuplicateLoadBalancerNameException = Shapes::StructureShape.new(name: 'DuplicateLoadBalancerNameException', error: {"code"=>"DuplicateLoadBalancerName", "httpStatusCode"=>400, "senderFault"=>true})
133
+ DuplicateTagKeysException = Shapes::StructureShape.new(name: 'DuplicateTagKeysException', error: {"code"=>"DuplicateTagKeys", "httpStatusCode"=>400, "senderFault"=>true})
134
+ DuplicateTargetGroupNameException = Shapes::StructureShape.new(name: 'DuplicateTargetGroupNameException', error: {"code"=>"DuplicateTargetGroupName", "httpStatusCode"=>400, "senderFault"=>true})
135
+ DuplicateTrustStoreNameException = Shapes::StructureShape.new(name: 'DuplicateTrustStoreNameException', error: {"code"=>"DuplicateTrustStoreName", "httpStatusCode"=>400, "senderFault"=>true})
136
136
  EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic = Shapes::StringShape.new(name: 'EnforceSecurityGroupInboundRulesOnPrivateLinkTraffic')
137
137
  EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum = Shapes::StringShape.new(name: 'EnforceSecurityGroupInboundRulesOnPrivateLinkTrafficEnum')
138
138
  FixedResponseActionConfig = Shapes::StructureShape.new(name: 'FixedResponseActionConfig')
@@ -150,7 +150,7 @@ module Aws::ElasticLoadBalancingV2
150
150
  HealthCheckPort = Shapes::StringShape.new(name: 'HealthCheckPort')
151
151
  HealthCheckThresholdCount = Shapes::IntegerShape.new(name: 'HealthCheckThresholdCount')
152
152
  HealthCheckTimeoutSeconds = Shapes::IntegerShape.new(name: 'HealthCheckTimeoutSeconds')
153
- HealthUnavailableException = Shapes::StructureShape.new(name: 'HealthUnavailableException')
153
+ HealthUnavailableException = Shapes::StructureShape.new(name: 'HealthUnavailableException', error: {"code"=>"HealthUnavailable", "httpStatusCode"=>500})
154
154
  HostHeaderConditionConfig = Shapes::StructureShape.new(name: 'HostHeaderConditionConfig')
155
155
  HttpCode = Shapes::StringShape.new(name: 'HttpCode')
156
156
  HttpHeaderConditionConfig = Shapes::StructureShape.new(name: 'HttpHeaderConditionConfig')
@@ -158,15 +158,15 @@ module Aws::ElasticLoadBalancingV2
158
158
  HttpRequestMethodConditionConfig = Shapes::StructureShape.new(name: 'HttpRequestMethodConditionConfig')
159
159
  IPv6Address = Shapes::StringShape.new(name: 'IPv6Address')
160
160
  IgnoreClientCertificateExpiry = Shapes::BooleanShape.new(name: 'IgnoreClientCertificateExpiry')
161
- IncompatibleProtocolsException = Shapes::StructureShape.new(name: 'IncompatibleProtocolsException')
162
- InvalidCaCertificatesBundleException = Shapes::StructureShape.new(name: 'InvalidCaCertificatesBundleException')
163
- InvalidConfigurationRequestException = Shapes::StructureShape.new(name: 'InvalidConfigurationRequestException')
164
- InvalidLoadBalancerActionException = Shapes::StructureShape.new(name: 'InvalidLoadBalancerActionException')
165
- InvalidRevocationContentException = Shapes::StructureShape.new(name: 'InvalidRevocationContentException')
166
- InvalidSchemeException = Shapes::StructureShape.new(name: 'InvalidSchemeException')
167
- InvalidSecurityGroupException = Shapes::StructureShape.new(name: 'InvalidSecurityGroupException')
168
- InvalidSubnetException = Shapes::StructureShape.new(name: 'InvalidSubnetException')
169
- InvalidTargetException = Shapes::StructureShape.new(name: 'InvalidTargetException')
161
+ IncompatibleProtocolsException = Shapes::StructureShape.new(name: 'IncompatibleProtocolsException', error: {"code"=>"IncompatibleProtocols", "httpStatusCode"=>400, "senderFault"=>true})
162
+ InvalidCaCertificatesBundleException = Shapes::StructureShape.new(name: 'InvalidCaCertificatesBundleException', error: {"code"=>"InvalidCaCertificatesBundle", "httpStatusCode"=>400, "senderFault"=>true})
163
+ InvalidConfigurationRequestException = Shapes::StructureShape.new(name: 'InvalidConfigurationRequestException', error: {"code"=>"InvalidConfigurationRequest", "httpStatusCode"=>400, "senderFault"=>true})
164
+ InvalidLoadBalancerActionException = Shapes::StructureShape.new(name: 'InvalidLoadBalancerActionException', error: {"code"=>"InvalidLoadBalancerAction", "httpStatusCode"=>400, "senderFault"=>true})
165
+ InvalidRevocationContentException = Shapes::StructureShape.new(name: 'InvalidRevocationContentException', error: {"code"=>"InvalidRevocationContent", "httpStatusCode"=>400, "senderFault"=>true})
166
+ InvalidSchemeException = Shapes::StructureShape.new(name: 'InvalidSchemeException', error: {"code"=>"InvalidScheme", "httpStatusCode"=>400, "senderFault"=>true})
167
+ InvalidSecurityGroupException = Shapes::StructureShape.new(name: 'InvalidSecurityGroupException', error: {"code"=>"InvalidSecurityGroup", "httpStatusCode"=>400, "senderFault"=>true})
168
+ InvalidSubnetException = Shapes::StructureShape.new(name: 'InvalidSubnetException', error: {"code"=>"InvalidSubnet", "httpStatusCode"=>400, "senderFault"=>true})
169
+ InvalidTargetException = Shapes::StructureShape.new(name: 'InvalidTargetException', error: {"code"=>"InvalidTarget", "httpStatusCode"=>400, "senderFault"=>true})
170
170
  IpAddress = Shapes::StringShape.new(name: 'IpAddress')
171
171
  IpAddressType = Shapes::StringShape.new(name: 'IpAddressType')
172
172
  IsDefault = Shapes::BooleanShape.new(name: 'IsDefault')
@@ -177,7 +177,7 @@ module Aws::ElasticLoadBalancingV2
177
177
  Listener = Shapes::StructureShape.new(name: 'Listener')
178
178
  ListenerArn = Shapes::StringShape.new(name: 'ListenerArn')
179
179
  ListenerArns = Shapes::ListShape.new(name: 'ListenerArns')
180
- ListenerNotFoundException = Shapes::StructureShape.new(name: 'ListenerNotFoundException')
180
+ ListenerNotFoundException = Shapes::StructureShape.new(name: 'ListenerNotFoundException', error: {"code"=>"ListenerNotFound", "httpStatusCode"=>400, "senderFault"=>true})
181
181
  Listeners = Shapes::ListShape.new(name: 'Listeners')
182
182
  LoadBalancer = Shapes::StructureShape.new(name: 'LoadBalancer')
183
183
  LoadBalancerAddress = Shapes::StructureShape.new(name: 'LoadBalancerAddress')
@@ -190,7 +190,7 @@ module Aws::ElasticLoadBalancingV2
190
190
  LoadBalancerAttributes = Shapes::ListShape.new(name: 'LoadBalancerAttributes')
191
191
  LoadBalancerName = Shapes::StringShape.new(name: 'LoadBalancerName')
192
192
  LoadBalancerNames = Shapes::ListShape.new(name: 'LoadBalancerNames')
193
- LoadBalancerNotFoundException = Shapes::StructureShape.new(name: 'LoadBalancerNotFoundException')
193
+ LoadBalancerNotFoundException = Shapes::StructureShape.new(name: 'LoadBalancerNotFoundException', error: {"code"=>"LoadBalancerNotFound", "httpStatusCode"=>400, "senderFault"=>true})
194
194
  LoadBalancerSchemeEnum = Shapes::StringShape.new(name: 'LoadBalancerSchemeEnum')
195
195
  LoadBalancerState = Shapes::StructureShape.new(name: 'LoadBalancerState')
196
196
  LoadBalancerStateEnum = Shapes::StringShape.new(name: 'LoadBalancerStateEnum')
@@ -218,13 +218,13 @@ module Aws::ElasticLoadBalancingV2
218
218
  Name = Shapes::StringShape.new(name: 'Name')
219
219
  NumberOfCaCertificates = Shapes::IntegerShape.new(name: 'NumberOfCaCertificates')
220
220
  NumberOfRevokedEntries = Shapes::IntegerShape.new(name: 'NumberOfRevokedEntries')
221
- OperationNotPermittedException = Shapes::StructureShape.new(name: 'OperationNotPermittedException')
221
+ OperationNotPermittedException = Shapes::StructureShape.new(name: 'OperationNotPermittedException', error: {"code"=>"OperationNotPermitted", "httpStatusCode"=>400, "senderFault"=>true})
222
222
  OutpostId = Shapes::StringShape.new(name: 'OutpostId')
223
223
  PageSize = Shapes::IntegerShape.new(name: 'PageSize')
224
224
  Path = Shapes::StringShape.new(name: 'Path')
225
225
  PathPatternConditionConfig = Shapes::StructureShape.new(name: 'PathPatternConditionConfig')
226
226
  Port = Shapes::IntegerShape.new(name: 'Port')
227
- PriorityInUseException = Shapes::StructureShape.new(name: 'PriorityInUseException')
227
+ PriorityInUseException = Shapes::StructureShape.new(name: 'PriorityInUseException', error: {"code"=>"PriorityInUse", "httpStatusCode"=>400, "senderFault"=>true})
228
228
  PrivateIPv4Address = Shapes::StringShape.new(name: 'PrivateIPv4Address')
229
229
  ProtocolEnum = Shapes::StringShape.new(name: 'ProtocolEnum')
230
230
  ProtocolVersion = Shapes::StringShape.new(name: 'ProtocolVersion')
@@ -248,12 +248,12 @@ module Aws::ElasticLoadBalancingV2
248
248
  RemoveTrustStoreRevocationsOutput = Shapes::StructureShape.new(name: 'RemoveTrustStoreRevocationsOutput')
249
249
  ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
250
250
  ResourceArns = Shapes::ListShape.new(name: 'ResourceArns')
251
- ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException')
251
+ ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException', error: {"code"=>"ResourceInUse", "httpStatusCode"=>400, "senderFault"=>true})
252
252
  RevocationContent = Shapes::StructureShape.new(name: 'RevocationContent')
253
- RevocationContentNotFoundException = Shapes::StructureShape.new(name: 'RevocationContentNotFoundException')
253
+ RevocationContentNotFoundException = Shapes::StructureShape.new(name: 'RevocationContentNotFoundException', error: {"code"=>"RevocationContentNotFound", "httpStatusCode"=>400, "senderFault"=>true})
254
254
  RevocationContents = Shapes::ListShape.new(name: 'RevocationContents')
255
255
  RevocationId = Shapes::IntegerShape.new(name: 'RevocationId')
256
- RevocationIdNotFoundException = Shapes::StructureShape.new(name: 'RevocationIdNotFoundException')
256
+ RevocationIdNotFoundException = Shapes::StructureShape.new(name: 'RevocationIdNotFoundException', error: {"code"=>"RevocationIdNotFound", "httpStatusCode"=>400, "senderFault"=>true})
257
257
  RevocationIds = Shapes::ListShape.new(name: 'RevocationIds')
258
258
  RevocationType = Shapes::StringShape.new(name: 'RevocationType')
259
259
  Rule = Shapes::StructureShape.new(name: 'Rule')
@@ -261,7 +261,7 @@ module Aws::ElasticLoadBalancingV2
261
261
  RuleArns = Shapes::ListShape.new(name: 'RuleArns')
262
262
  RuleCondition = Shapes::StructureShape.new(name: 'RuleCondition')
263
263
  RuleConditionList = Shapes::ListShape.new(name: 'RuleConditionList')
264
- RuleNotFoundException = Shapes::StructureShape.new(name: 'RuleNotFoundException')
264
+ RuleNotFoundException = Shapes::StructureShape.new(name: 'RuleNotFoundException', error: {"code"=>"RuleNotFound", "httpStatusCode"=>400, "senderFault"=>true})
265
265
  RulePriority = Shapes::IntegerShape.new(name: 'RulePriority')
266
266
  RulePriorityList = Shapes::ListShape.new(name: 'RulePriorityList')
267
267
  RulePriorityPair = Shapes::StructureShape.new(name: 'RulePriorityPair')
@@ -269,7 +269,7 @@ module Aws::ElasticLoadBalancingV2
269
269
  S3Bucket = Shapes::StringShape.new(name: 'S3Bucket')
270
270
  S3Key = Shapes::StringShape.new(name: 'S3Key')
271
271
  S3ObjectVersion = Shapes::StringShape.new(name: 'S3ObjectVersion')
272
- SSLPolicyNotFoundException = Shapes::StructureShape.new(name: 'SSLPolicyNotFoundException')
272
+ SSLPolicyNotFoundException = Shapes::StructureShape.new(name: 'SSLPolicyNotFoundException', error: {"code"=>"SSLPolicyNotFound", "httpStatusCode"=>400, "senderFault"=>true})
273
273
  SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
274
274
  SecurityGroups = Shapes::ListShape.new(name: 'SecurityGroups')
275
275
  SetIpAddressTypeInput = Shapes::StructureShape.new(name: 'SetIpAddressTypeInput')
@@ -293,7 +293,7 @@ module Aws::ElasticLoadBalancingV2
293
293
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
294
294
  SubnetMapping = Shapes::StructureShape.new(name: 'SubnetMapping')
295
295
  SubnetMappings = Shapes::ListShape.new(name: 'SubnetMappings')
296
- SubnetNotFoundException = Shapes::StructureShape.new(name: 'SubnetNotFoundException')
296
+ SubnetNotFoundException = Shapes::StructureShape.new(name: 'SubnetNotFoundException', error: {"code"=>"SubnetNotFound", "httpStatusCode"=>400, "senderFault"=>true})
297
297
  Subnets = Shapes::ListShape.new(name: 'Subnets')
298
298
  Tag = Shapes::StructureShape.new(name: 'Tag')
299
299
  TagDescription = Shapes::StructureShape.new(name: 'TagDescription')
@@ -307,7 +307,7 @@ module Aws::ElasticLoadBalancingV2
307
307
  TargetGroup = Shapes::StructureShape.new(name: 'TargetGroup')
308
308
  TargetGroupArn = Shapes::StringShape.new(name: 'TargetGroupArn')
309
309
  TargetGroupArns = Shapes::ListShape.new(name: 'TargetGroupArns')
310
- TargetGroupAssociationLimitException = Shapes::StructureShape.new(name: 'TargetGroupAssociationLimitException')
310
+ TargetGroupAssociationLimitException = Shapes::StructureShape.new(name: 'TargetGroupAssociationLimitException', error: {"code"=>"TargetGroupAssociationLimit", "httpStatusCode"=>400, "senderFault"=>true})
311
311
  TargetGroupAttribute = Shapes::StructureShape.new(name: 'TargetGroupAttribute')
312
312
  TargetGroupAttributeKey = Shapes::StringShape.new(name: 'TargetGroupAttributeKey')
313
313
  TargetGroupAttributeValue = Shapes::StringShape.new(name: 'TargetGroupAttributeValue')
@@ -316,7 +316,7 @@ module Aws::ElasticLoadBalancingV2
316
316
  TargetGroupList = Shapes::ListShape.new(name: 'TargetGroupList')
317
317
  TargetGroupName = Shapes::StringShape.new(name: 'TargetGroupName')
318
318
  TargetGroupNames = Shapes::ListShape.new(name: 'TargetGroupNames')
319
- TargetGroupNotFoundException = Shapes::StructureShape.new(name: 'TargetGroupNotFoundException')
319
+ TargetGroupNotFoundException = Shapes::StructureShape.new(name: 'TargetGroupNotFoundException', error: {"code"=>"TargetGroupNotFound", "httpStatusCode"=>400, "senderFault"=>true})
320
320
  TargetGroupStickinessConfig = Shapes::StructureShape.new(name: 'TargetGroupStickinessConfig')
321
321
  TargetGroupStickinessDurationSeconds = Shapes::IntegerShape.new(name: 'TargetGroupStickinessDurationSeconds')
322
322
  TargetGroupStickinessEnabled = Shapes::BooleanShape.new(name: 'TargetGroupStickinessEnabled')
@@ -330,18 +330,18 @@ module Aws::ElasticLoadBalancingV2
330
330
  TargetHealthStateEnum = Shapes::StringShape.new(name: 'TargetHealthStateEnum')
331
331
  TargetId = Shapes::StringShape.new(name: 'TargetId')
332
332
  TargetTypeEnum = Shapes::StringShape.new(name: 'TargetTypeEnum')
333
- TooManyActionsException = Shapes::StructureShape.new(name: 'TooManyActionsException')
334
- TooManyCertificatesException = Shapes::StructureShape.new(name: 'TooManyCertificatesException')
335
- TooManyListenersException = Shapes::StructureShape.new(name: 'TooManyListenersException')
336
- TooManyLoadBalancersException = Shapes::StructureShape.new(name: 'TooManyLoadBalancersException')
337
- TooManyRegistrationsForTargetIdException = Shapes::StructureShape.new(name: 'TooManyRegistrationsForTargetIdException')
338
- TooManyRulesException = Shapes::StructureShape.new(name: 'TooManyRulesException')
339
- TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
340
- TooManyTargetGroupsException = Shapes::StructureShape.new(name: 'TooManyTargetGroupsException')
341
- TooManyTargetsException = Shapes::StructureShape.new(name: 'TooManyTargetsException')
342
- TooManyTrustStoreRevocationEntriesException = Shapes::StructureShape.new(name: 'TooManyTrustStoreRevocationEntriesException')
343
- TooManyTrustStoresException = Shapes::StructureShape.new(name: 'TooManyTrustStoresException')
344
- TooManyUniqueTargetGroupsPerLoadBalancerException = Shapes::StructureShape.new(name: 'TooManyUniqueTargetGroupsPerLoadBalancerException')
333
+ TooManyActionsException = Shapes::StructureShape.new(name: 'TooManyActionsException', error: {"code"=>"TooManyActions", "httpStatusCode"=>400, "senderFault"=>true})
334
+ TooManyCertificatesException = Shapes::StructureShape.new(name: 'TooManyCertificatesException', error: {"code"=>"TooManyCertificates", "httpStatusCode"=>400, "senderFault"=>true})
335
+ TooManyListenersException = Shapes::StructureShape.new(name: 'TooManyListenersException', error: {"code"=>"TooManyListeners", "httpStatusCode"=>400, "senderFault"=>true})
336
+ TooManyLoadBalancersException = Shapes::StructureShape.new(name: 'TooManyLoadBalancersException', error: {"code"=>"TooManyLoadBalancers", "httpStatusCode"=>400, "senderFault"=>true})
337
+ TooManyRegistrationsForTargetIdException = Shapes::StructureShape.new(name: 'TooManyRegistrationsForTargetIdException', error: {"code"=>"TooManyRegistrationsForTargetId", "httpStatusCode"=>400, "senderFault"=>true})
338
+ TooManyRulesException = Shapes::StructureShape.new(name: 'TooManyRulesException', error: {"code"=>"TooManyRules", "httpStatusCode"=>400, "senderFault"=>true})
339
+ TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException', error: {"code"=>"TooManyTags", "httpStatusCode"=>400, "senderFault"=>true})
340
+ TooManyTargetGroupsException = Shapes::StructureShape.new(name: 'TooManyTargetGroupsException', error: {"code"=>"TooManyTargetGroups", "httpStatusCode"=>400, "senderFault"=>true})
341
+ TooManyTargetsException = Shapes::StructureShape.new(name: 'TooManyTargetsException', error: {"code"=>"TooManyTargets", "httpStatusCode"=>400, "senderFault"=>true})
342
+ TooManyTrustStoreRevocationEntriesException = Shapes::StructureShape.new(name: 'TooManyTrustStoreRevocationEntriesException', error: {"code"=>"TooManyTrustStoreRevocationEntries", "httpStatusCode"=>400, "senderFault"=>true})
343
+ TooManyTrustStoresException = Shapes::StructureShape.new(name: 'TooManyTrustStoresException', error: {"code"=>"TooManyTrustStores", "httpStatusCode"=>400, "senderFault"=>true})
344
+ TooManyUniqueTargetGroupsPerLoadBalancerException = Shapes::StructureShape.new(name: 'TooManyUniqueTargetGroupsPerLoadBalancerException', error: {"code"=>"TooManyUniqueTargetGroupsPerLoadBalancer", "httpStatusCode"=>400, "senderFault"=>true})
345
345
  TotalRevokedEntries = Shapes::IntegerShape.new(name: 'TotalRevokedEntries')
346
346
  TrustStore = Shapes::StructureShape.new(name: 'TrustStore')
347
347
  TrustStoreArn = Shapes::StringShape.new(name: 'TrustStoreArn')
@@ -349,16 +349,16 @@ module Aws::ElasticLoadBalancingV2
349
349
  TrustStoreAssociation = Shapes::StructureShape.new(name: 'TrustStoreAssociation')
350
350
  TrustStoreAssociationResourceArn = Shapes::StringShape.new(name: 'TrustStoreAssociationResourceArn')
351
351
  TrustStoreAssociations = Shapes::ListShape.new(name: 'TrustStoreAssociations')
352
- TrustStoreInUseException = Shapes::StructureShape.new(name: 'TrustStoreInUseException')
352
+ TrustStoreInUseException = Shapes::StructureShape.new(name: 'TrustStoreInUseException', error: {"code"=>"TrustStoreInUse", "httpStatusCode"=>400, "senderFault"=>true})
353
353
  TrustStoreName = Shapes::StringShape.new(name: 'TrustStoreName')
354
354
  TrustStoreNames = Shapes::ListShape.new(name: 'TrustStoreNames')
355
- TrustStoreNotFoundException = Shapes::StructureShape.new(name: 'TrustStoreNotFoundException')
356
- TrustStoreNotReadyException = Shapes::StructureShape.new(name: 'TrustStoreNotReadyException')
355
+ TrustStoreNotFoundException = Shapes::StructureShape.new(name: 'TrustStoreNotFoundException', error: {"code"=>"TrustStoreNotFound", "httpStatusCode"=>400, "senderFault"=>true})
356
+ TrustStoreNotReadyException = Shapes::StructureShape.new(name: 'TrustStoreNotReadyException', error: {"code"=>"TrustStoreNotReady", "httpStatusCode"=>400, "senderFault"=>true})
357
357
  TrustStoreRevocation = Shapes::StructureShape.new(name: 'TrustStoreRevocation')
358
358
  TrustStoreRevocations = Shapes::ListShape.new(name: 'TrustStoreRevocations')
359
359
  TrustStoreStatus = Shapes::StringShape.new(name: 'TrustStoreStatus')
360
360
  TrustStores = Shapes::ListShape.new(name: 'TrustStores')
361
- UnsupportedProtocolException = Shapes::StructureShape.new(name: 'UnsupportedProtocolException')
361
+ UnsupportedProtocolException = Shapes::StructureShape.new(name: 'UnsupportedProtocolException', error: {"code"=>"UnsupportedProtocol", "httpStatusCode"=>400, "senderFault"=>true})
362
362
  VpcId = Shapes::StringShape.new(name: 'VpcId')
363
363
  ZoneName = Shapes::StringShape.new(name: 'ZoneName')
364
364
 
@@ -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.99.0'
56
+ GEM_VERSION = '1.101.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.99.0
4
+ version: 1.101.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-03-14 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement