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

fix: use full link in comment to fix JSDoc broken link #851

Merged
merged 13 commits into from
Apr 11, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions linkinator.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@
"skip": [
"https://codecov.io/gh/googleapis/",
"www.googleapis.com",
"img.shields.io"
"img.shields.io",
"https://console.cloud.google.com/cloudshell",
"https://support.google.com"
],
"silent": true,
"concurrency": 5
"concurrency": 5,
"retry": true,
"retryErrors": true,
"retryErrorsCount": 5,
"retryErrorsJitter": 3000
}
151 changes: 151 additions & 0 deletions samples/generated/v1/snippet_metadata.google.cloud.speech.v1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
{
"clientLibrary": {
"name": "nodejs-speech",
"version": "0.1.0",
"language": "TYPESCRIPT",
"apis": [
{
"id": "google.cloud.speech.v1",
"version": "v1"
}
]
},
"snippets": [
{
"regionTag": "speech_v1_generated_Speech_Recognize_async",
"title": "Speech recognize Sample",
"origin": "API_DEFINITION",
"description": " Performs synchronous speech recognition: receive results after all audio has been sent and processed.",
"canonical": true,
"file": "speech.recognize.js",
"language": "JAVASCRIPT",
"segments": [
{
"start": 25,
"end": 56,
"type": "FULL"
}
],
"clientMethod": {
"shortName": "Recognize",
"fullName": "google.cloud.speech.v1.Speech.Recognize",
"async": true,
"parameters": [
{
"name": "config",
"type": ".google.cloud.speech.v1.RecognitionConfig"
},
{
"name": "audio",
"type": ".google.cloud.speech.v1.RecognitionAudio"
}
],
"resultType": ".google.cloud.speech.v1.RecognizeResponse",
"client": {
"shortName": "SpeechClient",
"fullName": "google.cloud.speech.v1.SpeechClient"
},
"method": {
"shortName": "Recognize",
"fullName": "google.cloud.speech.v1.Speech.Recognize",
"service": {
"shortName": "Speech",
"fullName": "google.cloud.speech.v1.Speech"
}
}
}
},
{
"regionTag": "speech_v1_generated_Speech_LongRunningRecognize_async",
"title": "Speech longRunningRecognize Sample",
"origin": "API_DEFINITION",
"description": " Performs asynchronous speech recognition: receive results via the google.longrunning.Operations interface. Returns either an `Operation.error` or an `Operation.response` which contains a `LongRunningRecognizeResponse` message. For more information on asynchronous speech recognition, see the [how-to](https://cloud.google.com/speech-to-text/docs/async-recognize).",
"canonical": true,
"file": "speech.long_running_recognize.js",
"language": "JAVASCRIPT",
"segments": [
{
"start": 25,
"end": 61,
"type": "FULL"
}
],
"clientMethod": {
"shortName": "LongRunningRecognize",
"fullName": "google.cloud.speech.v1.Speech.LongRunningRecognize",
"async": true,
"parameters": [
{
"name": "config",
"type": ".google.cloud.speech.v1.RecognitionConfig"
},
{
"name": "audio",
"type": ".google.cloud.speech.v1.RecognitionAudio"
},
{
"name": "output_config",
"type": ".google.cloud.speech.v1.TranscriptOutputConfig"
}
],
"resultType": ".google.longrunning.Operation",
"client": {
"shortName": "SpeechClient",
"fullName": "google.cloud.speech.v1.SpeechClient"
},
"method": {
"shortName": "LongRunningRecognize",
"fullName": "google.cloud.speech.v1.Speech.LongRunningRecognize",
"service": {
"shortName": "Speech",
"fullName": "google.cloud.speech.v1.Speech"
}
}
}
},
{
"regionTag": "speech_v1_generated_Speech_StreamingRecognize_async",
"title": "Speech streamingRecognize Sample",
"origin": "API_DEFINITION",
"description": " Performs bidirectional streaming speech recognition: receive results while sending audio. This method is only available via the gRPC API (not REST).",
"canonical": true,
"file": "speech.streaming_recognize.js",
"language": "JAVASCRIPT",
"segments": [
{
"start": 25,
"end": 66,
"type": "FULL"
}
],
"clientMethod": {
"shortName": "StreamingRecognize",
"fullName": "google.cloud.speech.v1.Speech.StreamingRecognize",
"async": true,
"parameters": [
{
"name": "streaming_config",
"type": ".google.cloud.speech.v1.StreamingRecognitionConfig"
},
{
"name": "audio_content",
"type": "TYPE_BYTES"
}
],
"resultType": ".google.cloud.speech.v1.StreamingRecognizeResponse",
"client": {
"shortName": "SpeechClient",
"fullName": "google.cloud.speech.v1.SpeechClient"
},
"method": {
"shortName": "StreamingRecognize",
"fullName": "google.cloud.speech.v1.Speech.StreamingRecognize",
"service": {
"shortName": "Speech",
"fullName": "google.cloud.speech.v1.Speech"
}
}
}
}
]
}
9 changes: 7 additions & 2 deletions samples/generated/v1/speech.long_running_recognize.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
// Copyright 2021 Google LLC
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **



'use strict';
Expand Down
9 changes: 7 additions & 2 deletions samples/generated/v1/speech.recognize.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
// Copyright 2021 Google LLC
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **



'use strict';
Expand Down
9 changes: 7 additions & 2 deletions samples/generated/v1/speech.streaming_recognize.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
// Copyright 2021 Google LLC
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **



'use strict';
Expand Down
9 changes: 7 additions & 2 deletions samples/generated/v1p1beta1/adaptation.create_custom_class.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
// Copyright 2021 Google LLC
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **



'use strict';
Expand Down
9 changes: 7 additions & 2 deletions samples/generated/v1p1beta1/adaptation.create_phrase_set.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
// Copyright 2021 Google LLC
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **



'use strict';
Expand Down
9 changes: 7 additions & 2 deletions samples/generated/v1p1beta1/adaptation.delete_custom_class.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
// Copyright 2021 Google LLC
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **



'use strict';
Expand Down
9 changes: 7 additions & 2 deletions samples/generated/v1p1beta1/adaptation.delete_phrase_set.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
// Copyright 2021 Google LLC
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **



'use strict';
Expand Down
9 changes: 7 additions & 2 deletions samples/generated/v1p1beta1/adaptation.get_custom_class.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
// Copyright 2021 Google LLC
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **



'use strict';
Expand Down
9 changes: 7 additions & 2 deletions samples/generated/v1p1beta1/adaptation.get_phrase_set.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
// Copyright 2021 Google LLC
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// ** This file is automatically generated by gapic-generator-typescript. **
// ** https://github.com/googleapis/gapic-generator-typescript **
// ** All changes to this file may be overwritten. **



'use strict';
Expand Down
Loading