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

Commit 1f34087

Browse files
gcf-owl-bot[bot]SurferJeffAtGooglesummer-ji-eng
authored
fix: use full link in comment to fix JSDoc broken link (#851)
* docs(samples): include metadata file, add exclusions for samples to handwritten libraries PiperOrigin-RevId: 429395631 Source-Link: googleapis/googleapis@84594b3 Source-Link: https://github.com/googleapis/googleapis-gen/commit/ed74f970fd82914874e6b27b04763cfa66bafe9b Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZWQ3NGY5NzBmZDgyOTE0ODc0ZTZiMjdiMDQ3NjNjZmE2NmJhZmU5YiJ9 * 🦉 Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: update v2.14.1 gapic-generator-typescript Committer: @summer-ji-eng PiperOrigin-RevId: 433031262 Source-Link: googleapis/googleapis@2a55d13 Source-Link: https://github.com/googleapis/googleapis-gen/commit/2fce3893ae9da47763e0872c4a3a87d9ff78771f Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMmZjZTM4OTNhZTlkYTQ3NzYzZTA4NzJjNGEzYTg3ZDlmZjc4NzcxZiJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: update v2.14.2 gapic-generator-typescript Committer: @summer-ji-eng PiperOrigin-RevId: 434859890 Source-Link: googleapis/googleapis@bc2432d Source-Link: https://github.com/googleapis/googleapis-gen/commit/930b673103e92523f8cfed38decd7d3afae8ebe7 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOTMwYjY3MzEwM2U5MjUyM2Y4Y2ZlZDM4ZGVjZDdkM2FmYWU4ZWJlNyJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: remove unused imports PiperOrigin-RevId: 439629269 Source-Link: googleapis/googleapis@8d458c8 Source-Link: https://github.com/googleapis/googleapis-gen/commit/065f18138630ac4c920ac4bc71b447098389dba2 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMDY1ZjE4MTM4NjMwYWM0YzkyMGFjNGJjNzFiNDQ3MDk4Mzg5ZGJhMiJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * fix: use full link in comment to fix JSDoc broken link Committer: @summer-ji-eng PiperOrigin-RevId: 440481666 Source-Link: googleapis/googleapis@6a21110 Source-Link: https://github.com/googleapis/googleapis-gen/commit/e6e39aff33b90a63a18e9081e480b08a41c548ac Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZTZlMzlhZmYzM2I5MGE2M2ExOGU5MDgxZTQ4MGIwOGE0MWM1NDhhYyJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * fix: manual test * fix test case for recognize voice Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Jeffrey Rennie <[email protected]> Co-authored-by: Summer Ji <[email protected]>
1 parent 9384584 commit 1f34087

39 files changed

+1516
-465
lines changed

linkinator.config.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@
33
"skip": [
44
"https://codecov.io/gh/googleapis/",
55
"www.googleapis.com",
6-
"img.shields.io"
6+
"img.shields.io",
7+
"https://console.cloud.google.com/cloudshell",
8+
"https://support.google.com"
79
],
810
"silent": true,
9-
"concurrency": 5
11+
"concurrency": 5,
12+
"retry": true,
13+
"retryErrors": true,
14+
"retryErrorsCount": 5,
15+
"retryErrorsJitter": 3000
1016
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"dependencies": {
4949
"@google-cloud/common": "^3.0.0",
5050
"@types/pumpify": "^1.4.1",
51-
"google-gax": "^2.24.1",
51+
"google-gax": "^2.30.1",
5252
"protobufjs": "^6.8.6",
5353
"pumpify": "^2.0.0",
5454
"stream-events": "^1.0.4",

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

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import "google/api/client.proto";
2121
import "google/api/field_behavior.proto";
2222
import "google/cloud/speech/v1/resource.proto";
2323
import "google/longrunning/operations.proto";
24-
import "google/protobuf/any.proto";
2524
import "google/protobuf/duration.proto";
2625
import "google/protobuf/timestamp.proto";
2726
import "google/protobuf/wrappers.proto";

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

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ syntax = "proto3";
1717
package google.cloud.speech.v1;
1818

1919
import "google/api/resource.proto";
20-
import "google/protobuf/timestamp.proto";
21-
import "google/api/annotations.proto";
2220

2321
option cc_enable_arenas = true;
2422
option go_package = "google.golang.org/genproto/googleapis/cloud/speech/v1;speech";

protos/google/cloud/speech/v1p1beta1/cloud_speech_adaptation.proto

+28-22
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ option objc_class_prefix = "GCS";
3434
// Service that implements Google Cloud Speech Adaptation API.
3535
service Adaptation {
3636
option (google.api.default_host) = "speech.googleapis.com";
37-
option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform";
37+
option (google.api.oauth_scopes) =
38+
"https://www.googleapis.com/auth/cloud-platform";
3839

3940
// Create a set of phrase hints. Each item in the set can be a single word or
4041
// a multi-word phrase. The items in the PhraseSet are favored by the
@@ -86,7 +87,8 @@ service Adaptation {
8687
post: "/v1p1beta1/{parent=projects/*/locations/*}/customClasses"
8788
body: "*"
8889
};
89-
option (google.api.method_signature) = "parent,custom_class,custom_class_id";
90+
option (google.api.method_signature) =
91+
"parent,custom_class,custom_class_id";
9092
}
9193

9294
// Get a custom class.
@@ -98,7 +100,8 @@ service Adaptation {
98100
}
99101

100102
// List custom classes.
101-
rpc ListCustomClasses(ListCustomClassesRequest) returns (ListCustomClassesResponse) {
103+
rpc ListCustomClasses(ListCustomClassesRequest)
104+
returns (ListCustomClassesResponse) {
102105
option (google.api.http) = {
103106
get: "/v1p1beta1/{parent=projects/*/locations/*}/customClasses"
104107
};
@@ -115,7 +118,8 @@ service Adaptation {
115118
}
116119

117120
// Delete a custom class.
118-
rpc DeleteCustomClass(DeleteCustomClassRequest) returns (google.protobuf.Empty) {
121+
rpc DeleteCustomClass(DeleteCustomClassRequest)
122+
returns (google.protobuf.Empty) {
119123
option (google.api.http) = {
120124
delete: "/v1p1beta1/{name=projects/*/locations/*/customClasses/*}"
121125
};
@@ -125,15 +129,16 @@ service Adaptation {
125129

126130
// Message sent by the client for the `CreatePhraseSet` method.
127131
message CreatePhraseSetRequest {
128-
// Required. The parent resource where this phrase set will be created. Format:
132+
// Required. The parent resource where this phrase set will be created.
133+
// Format:
129134
//
130135
// `projects/{project}/locations/{location}/phraseSets`
131136
//
132137
// Speech-to-Text supports three locations: `global`, `us` (US North America),
133138
// and `eu` (Europe). If you are calling the `speech.googleapis.com`
134139
// endpoint, use the `global` location. To specify a region, use a
135-
// [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
136-
// `eu` location value.
140+
// [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
141+
// with matching `us` or `eu` location value.
137142
string parent = 1 [
138143
(google.api.field_behavior) = REQUIRED,
139144
(google.api.resource_reference) = {
@@ -164,8 +169,8 @@ message UpdatePhraseSetRequest {
164169
// Speech-to-Text supports three locations: `global`, `us` (US North America),
165170
// and `eu` (Europe). If you are calling the `speech.googleapis.com`
166171
// endpoint, use the `global` location. To specify a region, use a
167-
// [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
168-
// `eu` location value.
172+
// [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
173+
// with matching `us` or `eu` location value.
169174
PhraseSet phrase_set = 1 [(google.api.field_behavior) = REQUIRED];
170175

171176
// The list of fields to be updated.
@@ -181,8 +186,8 @@ message GetPhraseSetRequest {
181186
// Speech-to-Text supports three locations: `global`, `us` (US North America),
182187
// and `eu` (Europe). If you are calling the `speech.googleapis.com`
183188
// endpoint, use the `global` location. To specify a region, use a
184-
// [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
185-
// `eu` location value.
189+
// [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
190+
// with matching `us` or `eu` location value.
186191
string name = 1 [
187192
(google.api.field_behavior) = REQUIRED,
188193
(google.api.resource_reference) = {
@@ -200,8 +205,8 @@ message ListPhraseSetRequest {
200205
// Speech-to-Text supports three locations: `global`, `us` (US North America),
201206
// and `eu` (Europe). If you are calling the `speech.googleapis.com`
202207
// endpoint, use the `global` location. To specify a region, use a
203-
// [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
204-
// `eu` location value.
208+
// [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
209+
// with matching `us` or `eu` location value.
205210
string parent = 1 [
206211
(google.api.field_behavior) = REQUIRED,
207212
(google.api.resource_reference) = {
@@ -248,15 +253,16 @@ message DeletePhraseSetRequest {
248253

249254
// Message sent by the client for the `CreateCustomClass` method.
250255
message CreateCustomClassRequest {
251-
// Required. The parent resource where this custom class will be created. Format:
256+
// Required. The parent resource where this custom class will be created.
257+
// Format:
252258
//
253259
// `projects/{project}/locations/{location}/customClasses`
254260
//
255261
// Speech-to-Text supports three locations: `global`, `us` (US North America),
256262
// and `eu` (Europe). If you are calling the `speech.googleapis.com`
257263
// endpoint, use the `global` location. To specify a region, use a
258-
// [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
259-
// `eu` location value.
264+
// [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
265+
// with matching `us` or `eu` location value.
260266
string parent = 1 [
261267
(google.api.field_behavior) = REQUIRED,
262268
(google.api.resource_reference) = {
@@ -287,8 +293,8 @@ message UpdateCustomClassRequest {
287293
// Speech-to-Text supports three locations: `global`, `us` (US North America),
288294
// and `eu` (Europe). If you are calling the `speech.googleapis.com`
289295
// endpoint, use the `global` location. To specify a region, use a
290-
// [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
291-
// `eu` location value.
296+
// [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
297+
// with matching `us` or `eu` location value.
292298
CustomClass custom_class = 1 [(google.api.field_behavior) = REQUIRED];
293299

294300
// The list of fields to be updated.
@@ -317,8 +323,8 @@ message ListCustomClassesRequest {
317323
// Speech-to-Text supports three locations: `global`, `us` (US North America),
318324
// and `eu` (Europe). If you are calling the `speech.googleapis.com`
319325
// endpoint, use the `global` location. To specify a region, use a
320-
// [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
321-
// `eu` location value.
326+
// [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
327+
// with matching `us` or `eu` location value.
322328
string parent = 1 [
323329
(google.api.field_behavior) = REQUIRED,
324330
(google.api.resource_reference) = {
@@ -359,8 +365,8 @@ message DeleteCustomClassRequest {
359365
// Speech-to-Text supports three locations: `global`, `us` (US North America),
360366
// and `eu` (Europe). If you are calling the `speech.googleapis.com`
361367
// endpoint, use the `global` location. To specify a region, use a
362-
// [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
363-
// `eu` location value.
368+
// [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
369+
// with matching `us` or `eu` location value.
364370
string name = 1 [
365371
(google.api.field_behavior) = REQUIRED,
366372
(google.api.resource_reference) = {

protos/protos.d.ts

+96-96
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)