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: c196849f678c32b8325653d855fa31b7f6ebcb8a
4
- data.tar.gz: e2e5a582d37da25f205ad1917e2fa218e79ae7b1
3
+ metadata.gz: cdb92b3ea7802f6c3a5414a83f56e00acb37404d
4
+ data.tar.gz: db6d046668a88a7b580fd1f136e1bd27835765a7
5
5
  SHA512:
6
- metadata.gz: 96b0e7fe3dff7f956617dd6b684603d6eca23ed296dcaba54b911947ff216f6e42aedd1da863e0e4c3ef2ccac33d0af85cc6b42232774f802cdbd3a583922824
7
- data.tar.gz: b7e118e58d3796feebab7a8bd7e8302050d7bf982ae30138525b1d9334b65dce23676d7986ce38c6f5e4d524f9bdd08875ee790b062c8c58f71c147f4130db98
6
+ metadata.gz: 2d8662bd4372ee31d7b478e86d4ff79c2a7bc5aadee2b96ed24250f63504ada63b6e134d78ad6851ec6fb911c670ff1a780af490bc97fa10f0abe5ef8ba1c738
7
+ data.tar.gz: 342384eff6b458732f7ef9d0ded45c7762a4cfc4f9a7617344d51b56c6a20e63847d2dcb27dcd9235708bd89d64c7f443758f5a0b7c9fe782477b91fbc3341d3
@@ -44,6 +44,6 @@ require_relative 'aws-sdk-transcribestreamingservice/event_streams'
44
44
  # @service
45
45
  module Aws::TranscribeStreamingService
46
46
 
47
- GEM_VERSION = '1.0.1'
47
+ GEM_VERSION = '1.1.0'
48
48
 
49
49
  end
@@ -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.1'
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.1'
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.1
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-03-26 00:00:00.000000000 Z
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