aws-sdk-transcribestreamingservice 1.0.1 → 1.1.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cdb92b3ea7802f6c3a5414a83f56e00acb37404d
|
4
|
+
data.tar.gz: db6d046668a88a7b580fd1f136e1bd27835765a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d8662bd4372ee31d7b478e86d4ff79c2a7bc5aadee2b96ed24250f63504ada63b6e134d78ad6851ec6fb911c670ff1a780af490bc97fa10f0abe5ef8ba1c738
|
7
|
+
data.tar.gz: 342384eff6b458732f7ef9d0ded45c7762a4cfc4f9a7617344d51b56c6a20e63847d2dcb27dcd9235708bd89d64c7f443758f5a0b7c9fe782477b91fbc3341d3
|
@@ -308,7 +308,7 @@ module Aws::TranscribeStreamingService
|
|
308
308
|
# @example Request syntax with placeholder values
|
309
309
|
#
|
310
310
|
# async_resp = async_client.start_stream_transcription({
|
311
|
-
# language_code: "en-US", # required, accepts en-US, es-US
|
311
|
+
# language_code: "en-US", # required, accepts en-US, en-GB, es-US, fr-CA, fr-FR
|
312
312
|
# media_sample_rate_hertz: 1, # required
|
313
313
|
# media_encoding: "pcm", # required, accepts pcm
|
314
314
|
# vocabulary_name: "VocabularyName",
|
@@ -323,7 +323,7 @@ module Aws::TranscribeStreamingService
|
|
323
323
|
# @example Response structure
|
324
324
|
#
|
325
325
|
# resp.request_id #=> String
|
326
|
-
# resp.language_code #=> String, one of "en-US", "es-US"
|
326
|
+
# resp.language_code #=> String, one of "en-US", "en-GB", "es-US", "fr-CA", "fr-FR"
|
327
327
|
# resp.media_sample_rate_hertz #=> Integer
|
328
328
|
# resp.media_encoding #=> String, one of "pcm"
|
329
329
|
# resp.vocabulary_name #=> String
|
@@ -401,7 +401,7 @@ module Aws::TranscribeStreamingService
|
|
401
401
|
http_response: Seahorse::Client::Http::AsyncResponse.new,
|
402
402
|
config: config)
|
403
403
|
context[:gem_name] = 'aws-sdk-transcribestreamingservice'
|
404
|
-
context[:gem_version] = '1.0
|
404
|
+
context[:gem_version] = '1.1.0'
|
405
405
|
Seahorse::Client::Request.new(handlers, context)
|
406
406
|
end
|
407
407
|
|
@@ -210,6 +210,49 @@ module Aws::TranscribeStreamingService
|
|
210
210
|
# When `true`, request parameters are validated before
|
211
211
|
# sending the request.
|
212
212
|
#
|
213
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
214
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
215
|
+
#
|
216
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
217
|
+
# seconds to wait when opening a HTTP session before rasing a
|
218
|
+
# `Timeout::Error`.
|
219
|
+
#
|
220
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
221
|
+
# number of seconds to wait for response data. This value can
|
222
|
+
# safely be set
|
223
|
+
# per-request on the session yeidled by {#session_for}.
|
224
|
+
#
|
225
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
226
|
+
# seconds a connection is allowed to sit idble before it is
|
227
|
+
# considered stale. Stale connections are closed and removed
|
228
|
+
# from the pool before making a request.
|
229
|
+
#
|
230
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
231
|
+
# seconds to wait for a 100-continue response before sending the
|
232
|
+
# request body. This option has no effect unless the request has
|
233
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
234
|
+
# disables this behaviour. This value can safely be set per
|
235
|
+
# request on the session yeidled by {#session_for}.
|
236
|
+
#
|
237
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
238
|
+
# HTTP debug output will be sent to the `:logger`.
|
239
|
+
#
|
240
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
241
|
+
# SSL peer certificates are verified when establishing a
|
242
|
+
# connection.
|
243
|
+
#
|
244
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
245
|
+
# certificate authority bundle file that should be used when
|
246
|
+
# verifying peer certificates. If you do not pass
|
247
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
248
|
+
# will be used if available.
|
249
|
+
#
|
250
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
251
|
+
# directory that contains the unbundled SSL certificate
|
252
|
+
# authority files for verifying peer certificates. If you do
|
253
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
254
|
+
# system default will be used if available.
|
255
|
+
#
|
213
256
|
def initialize(*args)
|
214
257
|
super
|
215
258
|
end
|
@@ -229,7 +272,7 @@ module Aws::TranscribeStreamingService
|
|
229
272
|
params: params,
|
230
273
|
config: config)
|
231
274
|
context[:gem_name] = 'aws-sdk-transcribestreamingservice'
|
232
|
-
context[:gem_version] = '1.0
|
275
|
+
context[:gem_version] = '1.1.0'
|
233
276
|
Seahorse::Client::Request.new(handlers, context)
|
234
277
|
end
|
235
278
|
|
@@ -184,7 +184,7 @@ module Aws::TranscribeStreamingService
|
|
184
184
|
# data as a hash:
|
185
185
|
#
|
186
186
|
# {
|
187
|
-
# language_code: "en-US", # required, accepts en-US, es-US
|
187
|
+
# language_code: "en-US", # required, accepts en-US, en-GB, es-US, fr-CA, fr-FR
|
188
188
|
# media_sample_rate_hertz: 1, # required
|
189
189
|
# media_encoding: "pcm", # required, accepts pcm
|
190
190
|
# vocabulary_name: "VocabularyName",
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-transcribestreamingservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0
|
4
|
+
version: 1.1.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-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|