Skip to content

Commit 9e57987

Browse files
feat: [speech] added Speech-to-Text V2 API proto (#8422)
- [ ] Regenerate this pull request now. The next generation Speech-to-Text V2 API provides the same features clients are familiar with in the existing Speech-to-Text API, while modernizing and simplifying the API using API best practices, resourceful methods, and updated infrastructure. Although this proto is published, the service is not yet available. PiperOrigin-RevId: 474926510 Source-Link: googleapis/googleapis@bb4d7f4 Source-Link: https://github.com/googleapis/googleapis-gen/commit/9ecdb75038b10cfe4685d8a301e2abf8e4dfaa48 Copy-Tag: eyJwIjoiamF2YS1zcGVlY2gvLk93bEJvdC55YW1sIiwiaCI6IjllY2RiNzUwMzhiMTBjZmU0Njg1ZDhhMzAxZTJhYmY4ZTRkZmFhNDgifQ==
1 parent a25f16a commit 9e57987

File tree

241 files changed

+114846
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

241 files changed

+114846
-5
lines changed

java-speech/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>libraries-bom</artifactId>
22-
<version>26.1.1</version>
22+
<version>26.1.0</version>
2323
<type>pom</type>
2424
<scope>import</scope>
2525
</dependency>
@@ -47,28 +47,28 @@ If you are using Maven without BOM, add this to your dependencies:
4747
<dependency>
4848
<groupId>com.google.cloud</groupId>
4949
<artifactId>google-cloud-speech</artifactId>
50-
<version>2.5.5</version>
50+
<version>2.5.4</version>
5151
</dependency>
5252

5353
```
5454

5555
If you are using Gradle 5.x or later, add this to your dependencies:
5656

5757
```Groovy
58-
implementation platform('com.google.cloud:libraries-bom:26.1.1')
58+
implementation platform('com.google.cloud:libraries-bom:26.1.2')
5959
6060
implementation 'com.google.cloud:google-cloud-speech'
6161
```
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.5.6'
65+
implementation 'com.google.cloud:google-cloud-speech:2.5.7'
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.5.6"
71+
libraryDependencies += "com.google.cloud" % "google-cloud-speech" % "2.5.7"
7272
```
7373

7474
## Authentication

java-speech/google-cloud-speech-bom/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,11 @@
7171
<artifactId>grpc-google-cloud-speech-v1p1beta1</artifactId>
7272
<version>0.89.5-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-speech-v1p1beta1:current} -->
7373
</dependency>
74+
<dependency>
75+
<groupId>com.google.api.grpc</groupId>
76+
<artifactId>grpc-google-cloud-speech-v2</artifactId>
77+
<version>2.5.5-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-speech-v2:current} -->
78+
</dependency>
7479
<dependency>
7580
<groupId>com.google.api.grpc</groupId>
7681
<artifactId>proto-google-cloud-speech-v1</artifactId>
@@ -86,6 +91,11 @@
8691
<artifactId>proto-google-cloud-speech-v1p1beta1</artifactId>
8792
<version>0.89.5-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-speech-v1p1beta1:current} -->
8893
</dependency>
94+
<dependency>
95+
<groupId>com.google.api.grpc</groupId>
96+
<artifactId>proto-google-cloud-speech-v2</artifactId>
97+
<version>2.5.5-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-speech-v2:current} -->
98+
</dependency>
8999
</dependencies>
90100
</dependencyManagement>
91101

java-speech/google-cloud-speech/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
<groupId>com.google.api.grpc</groupId>
2424
<artifactId>proto-google-cloud-speech-v1p1beta1</artifactId>
2525
</dependency>
26+
<dependency>
27+
<groupId>com.google.api.grpc</groupId>
28+
<artifactId>proto-google-cloud-speech-v2</artifactId>
29+
</dependency>
2630
<dependency>
2731
<groupId>com.google.api.grpc</groupId>
2832
<artifactId>proto-google-cloud-speech-v1beta1</artifactId>
@@ -87,6 +91,11 @@
8791
<artifactId>grpc-google-cloud-speech-v1p1beta1</artifactId>
8892
<scope>test</scope>
8993
</dependency>
94+
<dependency>
95+
<groupId>com.google.api.grpc</groupId>
96+
<artifactId>grpc-google-cloud-speech-v2</artifactId>
97+
<scope>test</scope>
98+
</dependency>
9099
<dependency>
91100
<groupId>com.google.api.grpc</groupId>
92101
<artifactId>grpc-google-cloud-speech-v1beta1</artifactId>

0 commit comments

Comments
 (0)