aws-sdk-dynamodbstreams 1.55.0 → 1.56.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: b861c56e62548ea3f9c630b7aac622984c66f6f3381e1ea4ba96d753b6c6e745
4
- data.tar.gz: 84558f97a1b5883bd07ee8bd80121098dc949e6dac0a37dcbfe2247a8f7ab721
3
+ metadata.gz: 98dd385a6365fab4349263190c4caae475ab3d89dcf1d968010de05fe2754de4
4
+ data.tar.gz: 6f0138a0a40327e5a09f1e25367f91fa80e4b7048e6ff3918c5240b46111d26f
5
5
  SHA512:
6
- metadata.gz: afce26d97056e57fa13315b7bce219f19ec0ecc7dcba3700a1e897e828a660208d149cc99515dab65e8d309b12aad899f4361fbc1fc3ffc414d48529ecc58486
7
- data.tar.gz: 60aa3153f48012ad3598a1d9d4e03715916d887a57f15138000562b84ef10d85334ec197c143d41fe73009ff63e35399f5ef3cb5a0abfa5a3de2cc6873a1c508
6
+ metadata.gz: adbaa441081cad777e96e18437fe68542f40d9bed1fd24cd3e7408fb6f7d30cd959770a1baab56eb86379b93d15dbdebdbbbc7d49439c9ea1eb8cda13f251bcf
7
+ data.tar.gz: 347e1c8fc5a9557afe7c55351a9f32a32f36e39e12f3ce62fbd869ba7c01a31c87ae787f0dd31bdf86f71211bc7edbd77751d81c8cff3eb8ad1a4332308fe258
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.56.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.55.0 (2024-02-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.55.0
1
+ 1.56.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'
@@ -73,6 +74,7 @@ module Aws::DynamoDBStreams
73
74
  add_plugin(Aws::Plugins::ResponsePaging)
74
75
  add_plugin(Aws::Plugins::StubResponses)
75
76
  add_plugin(Aws::Plugins::IdempotencyToken)
77
+ add_plugin(Aws::Plugins::InvocationId)
76
78
  add_plugin(Aws::Plugins::JsonvalueConverter)
77
79
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
78
80
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -198,10 +200,17 @@ module Aws::DynamoDBStreams
198
200
  # When set to 'true' the request body will not be compressed
199
201
  # for supported operations.
200
202
  #
201
- # @option options [String] :endpoint
202
- # The client endpoint is normally constructed from the `:region`
203
- # option. You should only configure an `:endpoint` when connecting
204
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
203
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
204
+ # Normally you should not configure the `:endpoint` option
205
+ # directly. This is normally constructed from the `:region`
206
+ # option. Configuring `:endpoint` is normally reserved for
207
+ # connecting to test or custom endpoints. The endpoint should
208
+ # be a URI formatted like:
209
+ #
210
+ # 'http://example.com'
211
+ # 'https://example.com'
212
+ # 'http://example.com:123'
213
+ #
205
214
  #
206
215
  # @option options [Integer] :endpoint_cache_max_entries (1000)
207
216
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -353,50 +362,65 @@ module Aws::DynamoDBStreams
353
362
  # @option options [Aws::DynamoDBStreams::EndpointProvider] :endpoint_provider
354
363
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::DynamoDBStreams::EndpointParameters`
355
364
  #
356
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
357
- # requests through. Formatted like 'http://proxy.com:123'.
358
- #
359
- # @option options [Float] :http_open_timeout (15) The number of
360
- # seconds to wait when opening a HTTP session before raising a
361
- # `Timeout::Error`.
362
- #
363
- # @option options [Float] :http_read_timeout (60) The default
364
- # number of seconds to wait for response data. This value can
365
- # safely be set per-request on the session.
366
- #
367
- # @option options [Float] :http_idle_timeout (5) The number of
368
- # seconds a connection is allowed to sit idle before it is
369
- # considered stale. Stale connections are closed and removed
370
- # from the pool before making a request.
371
- #
372
- # @option options [Float] :http_continue_timeout (1) The number of
373
- # seconds to wait for a 100-continue response before sending the
374
- # request body. This option has no effect unless the request has
375
- # "Expect" header set to "100-continue". Defaults to `nil` which
376
- # disables this behaviour. This value can safely be set per
377
- # request on the session.
378
- #
379
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
380
- # in seconds.
365
+ # @option options [Float] :http_continue_timeout (1)
366
+ # The number of seconds to wait for a 100-continue response before sending the
367
+ # request body. This option has no effect unless the request has "Expect"
368
+ # header set to "100-continue". Defaults to `nil` which disables this
369
+ # behaviour. This value can safely be set per request on the session.
370
+ #
371
+ # @option options [Float] :http_idle_timeout (5)
372
+ # The number of seconds a connection is allowed to sit idle before it
373
+ # is considered stale. Stale connections are closed and removed from the
374
+ # pool before making a request.
375
+ #
376
+ # @option options [Float] :http_open_timeout (15)
377
+ # The default number of seconds to wait for response data.
378
+ # This value can safely be set per-request on the session.
379
+ #
380
+ # @option options [URI::HTTP,String] :http_proxy
381
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
382
+ #
383
+ # @option options [Float] :http_read_timeout (60)
384
+ # The default number of seconds to wait for response data.
385
+ # This value can safely be set per-request on the session.
386
+ #
387
+ # @option options [Boolean] :http_wire_trace (false)
388
+ # When `true`, HTTP debug output will be sent to the `:logger`.
389
+ #
390
+ # @option options [Proc] :on_chunk_received
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the response body is received. It provides three arguments: the chunk,
393
+ # the number of bytes received, and the total number of
394
+ # bytes in the response (or nil if the server did not send a `content-length`).
395
+ #
396
+ # @option options [Proc] :on_chunk_sent
397
+ # When a Proc object is provided, it will be used as callback when each chunk
398
+ # of the request body is sent. It provides three arguments: the chunk,
399
+ # the number of bytes read from the body, and the total number of
400
+ # bytes in the body.
401
+ #
402
+ # @option options [Boolean] :raise_response_errors (true)
403
+ # When `true`, response errors are raised.
404
+ #
405
+ # @option options [String] :ssl_ca_bundle
406
+ # Full path to the SSL certificate authority bundle file that should be used when
407
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
408
+ # `:ssl_ca_directory` the the system default will be used if available.
409
+ #
410
+ # @option options [String] :ssl_ca_directory
411
+ # Full path of the directory that contains the unbundled SSL certificate
412
+ # authority files for verifying peer certificates. If you do
413
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
414
+ # default will be used if available.
381
415
  #
382
- # @option options [Boolean] :http_wire_trace (false) When `true`,
383
- # HTTP debug output will be sent to the `:logger`.
416
+ # @option options [String] :ssl_ca_store
417
+ # Sets the X509::Store to verify peer certificate.
384
418
  #
385
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
386
- # SSL peer certificates are verified when establishing a
387
- # connection.
419
+ # @option options [Float] :ssl_timeout
420
+ # Sets the SSL timeout in seconds
388
421
  #
389
- # @option options [String] :ssl_ca_bundle Full path to the SSL
390
- # certificate authority bundle file that should be used when
391
- # verifying peer certificates. If you do not pass
392
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
393
- # will be used if available.
394
- #
395
- # @option options [String] :ssl_ca_directory Full path of the
396
- # directory that contains the unbundled SSL certificate
397
- # authority files for verifying peer certificates. If you do
398
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
399
- # system default will be used if available.
422
+ # @option options [Boolean] :ssl_verify_peer (true)
423
+ # When `true`, SSL peer certificates are verified when establishing a connection.
400
424
  #
401
425
  def initialize(*args)
402
426
  super
@@ -854,7 +878,7 @@ module Aws::DynamoDBStreams
854
878
  params: params,
855
879
  config: config)
856
880
  context[:gem_name] = 'aws-sdk-dynamodbstreams'
857
- context[:gem_version] = '1.55.0'
881
+ context[:gem_version] = '1.56.0'
858
882
  Seahorse::Client::Request.new(handlers, context)
859
883
  end
860
884
 
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-dynamodbstreams/customizations'
52
52
  # @!group service
53
53
  module Aws::DynamoDBStreams
54
54
 
55
- GEM_VERSION = '1.55.0'
55
+ GEM_VERSION = '1.56.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-dynamodbstreams
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.55.0
4
+ version: 1.56.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-02-20 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