aws-sdk-elasticloadbalancing 1.52.0 → 1.54.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: f7c86c1a479d92eb735b67d035bfb54a8bc5e5b071880f862f9f1e1c90096763
4
- data.tar.gz: 6e03634506d69500385a292b53dea7b890843de2f8d5d50b56311f039bed83a0
3
+ metadata.gz: 200bc9d9dd81f6ff697383f2576865ef3059849586a2d73747c67bd42c286bf6
4
+ data.tar.gz: 5bf31dd9abf00f9a153158417a1c30deeb21987fbbd00bb51bcf473d79fd92c8
5
5
  SHA512:
6
- metadata.gz: 47df44e7a93cbceb63f81c9b3309697607f116dd51629edd628c5d13d1675c7f3c46a9a8b9f9b794ee2316da76ad5309b9de18119f0bd5da185a969adfdf3473
7
- data.tar.gz: 14dfd2f6bf93c382b04e8672c927de73ddf9c0703daeed05b9f46e7431dc70b95758e633510f6767b62491be4557d2800c0afcfdf1848a81851eec250444ace3
6
+ metadata.gz: b1ba9a98f08a6d17f48466cdf35b0a213e9acd3cb46b2471e77b42308429e78361efc7078e2238a417c6b6d3843a9502433a8f88c55d025a8eed6125883dff72
7
+ data.tar.gz: 3350477e4f42c49a3ca941b92da203b44aed043d858b5097e2fb56abbb688efbe4d5f7cd1cefd9e29a108cd01d3071f2f2bf7e2ff84ee80739554e3c3caba08a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.54.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.53.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.52.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.52.0
1
+ 1.54.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::ElasticLoadBalancing
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::ElasticLoadBalancing
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::ElasticLoadBalancing
337
346
  # @option options [Aws::ElasticLoadBalancing::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::ElasticLoadBalancing::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
@@ -2673,7 +2697,7 @@ module Aws::ElasticLoadBalancing
2673
2697
  params: params,
2674
2698
  config: config)
2675
2699
  context[:gem_name] = 'aws-sdk-elasticloadbalancing'
2676
- context[:gem_version] = '1.52.0'
2700
+ context[:gem_version] = '1.54.0'
2677
2701
  Seahorse::Client::Request.new(handlers, context)
2678
2702
  end
2679
2703
 
@@ -18,7 +18,7 @@ module Aws::ElasticLoadBalancing
18
18
  AccessLogInterval = Shapes::IntegerShape.new(name: 'AccessLogInterval')
19
19
  AccessLogPrefix = Shapes::StringShape.new(name: 'AccessLogPrefix')
20
20
  AccessPointName = Shapes::StringShape.new(name: 'AccessPointName')
21
- AccessPointNotFoundException = Shapes::StructureShape.new(name: 'AccessPointNotFoundException')
21
+ AccessPointNotFoundException = Shapes::StructureShape.new(name: 'AccessPointNotFoundException', error: {"code"=>"LoadBalancerNotFound", "httpStatusCode"=>400, "senderFault"=>true})
22
22
  AccessPointPort = Shapes::IntegerShape.new(name: 'AccessPointPort')
23
23
  AddAvailabilityZonesInput = Shapes::StructureShape.new(name: 'AddAvailabilityZonesInput')
24
24
  AddAvailabilityZonesOutput = Shapes::StructureShape.new(name: 'AddAvailabilityZonesOutput')
@@ -42,7 +42,7 @@ module Aws::ElasticLoadBalancing
42
42
  BackendServerDescription = Shapes::StructureShape.new(name: 'BackendServerDescription')
43
43
  BackendServerDescriptions = Shapes::ListShape.new(name: 'BackendServerDescriptions')
44
44
  Cardinality = Shapes::StringShape.new(name: 'Cardinality')
45
- CertificateNotFoundException = Shapes::StructureShape.new(name: 'CertificateNotFoundException')
45
+ CertificateNotFoundException = Shapes::StructureShape.new(name: 'CertificateNotFoundException', error: {"code"=>"CertificateNotFound", "httpStatusCode"=>400, "senderFault"=>true})
46
46
  ConfigureHealthCheckInput = Shapes::StructureShape.new(name: 'ConfigureHealthCheckInput')
47
47
  ConfigureHealthCheckOutput = Shapes::StructureShape.new(name: 'ConfigureHealthCheckOutput')
