aws-sdk-iot 1.29.0 → 1.30.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: 926317a00cc504d8f6aa31ec9d80872f48e5be9d
4
- data.tar.gz: 886b0c81f74becb5bea11c598740104b0dd479ae
3
+ metadata.gz: 32a41779d43a2fb8c1264495d299178884d315d7
4
+ data.tar.gz: f02ee3506980bb48a9d6bf3a9bcab72ad4d61ee3
5
5
  SHA512:
6
- metadata.gz: 83638a6249f1e6c2a906e98836796dc89448755ec0f421bd11142ee591e68682541dcea50d0de2406bdded0c62931841921320b125197a5c60c06785943b5f90
7
- data.tar.gz: b7809ea6737a86491d3f29a4767a38f3eb372d6be39139c76d08b9e6191f430e814878645b2cd144d98ba088688779b92741e9c61b46f9103ef53f1684026b27
6
+ metadata.gz: d954251b69d6319bdeeb9b229d208e9743b3e0707df4331852345cef3d2f796f4cd2ece9046a42767bf5a1a8f934b583d7d6a6ef9bd5e448a5dc994116932c4c
7
+ data.tar.gz: 4136b11c5ac0c7a74687886996fc905cbe7230e9df75dd4763735f34ba5653ced476b9a5374716fdb7fbfcecc9517fc630828aa2974b04fba531043503a82a61
data/lib/aws-sdk-iot.rb CHANGED
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-iot/customizations'
42
42
  # @service
43
43
  module Aws::IoT
44
44
 
45
- GEM_VERSION = '1.29.0'
45
+ GEM_VERSION = '1.30.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/rest_json.rb'
28
29
 
@@ -55,6 +56,7 @@ module Aws::IoT
55
56
  add_plugin(Aws::Plugins::JsonvalueConverter)
56
57
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
57
58
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
59
+ add_plugin(Aws::Plugins::TransferEncoding)
58
60
  add_plugin(Aws::Plugins::SignatureV4)
59
61
  add_plugin(Aws::Plugins::Protocols::RestJson)
60
62
 
@@ -199,6 +201,49 @@ module Aws::IoT
199
201
  # When `true`, request parameters are validated before
200
202
  # sending the request.
201
203
  #
204
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
205
+ # requests through. Formatted like 'http://proxy.com:123'.
206
+ #
207
+ # @option options [Float] :http_open_timeout (15) The number of
208
+ # seconds to wait when opening a HTTP session before rasing a
209
+ # `Timeout::Error`.
210
+ #
211
+ # @option options [Integer] :http_read_timeout (60) The default
212
+ # number of seconds to wait for response data. This value can
213
+ # safely be set
214
+ # per-request on the session yeidled by {#session_for}.
215
+ #
216
+ # @option options [Float] :http_idle_timeout (5) The number of
217
+ # seconds a connection is allowed to sit idble before it is
218
+ # considered stale. Stale connections are closed and removed
219
+ # from the pool before making a request.
220
+ #
221
+ # @option options [Float] :http_continue_timeout (1) The number of
222
+ # seconds to wait for a 100-continue response before sending the
223
+ # request body. This option has no effect unless the request has
224
+ # "Expect" header set to "100-continue". Defaults to `nil` which
225
+ # disables this behaviour. This value can safely be set per
226
+ # request on the session yeidled by {#session_for}.
227
+ #
228
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
229
+ # HTTP debug output will be sent to the `:logger`.
230
+ #
231
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
232
+ # SSL peer certificates are verified when establishing a
233
+ # connection.
234
+ #
235
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
236
+ # certificate authority bundle file that should be used when
237
+ # verifying peer certificates. If you do not pass
238
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
239
+ # will be used if available.
240
+ #
241
+ # @option options [String] :ssl_ca_directory Full path of the
242
+ # directory that contains the unbundled SSL certificate
243
+ # authority files for verifying peer certificates. If you do
244
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
245
+ # system default will be used if available.
246
+ #
202
247
  def initialize(*args)
203
248
  super
204
249
  end
@@ -7571,7 +7616,7 @@ module Aws::IoT
7571
7616
  params: params,
7572
7617
  config: config)
7573
7618
  context[:gem_name] = 'aws-sdk-iot'
7574
- context[:gem_version] = '1.29.0'
7619
+ context[:gem_version] = '1.30.0'
7575
7620
  Seahorse::Client::Request.new(handlers, context)
7576
7621
  end
7577
7622
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iot
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.29.0
4
+ version: 1.30.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
@@ -59,7 +59,7 @@ files:
59
59
  - lib/aws-sdk-iot/errors.rb
60
60
  - lib/aws-sdk-iot/resource.rb
61
61
  - lib/aws-sdk-iot/types.rb
62
- homepage: http://github.com/aws/aws-sdk-ruby
62
+ homepage: https://github.com/aws/aws-sdk-ruby
63
63
  licenses:
64
64
  - Apache-2.0
65
65
  metadata: