Skip to content

Commit 7ec6566

Browse files
chore: Integrate new gapic-generator-java and rules_gapic (#186)
- [ ] Regenerate this pull request now. PiperOrigin-RevId: 454027580 Source-Link: googleapis/googleapis@1b22277 Source-Link: https://github.com/googleapis/googleapis-gen/commit/e04cea20d0d12eb5c3bdb360a9e72b654edcb638 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZTA0Y2VhMjBkMGQxMmViNWMzYmRiMzYwYTllNzJiNjU0ZWRjYjYzOCJ9
1 parent c083464 commit 7ec6566

File tree

1 file changed

+3
-3
lines changed
  • java-private-catalog/google-cloud-private-catalog/src/main/java/com/google/cloud/privatecatalog/v1beta1

1 file changed

+3
-3
lines changed

java-private-catalog/google-cloud-private-catalog/src/main/java/com/google/cloud/privatecatalog/v1beta1/PrivateCatalogClient.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public final SearchCatalogsPagedResponse searchCatalogs(SearchCatalogsRequest re
257257
* while (true) {
258258
* SearchCatalogsResponse response =
259259
* privateCatalogClient.searchCatalogsCallable().call(request);
260-
* for (Catalog element : response.getResponsesList()) {
260+
* for (Catalog element : response.getCatalogsList()) {
261261
* // doThingsWith(element);
262262
* }
263263
* String nextPageToken = response.getNextPageToken();
@@ -359,7 +359,7 @@ public final SearchProductsPagedResponse searchProducts(SearchProductsRequest re
359359
* while (true) {
360360
* SearchProductsResponse response =
361361
* privateCatalogClient.searchProductsCallable().call(request);
362-
* for (Product element : response.getResponsesList()) {
362+
* for (Product element : response.getProductsList()) {
363363
* // doThingsWith(element);
364364
* }
365365
* String nextPageToken = response.getNextPageToken();
@@ -461,7 +461,7 @@ public final SearchVersionsPagedResponse searchVersions(SearchVersionsRequest re
461461
* while (true) {
462462
* SearchVersionsResponse response =
463463
* privateCatalogClient.searchVersionsCallable().call(request);
464-
* for (Version element : response.getResponsesList()) {
464+
* for (Version element : response.getVersionsList()) {
465465
* // doThingsWith(element);
466466
* }
467467
* String nextPageToken = response.getNextPageToken();

0 commit comments

Comments
 (0)