48
48
  ConnectionDraining = Shapes::StructureShape.new(name: 'ConnectionDraining')
@@ -72,7 +72,7 @@ module Aws::ElasticLoadBalancing
72
72
  DeleteLoadBalancerListenerOutput = Shapes::StructureShape.new(name: 'DeleteLoadBalancerListenerOutput')
73
73
  DeleteLoadBalancerPolicyInput = Shapes::StructureShape.new(name: 'DeleteLoadBalancerPolicyInput')
74
74
  DeleteLoadBalancerPolicyOutput = Shapes::StructureShape.new(name: 'DeleteLoadBalancerPolicyOutput')
75
- DependencyThrottleException = Shapes::StructureShape.new(name: 'DependencyThrottleException')
75
+ DependencyThrottleException = Shapes::StructureShape.new(name: 'DependencyThrottleException', error: {"code"=>"DependencyThrottle", "httpStatusCode"=>400, "senderFault"=>true})
76
76
  DeregisterEndPointsInput = Shapes::StructureShape.new(name: 'DeregisterEndPointsInput')
77
77
  DeregisterEndPointsOutput = Shapes::StructureShape.new(name: 'DeregisterEndPointsOutput')
78
78
  DescribeAccessPointsInput = Shapes::StructureShape.new(name: 'DescribeAccessPointsInput')
@@ -92,10 +92,10 @@ module Aws::ElasticLoadBalancing
92
92
  Description = Shapes::StringShape.new(name: 'Description')
93
93
  DetachLoadBalancerFromSubnetsInput = Shapes::StructureShape.new(name: 'DetachLoadBalancerFromSubnetsInput')
94
94
  DetachLoadBalancerFromSubnetsOutput = Shapes::StructureShape.new(name: 'DetachLoadBalancerFromSubnetsOutput')
95
- DuplicateAccessPointNameException = Shapes::StructureShape.new(name: 'DuplicateAccessPointNameException')
96
- DuplicateListenerException = Shapes::StructureShape.new(name: 'DuplicateListenerException')
97
- DuplicatePolicyNameException = Shapes::StructureShape.new(name: 'DuplicatePolicyNameException')
98
- DuplicateTagKeysException = Shapes::StructureShape.new(name: 'DuplicateTagKeysException')
95
+ DuplicateAccessPointNameException = Shapes::StructureShape.new(name: 'DuplicateAccessPointNameException', error: {"code"=>"DuplicateLoadBalancerName", "httpStatusCode"=>400, "senderFault"=>true})
96
+ DuplicateListenerException = Shapes::StructureShape.new(name: 'DuplicateListenerException', error: {"code"=>"DuplicateListener", "httpStatusCode"=>400, "senderFault"=>true})
97
+ DuplicatePolicyNameException = Shapes::StructureShape.new(name: 'DuplicatePolicyNameException', error: {"code"=>"DuplicatePolicyName", "httpStatusCode"=>400, "senderFault"=>true})
98
+ DuplicateTagKeysException = Shapes::StructureShape.new(name: 'DuplicateTagKeysException', error: {"code"=>"DuplicateTagKeys", "httpStatusCode"=>400, "senderFault"=>true})
99
99
  EndPointPort = Shapes::IntegerShape.new(name: 'EndPointPort')
100
100
  HealthCheck = Shapes::StructureShape.new(name: 'HealthCheck')
101
101
  HealthCheckInterval = Shapes::IntegerShape.new(name: 'HealthCheckInterval')
@@ -109,11 +109,11 @@ module Aws::ElasticLoadBalancing
109
109
  InstanceState = Shapes::StructureShape.new(name: 'InstanceState')
110
110
  InstanceStates = Shapes::ListShape.new(name: 'InstanceStates')
111
111
  Instances = Shapes::ListShape.new(name: 'Instances')
