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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c0e9c661cab9066b163a55f546cfe7b1c86f3bf
4
- data.tar.gz: 4a9c365439cadc2f939f22d9b58d7c725c9e9ce5
3
+ metadata.gz: 3d503deb06a3c0c29c93d4e14bc3251fc322a5aa
4
+ data.tar.gz: b95fe6e488e8a689efd560f5420606e2e1c0fc85
5
5
  SHA512:
6
- metadata.gz: 209b35e788d7886cbc4d6b6253a8413b2100c88190313c855271f1d6a8735404c859015bc15a3a1ebba375e10766b4e7472d1e97f399a83b4e112a8a98546c3c
7
- data.tar.gz: 1fe32b91472ea916089d2e40124e352fdc0854e71848421bb2169b1c990a3861291a3f677169265ffa4c214d4697594bc7affb6224791131e08f4ac767502280
6
+ metadata.gz: 60e56c251a0bb09904e85f7e6a1df0266e54f5e565f275b53ea4357deb25398d127ce9a53ccdaf31e6dcc9dd121d16436cec25bfa182cf8cbad43f171679a618
7
+ data.tar.gz: 10aa3f6c013eb52a5e3ddedcda51b223cab0519cdb682e14803d8280bbe015d138e29d93742f31df8cda804f1655100ee3c3a136265a62f367f82e2bace44bfb
@@ -44,6 +44,6 @@ require_relative 'aws-sdk-dynamodb/customizations'
44
44
  # @service
45
45
  module Aws::DynamoDB
46
46
 
47
- GEM_VERSION = '1.7.0'
47
+ GEM_VERSION = '1.8.0'
48
48
 
49
49
  end
@@ -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 [Integer] :retry_limit (3)
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 (10)
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.7.0'
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.7.0
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-14 00:00:00.000000000 Z
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