Skip to content
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 3 additions & 3 deletions java-retail/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ If you are using Maven, add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-retail</artifactId>
<version>2.8.0</version>
<version>2.9.0</version>
</dependency>
```

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

```Groovy
implementation 'com.google.cloud:google-cloud-retail:2.8.0'
implementation 'com.google.cloud:google-cloud-retail:2.9.0'
```

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

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-retail" % "2.8.0"
libraryDependencies += "com.google.cloud" % "google-cloud-retail" % "2.9.0"
```

## Authentication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ public final GetDefaultBranchResponse getDefaultBranch(GetDefaultBranchRequest r
* }</pre>
*
* @param name Required. Full CompletionConfig resource name. Format:
* projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/completionConfig
* `projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/completionConfig`
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final CompletionConfig getCompletionConfig(CompletionConfigName name) {
Expand Down Expand Up @@ -844,7 +844,7 @@ public final CompletionConfig getCompletionConfig(CompletionConfigName name) {
* }</pre>
*
* @param name Required. Full CompletionConfig resource name. Format:
* projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/completionConfig
* `projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/completionConfig`
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final CompletionConfig getCompletionConfig(String name) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
/**
* Service Description: Auto-completion service for retail.
*
* <p>This feature is only available for users who have Retail Search enabled. Please enable Retail
* Search on Cloud Console before using this feature.
* <p>This feature is only available for users who have Retail Search enabled. Enable Retail Search
* on Cloud Console before using this feature.
*
* <p>This class provides the ability to make remote calls to the backing service through method
* calls that map to API methods. Sample code to get started:
Expand Down Expand Up @@ -213,8 +213,8 @@ public final OperationsClient getHttpJsonOperationsClient() {
/**
* Completes the specified prefix with keyword suggestions.
*
* <p>This feature is only available for users who have Retail Search enabled. Please enable
* Retail Search on Cloud Console before using this feature.
* <p>This feature is only available for users who have Retail Search enabled. Enable Retail
* Search on Cloud Console before using this feature.
*
* <p>Sample code:
*
Expand Down Expand Up @@ -250,8 +250,8 @@ public final CompleteQueryResponse completeQuery(CompleteQueryRequest request) {
/**
* Completes the specified prefix with keyword suggestions.
*
* <p>This feature is only available for users who have Retail Search enabled. Please enable
* Retail Search on Cloud Console before using this feature.
* <p>This feature is only available for users who have Retail Search enabled. Enable Retail
* Search on Cloud Console before using this feature.
*
* <p>Sample code:
*
Expand Down Expand Up @@ -292,8 +292,8 @@ public final UnaryCallable<CompleteQueryRequest, CompleteQueryResponse> complete
* <p>The operation is successfully finished only after the imported suggestions are indexed
* successfully and ready for serving. The process takes hours.
*
* <p>This feature is only available for users who have Retail Search enabled. Please enable
* Retail Search on Cloud Console before using this feature.
* <p>This feature is only available for users who have Retail Search enabled. Enable Retail
* Search on Cloud Console before using this feature.
*
* <p>Sample code:
*
Expand Down Expand Up @@ -332,8 +332,8 @@ public final UnaryCallable<CompleteQueryRequest, CompleteQueryResponse> complete
* <p>The operation is successfully finished only after the imported suggestions are indexed
* successfully and ready for serving. The process takes hours.
*
* <p>This feature is only available for users who have Retail Search enabled. Please enable
* Retail Search on Cloud Console before using this feature.
* <p>This feature is only available for users who have Retail Search enabled. Enable Retail
* Search on Cloud Console before using this feature.
*
* <p>Sample code:
*
Expand Down Expand Up @@ -372,8 +372,8 @@ public final UnaryCallable<CompleteQueryRequest, CompleteQueryResponse> complete
* <p>The operation is successfully finished only after the imported suggestions are indexed
* successfully and ready for serving. The process takes hours.
*
* <p>This feature is only available for users who have Retail Search enabled. Please enable
* Retail Search on Cloud Console before using this feature.
* <p>This feature is only available for users who have Retail Search enabled. Enable Retail
* Search on Cloud Console before using this feature.
*
* <p>Sample code:
*
Expand Down
Loading