Skip to content
This repository was archived by the owner on Feb 18, 2024. It is now read-only.

Commit b4f8cbf

Browse files
feat: add output_config request field (#801)
* feat: add output_config request field Committer: @cherba PiperOrigin-RevId: 397621106 Source-Link: googleapis/googleapis@1872f45 Source-Link: https://github.com/googleapis/googleapis-gen/commit/fd4bb9f3fcc6b7bf498808c443eae9bf0d4447df Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZmQ0YmI5ZjNmY2M2YjdiZjQ5ODgwOGM0NDNlYWU5YmYwZDQ0NDdkZiJ9 * 🦉 Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 0b332ff commit b4f8cbf

5 files changed

Lines changed: 368 additions & 0 deletions

File tree

protos/google/cloud/speech/v1/cloud_speech.proto

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,19 @@ message LongRunningRecognizeRequest {
9191

9292
// Required. The audio data to be recognized.
9393
RecognitionAudio audio = 2 [(google.api.field_behavior) = REQUIRED];
94+
95+
// Optional. Specifies an optional destination for the recognition results.
96+
TranscriptOutputConfig output_config = 4 [(google.api.field_behavior) = OPTIONAL];
97+
}
98+
99+
// Specifies an optional destination for the recognition results.
100+
message TranscriptOutputConfig {
101+
oneof output_type {
102+
// Specifies a Cloud Storage URI for the recognition results. Must be
103+
// specified in the format: `gs://bucket_name/object_name`, and the bucket
104+
// must already exist.
105+
string gcs_uri = 1;
106+
}
94107
}
95108

96109
// The top-level message sent by the client for the `StreamingRecognize` method.

protos/protos.d.ts

Lines changed: 99 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)