google-apis-speech_v1 0.24.0 → 0.26.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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66ee7add2504d648952d184f6a76b952f02e701476277f48ecfbcaa1c5cfbc8f
|
4
|
+
data.tar.gz: a730cf9e51575ec142f0094faea4d277423b7a9df8163687fdf49d0e46ce8d2f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e15793e5cd2bdd73f7d0d539aaf7dd0a19f30997a4190c3f7c74c5db5670c8bbae1449d59d314d68678c837dffa652d63a879d0c35eb1928ee119d0870ef78b
|
7
|
+
data.tar.gz: 30627f1d588e4bf8a06f8c7dad7d209918ca2fd593c38c8219e7236f512c3bbceb14bb80a726bfd833ecc0a8af22733bd580e6c09aa3aeae9727a0c94279a802
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-speech_v1
|
2
2
|
|
3
|
+
### v0.26.0 (2022-09-23)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.10.0
|
6
|
+
|
7
|
+
### v0.25.0 (2022-08-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220818
|
10
|
+
* Regenerated using generator version 0.9.0
|
11
|
+
|
3
12
|
### v0.24.0 (2022-06-30)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.8.0
|
@@ -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.26.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.10.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.26.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-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 0.9.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 0.9.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.26.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: []
|