aws-sdk-sqs 1.13.0 → 1.14.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 +46 -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: be44c622b21f614759a0ad0e35ecae4b9d4c8300
|
4
|
+
data.tar.gz: ad0e45979f91cf2c4154101cba4b29d69079e387
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4e2dba653422bd3737b35ed29bb33d1353455214b08ac56e5d3410d73e1bd0695995e9b1530c1f83fa069fb31155d9fc509178d4e0cbc0f9e40586685d7e3f5
|
7
|
+
data.tar.gz: f9b3a579e53d6cc44728f84cc6066404058617b0bee96f906252c32ca5011dc63547cf83fc6a3343d47bfd9708b9c8ff668711abf9d38af5482b2ebcfd5bef1e
|
data/lib/aws-sdk-sqs.rb
CHANGED
data/lib/aws-sdk-sqs/client.rb
CHANGED
@@ -23,6 +23,7 @@ require 'aws-sdk-core/plugins/idempotency_token.rb'
|
|
23
23
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
24
24
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
25
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
|
+
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
26
27
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
27
28
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
28
29
|
require 'aws-sdk-sqs/plugins/queue_urls.rb'
|
@@ -57,6 +58,7 @@ module Aws::SQS
|
|
57
58
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
58
59
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
59
60
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
61
|
+
add_plugin(Aws::Plugins::TransferEncoding)
|
60
62
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
63
|
add_plugin(Aws::Plugins::Protocols::Query)
|
62
64
|
add_plugin(Aws::SQS::Plugins::QueueUrls)
|
@@ -209,6 +211,49 @@ module Aws::SQS
|
|
209
211
|
# `Aws::Errors::Checksum` errors are raised for cases where checksums do
|
210
212
|
# not match.
|
211
213
|
#
|
214
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
215
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
216
|
+
#
|
217
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
218
|
+
# seconds to wait when opening a HTTP session before rasing a
|
219
|
+
# `Timeout::Error`.
|
220
|
+
#
|
221
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
222
|
+
# number of seconds to wait for response data. This value can
|
223
|
+
# safely be set
|
224
|
+
# per-request on the session yeidled by {#session_for}.
|
225
|
+
#
|
226
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
227
|
+
# seconds a connection is allowed to sit idble before it is
|
228
|
+
# considered stale. Stale connections are closed and removed
|
229
|
+
# from the pool before making a request.
|
230
|
+
#
|
231
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
232
|
+
# seconds to wait for a 100-continue response before sending the
|
233
|
+
# request body. This option has no effect unless the request has
|
234
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
235
|
+
# disables this behaviour. This value can safely be set per
|
236
|
+
# request on the session yeidled by {#session_for}.
|
237
|
+
#
|
238
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
239
|
+
# HTTP debug output will be sent to the `:logger`.
|
240
|
+
#
|
241
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
242
|
+
# SSL peer certificates are verified when establishing a
|
243
|
+
# connection.
|
244
|
+
#
|
245
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
246
|
+
# certificate authority bundle file that should be used when
|
247
|
+
# verifying peer certificates. If you do not pass
|
248
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
249
|
+
# will be used if available.
|
250
|
+
#
|
251
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
252
|
+
# directory that contains the unbundled SSL certificate
|
253
|
+
# authority files for verifying peer certificates. If you do
|
254
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
255
|
+
# system default will be used if available.
|
256
|
+
#
|
212
257
|
def initialize(*args)
|
213
258
|
super
|
214
259
|
end
|
@@ -2113,7 +2158,7 @@ module Aws::SQS
|
|
2113
2158
|
params: params,
|
2114
2159
|
config: config)
|
2115
2160
|
context[:gem_name] = 'aws-sdk-sqs'
|
2116
|
-
context[:gem_version] = '1.
|
2161
|
+
context[:gem_version] = '1.14.0'
|
2117
2162
|
Seahorse::Client::Request.new(handlers, context)
|
2118
2163
|
end
|
2119
2164
|
|
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.14.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: 2019-
|
11
|
+
date: 2019-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -64,7 +64,7 @@ files:
|
|
64
64
|
- lib/aws-sdk-sqs/queue_poller.rb
|
65
65
|
- lib/aws-sdk-sqs/resource.rb
|
66
66
|
- lib/aws-sdk-sqs/types.rb
|
67
|
-
homepage:
|
67
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
68
68
|
licenses:
|
69
69
|
- Apache-2.0
|
70
70
|
metadata:
|