123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- syntax = "proto3";
- package google.cloud.documentai.v1beta1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/cloud/documentai/v1beta1/geometry.proto";
- import "google/longrunning/operations.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.DocumentAI.V1Beta1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/documentai/v1beta1;documentai";
- option java_multiple_files = true;
- option java_outer_classname = "DocumentAiProto";
- option java_package = "com.google.cloud.documentai.v1beta1";
- option php_namespace = "Google\\Cloud\\DocumentAI\\V1beta1";
- option ruby_package = "Google::Cloud::DocumentAI::V1beta1";
- service DocumentUnderstandingService {
- option (google.api.default_host) = "documentai.googleapis.com";
- option (google.api.oauth_scopes) =
- "https://www.googleapis.com/auth/cloud-platform";
-
- rpc BatchProcessDocuments(BatchProcessDocumentsRequest)
- returns (google.longrunning.Operation) {
- option (google.api.http) = {
- post: "/v1beta1/{parent=projects/*/locations/*}/documents:batchProcess"
- body: "*"
- additional_bindings {
- post: "/v1beta1/{parent=projects/*}/documents:batchProcess"
- body: "*"
- }
- };
- option (google.api.method_signature) = "requests";
- option (google.longrunning.operation_info) = {
- response_type: "BatchProcessDocumentsResponse"
- metadata_type: "OperationMetadata"
- };
- }
- }
- message BatchProcessDocumentsRequest {
-
- repeated ProcessDocumentRequest requests = 1
- [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
- string parent = 2;
- }
- message ProcessDocumentRequest {
-
- InputConfig input_config = 1 [(google.api.field_behavior) = REQUIRED];
-
- OutputConfig output_config = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
- string document_type = 3;
-
-
- TableExtractionParams table_extraction_params = 4;
-
-
- FormExtractionParams form_extraction_params = 5;
-
-
- EntityExtractionParams entity_extraction_params = 6;
-
-
- OcrParams ocr_params = 7;
- }
- message BatchProcessDocumentsResponse {
-
- repeated ProcessDocumentResponse responses = 1;
- }
- message ProcessDocumentResponse {
-
-
- InputConfig input_config = 1;
-
-
- OutputConfig output_config = 2;
- }
- message OcrParams {
-
-
-
-
-
-
-
-
- repeated string language_hints = 1;
- }
- message TableExtractionParams {
-
- bool enabled = 1;
-
-
- repeated TableBoundHint table_bound_hints = 2
- [(google.api.field_behavior) = OPTIONAL];
-
-
- repeated string header_hints = 3 [(google.api.field_behavior) = OPTIONAL];
-
-
- string model_version = 4;
- }
- message TableBoundHint {
-
-
-
- int32 page_number = 1 [(google.api.field_behavior) = OPTIONAL];
-
-
- BoundingPoly bounding_box = 2;
- }
- message FormExtractionParams {
-
- bool enabled = 1;
-
-
-
-
-
-
-
-
-
-
-
-
- repeated KeyValuePairHint key_value_pair_hints = 2;
-
-
- string model_version = 3;
- }
- message KeyValuePairHint {
-
- string key = 1;
-
-
-
-
- repeated string value_types = 2;
- }
- message EntityExtractionParams {
-
- bool enabled = 1;
-
-
- string model_version = 2;
- }
- message InputConfig {
-
- oneof source {
-
-
- GcsSource gcs_source = 1;
- }
-
-
- string mime_type = 2 [(google.api.field_behavior) = REQUIRED];
- }
- message OutputConfig {
-
- oneof destination {
-
- GcsDestination gcs_destination = 1;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- int32 pages_per_shard = 2;
- }
- message GcsSource {
- string uri = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message GcsDestination {
- string uri = 1 [(google.api.field_behavior) = REQUIRED];
- }
- message OperationMetadata {
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- ACCEPTED = 1;
-
- WAITING = 2;
-
- RUNNING = 3;
-
- SUCCEEDED = 4;
-
- CANCELLED = 5;
-
- FAILED = 6;
- }
-
- State state = 1;
-
- string state_message = 2;
-
- google.protobuf.Timestamp create_time = 3;
-
- google.protobuf.Timestamp update_time = 4;
- }
|