aws-sdk-sqs 1.13.0 → 1.14.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
  SHA1:
3
- metadata.gz: 772a34f37abd4fb6a0254df6f58421cf59bfecf4
4
- data.tar.gz: 9e9979b07ad49b0e9c47934fb504669bccf4e200
3
+ metadata.gz: be44c622b21f614759a0ad0e35ecae4b9d4c8300
4
+ data.tar.gz: ad0e45979f91cf2c4154101cba4b29d69079e387
5
5
  SHA512:
6
- metadata.gz: 7000ec8d2c655eb6a595d2ebb4d6e7438d58d6d92f2683ede34738b1c040db0eb8abac634d95f559d5e158c1453be2deb5ab687615490f627a320aeca32847b6
7
- data.tar.gz: 722d8df6a232318db76c644f96af857029249f1259638e6ad419e6b137f5bcec63df34296a7493c7e536113c304c1a3748b29a831a1cc4128ad0e8109c357689
6
+ metadata.gz: a4e2dba653422bd3737b35ed29bb33d1353455214b08ac56e5d3410d73e1bd0695995e9b1530c1f83fa069fb31155d9fc509178d4e0cbc0f9e40586685d7e3f5
7
+ data.tar.gz: f9b3a579e53d6cc44728f84cc6066404058617b0bee96f906252c32ca5011dc63547cf83fc6a3343d47bfd9708b9c8ff668711abf9d38af5482b2ebcfd5bef1e
@@ -44,6 +44,6 @@ require_relative 'aws-sdk-sqs/customizations'
44
44
  # @service
45
45
  module Aws::SQS
46
46
 
47
- GEM_VERSION = '1.13.0'
47
+ GEM_VERSION = '1.14.0'
48
48
 
49
49
  end
@@ -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.13.0'
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.13.0
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-03-21 00:00:00.000000000 Z
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: http://github.com/aws/aws-sdk-ruby
67
+ homepage: https://github.com/aws/aws-sdk-ruby
68
68
  licenses:
69
69
  - Apache-2.0
70
70
  metadata: