Skip to content

Commit

Permalink
feat: [speech] added Speech-to-Text V2 API proto (#8422)
Browse files Browse the repository at this point in the history
- [ ] 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: googleapis/googleapis-gen@9ecdb75
Copy-Tag: eyJwIjoiamF2YS1zcGVlY2gvLk93bEJvdC55YW1sIiwiaCI6IjllY2RiNzUwMzhiMTBjZmU0Njg1ZDhhMzAxZTJhYmY4ZTRkZmFhNDgifQ==
  • Loading branch information
gcf-owl-bot[bot] committed Sep 20, 2022
1 parent a25f16a commit 9e57987
Show file tree
Hide file tree
Showing 241 changed files with 114,846 additions and 5 deletions.
10 changes: 5 additions & 5 deletions java-speech/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>26.1.1</version>
<version>26.1.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -47,28 +47,28 @@ If you are using Maven without BOM, add this to your dependencies:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-speech</artifactId>
<version>2.5.5</version>
<version>2.5.4</version>
</dependency>

```

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

```Groovy
implementation platform('com.google.cloud:libraries-bom:26.1.1')
implementation platform('com.google.cloud:libraries-bom:26.1.2')
implementation 'com.google.cloud:google-cloud-speech'
```
If you are using Gradle without BOM, add this to your dependencies:

```Groovy
implementation 'com.google.cloud:google-cloud-speech:2.5.6'
implementation 'com.google.cloud:google-cloud-speech:2.5.7'
```

If you are using SBT, add this to your dependencies:

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-speech" % "2.5.6"
libraryDependencies += "com.google.cloud" % "google-cloud-speech" % "2.5.7"
```

## Authentication
Expand Down
10 changes: 10 additions & 0 deletions java-speech/google-cloud-speech-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@
<artifactId>grpc-google-cloud-speech-v1p1beta1</artifactId>
<version>0.89.5-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-speech-v1p1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-speech-v2</artifactId>
<version>2.5.5-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-speech-v2:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-speech-v1</artifactId>
Expand All @@ -86,6 +91,11 @@
<artifactId>proto-google-cloud-speech-v1p1beta1</artifactId>
<version>0.89.5-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-speech-v1p1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-speech-v2</artifactId>
<version>2.5.5-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-speech-v2:current} -->
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
9 changes: 9 additions & 0 deletions java-speech/google-cloud-speech/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-speech-v1p1beta1</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-speech-v2</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-speech-v1beta1</artifactId>
Expand Down Expand Up @@ -87,6 +91,11 @@
<artifactId>grpc-google-cloud-speech-v1p1beta1</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-speech-v2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-speech-v1beta1</artifactId>
Expand Down
Loading

0 comments on commit 9e57987

Please sign in to comment.