aws-sdk-swf 1.9.0 → 1.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-swf.rb +1 -1
- data/lib/aws-sdk-swf/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: 121aff3169a48791f2268493c5e13d3bf8030d41
|
4
|
+
data.tar.gz: c58f19d3e79ee53c89054a62a91a27c6f9e4b23f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 31941f4b9f9ac12d2fd588ea7f39f653a58738013d80dc114e2af0ba33e67e301f65a404422ad6a8a63466db93f112d6238068d89364fe5b52fe050164770c3d
|
7
|
+
data.tar.gz: 92fea8ef84079a546b543ff05118b9eb3db4376523ec7eb796126ef028f7e4e56cd8b73857d1cda2fb62c623b2359bc631db290507e4c5aec104cd56c07c42c0
|
data/lib/aws-sdk-swf.rb
CHANGED
data/lib/aws-sdk-swf/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/json_rpc.rb'
|
28
29
|
require 'aws-sdk-swf/plugins/read_timeouts.rb'
|
@@ -56,6 +57,7 @@ module Aws::SWF
|
|
56
57
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
57
58
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
59
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
60
|
+
add_plugin(Aws::Plugins::TransferEncoding)
|
59
61
|
add_plugin(Aws::Plugins::SignatureV4)
|
60
62
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
61
63
|
add_plugin(Aws::SWF::Plugins::ReadTimeouts)
|
@@ -211,6 +213,49 @@ module Aws::SWF
|
|
211
213
|
# When `true`, request parameters are validated before
|
212
214
|
# sending the request.
|
213
215
|
#
|
216
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
217
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
218
|
+
#
|
219
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
220
|
+
# seconds to wait when opening a HTTP session before rasing a
|
221
|
+
# `Timeout::Error`.
|
222
|
+
#
|
223
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
224
|
+
# number of seconds to wait for response data. This value can
|
225
|
+
# safely be set
|
226
|
+
# per-request on the session yeidled by {#session_for}.
|
227
|
+
#
|
228
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
229
|
+
# seconds a connection is allowed to sit idble before it is
|
230
|
+
# considered stale. Stale connections are closed and removed
|
231
|
+
# from the pool before making a request.
|
232
|
+
#
|
233
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
234
|
+
# seconds to wait for a 100-continue response before sending the
|
235
|
+
# request body. This option has no effect unless the request has
|
236
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
237
|
+
# disables this behaviour. This value can safely be set per
|
238
|
+
# request on the session yeidled by {#session_for}.
|
239
|
+
#
|
240
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
241
|
+
# HTTP debug output will be sent to the `:logger`.
|
242
|
+
#
|
243
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
244
|
+
# SSL peer certificates are verified when establishing a
|
245
|
+
# connection.
|
246
|
+
#
|
247
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
248
|
+
# certificate authority bundle file that should be used when
|
249
|
+
# verifying peer certificates. If you do not pass
|
250
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
251
|
+
# will be used if available.
|
252
|
+
#
|
253
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
254
|
+
# directory that contains the unbundled SSL certificate
|
255
|
+
# authority files for verifying peer certificates. If you do
|
256
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
257
|
+
# system default will be used if available.
|
258
|
+
#
|
214
259
|
def initialize(*args)
|
215
260
|
super
|
216
261
|
end
|
@@ -3879,7 +3924,7 @@ module Aws::SWF
|
|
3879
3924
|
params: params,
|
3880
3925
|
config: config)
|
3881
3926
|
context[:gem_name] = 'aws-sdk-swf'
|
3882
|
-
context[:gem_version] = '1.
|
3927
|
+
context[:gem_version] = '1.10.0'
|
3883
3928
|
Seahorse::Client::Request.new(handlers, context)
|
3884
3929
|
end
|
3885
3930
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-swf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.10.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
|
@@ -60,7 +60,7 @@ files:
|
|
60
60
|
- lib/aws-sdk-swf/plugins/read_timeouts.rb
|
61
61
|
- lib/aws-sdk-swf/resource.rb
|
62
62
|
- lib/aws-sdk-swf/types.rb
|
63
|
-
homepage:
|
63
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
64
64
|
licenses:
|
65
65
|
- Apache-2.0
|
66
66
|
metadata:
|