File tree 1 file changed +12
-0
lines changed
packages/google-cloud-contentwarehouse/protos/google/cloud/documentai/v1
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -74,13 +74,25 @@ message BatchDocumentsInputConfig {
74
74
message DocumentOutputConfig {
75
75
// The configuration used when outputting documents.
76
76
message GcsOutputConfig {
77
+ // The sharding config for the output document.
78
+ message ShardingConfig {
79
+ // The number of pages per shard.
80
+ int32 pages_per_shard = 1 ;
81
+
82
+ // The number of overlapping pages between consecutive shards.
83
+ int32 pages_overlap = 2 ;
84
+ }
85
+
77
86
// The Cloud Storage uri (a directory) of the output.
78
87
string gcs_uri = 1 ;
79
88
80
89
// Specifies which fields to include in the output documents.
81
90
// Only supports top level document and pages field so it must be in the
82
91
// form of `{document_field_name}` or `pages.{page_field_name}`.
83
92
google.protobuf.FieldMask field_mask = 2 ;
93
+
94
+ // Specifies the sharding config for the output document.
95
+ ShardingConfig sharding_config = 3 ;
84
96
}
85
97
86
98
// The destination of the results.
You can’t perform that action at this time.
0 commit comments