aws-sdk-dynamodb 1.106.0 → 1.107.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
  SHA256:
3
- metadata.gz: b0bdc4383098333db9d842f45d99ec48b72a332e35515e50560871680f4121a7
4
- data.tar.gz: 350fa6c368b48c6355aafe55eb278d709898fc0e029441c92d2cc76b2492f8c6
3
+ metadata.gz: ec570dc359f9f8d65eea791129ce9bd666ffb05dad013d0b4e25746db0475e9b
4
+ data.tar.gz: ebf15170b80a5b489464377b651b5794fbe16df44b9261ab56cb8b61732d42b9
5
5
  SHA512:
6
- metadata.gz: 850a7f7c42a8f867215d45bf5e11d4e2d2af3721b3d972e3dfa03cb9210080a02cd5fa1d513173ca2ca3aca38471dc2eb041240a831605563ad2880414e226b6
7
- data.tar.gz: f6ef7c10375b5e86a4c1f807f6a1e09d6d9ad15379d353eb4284f20b92ccccc85b2a117eca6bd0330d184ea2c189b075cbb64153270a7f0443d00738683a24d6
6
+ metadata.gz: 22b0d0cf55a8f50468a606c83a509491a023008fccc827a4c41f515723ee5d52069be539a863e4a357bf29630e82e3ae672a1900790e7c2674291a93f58aeeba
7
+ data.tar.gz: fb6a6679b5c15b32f355b9e521f82e44563d3daf771959977f38a731c5a424369f1541d9b47c7eeb5faf8214ab2a28b18d7370a69437ea4659721b203ccf848b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.107.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.106.0 (2024-03-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.106.0
1
+ 1.107.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'
@@ -75,6 +76,7 @@ module Aws::DynamoDB
75
76
  add_plugin(Aws::Plugins::ResponsePaging)
76
77
  add_plugin(Aws::Plugins::StubResponses)
77
78
  add_plugin(Aws::Plugins::IdempotencyToken)
79
+ add_plugin(Aws::Plugins::InvocationId)
78
80
  add_plugin(Aws::Plugins::JsonvalueConverter)
79
81
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
80
82
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -208,10 +210,17 @@ module Aws::DynamoDB
208
210
  # When set to 'true' the request body will not be compressed
209
211
  # for supported operations.
210
212
  #
211
- # @option options [String] :endpoint
212
- # The client endpoint is normally constructed from the `:region`
213
- # option. You should only configure an `:endpoint` when connecting
214
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
213
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
214
+ # Normally you should not configure the `:endpoint` option
215
+ # directly. This is normally constructed from the `:region`
216
+ # option. Configuring `:endpoint` is normally reserved for
217
+ # connecting to test or custom endpoints. The endpoint should
218
+ # be a URI formatted like:
219
+ #
220
+ # 'http://example.com'
221
+ # 'https://example.com'
222
+ # 'http://example.com:123'
223
+ #
215
224
  #
216
225
  # @option options [Integer] :endpoint_cache_max_entries (1000)
217
226
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -366,50 +375,65 @@ module Aws::DynamoDB
366
375
  # @option options [Aws::DynamoDB::EndpointProvider] :endpoint_provider
367
376
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::DynamoDB::EndpointParameters`
368
377
  #
369
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
370
- # requests through. Formatted like 'http://proxy.com:123'.
371
- #
372
- # @option options [Float] :http_open_timeout (15) The number of
373
- # seconds to wait when opening a HTTP session before raising a
374
- # `Timeout::Error`.
375
- #
376
- # @option options [Float] :http_read_timeout (60) The default
377
- # number of seconds to wait for response data. This value can
378
- # safely be set per-request on the session.
379
- #
380
- # @option options [Float] :http_idle_timeout (5) The number of
381
- # seconds a connection is allowed to sit idle before it is
382
- # considered stale. Stale connections are closed and removed
383
- # from the pool before making a request.
384
- #
385
- # @option options [Float] :http_continue_timeout (1) The number of
386
- # seconds to wait for a 100-continue response before sending the
387
- # request body. This option has no effect unless the request has
388
- # "Expect" header set to "100-continue". Defaults to `nil` which
389
- # disables this behaviour. This value can safely be set per
390
- # request on the session.
391
- #
392
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
393
- # in seconds.
378
+ # @option options [Float] :http_continue_timeout (1)
379
+ # The number of seconds to wait for a 100-continue response before sending the
380
+ # request body. This option has no effect unless the request has "Expect"
381
+ # header set to "100-continue". Defaults to `nil` which disables this
382
+ # behaviour. This value can safely be set per request on the session.
383
+ #
384
+ # @option options [Float] :http_idle_timeout (5)
385
+ # The number of seconds a connection is allowed to sit idle before it
386
+ # is considered stale. Stale connections are closed and removed from the
387
+ # pool before making a request.
388
+ #
389
+ # @option options [Float] :http_open_timeout (15)
390
+ # The default number of seconds to wait for response data.
391
+ # This value can safely be set per-request on the session.
392
+ #
393
+ # @option options [URI::HTTP,String] :http_proxy
394
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
395
+ #
396
+ # @option options [Float] :http_read_timeout (60)
397
+ # The default number of seconds to wait for response data.
398
+ # This value can safely be set per-request on the session.
399
+ #
400
+ # @option options [Boolean] :http_wire_trace (false)
401
+ # When `true`, HTTP debug output will be sent to the `:logger`.
402
+ #
403
+ # @option options [Proc] :on_chunk_received
404
+ # When a Proc object is provided, it will be used as callback when each chunk
405
+ # of the response body is received. It provides three arguments: the chunk,
406
+ # the number of bytes received, and the total number of
407
+ # bytes in the response (or nil if the server did not send a `content-length`).
408
+ #
409
+ # @option options [Proc] :on_chunk_sent
410
+ # When a Proc object is provided, it will be used as callback when each chunk
411
+ # of the request body is sent. It provides three arguments: the chunk,
412
+ # the number of bytes read from the body, and the total number of
413
+ # bytes in the body.
414
+ #
415
+ # @option options [Boolean] :raise_response_errors (true)
416
+ # When `true`, response errors are raised.
417
+ #
418
+ # @option options [String] :ssl_ca_bundle
419
+ # Full path to the SSL certificate authority bundle file that should be used when
420
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
421
+ # `:ssl_ca_directory` the the system default will be used if available.
422
+ #
423
+ # @option options [String] :ssl_ca_directory
424
+ # Full path of the directory that contains the unbundled SSL certificate
425
+ # authority files for verifying peer certificates. If you do
426
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
427
+ # default will be used if available.
394
428
  #
395
- # @option options [Boolean] :http_wire_trace (false) When `true`,
396
- # HTTP debug output will be sent to the `:logger`.
429
+ # @option options [String] :ssl_ca_store
430
+ # Sets the X509::Store to verify peer certificate.
397
431
  #
398
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
399
- # SSL peer certificates are verified when establishing a
400
- # connection.
432
+ # @option options [Float] :ssl_timeout
433
+ # Sets the SSL timeout in seconds
401
434
  #
402
- # @option options [String] :ssl_ca_bundle Full path to the SSL
403
- # certificate authority bundle file that should be used when
404
- # verifying peer certificates. If you do not pass
405
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
406
- # will be used if available.
407
- #
408
- # @option options [String] :ssl_ca_directory Full path of the
409
- # directory that contains the unbundled SSL certificate
410
- # authority files for verifying peer certificates. If you do
411
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
412
- # system default will be used if available.
435
+ # @option options [Boolean] :ssl_verify_peer (true)
436
+ # When `true`, SSL peer certificates are verified when establishing a connection.
413
437
  #
414
438
  def initialize(*args)
415
439
  super
@@ -8197,7 +8221,7 @@ module Aws::DynamoDB
8197
8221
  params: params,
8198
8222
  config: config)
8199
8223
  context[:gem_name] = 'aws-sdk-dynamodb'
8200
- context[:gem_version] = '1.106.0'
8224
+ context[:gem_version] = '1.107.0'
8201
8225
  Seahorse::Client::Request.new(handlers, context)
8202
8226
  end
8203
8227
 
@@ -54,6 +54,6 @@ require_relative 'aws-sdk-dynamodb/customizations'
54
54
  # @!group service
55
55
  module Aws::DynamoDB
56
56
 
57
- GEM_VERSION = '1.106.0'
57
+ GEM_VERSION = '1.107.0'
58
58
 
59
59
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-dynamodb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.106.0
4
+ version: 1.107.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-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