google-apis-speech_v1 0.24.0 → 0.25.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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cda8c7a6dab24ae1892ac981ca21e4a525f7b77d5408c69c292c944ef29d43de
|
|
4
|
+
data.tar.gz: b1b3765f613334aae0af354449d091cac92374e4403038a0399b716054cf4959
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9baee046a4b0e335cdc59544a78ebf18133f5417ae4688fe20a1b43af50b2a728dfa747cc9d30440284c0eace176d0c6ea0047ed4aecae8525be85c6657cd032
|
|
7
|
+
data.tar.gz: b3f66aa0bb321641c1f6eeec536b3048942aa28943519554e2776628e11980a51d6356e7084dcd52a981d9c59b7ea6c08d5c9eb4f814500880b448ea57a02256
|
data/CHANGELOG.md
CHANGED
|
@@ -326,6 +326,12 @@ module Google
|
|
|
326
326
|
# @return [Google::Apis::SpeechV1::Status]
|
|
327
327
|
attr_accessor :output_error
|
|
328
328
|
|
|
329
|
+
# The ID associated with the request. This is a unique ID specific only to the
|
|
330
|
+
# given request.
|
|
331
|
+
# Corresponds to the JSON property `requestId`
|
|
332
|
+
# @return [Fixnum]
|
|
333
|
+
attr_accessor :request_id
|
|
334
|
+
|
|
329
335
|
# Sequential list of transcription results corresponding to sequential portions
|
|
330
336
|
# of audio.
|
|
331
337
|
# Corresponds to the JSON property `results`
|
|
@@ -345,6 +351,7 @@ module Google
|
|
|
345
351
|
def update!(**args)
|
|
346
352
|
@output_config = args[:output_config] if args.key?(:output_config)
|
|
347
353
|
@output_error = args[:output_error] if args.key?(:output_error)
|
|
354
|
+
@request_id = args[:request_id] if args.key?(:request_id)
|
|
348
355
|
@results = args[:results] if args.key?(:results)
|
|
349
356
|
@total_billed_time = args[:total_billed_time] if args.key?(:total_billed_time)
|
|
350
357
|
end
|
|
@@ -851,6 +858,12 @@ module Google
|
|
|
851
858
|
class RecognizeResponse
|
|
852
859
|
include Google::Apis::Core::Hashable
|
|
853
860
|
|
|
861
|
+
# The ID associated with the request. This is a unique ID specific only to the
|
|
862
|
+
# given request.
|
|
863
|
+
# Corresponds to the JSON property `requestId`
|
|
864
|
+
# @return [Fixnum]
|
|
865
|
+
attr_accessor :request_id
|
|
866
|
+
|
|
854
867
|
# Sequential list of transcription results corresponding to sequential portions
|
|
855
868
|
# of audio.
|
|
856
869
|
# Corresponds to the JSON property `results`
|
|
@@ -868,6 +881,7 @@ module Google
|
|
|
868
881
|
|
|
869
882
|
# Update properties of this object
|
|
870
883
|
def update!(**args)
|
|
884
|
+
@request_id = args[:request_id] if args.key?(:request_id)
|
|
871
885
|
@results = args[:results] if args.key?(:results)
|
|
872
886
|
@total_billed_time = args[:total_billed_time] if args.key?(:total_billed_time)
|
|
873
887
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module SpeechV1
|
|
18
18
|
# Version of the google-apis-speech_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.25.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220818"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -281,6 +281,7 @@ module Google
|
|
|
281
281
|
|
|
282
282
|
property :output_error, as: 'outputError', class: Google::Apis::SpeechV1::Status, decorator: Google::Apis::SpeechV1::Status::Representation
|
|
283
283
|
|
|
284
|
+
property :request_id, :numeric_string => true, as: 'requestId'
|
|
284
285
|
collection :results, as: 'results', class: Google::Apis::SpeechV1::SpeechRecognitionResult, decorator: Google::Apis::SpeechV1::SpeechRecognitionResult::Representation
|
|
285
286
|
|
|
286
287
|
property :total_billed_time, as: 'totalBilledTime'
|
|
@@ -381,6 +382,7 @@ module Google
|
|
|
381
382
|
class RecognizeResponse
|
|
382
383
|
# @private
|
|
383
384
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
385
|
+
property :request_id, :numeric_string => true, as: 'requestId'
|
|
384
386
|
collection :results, as: 'results', class: Google::Apis::SpeechV1::SpeechRecognitionResult, decorator: Google::Apis::SpeechV1::SpeechRecognitionResult::Representation
|
|
385
387
|
|
|
386
388
|
property :total_billed_time, as: 'totalBilledTime'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-speech_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.25.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-08-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-speech_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-speech_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-speech_v1/v0.25.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-speech_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|