aws-sdk-swf 1.9.0 → 1.10.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: 93a6577dcefefbfde49c1e322938182c3765d72c
4
- data.tar.gz: 58013db9cdcc7eebb18a6c4bd3bf61e969098e38
3
+ metadata.gz: 121aff3169a48791f2268493c5e13d3bf8030d41
4
+ data.tar.gz: c58f19d3e79ee53c89054a62a91a27c6f9e4b23f
5
5
  SHA512:
6
- metadata.gz: 4941a9bd0b1b914b689025fb135f7c35fc763cd88e5164d6258b3655e9646d9372c40cdb1ad7ea7796fe91aafe985e3dd9fa1dfa6a5cff02521e0b9628ab864a
7
- data.tar.gz: a63147f485c66b776490d4ac5e9abd051606dba26d91b968d88d5a0e0cd7f5f9bc4dbc1ac745ad5200004b36f8f4fecbc4679e67ca60e0304706cc0722ad8092
6
+ metadata.gz: 31941f4b9f9ac12d2fd588ea7f39f653a58738013d80dc114e2af0ba33e67e301f65a404422ad6a8a63466db93f112d6238068d89364fe5b52fe050164770c3d
7
+ data.tar.gz: 92fea8ef84079a546b543ff05118b9eb3db4376523ec7eb796126ef028f7e4e56cd8b73857d1cda2fb62c623b2359bc631db290507e4c5aec104cd56c07c42c0
data/lib/aws-sdk-swf.rb CHANGED
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-swf/customizations'
42
42
  # @service
43
43
  module Aws::SWF
44
44
 
45
- GEM_VERSION = '1.9.0'
45
+ GEM_VERSION = '1.10.0'
46
46
 
47
47
  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/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.9.0'
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.9.0
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-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
@@ -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: http://github.com/aws/aws-sdk-ruby
63
+ homepage: https://github.com/aws/aws-sdk-ruby
64
64
  licenses:
65
65
  - Apache-2.0
66
66
  metadata: