Skip to content
This repository was archived by the owner on Sep 27, 2023. It is now read-only.

Commit 91724e9

Browse files
chore: Integrate new gapic-generator-java and rules_gapic (#673)
- [ ] 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 f9bc8c7 commit 91724e9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

google-cloud-bigqueryreservation/src/main/java/com/google/cloud/bigquery/reservation/v1/ReservationServiceClient.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ public final ListReservationsPagedResponse listReservations(ListReservationsRequ
428428
* while (true) {
429429
* ListReservationsResponse response =
430430
* reservationServiceClient.listReservationsCallable().call(request);
431-
* for (Reservation element : response.getResponsesList()) {
431+
* for (Reservation element : response.getReservationsList()) {
432432
* // doThingsWith(element);
433433
* }
434434
* String nextPageToken = response.getNextPageToken();
@@ -991,7 +991,7 @@ public final ListCapacityCommitmentsPagedResponse listCapacityCommitments(
991991
* while (true) {
992992
* ListCapacityCommitmentsResponse response =
993993
* reservationServiceClient.listCapacityCommitmentsCallable().call(request);
994-
* for (CapacityCommitment element : response.getResponsesList()) {
994+
* for (CapacityCommitment element : response.getCapacityCommitmentsList()) {
995995
* // doThingsWith(element);
996996
* }
997997
* String nextPageToken = response.getNextPageToken();
@@ -2093,7 +2093,7 @@ public final ListAssignmentsPagedResponse listAssignments(ListAssignmentsRequest
20932093
* while (true) {
20942094
* ListAssignmentsResponse response =
20952095
* reservationServiceClient.listAssignmentsCallable().call(request);
2096-
* for (Assignment element : response.getResponsesList()) {
2096+
* for (Assignment element : response.getAssignmentsList()) {
20972097
* // doThingsWith(element);
20982098
* }
20992099
* String nextPageToken = response.getNextPageToken();
@@ -2530,7 +2530,7 @@ public final SearchAssignmentsPagedResponse searchAssignments(SearchAssignmentsR
25302530
* while (true) {
25312531
* SearchAssignmentsResponse response =
25322532
* reservationServiceClient.searchAssignmentsCallable().call(request);
2533-
* for (Assignment element : response.getResponsesList()) {
2533+
* for (Assignment element : response.getAssignmentsList()) {
25342534
* // doThingsWith(element);
25352535
* }
25362536
* String nextPageToken = response.getNextPageToken();
@@ -2797,7 +2797,7 @@ public final SearchAllAssignmentsPagedResponse searchAllAssignments(
27972797
* while (true) {
27982798
* SearchAllAssignmentsResponse response =
27992799
* reservationServiceClient.searchAllAssignmentsCallable().call(request);
2800-
* for (Assignment element : response.getResponsesList()) {
2800+
* for (Assignment element : response.getAssignmentsList()) {
28012801
* // doThingsWith(element);
28022802
* }
28032803
* String nextPageToken = response.getNextPageToken();

0 commit comments

Comments
 (0)