Skip to content

Commit

Permalink
chore: Integrate new gapic-generator-java and rules_gapic (#747)
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 63a7733 commit aba1ea3
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ public final ListDatasetsPagedResponse listDatasets(ListDatasetsRequest request)
* while (true) {
* ListDatasetsResponse response =
* dataLabelingServiceClient.listDatasetsCallable().call(request);
* for (Dataset element : response.getResponsesList()) {
* for (Dataset element : response.getDatasetsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -1325,7 +1325,7 @@ public final ListDataItemsPagedResponse listDataItems(ListDataItemsRequest reque
* while (true) {
* ListDataItemsResponse response =
* dataLabelingServiceClient.listDataItemsCallable().call(request);
* for (DataItem element : response.getResponsesList()) {
* for (DataItem element : response.getDataItemsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -1599,7 +1599,7 @@ public final ListAnnotatedDatasetsPagedResponse listAnnotatedDatasets(
* while (true) {
* ListAnnotatedDatasetsResponse response =
* dataLabelingServiceClient.listAnnotatedDatasetsCallable().call(request);
* for (AnnotatedDataset element : response.getResponsesList()) {
* for (AnnotatedDataset element : response.getAnnotatedDatasetsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -2410,7 +2410,7 @@ public final ListExamplesPagedResponse listExamples(ListExamplesRequest request)
* while (true) {
* ListExamplesResponse response =
* dataLabelingServiceClient.listExamplesCallable().call(request);
* for (Example element : response.getResponsesList()) {
* for (Example element : response.getExamplesList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -2795,7 +2795,7 @@ public final ListAnnotationSpecSetsPagedResponse listAnnotationSpecSets(
* while (true) {
* ListAnnotationSpecSetsResponse response =
* dataLabelingServiceClient.listAnnotationSpecSetsCallable().call(request);
* for (AnnotationSpecSet element : response.getResponsesList()) {
* for (AnnotationSpecSet element : response.getAnnotationSpecSetsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -3296,7 +3296,7 @@ public final ListInstructionsPagedResponse listInstructions(ListInstructionsRequ
* while (true) {
* ListInstructionsResponse response =
* dataLabelingServiceClient.listInstructionsCallable().call(request);
* for (Instruction element : response.getResponsesList()) {
* for (Instruction element : response.getInstructionsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -3725,7 +3725,7 @@ public final SearchEvaluationsPagedResponse searchEvaluations(SearchEvaluationsR
* while (true) {
* SearchEvaluationsResponse response =
* dataLabelingServiceClient.searchEvaluationsCallable().call(request);
* for (Evaluation element : response.getResponsesList()) {
* for (Evaluation element : response.getEvaluationsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -3895,7 +3895,7 @@ public final SearchExampleComparisonsPagedResponse searchExampleComparisons(
* SearchExampleComparisonsResponse response =
* dataLabelingServiceClient.searchExampleComparisonsCallable().call(request);
* for (SearchExampleComparisonsResponse.ExampleComparison element :
* response.getResponsesList()) {
* response.getExampleComparisonsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down Expand Up @@ -4705,7 +4705,7 @@ public final ListEvaluationJobsPagedResponse listEvaluationJobs(
* while (true) {
* ListEvaluationJobsResponse response =
* dataLabelingServiceClient.listEvaluationJobsCallable().call(request);
* for (EvaluationJob element : response.getResponsesList()) {
* for (EvaluationJob element : response.getEvaluationJobsList()) {
* // doThingsWith(element);
* }
* String nextPageToken = response.getNextPageToken();
Expand Down

0 comments on commit aba1ea3

Please sign in to comment.