112
- InvalidConfigurationRequestException = Shapes::StructureShape.new(name: 'InvalidConfigurationRequestException')
113
- InvalidEndPointException = Shapes::StructureShape.new(name: 'InvalidEndPointException')
114
- InvalidSchemeException = Shapes::StructureShape.new(name: 'InvalidSchemeException')
115
- InvalidSecurityGroupException = Shapes::StructureShape.new(name: 'InvalidSecurityGroupException')
116
- InvalidSubnetException = Shapes::StructureShape.new(name: 'InvalidSubnetException')
112
+ InvalidConfigurationRequestException = Shapes::StructureShape.new(name: 'InvalidConfigurationRequestException', error: {"code"=>"InvalidConfigurationRequest", "httpStatusCode"=>409, "senderFault"=>true})
113
+ InvalidEndPointException = Shapes::StructureShape.new(name: 'InvalidEndPointException', error: {"code"=>"InvalidInstance", "httpStatusCode"=>400, "senderFault"=>true})
114
+ InvalidSchemeException = Shapes::StructureShape.new(name: 'InvalidSchemeException', error: {"code"=>"InvalidScheme", "httpStatusCode"=>400, "senderFault"=>true})
115
+ InvalidSecurityGroupException = Shapes::StructureShape.new(name: 'InvalidSecurityGroupException', error: {"code"=>"InvalidSecurityGroup", "httpStatusCode"=>400, "senderFault"=>true})
116
+ InvalidSubnetException = Shapes::StructureShape.new(name: 'InvalidSubnetException', error: {"code"=>"InvalidSubnet", "httpStatusCode"=>400, "senderFault"=>true})
117
117
  LBCookieStickinessPolicies = Shapes::ListShape.new(name: 'LBCookieStickinessPolicies')
118
118
  LBCookieStickinessPolicy = Shapes::StructureShape.new(name: 'LBCookieStickinessPolicy')
119
119
  Limit = Shapes::StructureShape.new(name: 'Limit')
@@ -121,9 +121,9 @@ module Aws::ElasticLoadBalancing
121
121
  Listener = Shapes::StructureShape.new(name: 'Listener')
122
122
  ListenerDescription = Shapes::StructureShape.new(name: 'ListenerDescription')
123
123
  ListenerDescriptions = Shapes::ListShape.new(name: 'ListenerDescriptions')
124
- ListenerNotFoundException = Shapes::StructureShape.new(name: 'ListenerNotFoundException')
124
+ ListenerNotFoundException = Shapes::StructureShape.new(name: 'ListenerNotFoundException', error: {"code"=>"ListenerNotFound", "httpStatusCode"=>400, "senderFault"=>true})
125
125
  Listeners = Shapes::ListShape.new(name: 'Listeners')
126
- LoadBalancerAttributeNotFoundException = Shapes::StructureShape.new(name: 'LoadBalancerAttributeNotFoundException')
126
+ LoadBalancerAttributeNotFoundException = Shapes::StructureShape.new(name: 'LoadBalancerAttributeNotFoundException', error: {"code"=>"LoadBalancerAttributeNotFound", "httpStatusCode"=>400, "senderFault"=>true})
127
127
  LoadBalancerAttributes = Shapes::StructureShape.new(name: 'LoadBalancerAttributes')
128
128
  LoadBalancerDescription = Shapes::StructureShape.new(name: 'LoadBalancerDescription')
129
129
  LoadBalancerDescriptions = Shapes::ListShape.new(name: 'LoadBalancerDescriptions')
@@ -135,7 +135,7 @@ module Aws::ElasticLoadBalancing
135
135
  ModifyLoadBalancerAttributesInput = Shapes::StructureShape.new(name: 'ModifyLoadBalancerAttributesInput')
136
136
  ModifyLoadBalancerAttributesOutput = Shapes::StructureShape.new(name: 'ModifyLoadBalancerAttributesOutput')
137
137
  Name = Shapes::StringShape.new(name: 'Name')
138
- OperationNotPermittedException = Shapes::StructureShape.new(name: 'OperationNotPermittedException')
138
+ OperationNotPermittedException = Shapes::StructureShape.new(name: 'OperationNotPermittedException', error: {"code"=>"OperationNotPermitted", "httpStatusCode"=>400, "senderFault"=>true})
139
139
  PageSize = Shapes::IntegerShape.new(name: 'PageSize')
140
140
  Policies = Shapes::StructureShape.new(name: 'Policies')
141
141
  PolicyAttribute = Shapes::StructureShape.new(name: 'PolicyAttribute')
@@ -148,12 +148,12 @@ module Aws::ElasticLoadBalancing
148
148
  PolicyDescriptions = Shapes::ListShape.new(name: 'PolicyDescriptions')
149
149
  PolicyName = Shapes::StringShape.new(name: 'PolicyName')
150
150
  PolicyNames = Shapes::ListShape.new(name: 'PolicyNames')
