aws-sdk-sqs 1.3.0 → 1.4.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-sqs.rb +1 -1
- data/lib/aws-sdk-sqs/client.rb +12 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c7870d946c14cada223dbec9a90af10a3b2f5ee
|
|
4
|
+
data.tar.gz: 6e8cc91405f856ac13648ee50c5ad3f74dab6c7d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a662c177924c73dfdcfac657d84734e7ff06172d83b8896a8a6f4f662599c93c6a9b2130381f9ece60eab9ce2fc1e56453996dd73208b47c4be6721933ac27b
|
|
7
|
+
data.tar.gz: 32032824b1b963e830a9d5d9f3af6972c8cb4f0d6144e00b3652930f9c1f7088f1a3fb9f7c65fb6ae837d9739662cd053515007b32e65af36663d139320548ad
|
data/lib/aws-sdk-sqs.rb
CHANGED
data/lib/aws-sdk-sqs/client.rb
CHANGED
|
@@ -119,6 +119,14 @@ module Aws::SQS
|
|
|
119
119
|
# Used when loading credentials from the shared credentials file
|
|
120
120
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
|
121
121
|
#
|
|
122
|
+
# @option options [Float] :retry_base_delay (0.3)
|
|
123
|
+
# The base delay in seconds used by the default backoff function.
|
|
124
|
+
#
|
|
125
|
+
# @option options [Symbol] :retry_jitter (:none)
|
|
126
|
+
# 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.
|
|
127
|
+
#
|
|
128
|
+
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
|
129
|
+
#
|
|
122
130
|
# @option options [Integer] :retry_limit (3)
|
|
123
131
|
# The maximum number of times to retry failed requests. Only
|
|
124
132
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
|
@@ -126,6 +134,9 @@ module Aws::SQS
|
|
|
126
134
|
# checksum errors, networking errors, timeout errors and auth
|
|
127
135
|
# errors from expired credentials.
|
|
128
136
|
#
|
|
137
|
+
# @option options [Integer] :retry_max_delay (0)
|
|
138
|
+
# The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
|
|
139
|
+
#
|
|
129
140
|
# @option options [String] :secret_access_key
|
|
130
141
|
#
|
|
131
142
|
# @option options [String] :session_token
|
|
@@ -2057,7 +2068,7 @@ module Aws::SQS
|
|
|
2057
2068
|
params: params,
|
|
2058
2069
|
config: config)
|
|
2059
2070
|
context[:gem_name] = 'aws-sdk-sqs'
|
|
2060
|
-
context[:gem_version] = '1.
|
|
2071
|
+
context[:gem_version] = '1.4.0'
|
|
2061
2072
|
Seahorse::Client::Request.new(handlers, context)
|
|
2062
2073
|
end
|
|
2063
2074
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-sqs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.4.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:
|
|
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
|
|
@@ -80,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
80
80
|
version: '0'
|
|
81
81
|
requirements: []
|
|
82
82
|
rubyforge_project:
|
|
83
|
-
rubygems_version: 2.5.
|
|
83
|
+
rubygems_version: 2.5.2.3
|
|
84
84
|
signing_key:
|
|
85
85
|
specification_version: 4
|
|
86
86
|
summary: AWS SDK for Ruby - Amazon SQS
|