Skip to content
This repository was archived by the owner on Dec 15, 2023. It is now read-only.

Commit 220ccaf

Browse files
fix: use full link in comment to fix JSDoc broken link (#861)
- [ ] Regenerate this pull request now. 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
1 parent c32b98a commit 220ccaf

19 files changed

+276
-238
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ implementation 'com.google.cloud:google-cloud-speech'
6262
If you are using Gradle without BOM, add this to your dependencies
6363

6464
```Groovy
65-
implementation 'com.google.cloud:google-cloud-speech:2.2.13'
65+
implementation 'com.google.cloud:google-cloud-speech:2.2.14'
6666
```
6767

6868
If you are using SBT, add this to your dependencies
6969

7070
```Scala
71-
libraryDependencies += "com.google.cloud" % "google-cloud-speech" % "2.2.13"
71+
libraryDependencies += "com.google.cloud" % "google-cloud-speech" % "2.2.14"
7272
```
7373

7474
## Authentication

google-cloud-speech/src/main/java/com/google/cloud/speech/v1p1beta1/AdaptationClient.java

Lines changed: 42 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,9 @@ public AdaptationStub getStub() {
170170
* <p>`projects/{project}/locations/{location}/phraseSets`
171171
* <p>Speech-to-Text supports three locations: `global`, `us` (US North America), and `eu`
172172
* (Europe). If you are calling the `speech.googleapis.com` endpoint, use the `global`
173-
* location. To specify a region, use a [regional endpoint](/speech-to-text/docs/endpoints)
174-
* with matching `us` or `eu` location value.
173+
* location. To specify a region, use a [regional
174+
* endpoint](https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us` or
175+
* `eu` location value.
175176
* @param phraseSet Required. The phrase set to create.
176177
* @param phraseSetId Required. The ID to use for the phrase set, which will become the final
177178
* component of the phrase set's resource name.
@@ -210,8 +211,9 @@ public final PhraseSet createPhraseSet(
210211
* <p>`projects/{project}/locations/{location}/phraseSets`
211212
* <p>Speech-to-Text supports three locations: `global`, `us` (US North America), and `eu`
212213
* (Europe). If you are calling the `speech.googleapis.com` endpoint, use the `global`
213-
* location. To specify a region, use a [regional endpoint](/speech-to-text/docs/endpoints)
214-
* with matching `us` or `eu` location value.
214+
* location. To specify a region, use a [regional
215+
* endpoint](https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us` or
216+
* `eu` location value.
215217
* @param phraseSet Required. The phrase set to create.
216218
* @param phraseSetId Required. The ID to use for the phrase set, which will become the final
217219
* component of the phrase set's resource name.
@@ -298,8 +300,9 @@ public final UnaryCallable<CreatePhraseSetRequest, PhraseSet> createPhraseSetCal
298300
* <p>`projects/{project}/locations/{location}/phraseSets/{phrase_set}`
299301
* <p>Speech-to-Text supports three locations: `global`, `us` (US North America), and `eu`
300302
* (Europe). If you are calling the `speech.googleapis.com` endpoint, use the `global`
301-
* location. To specify a region, use a [regional endpoint](/speech-to-text/docs/endpoints)
302-
* with matching `us` or `eu` location value.
303+
* location. To specify a region, use a [regional
304+
* endpoint](https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us` or
305+
* `eu` location value.
303306
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
304307
*/
305308
public final PhraseSet getPhraseSet(PhraseSetName name) {
@@ -325,8 +328,9 @@ public final PhraseSet getPhraseSet(PhraseSetName name) {
325328
* <p>`projects/{project}/locations/{location}/phraseSets/{phrase_set}`
326329
* <p>Speech-to-Text supports three locations: `global`, `us` (US North America), and `eu`
327330
* (Europe). If you are calling the `speech.googleapis.com` endpoint, use the `global`
328-
* location. To specify a region, use a [regional endpoint](/speech-to-text/docs/endpoints)
329-
* with matching `us` or `eu` location value.
331+
* location. To specify a region, use a [regional
332+
* endpoint](https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us` or
333+
* `eu` location value.
330334
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
331335
*/
332336
public final PhraseSet getPhraseSet(String name) {
@@ -398,8 +402,9 @@ public final UnaryCallable<GetPhraseSetRequest, PhraseSet> getPhraseSetCallable(
398402
* <p>`projects/{project}/locations/{location}`
399403
* <p>Speech-to-Text supports three locations: `global`, `us` (US North America), and `eu`
400404
* (Europe). If you are calling the `speech.googleapis.com` endpoint, use the `global`
401-
* location. To specify a region, use a [regional endpoint](/speech-to-text/docs/endpoints)
402-
* with matching `us` or `eu` location value.
405+
* location. To specify a region, use a [regional
406+
* endpoint](https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us` or
407+
* `eu` location value.
403408
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
404409
*/
405410
public final ListPhraseSetPagedResponse listPhraseSet(LocationName parent) {
@@ -429,8 +434,9 @@ public final ListPhraseSetPagedResponse listPhraseSet(LocationName parent) {
429434
* <p>`projects/{project}/locations/{location}`
430435
* <p>Speech-to-Text supports three locations: `global`, `us` (US North America), and `eu`
431436
* (Europe). If you are calling the `speech.googleapis.com` endpoint, use the `global`
432-
* location. To specify a region, use a [regional endpoint](/speech-to-text/docs/endpoints)
433-
* with matching `us` or `eu` location value.
437+
* location. To specify a region, use a [regional
438+
* endpoint](https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us` or
439+
* `eu` location value.
434440
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
435441
*/
436442
public final ListPhraseSetPagedResponse listPhraseSet(String parent) {
@@ -545,8 +551,9 @@ public final UnaryCallable<ListPhraseSetRequest, ListPhraseSetResponse> listPhra
545551
* <p>`projects/{project}/locations/{location}/phraseSets/{phrase_set}`
546552
* <p>Speech-to-Text supports three locations: `global`, `us` (US North America), and `eu`
547553
* (Europe). If you are calling the `speech.googleapis.com` endpoint, use the `global`
548-
* location. To specify a region, use a [regional endpoint](/speech-to-text/docs/endpoints)
549-
* with matching `us` or `eu` location value.
554+
* location. To specify a region, use a [regional
555+
* endpoint](https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us` or
556+
* `eu` location value.
550557
* @param updateMask The list of fields to be updated.
551558
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
552559
*/
@@ -715,8 +722,9 @@ public final UnaryCallable<DeletePhraseSetRequest, Empty> deletePhraseSetCallabl
715722
* <p>`projects/{project}/locations/{location}/customClasses`
716723
* <p>Speech-to-Text supports three locations: `global`, `us` (US North America), and `eu`
717724
* (Europe). If you are calling the `speech.googleapis.com` endpoint, use the `global`
718-
* location. To specify a region, use a [regional endpoint](/speech-to-text/docs/endpoints)
719-
* with matching `us` or `eu` location value.
725+
* location. To specify a region, use a [regional
726+
* endpoint](https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us` or
727+
* `eu` location value.
720728
* @param customClass Required. The custom class to create.
721729
* @param customClassId Required. The ID to use for the custom class, which will become the final
722730
* component of the custom class' resource name.
@@ -753,8 +761,9 @@ public final CustomClass createCustomClass(
753761
* <p>`projects/{project}/locations/{location}/customClasses`
754762
* <p>Speech-to-Text supports three locations: `global`, `us` (US North America), and `eu`
755763
* (Europe). If you are calling the `speech.googleapis.com` endpoint, use the `global`
756-
* location. To specify a region, use a [regional endpoint](/speech-to-text/docs/endpoints)
757-
* with matching `us` or `eu` location value.
764+
* location. To specify a region, use a [regional
765+
* endpoint](https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us` or
766+
* `eu` location value.
758767
* @param customClass Required. The custom class to create.
759768
* @param customClassId Required. The ID to use for the custom class, which will become the final
760769
* component of the custom class' resource name.
@@ -931,8 +940,9 @@ public final UnaryCallable<GetCustomClassRequest, CustomClass> getCustomClassCal
931940
* <p>`projects/{project}/locations/{location}/customClasses`
932941
* <p>Speech-to-Text supports three locations: `global`, `us` (US North America), and `eu`
933942
* (Europe). If you are calling the `speech.googleapis.com` endpoint, use the `global`
934-
* location. To specify a region, use a [regional endpoint](/speech-to-text/docs/endpoints)
935-
* with matching `us` or `eu` location value.
943+
* location. To specify a region, use a [regional
944+
* endpoint](https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us` or
945+
* `eu` location value.
936946
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
937947
*/
938948
public final ListCustomClassesPagedResponse listCustomClasses(LocationName parent) {
@@ -962,8 +972,9 @@ public final ListCustomClassesPagedResponse listCustomClasses(LocationName paren
962972
* <p>`projects/{project}/locations/{location}/customClasses`
963973
* <p>Speech-to-Text supports three locations: `global`, `us` (US North America), and `eu`
964974
* (Europe). If you are calling the `speech.googleapis.com` endpoint, use the `global`
965-
* location. To specify a region, use a [regional endpoint](/speech-to-text/docs/endpoints)
966-
* with matching `us` or `eu` location value.
975+
* location. To specify a region, use a [regional
976+
* endpoint](https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us` or
977+
* `eu` location value.
967978
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
968979
*/
969980
public final ListCustomClassesPagedResponse listCustomClasses(String parent) {
@@ -1082,8 +1093,9 @@ public final ListCustomClassesPagedResponse listCustomClasses(ListCustomClassesR
10821093
* <p>`projects/{project}/locations/{location}/customClasses/{custom_class}`
10831094
* <p>Speech-to-Text supports three locations: `global`, `us` (US North America), and `eu`
10841095
* (Europe). If you are calling the `speech.googleapis.com` endpoint, use the `global`
1085-
* location. To specify a region, use a [regional endpoint](/speech-to-text/docs/endpoints)
1086-
* with matching `us` or `eu` location value.
1096+
* location. To specify a region, use a [regional
1097+
* endpoint](https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us` or
1098+
* `eu` location value.
10871099
* @param updateMask The list of fields to be updated.
10881100
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
10891101
*/
@@ -1161,8 +1173,9 @@ public final UnaryCallable<UpdateCustomClassRequest, CustomClass> updateCustomCl
11611173
* <p>`projects/{project}/locations/{location}/customClasses/{custom_class}`
11621174
* <p>Speech-to-Text supports three locations: `global`, `us` (US North America), and `eu`
11631175
* (Europe). If you are calling the `speech.googleapis.com` endpoint, use the `global`
1164-
* location. To specify a region, use a [regional endpoint](/speech-to-text/docs/endpoints)
1165-
* with matching `us` or `eu` location value.
1176+
* location. To specify a region, use a [regional
1177+
* endpoint](https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us` or
1178+
* `eu` location value.
11661179
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
11671180
*/
11681181
public final void deleteCustomClass(CustomClassName name) {
@@ -1190,8 +1203,9 @@ public final void deleteCustomClass(CustomClassName name) {
11901203
* <p>`projects/{project}/locations/{location}/customClasses/{custom_class}`
11911204
* <p>Speech-to-Text supports three locations: `global`, `us` (US North America), and `eu`
11921205
* (Europe). If you are calling the `speech.googleapis.com` endpoint, use the `global`
1193-
* location. To specify a region, use a [regional endpoint](/speech-to-text/docs/endpoints)
1194-
* with matching `us` or `eu` location value.
1206+
* location. To specify a region, use a [regional
1207+
* endpoint](https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us` or
1208+
* `eu` location value.
11951209
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
11961210
*/
11971211
public final void deleteCustomClass(String name) {

proto-google-cloud-speech-v1p1beta1/src/main/java/com/google/cloud/speech/v1p1beta1/CreateCustomClassRequest.java

Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,14 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
141141
*
142142
*
143143
* <pre>
144-
* Required. The parent resource where this custom class will be created. Format:
144+
* Required. The parent resource where this custom class will be created.
145+
* Format:
145146
* `projects/{project}/locations/{location}/customClasses`
146147
* Speech-to-Text supports three locations: `global`, `us` (US North America),
147148
* and `eu` (Europe). If you are calling the `speech.googleapis.com`
148149
* endpoint, use the `global` location. To specify a region, use a
149-
* [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
150-
* `eu` location value.
150+
* [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
151+
* with matching `us` or `eu` location value.
151152
* </pre>
152153
*
153154
* <code>
@@ -172,13 +173,14 @@ public java.lang.String getParent() {
172173
*
173174
*
174175
* <pre>
175-
* Required. The parent resource where this custom class will be created. Format:
176+
* Required. The parent resource where this custom class will be created.
177+
* Format:
176178
* `projects/{project}/locations/{location}/customClasses`
177179
* Speech-to-Text supports three locations: `global`, `us` (US North America),
178180
* and `eu` (Europe). If you are calling the `speech.googleapis.com`
179181
* endpoint, use the `global` location. To specify a region, use a
180-
* [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
181-
* `eu` location value.
182+
* [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
183+
* with matching `us` or `eu` location value.
182184
* </pre>
183185
*
184186
* <code>
@@ -677,13 +679,14 @@ public Builder mergeFrom(
677679
*
678680
*
679681
* <pre>
680-
* Required. The parent resource where this custom class will be created. Format:
682+
* Required. The parent resource where this custom class will be created.
683+
* Format:
681684
* `projects/{project}/locations/{location}/customClasses`
682685
* Speech-to-Text supports three locations: `global`, `us` (US North America),
683686
* and `eu` (Europe). If you are calling the `speech.googleapis.com`
684687
* endpoint, use the `global` location. To specify a region, use a
685-
* [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
686-
* `eu` location value.
688+
* [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
689+
* with matching `us` or `eu` location value.
687690
* </pre>
688691
*
689692
* <code>
@@ -707,13 +710,14 @@ public java.lang.String getParent() {
707710
*
708711
*
709712
* <pre>
710-
* Required. The parent resource where this custom class will be created. Format:
713+
* Required. The parent resource where this custom class will be created.
714+
* Format:
711715
* `projects/{project}/locations/{location}/customClasses`
712716
* Speech-to-Text supports three locations: `global`, `us` (US North America),
713717
* and `eu` (Europe). If you are calling the `speech.googleapis.com`
714718
* endpoint, use the `global` location. To specify a region, use a
715-
* [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
716-
* `eu` location value.
719+
* [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
720+
* with matching `us` or `eu` location value.
717721
* </pre>
718722
*
719723
* <code>
@@ -737,13 +741,14 @@ public com.google.protobuf.ByteString getParentBytes() {
737741
*
738742
*
739743
* <pre>
740-
* Required. The parent resource where this custom class will be created. Format:
744+
* Required. The parent resource where this custom class will be created.
745+
* Format:
741746
* `projects/{project}/locations/{location}/customClasses`
742747
* Speech-to-Text supports three locations: `global`, `us` (US North America),
743748
* and `eu` (Europe). If you are calling the `speech.googleapis.com`
744749
* endpoint, use the `global` location. To specify a region, use a
745-
* [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
746-
* `eu` location value.
750+
* [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
751+
* with matching `us` or `eu` location value.
747752
* </pre>
748753
*
749754
* <code>
@@ -766,13 +771,14 @@ public Builder setParent(java.lang.String value) {
766771
*
767772
*
768773
* <pre>
769-
* Required. The parent resource where this custom class will be created. Format:
774+
* Required. The parent resource where this custom class will be created.
775+
* Format:
770776
* `projects/{project}/locations/{location}/customClasses`
771777
* Speech-to-Text supports three locations: `global`, `us` (US North America),
772778
* and `eu` (Europe). If you are calling the `speech.googleapis.com`
773779
* endpoint, use the `global` location. To specify a region, use a
774-
* [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
775-
* `eu` location value.
780+
* [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
781+
* with matching `us` or `eu` location value.
776782
* </pre>
777783
*
778784
* <code>
@@ -791,13 +797,14 @@ public Builder clearParent() {
791797
*
792798
*
793799
* <pre>
794-
* Required. The parent resource where this custom class will be created. Format:
800+
* Required. The parent resource where this custom class will be created.
801+
* Format:
795802
* `projects/{project}/locations/{location}/customClasses`
796803
* Speech-to-Text supports three locations: `global`, `us` (US North America),
797804
* and `eu` (Europe). If you are calling the `speech.googleapis.com`
798805
* endpoint, use the `global` location. To specify a region, use a
799-
* [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
800-
* `eu` location value.
806+
* [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
807+
* with matching `us` or `eu` location value.
801808
* </pre>
802809
*
803810
* <code>

proto-google-cloud-speech-v1p1beta1/src/main/java/com/google/cloud/speech/v1p1beta1/CreateCustomClassRequestOrBuilder.java

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,14 @@ public interface CreateCustomClassRequestOrBuilder
2727
*
2828
*
2929
* <pre>
30-
* Required. The parent resource where this custom class will be created. Format:
30+
* Required. The parent resource where this custom class will be created.
31+
* Format:
3132
* `projects/{project}/locations/{location}/customClasses`
3233
* Speech-to-Text supports three locations: `global`, `us` (US North America),
3334
* and `eu` (Europe). If you are calling the `speech.googleapis.com`
3435
* endpoint, use the `global` location. To specify a region, use a
35-
* [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
36-
* `eu` location value.
36+
* [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
37+
* with matching `us` or `eu` location value.
3738
* </pre>
3839
*
3940
* <code>
@@ -47,13 +48,14 @@ public interface CreateCustomClassRequestOrBuilder
4748
*
4849
*
4950
* <pre>
50-
* Required. The parent resource where this custom class will be created. Format:
51+
* Required. The parent resource where this custom class will be created.
52+
* Format:
5153
* `projects/{project}/locations/{location}/customClasses`
5254
* Speech-to-Text supports three locations: `global`, `us` (US North America),
5355
* and `eu` (Europe). If you are calling the `speech.googleapis.com`
5456
* endpoint, use the `global` location. To specify a region, use a
55-
* [regional endpoint](/speech-to-text/docs/endpoints) with matching `us` or
56-
* `eu` location value.
57+
* [regional endpoint](https://cloud.google.com/speech-to-text/docs/endpoints)
58+
* with matching `us` or `eu` location value.
5759
* </pre>
5860
*
5961
* <code>

0 commit comments

Comments
 (0)