aws-sdk-docdb 1.35.0 → 1.39.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: 8893eaa84e013c419a3d6b9da305dc93f2bd0b2bce4ddad4a92ea60d22e27f87
4
- data.tar.gz: af0a5afeb15341531af086d265ac1e4c24456476abd14cbb517a78f1718fe4a4
3
+ metadata.gz: f03275eab6cd7842957a13ac78f2aa95bf79735d42e9d858c1e8f81f21207bf6
4
+ data.tar.gz: d47a9f75137d973eb27cf828770981b38ea20dee8f91785c2f60458c2809fbe0
5
5
  SHA512:
6
- metadata.gz: a9e10f9450f177273e39c25412df6c340a218ea5aed84a2b9c535eb7684f90b8980a4421b8bd03506700f174d30ae8dca375fcb59eb494c3afe9bbd00638e664
7
- data.tar.gz: cc0e5815e790997c80909a8803ecd88c0bb69db151a8cf4fd16dcbf8722880cdb43588092c64e1b09952d97ed7fc7160376c68ed1f929ce9146db02ce343b97d
6
+ metadata.gz: ebefc9fe31a51bbfda7e17c3314adb1653e3e4eadae63e1ef5741ac4ba1330c88601c9f8791a980a67407d21b8900c5289a60610bfabdb50e9a4ab3d65f0be35
7
+ data.tar.gz: 17cb5725f3b5fbd167464899f1fb90f18db73d08d19056595023316086500c4faade88ef4fa592ff3d2e28ddadfcd74a5a3998d6b0951d1ba68dad9925c510bc
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.39.0 (2021-12-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.38.0 (2021-11-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.37.0 (2021-11-04)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.36.0 (2021-10-18)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.35.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.35.0
1
+ 1.39.0
@@ -27,6 +27,7 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
30
31
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
32
  require 'aws-sdk-core/plugins/protocols/query.rb'
32
33
  require 'aws-sdk-docdb/plugins/cross_region_copying.rb'
@@ -74,6 +75,7 @@ module Aws::DocDB
74
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
76
  add_plugin(Aws::Plugins::TransferEncoding)
76
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
77
79
  add_plugin(Aws::Plugins::SignatureV4)
78
80
  add_plugin(Aws::Plugins::Protocols::Query)
79
81
  add_plugin(Aws::DocDB::Plugins::CrossRegionCopying)
@@ -121,7 +123,9 @@ module Aws::DocDB
121
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
122
124
  # are very aggressive. Construct and pass an instance of
123
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
124
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
125
129
  #
126
130
  # @option options [required, String] :region
127
131
  # The AWS region to connect to. The configured `:region` is
@@ -175,6 +179,10 @@ module Aws::DocDB
175
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
176
180
  # a clock skew correction and retry requests with skewed client clocks.
177
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
178
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
179
187
  # Set to true to disable SDK automatically adding host prefix
180
188
  # to default service endpoint when available.
@@ -277,6 +285,15 @@ module Aws::DocDB
277
285
  # ** Please note ** When response stubbing is enabled, no HTTP
278
286
  # requests are made, and retries are disabled.
279
287
  #
288
+ # @option options [Boolean] :use_dualstack_endpoint
289
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
290
+ # will be used if available.
291
+ #
292
+ # @option options [Boolean] :use_fips_endpoint
293
+ # When set to `true`, fips compatible endpoints will be used if available.
294
+ # When a `fips` region is used, the region is normalized and this config
295
+ # is set to `true`.
296
+ #
280
297
  # @option options [Boolean] :validate_params (true)
281
298
  # When `true`, request parameters are validated before
282
299
  # sending the request.
@@ -288,7 +305,7 @@ module Aws::DocDB
288
305
  # seconds to wait when opening a HTTP session before raising a
289
306
  # `Timeout::Error`.
290
307
  #
291
- # @option options [Integer] :http_read_timeout (60) The default
308
+ # @option options [Float] :http_read_timeout (60) The default
292
309
  # number of seconds to wait for response data. This value can
293
310
  # safely be set per-request on the session.
294
311
  #
@@ -304,6 +321,9 @@ module Aws::DocDB
304
321
  # disables this behaviour. This value can safely be set per
305
322
  # request on the session.
306
323
  #
324
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
325
+ # in seconds.
326
+ #
307
327
  # @option options [Boolean] :http_wire_trace (false) When `true`,
308
328
  # HTTP debug output will be sent to the `:logger`.
309
329
  #
@@ -5045,7 +5065,7 @@ module Aws::DocDB
5045
5065
  params: params,
5046
5066
  config: config)
5047
5067
  context[:gem_name] = 'aws-sdk-docdb'
5048
- context[:gem_version] = '1.35.0'
5068
+ context[:gem_version] = '1.39.0'
5049
5069
  Seahorse::Client::Request.new(handlers, context)
5050
5070
  end
5051
5071
 
@@ -42,7 +42,11 @@ module Aws
42
42
  credentials_provider: context.config.credentials
43
43
  )
44
44
  url = Aws::Partitions::EndpointProvider.resolve(
45
- signer.region, 'rds'
45
+ signer.region, 'rds', 'regional',
46
+ {
47
+ dualstack: context.config.use_dualstack_endpoint,
48
+ fips: context.config.use_fips_endpoint
49
+ }
46
50
  )
47
51
  url += "?#{param_list}"
48
52
  signer.presign_url(
data/lib/aws-sdk-docdb.rb CHANGED
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-docdb/customizations'
49
49
  # @!group service
50
50
  module Aws::DocDB
51
51
 
52
- GEM_VERSION = '1.35.0'
52
+ GEM_VERSION = '1.39.0'
53
53
 
54
54
  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.35.0
4
+ version: 1.39.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: 2021-09-01 00:00:00.000000000 Z
11
+ date: 2021-12-21 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.120.0
22
+ version: 3.125.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.120.0
32
+ version: 3.125.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement