Skip to content

Commit 580a683

Browse files
feat: [retail] support async write mode for WriteUserEvent API (#8918)
- [ ] Regenerate this pull request now. feat: support collect and import GA4 event format with prebuilt whistle rule feat: support exact searchable and retrievable in catalog attribute config feat: deprecate retrievable_fields in product attribute feat: support diversity type in serving config feat: allow set feed id in merchant center link feat: support data output to GCS docs: keep the API doc up-to-date with recent changes PiperOrigin-RevId: 495893148 Source-Link: https://togithub.com/googleapis/googleapis/commit/02dcec304088c964f198d7732e9c1d441d72d2db Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/996aa46fe482ef807a33b56d15b28ad55fbac7b9 Copy-Tag: eyJwIjoiamF2YS1yZXRhaWwvLk93bEJvdC55YW1sIiwiaCI6Ijk5NmFhNDZmZTQ4MmVmODA3YTMzYjU2ZDE1YjI4YWQ1NWZiYWM3YjkifQ== BEGIN_NESTED_COMMIT feat: [retail] support async write mode for WriteUserEvent API feat: support collect GA4 event format with prebuilt whistle rule feat: support exact searchable and retrievable in catalog attribute config feat: deprecate retrievable_fields in product attribute feat: support diversity type in serving config docs: keep the API doc up-to-date with recent changes PiperOrigin-RevId: 495660792 Source-Link: https://togithub.com/googleapis/googleapis/commit/0dbe50f7605520f48f0ce2f4359c1460391b5820 Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/59b8ced066ba19657e06d78c201e620ca6ab79c2 Copy-Tag: eyJwIjoiamF2YS1yZXRhaWwvLk93bEJvdC55YW1sIiwiaCI6IjU5YjhjZWQwNjZiYTE5NjU3ZTA2ZDc4YzIwMWU2MjBjYTZhYjc5YzIifQ== END_NESTED_COMMIT BEGIN_NESTED_COMMIT feat: [retail] support async write mode for WriteUserEvent API feat: support collect and import GA4 event format with prebuilt whistle rule feat: support exact searchable and retrievable in catalog attribute config feat: deprecate retrievable_fields in product attribute feat: support diversity type in serving config feat: allow set feed id in merchant center link feat: support batch remove catalog attribute config feat: support attribute suggestion in autocomplete feat: support data output to GCS feat: expose the local inventory data in product data retrieval feat: return personal product labels in search response docs: keep the API doc up-to-date with recent changes PiperOrigin-RevId: 495450955 Source-Link: https://togithub.com/googleapis/googleapis/commit/4e4e58c442ca9f7b08b36bb8788c0d63ef70484e Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/c8c05bffff889a77614526e4d3b90d41c75c31bc Copy-Tag: eyJwIjoiamF2YS1yZXRhaWwvLk93bEJvdC55YW1sIiwiaCI6ImM4YzA1YmZmZmY4ODlhNzc2MTQ1MjZlNGQzYjkwZDQxYzc1YzMxYmMifQ== END_NESTED_COMMIT
1 parent 765a8bf commit 580a683

File tree

300 files changed

+24605
-4637
lines changed

Some content is hidden

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

300 files changed

+24605
-4637
lines changed

java-retail/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ If you are using Maven, add this to your pom.xml file:
1919
<dependency>
2020
<groupId>com.google.cloud</groupId>
2121
<artifactId>google-cloud-retail</artifactId>
22-
<version>2.8.0</version>
22+
<version>2.9.0</version>
2323
</dependency>
2424
```
2525

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

2828
```Groovy
29-
implementation 'com.google.cloud:google-cloud-retail:2.8.0'
29+
implementation 'com.google.cloud:google-cloud-retail:2.9.0'
3030
```
3131

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

3434
```Scala
35-
libraryDependencies += "com.google.cloud" % "google-cloud-retail" % "2.8.0"
35+
libraryDependencies += "com.google.cloud" % "google-cloud-retail" % "2.9.0"
3636
```
3737

3838
## Authentication

java-retail/google-cloud-retail/src/main/java/com/google/cloud/retail/v2/CatalogServiceClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ public final GetDefaultBranchResponse getDefaultBranch(GetDefaultBranchRequest r
814814
* }</pre>
815815
*
816816
* @param name Required. Full CompletionConfig resource name. Format:
817-
* projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/completionConfig
817+
* `projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/completionConfig`
818818
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
819819
*/
820820
public final CompletionConfig getCompletionConfig(CompletionConfigName name) {
@@ -844,7 +844,7 @@ public final CompletionConfig getCompletionConfig(CompletionConfigName name) {
844844
* }</pre>
845845
*
846846
* @param name Required. Full CompletionConfig resource name. Format:
847-
* projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/completionConfig
847+
* `projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/completionConfig`
848848
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
849849
*/
850850
public final CompletionConfig getCompletionConfig(String name) {

java-retail/google-cloud-retail/src/main/java/com/google/cloud/retail/v2/CompletionServiceClient.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
/**
3434
* Service Description: Auto-completion service for retail.
3535
*
36-
* <p>This feature is only available for users who have Retail Search enabled. Please enable Retail
37-
* Search on Cloud Console before using this feature.
36+
* <p>This feature is only available for users who have Retail Search enabled. Enable Retail Search
37+
* on Cloud Console before using this feature.
3838
*
3939
* <p>This class provides the ability to make remote calls to the backing service through method
4040
* calls that map to API methods. Sample code to get started:
@@ -213,8 +213,8 @@ public final OperationsClient getHttpJsonOperationsClient() {
213213
/**
214214
* Completes the specified prefix with keyword suggestions.
215215
*
216-
* <p>This feature is only available for users who have Retail Search enabled. Please enable
217-
* Retail Search on Cloud Console before using this feature.
216+
* <p>This feature is only available for users who have Retail Search enabled. Enable Retail
217+
* Search on Cloud Console before using this feature.
218218
*
219219
* <p>Sample code:
220220
*
@@ -250,8 +250,8 @@ public final CompleteQueryResponse completeQuery(CompleteQueryRequest request) {
250250
/**
251251
* Completes the specified prefix with keyword suggestions.
252252
*
253-
* <p>This feature is only available for users who have Retail Search enabled. Please enable
254-
* Retail Search on Cloud Console before using this feature.
253+
* <p>This feature is only available for users who have Retail Search enabled. Enable Retail
254+
* Search on Cloud Console before using this feature.
255255
*
256256
* <p>Sample code:
257257
*
@@ -292,8 +292,8 @@ public final UnaryCallable<CompleteQueryRequest, CompleteQueryResponse> complete
292292
* <p>The operation is successfully finished only after the imported suggestions are indexed
293293
* successfully and ready for serving. The process takes hours.
294294
*
295-
* <p>This feature is only available for users who have Retail Search enabled. Please enable
296-
* Retail Search on Cloud Console before using this feature.
295+
* <p>This feature is only available for users who have Retail Search enabled. Enable Retail
296+
* Search on Cloud Console before using this feature.
297297
*
298298
* <p>Sample code:
299299
*
@@ -332,8 +332,8 @@ public final UnaryCallable<CompleteQueryRequest, CompleteQueryResponse> complete
332332
* <p>The operation is successfully finished only after the imported suggestions are indexed
333333
* successfully and ready for serving. The process takes hours.
334334
*
335-
* <p>This feature is only available for users who have Retail Search enabled. Please enable
336-
* Retail Search on Cloud Console before using this feature.
335+
* <p>This feature is only available for users who have Retail Search enabled. Enable Retail
336+
* Search on Cloud Console before using this feature.
337337
*
338338
* <p>Sample code:
339339
*
@@ -372,8 +372,8 @@ public final UnaryCallable<CompleteQueryRequest, CompleteQueryResponse> complete
372372
* <p>The operation is successfully finished only after the imported suggestions are indexed
373373
* successfully and ready for serving. The process takes hours.
374374
*
375-
* <p>This feature is only available for users who have Retail Search enabled. Please enable
376-
* Retail Search on Cloud Console before using this feature.
375+
* <p>This feature is only available for users who have Retail Search enabled. Enable Retail
376+
* Search on Cloud Console before using this feature.
377377
*
378378
* <p>Sample code:
379379
*

0 commit comments

Comments
 (0)