Synchronize new proto/yaml changes.
PiperOrigin-RevId: 189973820
This commit is contained in:
parent
f18d20ea48
commit
abc421eeb5
|
|
@ -599,6 +599,16 @@ message AnnotateImageResponse {
|
|||
ImageAnnotationContext context = 21;
|
||||
}
|
||||
|
||||
// Response to a single file annotation request. A file may contain one or more
|
||||
// images, which individually have their own responses.
|
||||
message AnnotateFileResponse {
|
||||
// Information about the file for which this response is generated.
|
||||
InputConfig input_config = 1;
|
||||
|
||||
// Individual responses to images found within the file.
|
||||
repeated AnnotateImageResponse responses = 2;
|
||||
}
|
||||
|
||||
// Multiple image annotation requests are batched into a single service call.
|
||||
message BatchAnnotateImagesRequest {
|
||||
// Individual image annotation requests for this batch.
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ apis:
|
|||
- name: google.cloud.vision.v1p2beta1.ImageAnnotator
|
||||
|
||||
types:
|
||||
- name: google.cloud.vision.v1p2beta1.AnnotateFileResponse
|
||||
- name: google.cloud.vision.v1p2beta1.AsyncBatchAnnotateFilesResponse
|
||||
- name: google.cloud.vision.v1p2beta1.OperationMetadata
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue