aws-sdk-dynamodb 1.7.0 → 1.8.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 +4 -4
- data/lib/aws-sdk-dynamodb.rb +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +14 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d503deb06a3c0c29c93d4e14bc3251fc322a5aa
|
|
4
|
+
data.tar.gz: b95fe6e488e8a689efd560f5420606e2e1c0fc85
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 60e56c251a0bb09904e85f7e6a1df0266e54f5e565f275b53ea4357deb25398d127ce9a53ccdaf31e6dcc9dd121d16436cec25bfa182cf8cbad43f171679a618
|
|
7
|
+
data.tar.gz: 10aa3f6c013eb52a5e3ddedcda51b223cab0519cdb682e14803d8280bbe015d138e29d93742f31df8cda804f1655100ee3c3a136265a62f367f82e2bace44bfb
|
data/lib/aws-sdk-dynamodb.rb
CHANGED
|
@@ -127,20 +127,31 @@ module Aws::DynamoDB
|
|
|
127
127
|
# Used when loading credentials from the shared credentials file
|
|
128
128
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
|
129
129
|
#
|
|
130
|
-
# @option options [
|
|
130
|
+
# @option options [Float] :retry_base_delay (0.3)
|
|
131
|
+
# The base delay in seconds used by the default backoff function.
|
|
132
|
+
#
|
|
133
|
+
# @option options [Symbol] :retry_jitter (:none)
|
|
134
|
+
# A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
|
|
135
|
+
#
|
|
136
|
+
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
|
137
|
+
#
|
|
138
|
+
# @option options [Integer] :retry_limit (10)
|
|
131
139
|
# The maximum number of times to retry failed requests. Only
|
|
132
140
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
|
133
141
|
# are retried. Generally, these are throttling errors, data
|
|
134
142
|
# checksum errors, networking errors, timeout errors and auth
|
|
135
143
|
# errors from expired credentials.
|
|
136
144
|
#
|
|
137
|
-
# @option options [Integer] :retry_limit (
|
|
145
|
+
# @option options [Integer] :retry_limit (3)
|
|
138
146
|
# The maximum number of times to retry failed requests. Only
|
|
139
147
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
|
140
148
|
# are retried. Generally, these are throttling errors, data
|
|
141
149
|
# checksum errors, networking errors, timeout errors and auth
|
|
142
150
|
# errors from expired credentials.
|
|
143
151
|
#
|
|
152
|
+
# @option options [Integer] :retry_max_delay (0)
|
|
153
|
+
# The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
|
|
154
|
+
#
|
|
144
155
|
# @option options [String] :secret_access_key
|
|
145
156
|
#
|
|
146
157
|
# @option options [String] :session_token
|
|
@@ -5163,7 +5174,7 @@ module Aws::DynamoDB
|
|
|
5163
5174
|
params: params,
|
|
5164
5175
|
config: config)
|
|
5165
5176
|
context[:gem_name] = 'aws-sdk-dynamodb'
|
|
5166
|
-
context[:gem_version] = '1.
|
|
5177
|
+
context[:gem_version] = '1.8.0'
|
|
5167
5178
|
Seahorse::Client::Request.new(handlers, context)
|
|
5168
5179
|
end
|
|
5169
5180
|
|
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.
|
|
4
|
+
version: 1.8.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: 2018-06-
|
|
11
|
+
date: 2018-06-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|