aws-sdk-transcribeservice 1.18.0 → 1.19.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: 4ef31a131f25ac3bf3960e64783cf5ca456e8db3
4
- data.tar.gz: 6b571af281b8fa3844e5481f5512451b4ab00272
3
+ metadata.gz: 1ac78c8d4d9616813030a49e575b7846474edba2
4
+ data.tar.gz: '0388209d57354a6a1a7b9a436b0f4d4eac09d632'
5
5
  SHA512:
6
- metadata.gz: 749447d2109487b7b60e9f417489c847dfb4d4d655deb049585711ef4876e88467a6cba5c0aaab3b66be6f3a445ea440240c7e34ac7a72c55aba0ac21b8d035f
7
- data.tar.gz: af1f7e9fc9e81b8bfe2a0de17e77ccd31d8908340e08bbb01c1101c903a25a2cdb4a8d918633e9d25aefdf17c99ad685261c984fc365c4126e9950544f8b7220
6
+ metadata.gz: a6cdc0d8e427e4455fbaf90d70ffe01eef1e2134ccecc8a45b5b0ee7451ec195f4e119c60b6c5258c74bf2af9ba0e584918134cd07131d7fd73674a08ffb1bdd
7
+ data.tar.gz: a1c003b022d44ffc6dd68942c52a94e04b0cdde29b1d716bea64c11e2a761b33fba75c5a16d448f459b86b895f33b1de5ec99adf3dccb00f45984d459609b748
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-transcribeservice/customizations'
42
42
  # @service
43
43
  module Aws::TranscribeService
44
44
 
45
- GEM_VERSION = '1.18.0'
45
+ GEM_VERSION = '1.19.0'
46
46
 
47
47
  end
@@ -209,6 +209,49 @@ module Aws::TranscribeService
209
209
  # When `true`, request parameters are validated before
210
210
  # sending the request.
211
211
  #
212
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
213
+ # requests through. Formatted like 'http://proxy.com:123'.
214
+ #
215
+ # @option options [Float] :http_open_timeout (15) The number of
216
+ # seconds to wait when opening a HTTP session before rasing a
217
+ # `Timeout::Error`.
218
+ #
219
+ # @option options [Integer] :http_read_timeout (60) The default
220
+ # number of seconds to wait for response data. This value can
221
+ # safely be set
222
+ # per-request on the session yeidled by {#session_for}.
223
+ #
224
+ # @option options [Float] :http_idle_timeout (5) The number of
225
+ # seconds a connection is allowed to sit idble before it is
226
+ # considered stale. Stale connections are closed and removed
227
+ # from the pool before making a request.
228
+ #
229
+ # @option options [Float] :http_continue_timeout (1) The number of
230
+ # seconds to wait for a 100-continue response before sending the
231
+ # request body. This option has no effect unless the request has
232
+ # "Expect" header set to "100-continue". Defaults to `nil` which
233
+ # disables this behaviour. This value can safely be set per
234
+ # request on the session yeidled by {#session_for}.
235
+ #
236
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
237
+ # HTTP debug output will be sent to the `:logger`.
238
+ #
239
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
240
+ # SSL peer certificates are verified when establishing a
241
+ # connection.
242
+ #
243
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
244
+ # certificate authority bundle file that should be used when
245
+ # verifying peer certificates. If you do not pass
246
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
247
+ # will be used if available.
248
+ #
249
+ # @option options [String] :ssl_ca_directory Full path of the
250
+ # directory that contains the unbundled SSL certificate
251
+ # authority files for verifying peer certificates. If you do
252
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
253
+ # system default will be used if available.
254
+ #
212
255
  def initialize(*args)
213
256
  super
214
257
  end
@@ -264,7 +307,7 @@ module Aws::TranscribeService
264
307
  #
265
308
  # resp = client.create_vocabulary({
266
309
  # vocabulary_name: "VocabularyName", # required
267
- # language_code: "en-US", # required, accepts en-US, es-US, en-AU, fr-CA, en-GB, de-DE, pt-BR, fr-FR, it-IT, ko-KR
310
+ # language_code: "en-US", # required, accepts en-US, es-US, en-AU, fr-CA, en-GB, de-DE, pt-BR, fr-FR, it-IT, ko-KR, es-ES
268
311
  # phrases: ["Phrase"],
269
312
  # vocabulary_file_uri: "Uri",
270
313
  # })
@@ -272,7 +315,7 @@ module Aws::TranscribeService
272
315
  # @example Response structure
273
316
  #
274
317
  # resp.vocabulary_name #=> String
275
- # resp.language_code #=> String, one of "en-US", "es-US", "en-AU", "fr-CA", "en-GB", "de-DE", "pt-BR", "fr-FR", "it-IT", "ko-KR"
318
+ # resp.language_code #=> String, one of "en-US", "es-US", "en-AU", "fr-CA", "en-GB", "de-DE", "pt-BR", "fr-FR", "it-IT", "ko-KR", "es-ES"
276
319
  # resp.vocabulary_state #=> String, one of "PENDING", "READY", "FAILED"
