Skip to content

Commit 57dfb42

Browse files
authored
fix: use 'latest' version in generated package overview links (#273)
* fix: use 'latest' version in generated package overview links * fix: use equals for string comparisons * ci: update goldens * ci: update goldens * chore: format
1 parent 06fb50e commit 57dfb42

11 files changed

+63
-74
lines changed

third_party/docfx-doclet-143274/src/main/java/com/microsoft/build/PackageOverviewFile.java

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,7 @@ public PackageOverviewFile(
9696
this.PACKAGE_HEADER = "# Package " + packageURIPath + " (" + artifactVersion + ")\n";
9797

9898
String cloudRADChildElementLinkPrefix =
99-
"https://cloud.google.com/java/docs/reference/"
100-
+ repoMetadata.getArtifactId()
101-
+ "/"
102-
+ artifactVersion
103-
+ "/";
99+
"https://cloud.google.com/java/docs/reference/" + repoMetadata.getArtifactId() + "/latest/";
104100

105101
String packageURIPathGithub = packageURIPath.replace('.', '/');
106102
String githubSourcePackageLink =
@@ -110,14 +106,7 @@ public PackageOverviewFile(
110106
+ "/src/main/java/"
111107
+ packageURIPathGithub;
112108

113-
String cgcRootUri = "https://cloud.google.com/java/docs/reference/";
114-
this.recommendedPackageLink =
115-
cgcRootUri
116-
+ repoMetadata.getArtifactId()
117-
+ "/"
118-
+ artifactVersion
119-
+ "/"
120-
+ this.recommendedPackage;
109+
this.recommendedPackageLink = cloudRADChildElementLinkPrefix + this.recommendedPackage;
121110
// If the package status is not a GA version, then add a disclaimer around prerelease
122111
// implications
123112
if (status != null) {
@@ -366,7 +355,7 @@ private String getUid() {
366355
private static String createHtmlTable(
367356
String type, String linkPrefix, List<PackageChildSummary> listOfPackageChildrenSummaries) {
368357
String tableHeader = type;
369-
if (type == "Client/Settings") {
358+
if (type.equals("Client/Settings")) {
370359
tableHeader = "Clients or Settings Class";
371360
}
372361
StringBuilder tableBuilder = new StringBuilder();
@@ -381,7 +370,7 @@ private static String createHtmlTable(
381370
.append("</th>\n");
382371

383372
for (PackageChildSummary packageChildSummary : listOfPackageChildrenSummaries) {
384-
if (packageChildSummary.type == type) {
373+
if (packageChildSummary.type.equals(type)) {
385374
tableBuilder
386375
.append("<tr>\n")
387376
.append("<td><a href=\"")

third_party/docfx-doclet-143274/src/test/resources/expected-generated-files/com.microsoft.samples.agreements.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
## This package is not the recommended entry point to using this client library!
1111

12-
For this library, we recommend using [com.microsoft.samples.google.v1](https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.v1) for new applications.
12+
For this library, we recommend using [com.microsoft.samples.google.v1](https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.v1) for new applications.
1313

1414
## Classes
1515
<table>
@@ -19,21 +19,21 @@ Class</th>
1919
<th>
2020
Description</th>
2121
<tr>
22-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.agreements.AgreementDetailsCollectionOperations">com.microsoft.samples.agreements.AgreementDetailsCollectionOperations</a></td>
22+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.agreements.AgreementDetailsCollectionOperations">com.microsoft.samples.agreements.AgreementDetailsCollectionOperations</a></td>
2323
<td>
2424

2525
<strong>Deprecated.</strong> <em>Use <xref uid="AgreementMetaData" data-throw-if-not-resolved="false">AgreementMetaData</xref> instead.</em>
2626

2727
Agreement details collection operations implementation class.</td>
2828
</tr>
2929
<tr>
30-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.agreements.AgreementMetaData">com.microsoft.samples.agreements.AgreementMetaData</a></td>
30+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.agreements.AgreementMetaData">com.microsoft.samples.agreements.AgreementMetaData</a></td>
3131
<td>
3232
The AgreementMetaData provides metadata about the agreement type that partner can provide
3333
confirmation of customer acceptance.</td>
3434
</tr>
3535
<tr>
36-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.agreements.ResourceCollection">com.microsoft.samples.agreements.ResourceCollection</a></td>
36+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.agreements.ResourceCollection">com.microsoft.samples.agreements.ResourceCollection</a></td>
3737
<td>
3838
Contains a collection of resources with JSON properties to represent the output Type of objects
3939
in collection</td>
@@ -48,7 +48,7 @@ Interface</th>
4848
<th>
4949
Description</th>
5050
<tr>
51-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.agreements.IAgreementDetailsCollection">com.microsoft.samples.agreements.IAgreementDetailsCollection</a></td>
51+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.agreements.IAgreementDetailsCollection">com.microsoft.samples.agreements.IAgreementDetailsCollection</a></td>
5252
<td>
5353

5454
<strong>Deprecated.</strong> <em>This one is deprecated :(</em>

third_party/docfx-doclet-143274/src/test/resources/expected-generated-files/com.microsoft.samples.commentinheritance.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
## This package is not the recommended entry point to using this client library!
1111

12-
For this library, we recommend using [com.microsoft.samples.google.v1](https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.v1) for new applications.
12+
For this library, we recommend using [com.microsoft.samples.google.v1](https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.v1) for new applications.
1313

1414
## Classes
1515
<table>
@@ -19,22 +19,22 @@ Class</th>
1919
<th>
2020
Description</th>
2121
<tr>
22-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.commentinheritance.Animal">com.microsoft.samples.commentinheritance.Animal</a></td>
22+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.commentinheritance.Animal">com.microsoft.samples.commentinheritance.Animal</a></td>
2323
<td>
2424
Animal.</td>
2525
</tr>
2626
<tr>
27-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.commentinheritance.Dog">com.microsoft.samples.commentinheritance.Dog</a></td>
27+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.commentinheritance.Dog">com.microsoft.samples.commentinheritance.Dog</a></td>
2828
<td>
2929
Canine and man's best friend.</td>
3030
</tr>
3131
<tr>
32-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.commentinheritance.Herbivorous.Plant">com.microsoft.samples.commentinheritance.Herbivorous.Plant</a></td>
32+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.commentinheritance.Herbivorous.Plant">com.microsoft.samples.commentinheritance.Herbivorous.Plant</a></td>
3333
<td>
3434
</td>
3535
</tr>
3636
<tr>
37-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.commentinheritance.Mammal">com.microsoft.samples.commentinheritance.Mammal</a></td>
37+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.commentinheritance.Mammal">com.microsoft.samples.commentinheritance.Mammal</a></td>
3838
<td>
3939
Mammal.</td>
4040
</tr>
@@ -48,27 +48,27 @@ Interface</th>
4848
<th>
4949
Description</th>
5050
<tr>
51-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.commentinheritance.Carnivorous">com.microsoft.samples.commentinheritance.Carnivorous</a></td>
51+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.commentinheritance.Carnivorous">com.microsoft.samples.commentinheritance.Carnivorous</a></td>
5252
<td>
5353
Marks an Animal that eats other animals.</td>
5454
</tr>
5555
<tr>
56-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.commentinheritance.Herbivorous">com.microsoft.samples.commentinheritance.Herbivorous</a></td>
56+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.commentinheritance.Herbivorous">com.microsoft.samples.commentinheritance.Herbivorous</a></td>
5757
<td>
5858
Marks animals that eat plants.</td>
5959
</tr>
6060
<tr>
61-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.commentinheritance.Omnivorous">com.microsoft.samples.commentinheritance.Omnivorous</a></td>
61+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.commentinheritance.Omnivorous">com.microsoft.samples.commentinheritance.Omnivorous</a></td>
6262
<td>
6363
Eats plants and animals.</td>
6464
</tr>
6565
<tr>
66-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.commentinheritance.Organism">com.microsoft.samples.commentinheritance.Organism</a></td>
66+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.commentinheritance.Organism">com.microsoft.samples.commentinheritance.Organism</a></td>
6767
<td>
6868
</td>
6969
</tr>
7070
<tr>
71-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.commentinheritance.Viviparous">com.microsoft.samples.commentinheritance.Viviparous</a></td>
71+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.commentinheritance.Viviparous">com.microsoft.samples.commentinheritance.Viviparous</a></td>
7272
<td>
7373
Mammals that give birth to young that develop within the mother's body.</td>
7474
</tr>

third_party/docfx-doclet-143274/src/test/resources/expected-generated-files/com.microsoft.samples.google.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
## This package is not the recommended entry point to using this client library!
1111

12-
For this library, we recommend using [com.microsoft.samples.google.v1](https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.v1) for new applications.
12+
For this library, we recommend using [com.microsoft.samples.google.v1](https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.v1) for new applications.
1313

1414
## Client Classes
1515
Client classes are the main entry point to using a package.
@@ -21,7 +21,7 @@ Client</th>
2121
<th>
2222
Description</th>
2323
<tr>
24-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.SpeechClient">com.microsoft.samples.google.SpeechClient</a></td>
24+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.SpeechClient">com.microsoft.samples.google.SpeechClient</a></td>
2525
<td>
2626
Service Description: Service that implements Google Cloud Speech API.
2727

@@ -39,15 +39,15 @@ Settings</th>
3939
<th>
4040
Description</th>
4141
<tr>
42-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.ProductSearchSettings">com.microsoft.samples.google.ProductSearchSettings</a></td>
42+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.ProductSearchSettings">com.microsoft.samples.google.ProductSearchSettings</a></td>
4343
<td>
4444
Settings class to configure an instance of <xref uid="ProductSearchClient" data-throw-if-not-resolved="false">ProductSearchClient</xref>.
4545

4646
<p>The default instance has everything set to sensible defaults:
4747
</td>
4848
</tr>
4949
<tr>
50-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.SpeechSettings">com.microsoft.samples.google.SpeechSettings</a></td>
50+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.SpeechSettings">com.microsoft.samples.google.SpeechSettings</a></td>
5151
<td>
5252
Settings class to configure an instance of <xref uid="SpeechClient" data-throw-if-not-resolved="false">SpeechClient</xref>.
5353

@@ -64,20 +64,20 @@ Class</th>
6464
<th>
6565
Description</th>
6666
<tr>
67-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.ProductSearchSettings.Builder">com.microsoft.samples.google.ProductSearchSettings.Builder</a></td>
67+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.ProductSearchSettings.Builder">com.microsoft.samples.google.ProductSearchSettings.Builder</a></td>
6868
<td>
6969
Builder for ProductSearchSettings.</td>
7070
</tr>
7171
<tr>
72-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.RecognitionAudio">com.microsoft.samples.google.RecognitionAudio</a></td>
72+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.RecognitionAudio">com.microsoft.samples.google.RecognitionAudio</a></td>
7373
<td>
7474

7575
Contains audio data in the encoding specified in the <code>RecognitionConfig</code>.
7676
Either <code>content</code> or <code>uri</code> must be supplied. Supplying both or neither
7777
returns <xref uid="google.rpc.Code.INVALID_ARGUMENT" data-throw-if-not-resolved="false">google.rpc.Code.INVALID_ARGUMENT</xref>. See</td>
7878
</tr>
7979
<tr>
80-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.SpeechSettings.Builder">com.microsoft.samples.google.SpeechSettings.Builder</a></td>
80+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.SpeechSettings.Builder">com.microsoft.samples.google.SpeechSettings.Builder</a></td>
8181
<td>
8282
Builder for SpeechSettings.</td>
8383
</tr>
@@ -91,15 +91,15 @@ Interface</th>
9191
<th>
9292
Description</th>
9393
<tr>
94-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.BetaApi">com.microsoft.samples.google.BetaApi</a></td>
94+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.BetaApi">com.microsoft.samples.google.BetaApi</a></td>
9595
<td>
9696
Indicates a public API that can change at any time, and has no guarantee of API stability and
9797
backward-compatibility.
9898

9999
<p>Usage guidelines:</td>
100100
</tr>
101101
<tr>
102-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.ValidationException.Supplier">com.microsoft.samples.google.ValidationException.Supplier</a></td>
102+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.ValidationException.Supplier">com.microsoft.samples.google.ValidationException.Supplier</a></td>
103103
<td>
104104
</td>
105105
</tr>
@@ -113,7 +113,7 @@ Enum</th>
113113
<th>
114114
Description</th>
115115
<tr>
116-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.RecognitionAudio.AudioSourceCase">com.microsoft.samples.google.RecognitionAudio.AudioSourceCase</a></td>
116+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.RecognitionAudio.AudioSourceCase">com.microsoft.samples.google.RecognitionAudio.AudioSourceCase</a></td>
117117
<td>
118118
</td>
119119
</tr>
@@ -127,7 +127,7 @@ Exception</th>
127127
<th>
128128
Description</th>
129129
<tr>
130-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.ValidationException">com.microsoft.samples.google.ValidationException</a></td>
130+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.ValidationException">com.microsoft.samples.google.ValidationException</a></td>
131131
<td>
132132
Exception thrown if there is a validation problem with a path template, http config, or related
133133
framework methods. Comes as an illegal argument exception subclass. Allows to globally set a

third_party/docfx-doclet-143274/src/test/resources/expected-generated-files/com.microsoft.samples.google.v1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Client</th>
1717
<th>
1818
Description</th>
1919
<tr>
20-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.v1.SpeechClient">com.microsoft.samples.google.v1.SpeechClient</a></td>
20+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.v1.SpeechClient">com.microsoft.samples.google.v1.SpeechClient</a></td>
2121
<td>
2222
Service Description: Service that implements Google Cloud Speech API.
2323

third_party/docfx-doclet-143274/src/test/resources/expected-generated-files/com.microsoft.samples.google.v1.stub.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99

1010
## This package is not the recommended entry point to using this client library!
1111

12-
For this library, we recommend using [com.microsoft.samples.google.v1](https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.v1) for new applications.
12+
For this library, we recommend using [com.microsoft.samples.google.v1](https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.v1) for new applications.
1313

1414
## Stub Package Implications
1515

1616
This package is a a base stub class. It is for advanced usage and reflects the underlying API directly.
17-
We generally recommend using the non-stub, latest GA package, such as [com.microsoft.samples.google.v1](https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.v1). Use with caution.
17+
We generally recommend using the non-stub, latest GA package, such as [com.microsoft.samples.google.v1](https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.v1). Use with caution.
1818
## Stub Classes
1919
<table>
2020
<tr>
@@ -23,21 +23,21 @@ Stub</th>
2323
<th>
2424
Description</th>
2525
<tr>
26-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.v1.stub.GrpcSpeechStub">com.microsoft.samples.google.v1.stub.GrpcSpeechStub</a></td>
26+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.v1.stub.GrpcSpeechStub">com.microsoft.samples.google.v1.stub.GrpcSpeechStub</a></td>
2727
<td>
2828
gRPC stub implementation for the Speech service API.
2929

3030
<p>This class is for advanced usage and reflects the underlying API directly.</td>
3131
</tr>
3232
<tr>
33-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.v1.stub.HttpJsonSpeechStub">com.microsoft.samples.google.v1.stub.HttpJsonSpeechStub</a></td>
33+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.v1.stub.HttpJsonSpeechStub">com.microsoft.samples.google.v1.stub.HttpJsonSpeechStub</a></td>
3434
<td>
3535
REST stub implementation for the Speech service API.
3636

3737
<p>This class is for advanced usage and reflects the underlying API directly.</td>
3838
</tr>
3939
<tr>
40-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.v1.stub.SpeechStub">com.microsoft.samples.google.v1.stub.SpeechStub</a></td>
40+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.v1.stub.SpeechStub">com.microsoft.samples.google.v1.stub.SpeechStub</a></td>
4141
<td>
4242
Base stub class for the Speech service API.
4343

@@ -54,7 +54,7 @@ Settings</th>
5454
<th>
5555
Description</th>
5656
<tr>
57-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.v1.stub.SpeechStubSettings">com.microsoft.samples.google.v1.stub.SpeechStubSettings</a></td>
57+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.v1.stub.SpeechStubSettings">com.microsoft.samples.google.v1.stub.SpeechStubSettings</a></td>
5858
<td>
5959
Settings class to configure an instance of <xref uid="com.google.cloud.speech.v1p1beta1.stub.SpeechStub" data-throw-if-not-resolved="false">com.google.cloud.speech.v1p1beta1.stub.SpeechStub</xref>.
6060

@@ -71,7 +71,7 @@ Class</th>
7171
<th>
7272
Description</th>
7373
<tr>
74-
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/0.18.0/com.microsoft.samples.google.v1.stub.SpeechStubSettings.Builder">com.microsoft.samples.google.v1.stub.SpeechStubSettings.Builder</a></td>
74+
<td><a href="https://cloud.google.com/java/docs/reference/google-cloud-apikeys/latest/com.microsoft.samples.google.v1.stub.SpeechStubSettings.Builder">com.microsoft.samples.google.v1.stub.SpeechStubSettings.Builder</a></td>
7575
<td>
7676
Builder for SpeechStubSettings.</td>
7777
</tr>

0 commit comments

Comments
 (0)