feat: [spanneradapter] new module for spanneradapter by cloud-java-bot · Pull Request #11519 · googleapis/google-cloud-java · GitHub
Skip to content
Closed
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
The table of contents is too big for display.
Diff view
Diff view
7 changes: 7 additions & 0 deletions gapic-libraries-bom/pom.xml
19 changes: 18 additions & 1 deletion generation_config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
gapic_generator_version: 2.55.1
googleapis_commitish: c8280d7c3c36cb97aac54d661dcdfc4076ac4d32
googleapis_commitish: 4631c76028fc2451ed3d86ce4349c7eafcac31fb
libraries_bom_version: 26.56.0

# the libraries are ordered with respect to library name, which is
Expand Down Expand Up @@ -2237,6 +2237,23 @@ libraries:
requires_billing: true
library_name: shopping-merchant-reviews

- api_shortname: spanneradapter
name_pretty: Cloud Spanner Adapter API
product_documentation: https://cloud.google.com/spanner
api_description: The Cloud Spanner Adapter service allows native drivers of supported
database dialects to interact directly with Cloud Spanner by wrapping the underlying
wire protocol used by the driver in a gRPC stream.
client_documentation:
https://cloud.google.com/java/docs/reference/google-cloud-spanneradapter/latest/overview
release_level: preview
distribution_name: com.google.cloud:google-cloud-spanneradapter
api_id: spanner.googleapis.com
library_type: GAPIC_AUTO
group_id: com.google.cloud
cloud_api: true
GAPICs:
- proto_path: google/spanner/adapter/v1
requires_billing: true
- api_shortname: speech
name_pretty: Cloud Speech
product_documentation: https://cloud.google.com/speech-to-text/docs/
Expand Down
8 changes: 4 additions & 4 deletions java-aiplatform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,20 @@ If you are using Maven without the BOM, add this to your dependencies:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-aiplatform</artifactId>
<version>3.60.0</version>
<version>3.61.0</version>
</dependency>
```

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

```Groovy
implementation 'com.google.cloud:google-cloud-aiplatform:3.60.0'
implementation 'com.google.cloud:google-cloud-aiplatform:3.61.0'
```

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

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-aiplatform" % "3.60.0"
libraryDependencies += "com.google.cloud" % "google-cloud-aiplatform" % "3.61.0"
```

## Authentication
Expand Down Expand Up @@ -194,7 +194,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-stable-green
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-aiplatform.svg
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-aiplatform/3.60.0
[maven-version-link]: https://central.sonatype.com/artifact/com.google.cloud/google-cloud-aiplatform/3.61.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
Original file line number Diff line number Diff line change
Expand Up @@ -1041,6 +1041,7 @@ public final OperationFuture<Empty, DeleteOperationMetadata> deleteReasoningEngi
* .setName(
* ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]")
* .toString())
* .setForce(true)
* .build();
* reasoningEngineServiceClient.deleteReasoningEngineAsync(request).get();
* }
Expand Down Expand Up @@ -1073,6 +1074,7 @@ public final OperationFuture<Empty, DeleteOperationMetadata> deleteReasoningEngi
* .setName(
* ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]")
* .toString())
* .setForce(true)
* .build();
* OperationFuture<Empty, DeleteOperationMetadata> future =
* reasoningEngineServiceClient.deleteReasoningEngineOperationCallable().futureCall(request);
Expand Down Expand Up @@ -1105,6 +1107,7 @@ public final OperationFuture<Empty, DeleteOperationMetadata> deleteReasoningEngi
* .setName(
* ReasoningEngineName.of("[PROJECT]", "[LOCATION]", "[REASONING_ENGINE]")
* .toString())
* .setForce(true)
* .build();
* ApiFuture<Operation> future =
* reasoningEngineServiceClient.deleteReasoningEngineCallable().futureCall(request);
Expand Down
Loading