aws-sdk-docdb 1.62.0 → 1.63.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: 817f04f5833c59accd72e7b7ade7075fa70e5d8b93f34b1739594f56114a30c3
4
- data.tar.gz: fa6eb30ced91756ff204cece521eb8a7dad62c87847a856128a9d005182fbc8d
3
+ metadata.gz: e88b9907ef94c41b1cbfa6bfa4a192ac96b3f800b912e76319ab3d43a1c9057b
4
+ data.tar.gz: 63ef3208eb3010a041a03f8ec25d9c871ad3d3b67e2f5f00d3b57afb048e8b78
5
5
  SHA512:
6
- metadata.gz: bb7307d8f0d73c1978414ae0782f038ff539a42696269002af9bce0d9e1fadc904e5d7c6ae69e651d3ea2a344e7789fdb5e6099b21efb958454c5cd489331bb3
7
- data.tar.gz: 6603dcccc463fcfb25067ee473fb7c968404950a9e52f0a3d361549a7b06c5a71cfe7f5ebccd5f6a8da753a8b97a883e019fa21c060d40b2388bf61ccf2922ae
6
+ metadata.gz: 9858dce36ccb56225d958394a56f51ac2bc1d68f3f5acc7d0559d1bc3027aa657d775a5b2a7c673e07c4796752699201cdc466fe3503f02388011434102d6fd6
7
+ data.tar.gz: b3b2a5ea9fef5849b6b169835188ab947fab5a6000ca5a0a30c7bfd3692411a8e2f76c5defeb75170fa931732e0dc908949067d44d1f6ae960a2e759a7e5df80
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.63.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.62.0 (2024-04-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.63.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::DocDB
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::DocDB
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
@@ -339,50 +348,65 @@ module Aws::DocDB
339
348
  # @option options [Aws::DocDB::EndpointProvider] :endpoint_provider
340
349
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::DocDB::EndpointParameters`
341
350
  #
342
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
343
- # requests through. Formatted like 'http://proxy.com:123'.
344
- #
345
- # @option options [Float] :http_open_timeout (15) The number of
346
- # seconds to wait when opening a HTTP session before raising a
347
- # `Timeout::Error`.
348
- #
349
- # @option options [Float] :http_read_timeout (60) The default
350
- # number of seconds to wait for response data. This value can
351
- # safely be set per-request on the session.
352
- #
353
- # @option options [Float] :http_idle_timeout (5) The number of
354
- # seconds a connection is allowed to sit idle before it is
355
- # considered stale. Stale connections are closed and removed
356
- # from the pool before making a request.
357
- #
358
- # @option options [Float] :http_continue_timeout (1) The number of
359
- # seconds to wait for a 100-continue response before sending the
360
- # request body. This option has no effect unless the request has
361
- # "Expect" header set to "100-continue". Defaults to `nil` which
362
- # disables this behaviour. This value can safely be set per
363
- # request on the session.
364
- #
365
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
366
- # in seconds.
351
+ # @option options [Float] :http_continue_timeout (1)
352
+ # The number of seconds to wait for a 100-continue response before sending the
353
+ # request body. This option has no effect unless the request has "Expect"
354
+ # header set to "100-continue". Defaults to `nil` which disables this
355
+ # behaviour. This value can safely be set per request on the session.
356
+ #
357
+ # @option options [Float] :http_idle_timeout (5)
358
+ # The number of seconds a connection is allowed to sit idle before it
359
+ # is considered stale. Stale connections are closed and removed from the
360
+ # pool before making a request.
361
+ #
362
+ # @option options [Float] :http_open_timeout (15)
363
+ # The default number of seconds to wait for response data.
364
+ # This value can safely be set per-request on the session.
365
+ #
366
+ # @option options [URI::HTTP,String] :http_proxy
367
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
368
+ #
369
+ # @option options [Float] :http_read_timeout (60)
370
+ # The default number of seconds to wait for response data.
371
+ # This value can safely be set per-request on the session.
372
+ #
373
+ # @option options [Boolean] :http_wire_trace (false)
374
+ # When `true`, HTTP debug output will be sent to the `:logger`.
375
+ #
376
+ # @option options [Proc] :on_chunk_received
377
+ # When a Proc object is provided, it will be used as callback when each chunk
378
+ # of the response body is received. It provides three arguments: the chunk,
379
+ # the number of bytes received, and the total number of
380
+ # bytes in the response (or nil if the server did not send a `content-length`).
381
+ #
382
+ # @option options [Proc] :on_chunk_sent
383
+ # When a Proc object is provided, it will be used as callback when each chunk
384
+ # of the request body is sent. It provides three arguments: the chunk,
385
+ # the number of bytes read from the body, and the total number of
386
+ # bytes in the body.
387
+ #
388
+ # @option options [Boolean] :raise_response_errors (true)
389
+ # When `true`, response errors are raised.
390
+ #
391
+ # @option options [String] :ssl_ca_bundle
392
+ # Full path to the SSL certificate authority bundle file that should be used when
393
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
394
+ # `:ssl_ca_directory` the the system default will be used if available.
395
+ #
396
+ # @option options [String] :ssl_ca_directory
397
+ # Full path of the directory that contains the unbundled SSL certificate
398
+ # authority files for verifying peer certificates. If you do
399
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
400
+ # default will be used if available.
367
401
  #
368
- # @option options [Boolean] :http_wire_trace (false) When `true`,
369
- # HTTP debug output will be sent to the `:logger`.
402
+ # @option options [String] :ssl_ca_store
403
+ # Sets the X509::Store to verify peer certificate.
370
404
  #
371
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
372
- # SSL peer certificates are verified when establishing a
373
- # connection.
405
+ # @option options [Float] :ssl_timeout
406
+ # Sets the SSL timeout in seconds
374
407
  #
375
- # @option options [String] :ssl_ca_bundle Full path to the SSL
376
- # certificate authority bundle file that should be used when
377
- # verifying peer certificates. If you do not pass
378
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
379
- # will be used if available.
380
- #
381
- # @option options [String] :ssl_ca_directory Full path of the
382
- # directory that contains the unbundled SSL certificate
383
- # authority files for verifying peer certificates. If you do
384
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
385
- # system default will be used if available.
408
+ # @option options [Boolean] :ssl_verify_peer (true)
409
+ # When `true`, SSL peer certificates are verified when establishing a connection.
386
410
  #
387
411
  def initialize(*args)
388
412
  super
@@ -5440,7 +5464,7 @@ module Aws::DocDB
5440
5464
  params: params,
5441
5465
  config: config)
5442
5466
  context[:gem_name] = 'aws-sdk-docdb'
5443
- context[:gem_version] = '1.62.0'
5467
+ context[:gem_version] = '1.63.0'
5444
5468
  Seahorse::Client::Request.new(handlers, context)
5445
5469
  end
5446
5470
 
data/lib/aws-sdk-docdb.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-docdb/customizations'
53
53
  # @!group service
54
54
  module Aws::DocDB
55
55
 
56
- GEM_VERSION = '1.62.0'
56
+ GEM_VERSION = '1.63.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-docdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.62.0
4
+ version: 1.63.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-04-16 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