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

Commit 3535079

Browse files
feat(generator): update protoc to v3.15.3 (#483)
This PR was generated using Autosynth. 🌈 Synth log will be available here: https://source.cloud.google.com/results/invocations/1a646fed-7599-4979-b98b-de2cd5bb79a0/targets - [ ] To automatically regenerate this PR, check this box. PiperOrigin-RevId: 359781040 Source-Link: googleapis/googleapis@f6dd7e4
1 parent aa06bb6 commit 3535079

File tree

14 files changed

+527
-5
lines changed

14 files changed

+527
-5
lines changed

proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/BatchPredictOperationMetadata.java

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,19 @@ public interface BatchPredictOutputInfoOrBuilder
144144
// @@protoc_insertion_point(interface_extends:google.cloud.automl.v1.BatchPredictOperationMetadata.BatchPredictOutputInfo)
145145
com.google.protobuf.MessageOrBuilder {
146146

147+
/**
148+
*
149+
*
150+
* <pre>
151+
* The full path of the Google Cloud Storage directory created, into which
152+
* the prediction output is written.
153+
* </pre>
154+
*
155+
* <code>string gcs_output_directory = 1;</code>
156+
*
157+
* @return Whether the gcsOutputDirectory field is set.
158+
*/
159+
boolean hasGcsOutputDirectory();
147160
/**
148161
*
149162
*
@@ -315,6 +328,21 @@ public OutputLocationCase getOutputLocationCase() {
315328
}
316329

317330
public static final int GCS_OUTPUT_DIRECTORY_FIELD_NUMBER = 1;
331+
/**
332+
*
333+
*
334+
* <pre>
335+
* The full path of the Google Cloud Storage directory created, into which
336+
* the prediction output is written.
337+
* </pre>
338+
*
339+
* <code>string gcs_output_directory = 1;</code>
340+
*
341+
* @return Whether the gcsOutputDirectory field is set.
342+
*/
343+
public boolean hasGcsOutputDirectory() {
344+
return outputLocationCase_ == 1;
345+
}
318346
/**
319347
*
320348
*
@@ -762,6 +790,22 @@ public Builder clearOutputLocation() {
762790
return this;
763791
}
764792

793+
/**
794+
*
795+
*
796+
* <pre>
797+
* The full path of the Google Cloud Storage directory created, into which
798+
* the prediction output is written.
799+
* </pre>
800+
*
801+
* <code>string gcs_output_directory = 1;</code>
802+
*
803+
* @return Whether the gcsOutputDirectory field is set.
804+
*/
805+
@java.lang.Override
806+
public boolean hasGcsOutputDirectory() {
807+
return outputLocationCase_ == 1;
808+
}
765809
/**
766810
*
767811
*

proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ExportDataOperationMetadata.java

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,19 @@ public interface ExportDataOutputInfoOrBuilder
126126
// @@protoc_insertion_point(interface_extends:google.cloud.automl.v1.ExportDataOperationMetadata.ExportDataOutputInfo)
127127
com.google.protobuf.MessageOrBuilder {
128128

129+
/**
130+
*
131+
*
132+
* <pre>
133+
* The full path of the Google Cloud Storage directory created, into which
134+
* the exported data is written.
135+
* </pre>
136+
*
137+
* <code>string gcs_output_directory = 1;</code>
138+
*
139+
* @return Whether the gcsOutputDirectory field is set.
140+
*/
141+
boolean hasGcsOutputDirectory();
129142
/**
130143
*
131144
*
@@ -296,6 +309,21 @@ public OutputLocationCase getOutputLocationCase() {
296309
}
297310

298311
public static final int GCS_OUTPUT_DIRECTORY_FIELD_NUMBER = 1;
312+
/**
313+
*
314+
*
315+
* <pre>
316+
* The full path of the Google Cloud Storage directory created, into which
317+
* the exported data is written.
318+
* </pre>
319+
*
320+
* <code>string gcs_output_directory = 1;</code>
321+
*
322+
* @return Whether the gcsOutputDirectory field is set.
323+
*/
324+
public boolean hasGcsOutputDirectory() {
325+
return outputLocationCase_ == 1;
326+
}
299327
/**
300328
*
301329
*
@@ -737,6 +765,22 @@ public Builder clearOutputLocation() {
737765
return this;
738766
}
739767

768+
/**
769+
*
770+
*
771+
* <pre>
772+
* The full path of the Google Cloud Storage directory created, into which
773+
* the exported data is written.
774+
* </pre>
775+
*
776+
* <code>string gcs_output_directory = 1;</code>
777+
*
778+
* @return Whether the gcsOutputDirectory field is set.
779+
*/
780+
@java.lang.Override
781+
public boolean hasGcsOutputDirectory() {
782+
return outputLocationCase_ == 1;
783+
}
740784
/**
741785
*
742786
*

proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/Image.java

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,23 @@ public DataCase getDataCase() {
162162
}
163163

164164
public static final int IMAGE_BYTES_FIELD_NUMBER = 1;
165+
/**
166+
*
167+
*
168+
* <pre>
169+
* Image content represented as a stream of bytes.
170+
* Note: As with all `bytes` fields, protobuffers use a pure binary
171+
* representation, whereas JSON representations use base64.
172+
* </pre>
173+
*
174+
* <code>bytes image_bytes = 1;</code>
175+
*
176+
* @return Whether the imageBytes field is set.
177+
*/
178+
@java.lang.Override
179+
public boolean hasImageBytes() {
180+
return dataCase_ == 1;
181+
}
165182
/**
166183
*
167184
*
@@ -601,6 +618,22 @@ public Builder clearData() {
601618
return this;
602619
}
603620

621+
/**
622+
*
623+
*
624+
* <pre>
625+
* Image content represented as a stream of bytes.
626+
* Note: As with all `bytes` fields, protobuffers use a pure binary
627+
* representation, whereas JSON representations use base64.
628+
* </pre>
629+
*
630+
* <code>bytes image_bytes = 1;</code>
631+
*
632+
* @return Whether the imageBytes field is set.
633+
*/
634+
public boolean hasImageBytes() {
635+
return dataCase_ == 1;
636+
}
604637
/**
605638
*
606639
*

proto-google-cloud-automl-v1/src/main/java/com/google/cloud/automl/v1/ImageOrBuilder.java

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,20 @@ public interface ImageOrBuilder
2323
// @@protoc_insertion_point(interface_extends:google.cloud.automl.v1.Image)
2424
com.google.protobuf.MessageOrBuilder {
2525

26+
/**
27+
*
28+
*
29+
* <pre>
30+
* Image content represented as a stream of bytes.
31+
* Note: As with all `bytes` fields, protobuffers use a pure binary
32+
* representation, whereas JSON representations use base64.
33+
* </pre>
34+
*
35+
* <code>bytes image_bytes = 1;</code>
36+
*
37+
* @return Whether the imageBytes field is set.
38+
*/
39+
boolean hasImageBytes();
2640
/**
2741
*
2842
*

proto-google-cloud-automl-v1beta1/clirr-ignored-differences.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,9 @@
1111
<className>com/google/cloud/automl/v1beta1/*OrBuilder</className>
1212
<method>boolean contains*(*)</method>
1313
</difference>
14+
<difference>
15+
<differenceType>7012</differenceType>
16+
<className>com/google/cloud/automl/v1beta1/*OrBuilder</className>
17+
<method>* has*(*)</method>
18+
</difference>
1419
</differences>

proto-google-cloud-automl-v1beta1/src/main/java/com/google/cloud/automl/v1beta1/BatchPredictOperationMetadata.java

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,19 @@ public interface BatchPredictOutputInfoOrBuilder
144144
// @@protoc_insertion_point(interface_extends:google.cloud.automl.v1beta1.BatchPredictOperationMetadata.BatchPredictOutputInfo)
145145
com.google.protobuf.MessageOrBuilder {
146146

147+
/**
148+
*
149+
*
150+
* <pre>
151+
* The full path of the Google Cloud Storage directory created, into which
152+
* the prediction output is written.
153+
* </pre>
154+
*
155+
* <code>string gcs_output_directory = 1;</code>
156+
*
157+
* @return Whether the gcsOutputDirectory field is set.
158+
*/
159+
boolean hasGcsOutputDirectory();
147160
/**
148161
*
149162
*
@@ -171,6 +184,19 @@ public interface BatchPredictOutputInfoOrBuilder
171184
*/
172185
com.google.protobuf.ByteString getGcsOutputDirectoryBytes();
173186

187+
/**
188+
*
189+
*
190+
* <pre>
191+
* The path of the BigQuery dataset created, in bq://projectId.bqDatasetId
192+
* format, into which the prediction output is written.
193+
* </pre>
194+
*
195+
* <code>string bigquery_output_dataset = 2;</code>
196+
*
197+
* @return Whether the bigqueryOutputDataset field is set.
198+
*/
199+
boolean hasBigqueryOutputDataset();
174200
/**
175201
*
176202
*
@@ -353,6 +379,21 @@ public OutputLocationCase getOutputLocationCase() {
353379
}
354380

355381
public static final int GCS_OUTPUT_DIRECTORY_FIELD_NUMBER = 1;
382+
/**
383+
*
384+
*
385+
* <pre>
386+
* The full path of the Google Cloud Storage directory created, into which
387+
* the prediction output is written.
388+
* </pre>
389+
*
390+
* <code>string gcs_output_directory = 1;</code>
391+
*
392+
* @return Whether the gcsOutputDirectory field is set.
393+
*/
394+
public boolean hasGcsOutputDirectory() {
395+
return outputLocationCase_ == 1;
396+
}
356397
/**
357398
*
358399
*
@@ -411,6 +452,21 @@ public com.google.protobuf.ByteString getGcsOutputDirectoryBytes() {
411452
}
412453

413454
public static final int BIGQUERY_OUTPUT_DATASET_FIELD_NUMBER = 2;
455+
/**
456+
*
457+
*
458+
* <pre>
459+
* The path of the BigQuery dataset created, in bq://projectId.bqDatasetId
460+
* format, into which the prediction output is written.
461+
* </pre>
462+
*
463+
* <code>string bigquery_output_dataset = 2;</code>
464+
*
465+
* @return Whether the bigqueryOutputDataset field is set.
466+
*/
467+
public boolean hasBigqueryOutputDataset() {
468+
return outputLocationCase_ == 2;
469+
}
414470
/**
415471
*
416472
*
@@ -898,6 +954,22 @@ public Builder clearOutputLocation() {
898954
return this;
899955
}
900956

957+
/**
958+
*
959+
*
960+
* <pre>
961+
* The full path of the Google Cloud Storage directory created, into which
962+
* the prediction output is written.
963+
* </pre>
964+
*
965+
* <code>string gcs_output_directory = 1;</code>
966+
*
967+
* @return Whether the gcsOutputDirectory field is set.
968+
*/
969+
@java.lang.Override
970+
public boolean hasGcsOutputDirectory() {
971+
return outputLocationCase_ == 1;
972+
}
901973
/**
902974
*
903975
*
@@ -1022,6 +1094,22 @@ public Builder setGcsOutputDirectoryBytes(com.google.protobuf.ByteString value)
10221094
return this;
10231095
}
10241096

1097+
/**
1098+
*
1099+
*
1100+
* <pre>
1101+
* The path of the BigQuery dataset created, in bq://projectId.bqDatasetId
1102+
* format, into which the prediction output is written.
1103+
* </pre>
1104+
*
1105+
* <code>string bigquery_output_dataset = 2;</code>
1106+
*
1107+
* @return Whether the bigqueryOutputDataset field is set.
1108+
*/
1109+
@java.lang.Override
1110+
public boolean hasBigqueryOutputDataset() {
1111+
return outputLocationCase_ == 2;
1112+
}
10251113
/**
10261114
*
10271115
*

0 commit comments

Comments
 (0)