Skip to content

Commit

Permalink
chore: Integrate new gapic-generator-java and rules_gapic (#673)
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: googleapis/googleapis-gen@e04cea2
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZTA0Y2VhMjBkMGQxMmViNWMzYmRiMzYwYTllNzJiNjU0ZWRjYjYzOCJ9
  • Loading branch information
gcf-owl-bot[bot] committed Jun 14, 2022
1 parent c7daa58 commit d6883c5
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ public final ListReservationsPagedResponse listReservations(ListReservationsRequ
* while (true) {
* ListReservationsResponse response =
* reservationServiceClient.listReservationsCallable().call(request);
* for (Reservation element : response.getResponsesList()) {
* for (Reservation element : response.getReservationsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -991,7 +991,7 @@ public final ListCapacityCommitmentsPagedResponse listCapacityCommitments(
* while (true) {
* ListCapacityCommitmentsResponse response =
* reservationServiceClient.listCapacityCommitmentsCallable().call(request);
* for (CapacityCommitment element : response.getResponsesList()) {
* for (CapacityCommitment element : response.getCapacityCommitmentsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -2093,7 +2093,7 @@ public final ListAssignmentsPagedResponse listAssignments(ListAssignmentsRequest
* while (true) {
* ListAssignmentsResponse response =
* reservationServiceClient.listAssignmentsCallable().call(request);
* for (Assignment element : response.getResponsesList()) {
* for (Assignment element : response.getAssignmentsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -2530,7 +2530,7 @@ public final SearchAssignmentsPagedResponse searchAssignments(SearchAssignmentsR
* while (true) {
* SearchAssignmentsResponse response =
* reservationServiceClient.searchAssignmentsCallable().call(request);
* for (Assignment element : response.getResponsesList()) {
* for (Assignment element : response.getAssignmentsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -2797,7 +2797,7 @@ public final SearchAllAssignmentsPagedResponse searchAllAssignments(
* while (true) {
* SearchAllAssignmentsResponse response =
* reservationServiceClient.searchAllAssignmentsCallable().call(request);
* for (Assignment element : response.getResponsesList()) {
* for (Assignment element : response.getAssignmentsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down

0 comments on commit d6883c5

Please sign in to comment.