aws-sdk-kinesis 1.13.1 → 1.14.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-kinesis.rb +1 -1
- data/lib/aws-sdk-kinesis/async_client.rb +1 -1
- data/lib/aws-sdk-kinesis/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: 6b8269ae07e08c52708d14709fbdb42506ae83a9
|
4
|
+
data.tar.gz: f8846cd01d6b346dc294d9bbffc8b360a66096da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b08ef31f68e80f91c0251326b98233708e88d8481d0eed207546ed136c8f0ff70f89f47fcdbffb6a7712a1f21b51a21bce73489adfeb043fd778dcab3d9aee24
|
7
|
+
data.tar.gz: df9d73177770d68267988ec7c71781b02d57db0a4db7a33e4a3e2415d2ea217783986f9945c0eab6df8fe1d25b42f4e0da8432a68e7264495542d0ee20095ada
|
data/lib/aws-sdk-kinesis.rb
CHANGED
@@ -473,7 +473,7 @@ module Aws::Kinesis
|
|
473
473
|
http_response: Seahorse::Client::Http::AsyncResponse.new,
|
474
474
|
config: config)
|
475
475
|
context[:gem_name] = 'aws-sdk-kinesis'
|
476
|
-
context[:gem_version] = '1.
|
476
|
+
context[:gem_version] = '1.14.0'
|
477
477
|
Seahorse::Client::Request.new(handlers, context)
|
478
478
|
end
|
479
479
|
|
@@ -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-core/plugins/event_stream_configuration.rb'
|
@@ -56,6 +57,7 @@ module Aws::Kinesis
|
|
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::Plugins::EventStreamConfiguration)
|
@@ -220,6 +222,49 @@ module Aws::Kinesis
|
|
220
222
|
# When `true`, request parameters are validated before
|
221
223
|
# sending the request.
|
222
224
|
#
|
225
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
226
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
227
|
+
#
|
228
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
229
|
+
# seconds to wait when opening a HTTP session before rasing a
|
230
|
+
# `Timeout::Error`.
|
231
|
+
#
|
232
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
233
|
+
# number of seconds to wait for response data. This value can
|
234
|
+
# safely be set
|
235
|
+
# per-request on the session yeidled by {#session_for}.
|
236
|
+
#
|
237
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
238
|
+
# seconds a connection is allowed to sit idble before it is
|
239
|
+
# considered stale. Stale connections are closed and removed
|
240
|
+
# from the pool before making a request.
|
241
|
+
#
|
242
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
243
|
+
# seconds to wait for a 100-continue response before sending the
|
244
|
+
# request body. This option has no effect unless the request has
|
245
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
246
|
+
# disables this behaviour. This value can safely be set per
|
247
|
+
# request on the session yeidled by {#session_for}.
|
248
|
+
#
|
249
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
250
|
+
# HTTP debug output will be sent to the `:logger`.
|
251
|
+
#
|
252
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
253
|
+
# SSL peer certificates are verified when establishing a
|
254
|
+
# connection.
|
255
|
+
#
|
256
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
257
|
+
# certificate authority bundle file that should be used when
|
258
|
+
# verifying peer certificates. If you do not pass
|
259
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
260
|
+
# will be used if available.
|
261
|
+
#
|
262
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
263
|
+
# directory that contains the unbundled SSL certificate
|
264
|
+
# authority files for verifying peer certificates. If you do
|
265
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
266
|
+
# system default will be used if available.
|
267
|
+
#
|
223
268
|
def initialize(*args)
|
224
269
|
super
|
225
270
|
end
|
@@ -2084,7 +2129,7 @@ module Aws::Kinesis
|
|
2084
2129
|
params: params,
|
2085
2130
|
config: config)
|
2086
2131
|
context[:gem_name] = 'aws-sdk-kinesis'
|
2087
|
-
context[:gem_version] = '1.
|
2132
|
+
context[:gem_version] = '1.14.0'
|
2088
2133
|
Seahorse::Client::Request.new(handlers, context)
|
2089
2134
|
end
|
2090
2135
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-kinesis
|
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
|
@@ -62,7 +62,7 @@ files:
|
|
62
62
|
- lib/aws-sdk-kinesis/resource.rb
|
63
63
|
- lib/aws-sdk-kinesis/types.rb
|
64
64
|
- lib/aws-sdk-kinesis/waiters.rb
|
65
|
-
homepage:
|
65
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
66
66
|
licenses:
|
67
67
|
- Apache-2.0
|
68
68
|
metadata:
|