277
320
  # resp.last_modified_time #=> Time
278
321
  # resp.failure_reason #=> String
@@ -353,7 +396,7 @@ module Aws::TranscribeService
353
396
  #
354
397
  # resp.transcription_job.transcription_job_name #=> String
355
398
  # resp.transcription_job.transcription_job_status #=> String, one of "IN_PROGRESS", "FAILED", "COMPLETED"
356
- # resp.transcription_job.language_code #=> String, one of "en-US", "es-US", "en-AU", "fr-CA", "en-GB", "de-DE", "pt-BR", "fr-FR", "it-IT", "ko-KR"
399
+ # resp.transcription_job.language_code #=> String, one of "en-US", "es-US", "en-AU", "fr-CA", "en-GB", "de-DE", "pt-BR", "fr-FR", "it-IT", "ko-KR", "es-ES"
357
400
  # resp.transcription_job.media_sample_rate_hertz #=> Integer
358
401
  # resp.transcription_job.media_format #=> String, one of "mp3", "mp4", "wav", "flac"
359
402
  # resp.transcription_job.media.media_file_uri #=> String
@@ -399,7 +442,7 @@ module Aws::TranscribeService
399
442
  # @example Response structure
400
443
  #
401
444
  # resp.vocabulary_name #=> String
402
- # resp.language_code #=> String, one of "en-US", "es-US", "en-AU", "fr-CA", "en-GB", "de-DE", "pt-BR", "fr-FR", "it-IT", "ko-KR"
445
+ # resp.language_code #=> String, one of "en-US", "es-US", "en-AU", "fr-CA", "en-GB", "de-DE", "pt-BR", "fr-FR", "it-IT", "ko-KR", "es-ES"
403
446
  # resp.vocabulary_state #=> String, one of "PENDING", "READY", "FAILED"
404
447
  # resp.last_modified_time #=> Time
405
448
  # resp.failure_reason #=> String
@@ -458,7 +501,7 @@ module Aws::TranscribeService
458
501
  # resp.transcription_job_summaries[0].transcription_job_name #=> String
459
502
  # resp.transcription_job_summaries[0].creation_time #=> Time
460
503
  # resp.transcription_job_summaries[0].completion_time #=> Time
461
- # resp.transcription_job_summaries[0].language_code #=> String, one of "en-US", "es-US", "en-AU", "fr-CA", "en-GB", "de-DE", "pt-BR", "fr-FR", "it-IT", "ko-KR"
504
+ # resp.transcription_job_summaries[0].language_code #=> String, one of "en-US", "es-US", "en-AU", "fr-CA", "en-GB", "de-DE", "pt-BR", "fr-FR", "it-IT", "ko-KR", "es-ES"
462
505
  # resp.transcription_job_summaries[0].transcription_job_status #=> String, one of "IN_PROGRESS", "FAILED", "COMPLETED"
463
506
  # resp.transcription_job_summaries[0].failure_reason #=> String
464
507
  # resp.transcription_job_summaries[0].output_location_type #=> String, one of "CUSTOMER_BUCKET", "SERVICE_BUCKET"
@@ -515,7 +558,7 @@ module Aws::TranscribeService
515
558
  # resp.next_token #=> String
516
559
  # resp.vocabularies #=> Array
517
560
  # resp.vocabularies[0].vocabulary_name #=> String
518
- # resp.vocabularies[0].language_code #=> String, one of "en-US", "es-US", "en-AU", "fr-CA", "en-GB", "de-DE", "pt-BR", "fr-FR", "it-IT", "ko-KR"
561
+ # resp.vocabularies[0].language_code #=> String, one of "en-US", "es-US", "en-AU", "fr-CA", "en-GB", "de-DE", "pt-BR", "fr-FR", "it-IT", "ko-KR", "es-ES"
519
562
  # resp.vocabularies[0].last_modified_time #=> Time
520
563
  # resp.vocabularies[0].vocabulary_state #=> String, one of "PENDING", "READY", "FAILED"
521
564
  #
@@ -582,7 +625,7 @@ module Aws::TranscribeService
582
625
  #
583
626
  # resp = client.start_transcription_job({
584
627
  # transcription_job_name: "TranscriptionJobName", # required
585
- # language_code: "en-US", # required, accepts en-US, es-US, en-AU, fr-CA, en-GB, de-DE, pt-BR, fr-FR, it-IT, ko-KR
628
+ # language_code: "en-US", # required, accepts en-US, es-US, en-AU, fr-CA, en-GB, de-DE, pt-BR, fr-FR, it-IT, ko-KR, es-ES
586
629
  # media_sample_rate_hertz: 1,
587
630
  # media_format: "mp3", # required, accepts mp3, mp4, wav, flac
588
631
  # media: { # required
@@ -601,7 +644,7 @@ module Aws::TranscribeService
601
644
  #
602
645
  # resp.transcription_job.transcription_job_name #=> String
