Skip to content

Commit

Permalink
chore: Integrate new gapic-generator-java and rules_gapic (#666)
Browse files Browse the repository at this point in the history
- [ ] 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
  • Loading branch information
gcf-owl-bot[bot] authored Jun 13, 2022
1 parent 1752d9a commit 52ed306
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ public final ListBillingAccountsPagedResponse listBillingAccounts(
* while (true) {
* ListBillingAccountsResponse response =
* cloudBillingClient.listBillingAccountsCallable().call(request);
* for (BillingAccount element : response.getResponsesList()) {
* for (BillingAccount element : response.getBillingAccountsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -750,7 +750,7 @@ public final ListProjectBillingInfoPagedResponse listProjectBillingInfo(
* while (true) {
* ListProjectBillingInfoResponse response =
* cloudBillingClient.listProjectBillingInfoCallable().call(request);
* for (ProjectBillingInfo element : response.getResponsesList()) {
* for (ProjectBillingInfo element : response.getProjectBillingInfoList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public final ListServicesPagedResponse listServices(ListServicesRequest request)
* .build();
* while (true) {
* ListServicesResponse response = cloudCatalogClient.listServicesCallable().call(request);
* for (Service element : response.getResponsesList()) {
* for (Service element : response.getServicesList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -399,7 +399,7 @@ public final UnaryCallable<ListSkusRequest, ListSkusPagedResponse> listSkusPaged
* .build();
* while (true) {
* ListSkusResponse response = cloudCatalogClient.listSkusCallable().call(request);
* for (Sku element : response.getResponsesList()) {
* for (Sku element : response.getSkusList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down

0 comments on commit 52ed306

Please sign in to comment.