Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: [parallelstore] new module for parallelstore v1 #11272

Merged
merged 2 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions generation_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1612,6 +1612,7 @@ libraries:
cloud_api: true
GAPICs:
- proto_path: google/cloud/parallelstore/v1beta
- proto_path: google/cloud/parallelstore/v1
requires_billing: true
- api_shortname: phishingprotection
name_pretty: Phishing Protection
Expand Down
4 changes: 1 addition & 3 deletions java-parallelstore/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ If you are using Maven with [BOM][libraries-bom], add this to your pom.xml file:

If you are using Maven without the BOM, add this to your dependencies:

<!-- {x-version-update-start:google-cloud-parallelstore:released} -->

```xml
<dependency>
Expand All @@ -61,7 +60,6 @@ If you are using SBT, add this to your dependencies:
```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-parallelstore" % "0.15.0"
```
<!-- {x-version-update-end} -->

## Authentication

Expand Down Expand Up @@ -202,7 +200,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/google-cloud-java/java11.html
[stability-image]: https://img.shields.io/badge/stability-preview-yellow
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-parallelstore.svg
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-parallelstore/0.14.0
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-parallelstore/0.15.0
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
[auth-scopes]: https://developers.google.com/identity/protocols/oauth2/scopes
[predefined-iam-roles]: https://cloud.google.com/iam/docs/understanding-roles#predefined_roles
Expand Down
10 changes: 10 additions & 0 deletions java-parallelstore/google-cloud-parallelstore-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,21 @@
<artifactId>grpc-google-cloud-parallelstore-v1beta</artifactId>
<version>0.16.0-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-parallelstore-v1beta:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-parallelstore-v1</artifactId>
<version>0.16.0-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-parallelstore-v1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-parallelstore-v1beta</artifactId>
<version>0.16.0-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-parallelstore-v1beta:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-parallelstore-v1</artifactId>
<version>0.16.0-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-parallelstore-v1:current} -->
</dependency>
</dependencies>
</dependencyManagement>
</project>
9 changes: 9 additions & 0 deletions java-parallelstore/google-cloud-parallelstore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@
<artifactId>proto-google-common-protos</artifactId>
</dependency>

<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-parallelstore-v1</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-parallelstore-v1beta</artifactId>
Expand All @@ -66,6 +70,11 @@
<artifactId>grpc-google-common-protos</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-parallelstore-v1</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-iam-v1</artifactId>
Expand Down
Loading
Loading