151
- PolicyNotFoundException = Shapes::StructureShape.new(name: 'PolicyNotFoundException')
151
+ PolicyNotFoundException = Shapes::StructureShape.new(name: 'PolicyNotFoundException', error: {"code"=>"PolicyNotFound", "httpStatusCode"=>400, "senderFault"=>true})
152
152
  PolicyTypeDescription = Shapes::StructureShape.new(name: 'PolicyTypeDescription')
153
153
  PolicyTypeDescriptions = Shapes::ListShape.new(name: 'PolicyTypeDescriptions')
154
154
  PolicyTypeName = Shapes::StringShape.new(name: 'PolicyTypeName')
155
155
  PolicyTypeNames = Shapes::ListShape.new(name: 'PolicyTypeNames')
156
- PolicyTypeNotFoundException = Shapes::StructureShape.new(name: 'PolicyTypeNotFoundException')
156
+ PolicyTypeNotFoundException = Shapes::StructureShape.new(name: 'PolicyTypeNotFoundException', error: {"code"=>"PolicyTypeNotFound", "httpStatusCode"=>400, "senderFault"=>true})
157
157
  Ports = Shapes::ListShape.new(name: 'Ports')
158
158
  Protocol = Shapes::StringShape.new(name: 'Protocol')
159
159
  ReasonCode = Shapes::StringShape.new(name: 'ReasonCode')
@@ -178,7 +178,7 @@ module Aws::ElasticLoadBalancing
178
178
  SourceSecurityGroup = Shapes::StructureShape.new(name: 'SourceSecurityGroup')
179
179
  State = Shapes::StringShape.new(name: 'State')
180
180
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
181
- SubnetNotFoundException = Shapes::StructureShape.new(name: 'SubnetNotFoundException')
181
+ SubnetNotFoundException = Shapes::StructureShape.new(name: 'SubnetNotFoundException', error: {"code"=>"SubnetNotFound", "httpStatusCode"=>400, "senderFault"=>true})
182
182
  Subnets = Shapes::ListShape.new(name: 'Subnets')
183
183
  Tag = Shapes::StructureShape.new(name: 'Tag')
184
184
  TagDescription = Shapes::StructureShape.new(name: 'TagDescription')
@@ -188,11 +188,11 @@ module Aws::ElasticLoadBalancing
188
188
  TagKeyOnly = Shapes::StructureShape.new(name: 'TagKeyOnly')
189
189
  TagList = Shapes::ListShape.new(name: 'TagList')
190
190
  TagValue = Shapes::StringShape.new(name: 'TagValue')
191
- TooManyAccessPointsException = Shapes::StructureShape.new(name: 'TooManyAccessPointsException')
192
- TooManyPoliciesException = Shapes::StructureShape.new(name: 'TooManyPoliciesException')
193
- TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
191
+ TooManyAccessPointsException = Shapes::StructureShape.new(name: 'TooManyAccessPointsException', error: {"code"=>"TooManyLoadBalancers", "httpStatusCode"=>400, "senderFault"=>true})
192
+ TooManyPoliciesException = Shapes::StructureShape.new(name: 'TooManyPoliciesException', error: {"code"=>"TooManyPolicies", "httpStatusCode"=>400, "senderFault"=>true})
193
+ TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException', error: {"code"=>"TooManyTags", "httpStatusCode"=>400, "senderFault"=>true})
194
194
  UnhealthyThreshold = Shapes::IntegerShape.new(name: 'UnhealthyThreshold')
195
- UnsupportedProtocolException = Shapes::StructureShape.new(name: 'UnsupportedProtocolException')
195
+ UnsupportedProtocolException = Shapes::StructureShape.new(name: 'UnsupportedProtocolException', error: {"code"=>"UnsupportedProtocol", "httpStatusCode"=>400, "senderFault"=>true})
196
196
  VPCId = Shapes::StringShape.new(name: 'VPCId')
197
197
 
198
198
  AccessLog.add_member(:enabled, Shapes::ShapeRef.new(shape: AccessLogEnabled, required: true, location_name: "Enabled"))
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-elasticloadbalancing/customizations'
53
53
  # @!group service
54
54
  module Aws::ElasticLoadBalancing
55
55
 
56
- GEM_VERSION = '1.52.0'
56
+ GEM_VERSION = '1.54.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticloadbalancing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.52.0
4
+ version: 1.54.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-01-26 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