603
646
  # resp.transcription_job.transcription_job_status #=> String, one of "IN_PROGRESS", "FAILED", "COMPLETED"
604
- # resp.transcription_job.language_code #=> String, one of "en-US", "es-US", "en-AU", "fr-CA", "en-GB", "de-DE", "pt-BR", "fr-FR", "it-IT", "ko-KR"
647
+ # resp.transcription_job.language_code #=> String, one of "en-US", "es-US", "en-AU", "fr-CA", "en-GB", "de-DE", "pt-BR", "fr-FR", "it-IT", "ko-KR", "es-ES"
605
648
  # resp.transcription_job.media_sample_rate_hertz #=> Integer
606
649
  # resp.transcription_job.media_format #=> String, one of "mp3", "mp4", "wav", "flac"
607
650
  # resp.transcription_job.media.media_file_uri #=> String
@@ -671,7 +714,7 @@ module Aws::TranscribeService
671
714
  #
672
715
  # resp = client.update_vocabulary({
673
716
  # vocabulary_name: "VocabularyName", # required
674
- # language_code: "en-US", # required, accepts en-US, es-US, en-AU, fr-CA, en-GB, de-DE, pt-BR, fr-FR, it-IT, ko-KR
717
+ # language_code: "en-US", # required, accepts en-US, es-US, en-AU, fr-CA, en-GB, de-DE, pt-BR, fr-FR, it-IT, ko-KR, es-ES
675
718
  # phrases: ["Phrase"],
676
719
  # vocabulary_file_uri: "Uri",
677
720
  # })
@@ -679,7 +722,7 @@ module Aws::TranscribeService
679
722
  # @example Response structure
680
723
  #
681
724
  # resp.vocabulary_name #=> String
682
- # resp.language_code #=> String, one of "en-US", "es-US", "en-AU", "fr-CA", "en-GB", "de-DE", "pt-BR", "fr-FR", "it-IT", "ko-KR"
725
+ # resp.language_code #=> String, one of "en-US", "es-US", "en-AU", "fr-CA", "en-GB", "de-DE", "pt-BR", "fr-FR", "it-IT", "ko-KR", "es-ES"
683
726
  # resp.last_modified_time #=> Time
684
727
  # resp.vocabulary_state #=> String, one of "PENDING", "READY", "FAILED"
685
728
  #
@@ -705,7 +748,7 @@ module Aws::TranscribeService
705
748
  params: params,
706
749
  config: config)
707
750
  context[:gem_name] = 'aws-sdk-transcribeservice'
708
- context[:gem_version] = '1.18.0'
751
+ context[:gem_version] = '1.19.0'
709
752
  Seahorse::Client::Request.new(handlers, context)
710
753
  end
711
754
 
@@ -13,7 +13,7 @@ module Aws::TranscribeService
13
13
  #
14
14
  # {
15
15
  # vocabulary_name: "VocabularyName", # required
16
- # language_code: "en-US", # required, accepts en-US, es-US, en-AU, fr-CA, en-GB, de-DE, pt-BR, fr-FR, it-IT, ko-KR
16
+ # language_code: "en-US", # required, accepts en-US, es-US, en-AU, fr-CA, en-GB, de-DE, pt-BR, fr-FR, it-IT, ko-KR, es-ES
17
17
  # phrases: ["Phrase"],
18
18
  # vocabulary_file_uri: "Uri",
19
19
  # }
@@ -469,7 +469,7 @@ module Aws::TranscribeService
469
469
  #
470
470
  # {
471
471
  # transcription_job_name: "TranscriptionJobName", # required
472
- # language_code: "en-US", # required, accepts en-US, es-US, en-AU, fr-CA, en-GB, de-DE, pt-BR, fr-FR, it-IT, ko-KR
472
+ # language_code: "en-US", # required, accepts en-US, es-US, en-AU, fr-CA, en-GB, de-DE, pt-BR, fr-FR, it-IT, ko-KR, es-ES
473
473
  # media_sample_rate_hertz: 1,
474
474
  # media_format: "mp3", # required, accepts mp3, mp4, wav, flac
475
475
  # media: { # required
@@ -746,7 +746,7 @@ module Aws::TranscribeService
746
746
  #
747
747
  # {
748
748
  # vocabulary_name: "VocabularyName", # required
749
- # language_code: "en-US", # required, accepts en-US, es-US, en-AU, fr-CA, en-GB, de-DE, pt-BR, fr-FR, it-IT, ko-KR
749
+ # language_code: "en-US", # required, accepts en-US, es-US, en-AU, fr-CA, en-GB, de-DE, pt-BR, fr-FR, it-IT, ko-KR, es-ES
750
750
  # phrases: ["Phrase"],
751
751
  # vocabulary_file_uri: "Uri",
752
752
  # }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-transcribeservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.19.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-25 00:00:00.000000000 Z
11
+ date: 2019-04-19 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-transcribeservice/errors.rb
60
60
  - lib/aws-sdk-transcribeservice/resource.rb
61
61
  - lib/aws-sdk-transcribeservice/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: