Skip to content

Commit

Permalink
feat: added field_mask field in DocumentOutputConfig.GcsOutputConfig …
Browse files Browse the repository at this point in the history
…in document_io.proto

PiperOrigin-RevId: 488680436
  • Loading branch information
Google APIs authored and Copybara-Service committed Nov 15, 2022
1 parent 8097802 commit d1e4539
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions google/cloud/documentai/v1beta3/document_io.proto
Expand Up @@ -16,6 +16,8 @@ syntax = "proto3";

package google.cloud.documentai.v1beta3;

import "google/protobuf/field_mask.proto";

option csharp_namespace = "Google.Cloud.DocumentAI.V1Beta3";
option go_package = "google.golang.org/genproto/googleapis/cloud/documentai/v1beta3;documentai";
option java_multiple_files = true;
Expand Down Expand Up @@ -74,6 +76,11 @@ message DocumentOutputConfig {
message GcsOutputConfig {
// The Cloud Storage uri (a directory) of the output.
string gcs_uri = 1;

// Specifies which fields to include in the output documents.
// Only supports top level document and pages field so it must be in the
// form of `{document_field_name}` or `pages.{page_field_name}`.
google.protobuf.FieldMask field_mask = 2;
}

// The destination of the results.
Expand Down

0 comments on commit d1e4539

Please sign in to comment.