Skip to content

Commit aba1ea3

Browse files
chore: Integrate new gapic-generator-java and rules_gapic (#747)
- [ ] 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 63a7733 commit aba1ea3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

java-datalabeling/google-cloud-datalabeling/src/main/java/com/google/cloud/datalabeling/v1beta1/DataLabelingServiceClient.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ public final ListDatasetsPagedResponse listDatasets(ListDatasetsRequest request)
517517
* while (true) {
518518
* ListDatasetsResponse response =
519519
* dataLabelingServiceClient.listDatasetsCallable().call(request);
520-
* for (Dataset element : response.getResponsesList()) {
520+
* for (Dataset element : response.getDatasetsList()) {
521521
* // doThingsWith(element);
522522
* }
523523
* String nextPageToken = response.getNextPageToken();
@@ -1325,7 +1325,7 @@ public final ListDataItemsPagedResponse listDataItems(ListDataItemsRequest reque
13251325
* while (true) {
13261326
* ListDataItemsResponse response =
13271327
* dataLabelingServiceClient.listDataItemsCallable().call(request);
1328-
* for (DataItem element : response.getResponsesList()) {
1328+
* for (DataItem element : response.getDataItemsList()) {
13291329
* // doThingsWith(element);
13301330
* }
13311331
* String nextPageToken = response.getNextPageToken();
@@ -1599,7 +1599,7 @@ public final ListAnnotatedDatasetsPagedResponse listAnnotatedDatasets(
15991599
* while (true) {
16001600
* ListAnnotatedDatasetsResponse response =
16011601
* dataLabelingServiceClient.listAnnotatedDatasetsCallable().call(request);
1602-
* for (AnnotatedDataset element : response.getResponsesList()) {
1602+
* for (AnnotatedDataset element : response.getAnnotatedDatasetsList()) {
16031603
* // doThingsWith(element);
16041604
* }
16051605
* String nextPageToken = response.getNextPageToken();
@@ -2410,7 +2410,7 @@ public final ListExamplesPagedResponse listExamples(ListExamplesRequest request)
24102410
* while (true) {
24112411
* ListExamplesResponse response =
24122412
* dataLabelingServiceClient.listExamplesCallable().call(request);
2413-
* for (Example element : response.getResponsesList()) {
2413+
* for (Example element : response.getExamplesList()) {
24142414
* // doThingsWith(element);
24152415
* }
24162416
* String nextPageToken = response.getNextPageToken();
@@ -2795,7 +2795,7 @@ public final ListAnnotationSpecSetsPagedResponse listAnnotationSpecSets(
27952795
* while (true) {
27962796
* ListAnnotationSpecSetsResponse response =
27972797
* dataLabelingServiceClient.listAnnotationSpecSetsCallable().call(request);
2798-
* for (AnnotationSpecSet element : response.getResponsesList()) {
2798+
* for (AnnotationSpecSet element : response.getAnnotationSpecSetsList()) {
27992799
* // doThingsWith(element);
28002800
* }
28012801
* String nextPageToken = response.getNextPageToken();
@@ -3296,7 +3296,7 @@ public final ListInstructionsPagedResponse listInstructions(ListInstructionsRequ
32963296
* while (true) {
32973297
* ListInstructionsResponse response =
32983298
* dataLabelingServiceClient.listInstructionsCallable().call(request);
3299-
* for (Instruction element : response.getResponsesList()) {
3299+
* for (Instruction element : response.getInstructionsList()) {
33003300
* // doThingsWith(element);
33013301
* }
33023302
* String nextPageToken = response.getNextPageToken();
@@ -3725,7 +3725,7 @@ public final SearchEvaluationsPagedResponse searchEvaluations(SearchEvaluationsR
37253725
* while (true) {
37263726
* SearchEvaluationsResponse response =
37273727
* dataLabelingServiceClient.searchEvaluationsCallable().call(request);
3728-
* for (Evaluation element : response.getResponsesList()) {
3728+
* for (Evaluation element : response.getEvaluationsList()) {
37293729
* // doThingsWith(element);
37303730
* }
37313731
* String nextPageToken = response.getNextPageToken();
@@ -3895,7 +3895,7 @@ public final SearchExampleComparisonsPagedResponse searchExampleComparisons(
38953895
* SearchExampleComparisonsResponse response =
38963896
* dataLabelingServiceClient.searchExampleComparisonsCallable().call(request);
38973897
* for (SearchExampleComparisonsResponse.ExampleComparison element :
3898-
* response.getResponsesList()) {
3898+
* response.getExampleComparisonsList()) {
38993899
* // doThingsWith(element);
39003900
* }
39013901
* String nextPageToken = response.getNextPageToken();
@@ -4705,7 +4705,7 @@ public final ListEvaluationJobsPagedResponse listEvaluationJobs(
47054705
* while (true) {
47064706
* ListEvaluationJobsResponse response =
47074707
* dataLabelingServiceClient.listEvaluationJobsCallable().call(request);
4708-
* for (EvaluationJob element : response.getResponsesList()) {
4708+
* for (EvaluationJob element : response.getEvaluationJobsList()) {
47094709
* // doThingsWith(element);
47104710
* }
47114711
* String nextPageToken = response.getNextPageToken();

0 commit comments

Comments
 (0)