google-cloud-document_ai-v1beta3 0.29.0 → 0.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +72 -101
- data/lib/google/cloud/document_ai/v1beta3/document_processor_service/client.rb +33 -8
- data/lib/google/cloud/document_ai/v1beta3/document_processor_service/operations.rb +28 -6
- data/lib/google/cloud/document_ai/v1beta3/document_processor_service/rest/client.rb +35 -7
- data/lib/google/cloud/document_ai/v1beta3/document_processor_service/rest/operations.rb +33 -8
- data/lib/google/cloud/document_ai/v1beta3/document_processor_service/rest/service_stub.rb +14 -2
- data/lib/google/cloud/document_ai/v1beta3/document_service/client.rb +33 -8
- data/lib/google/cloud/document_ai/v1beta3/document_service/operations.rb +28 -6
- data/lib/google/cloud/document_ai/v1beta3/document_service/rest/client.rb +35 -7
- data/lib/google/cloud/document_ai/v1beta3/document_service/rest/operations.rb +33 -8
- data/lib/google/cloud/document_ai/v1beta3/document_service/rest/service_stub.rb +14 -2
- data/lib/google/cloud/document_ai/v1beta3/version.rb +1 -1
- data/proto_docs/google/api/client.rb +14 -0
- data/proto_docs/google/cloud/documentai/v1beta3/dataset.rb +1 -0
- data/proto_docs/google/cloud/documentai/v1beta3/document.rb +13 -0
- data/proto_docs/google/cloud/documentai/v1beta3/document_io.rb +1 -0
- data/proto_docs/google/cloud/documentai/v1beta3/document_processor_service.rb +8 -0
- metadata +7 -7
@@ -82,6 +82,7 @@ module Google
|
|
82
82
|
# or
|
83
83
|
# `projects/{project}/locations/{location}/processors/{processor}/processorVersions/{processorVersion}`
|
84
84
|
# @!attribute [rw] document
|
85
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
85
86
|
# @return [::Google::Cloud::DocumentAI::V1beta3::Document]
|
86
87
|
# The document payload, the
|
87
88
|
# {::Google::Cloud::DocumentAI::V1beta3::Document#content content} and
|
@@ -155,6 +156,7 @@ module Google
|
|
155
156
|
# The document payload, will populate fields based on the processor's
|
156
157
|
# behavior.
|
157
158
|
# @!attribute [rw] human_review_operation
|
159
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
158
160
|
# @return [::String]
|
159
161
|
# The name of the operation triggered by the processed document. If the human
|
160
162
|
# review process isn't triggered, this field is empty. It has the same
|
@@ -179,9 +181,11 @@ module Google
|
|
179
181
|
# or
|
180
182
|
# `projects/{project}/locations/{location}/processors/{processor}/processorVersions/{processorVersion}`
|
181
183
|
# @!attribute [rw] input_configs
|
184
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
182
185
|
# @return [::Array<::Google::Cloud::DocumentAI::V1beta3::BatchProcessRequest::BatchInputConfig>]
|
183
186
|
# The input config for each single document in the batch process.
|
184
187
|
# @!attribute [rw] output_config
|
188
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
185
189
|
# @return [::Google::Cloud::DocumentAI::V1beta3::BatchProcessRequest::BatchOutputConfig]
|
186
190
|
# The overall output config for batch process.
|
187
191
|
# @!attribute [rw] input_documents
|
@@ -206,6 +210,7 @@ module Google
|
|
206
210
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
207
211
|
|
208
212
|
# The message for input config in batch process.
|
213
|
+
# @deprecated This message is deprecated and may be removed in the next major version update.
|
209
214
|
# @!attribute [rw] gcs_source
|
210
215
|
# @return [::String]
|
211
216
|
# The Cloud Storage location as the source of the document.
|
@@ -226,6 +231,7 @@ module Google
|
|
226
231
|
# The output configuration in the
|
227
232
|
# {::Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client#batch_process_documents BatchProcessDocuments}
|
228
233
|
# method.
|
234
|
+
# @deprecated This message is deprecated and may be removed in the next major version update.
|
229
235
|
# @!attribute [rw] gcs_destination
|
230
236
|
# @return [::String]
|
231
237
|
# The output Cloud Storage directory to put the processed documents.
|
@@ -279,6 +285,7 @@ module Google
|
|
279
285
|
# {::Google::Cloud::DocumentAI::V1beta3::DocumentOutputConfig::GcsOutputConfig#gcs_uri DocumentOutputConfig.GcsOutputConfig.gcs_uri})
|
280
286
|
# of the processed document if it was successful, otherwise empty.
|
281
287
|
# @!attribute [rw] human_review_operation
|
288
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
282
289
|
# @return [::String]
|
283
290
|
# The name of the operation triggered by the processed document. If the
|
284
291
|
# human review process isn't triggered, this field will be empty. It has
|
@@ -825,6 +832,7 @@ module Google
|
|
825
832
|
# [HumanReviewConfig][google.cloud.documentai.v1beta3.HumanReviewConfig] that
|
826
833
|
# the document will be reviewed with.
|
827
834
|
# @!attribute [rw] document
|
835
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
828
836
|
# @return [::Google::Cloud::DocumentAI::V1beta3::Document]
|
829
837
|
# The document that needs human review.
|
830
838
|
# @!attribute [rw] enable_schema_validation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-document_ai-v1beta3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.21.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.21.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -50,7 +50,7 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - ">="
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: '0.
|
53
|
+
version: '0.7'
|
54
54
|
- - "<"
|
55
55
|
- !ruby/object:Gem::Version
|
56
56
|
version: 2.a
|
@@ -60,7 +60,7 @@ dependencies:
|
|
60
60
|
requirements:
|
61
61
|
- - ">="
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: '0.
|
63
|
+
version: '0.7'
|
64
64
|
- - "<"
|
65
65
|
- !ruby/object:Gem::Version
|
66
66
|
version: 2.a
|
@@ -276,7 +276,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
276
276
|
- !ruby/object:Gem::Version
|
277
277
|
version: '0'
|
278
278
|
requirements: []
|
279
|
-
rubygems_version: 3.
|
279
|
+
rubygems_version: 3.5.3
|
280
280
|
signing_key:
|
281
281
|
specification_version: 4
|
282
282
|
summary: Service to parse structured information from unstructured or semi-structured
|