google-cloud-document_ai-v1beta3 0.7.0 → 0.9.2
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 +8 -8
- data/README.md +1 -1
- data/lib/google/cloud/document_ai/v1beta3/document_processor_service/client.rb +516 -53
- data/lib/google/cloud/document_ai/v1beta3/document_processor_service/operations.rb +34 -25
- data/lib/google/cloud/document_ai/v1beta3/document_processor_service/paths.rb +17 -0
- data/lib/google/cloud/document_ai/v1beta3/version.rb +1 -1
- data/lib/google/cloud/documentai/v1beta3/document_pb.rb +4 -0
- data/lib/google/cloud/documentai/v1beta3/document_processor_service_pb.rb +64 -16
- data/lib/google/cloud/documentai/v1beta3/document_processor_service_services_pb.rb +14 -0
- data/lib/google/cloud/documentai/v1beta3/operation_metadata_pb.rb +36 -0
- data/lib/google/cloud/documentai/v1beta3/processor_pb.rb +45 -0
- data/lib/google/cloud/documentai/v1beta3/processor_type_pb.rb +32 -0
- data/proto_docs/google/api/field_behavior.rb +7 -1
- data/proto_docs/google/cloud/documentai/v1beta3/document.rb +15 -0
- data/proto_docs/google/cloud/documentai/v1beta3/document_processor_service.rb +149 -39
- data/proto_docs/google/cloud/documentai/v1beta3/geometry.rb +2 -2
- data/proto_docs/google/cloud/documentai/v1beta3/operation_metadata.rb +65 -0
- data/proto_docs/google/cloud/documentai/v1beta3/processor.rb +86 -0
- data/proto_docs/google/cloud/documentai/v1beta3/processor_type.rb +59 -0
- data/proto_docs/google/type/color.rb +16 -11
- data/proto_docs/google/type/date.rb +14 -11
- data/proto_docs/google/type/datetime.rb +9 -1
- data/proto_docs/google/type/money.rb +1 -1
- metadata +19 -7
@@ -82,7 +82,7 @@ module Google
|
|
82
82
|
# Create credentials
|
83
83
|
credentials = @config.credentials
|
84
84
|
credentials ||= Credentials.default scope: @config.scope
|
85
|
-
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
85
|
+
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
86
86
|
credentials = Credentials.new credentials, scope: @config.scope
|
87
87
|
end
|
88
88
|
@quota_project_id = @config.quota_project
|
@@ -169,7 +169,9 @@ module Google
|
|
169
169
|
options.apply_defaults timeout: @config.rpcs.list_operations.timeout,
|
170
170
|
metadata: metadata,
|
171
171
|
retry_policy: @config.rpcs.list_operations.retry_policy
|
172
|
-
|
172
|
+
|
173
|
+
options.apply_defaults timeout: @config.timeout,
|
174
|
+
metadata: @config.metadata,
|
173
175
|
retry_policy: @config.retry_policy
|
174
176
|
|
175
177
|
@operations_stub.call_rpc :list_operations, request, options: options do |response, operation|
|
@@ -239,7 +241,9 @@ module Google
|
|
239
241
|
options.apply_defaults timeout: @config.rpcs.get_operation.timeout,
|
240
242
|
metadata: metadata,
|
241
243
|
retry_policy: @config.rpcs.get_operation.retry_policy
|
242
|
-
|
244
|
+
|
245
|
+
options.apply_defaults timeout: @config.timeout,
|
246
|
+
metadata: @config.metadata,
|
243
247
|
retry_policy: @config.retry_policy
|
244
248
|
|
245
249
|
@operations_stub.call_rpc :get_operation, request, options: options do |response, operation|
|
@@ -309,7 +313,9 @@ module Google
|
|
309
313
|
options.apply_defaults timeout: @config.rpcs.delete_operation.timeout,
|
310
314
|
metadata: metadata,
|
311
315
|
retry_policy: @config.rpcs.delete_operation.retry_policy
|
312
|
-
|
316
|
+
|
317
|
+
options.apply_defaults timeout: @config.timeout,
|
318
|
+
metadata: @config.metadata,
|
313
319
|
retry_policy: @config.retry_policy
|
314
320
|
|
315
321
|
@operations_stub.call_rpc :delete_operation, request, options: options do |response, operation|
|
@@ -384,7 +390,9 @@ module Google
|
|
384
390
|
options.apply_defaults timeout: @config.rpcs.cancel_operation.timeout,
|
385
391
|
metadata: metadata,
|
386
392
|
retry_policy: @config.rpcs.cancel_operation.retry_policy
|
387
|
-
|
393
|
+
|
394
|
+
options.apply_defaults timeout: @config.timeout,
|
395
|
+
metadata: @config.metadata,
|
388
396
|
retry_policy: @config.retry_policy
|
389
397
|
|
390
398
|
@operations_stub.call_rpc :cancel_operation, request, options: options do |response, operation|
|
@@ -396,9 +404,9 @@ module Google
|
|
396
404
|
end
|
397
405
|
|
398
406
|
##
|
399
|
-
# Waits
|
400
|
-
#
|
401
|
-
#
|
407
|
+
# Waits until the specified long-running operation is done or reaches at most
|
408
|
+
# a specified timeout, returning the latest state. If the operation is
|
409
|
+
# already done, the latest state is immediately returned. If the timeout
|
402
410
|
# specified is greater than the default HTTP/RPC timeout, the HTTP/RPC
|
403
411
|
# timeout is used. If the server does not support this method, it returns
|
404
412
|
# `google.rpc.Code.UNIMPLEMENTED`.
|
@@ -456,7 +464,9 @@ module Google
|
|
456
464
|
options.apply_defaults timeout: @config.rpcs.wait_operation.timeout,
|
457
465
|
metadata: metadata,
|
458
466
|
retry_policy: @config.rpcs.wait_operation.retry_policy
|
459
|
-
|
467
|
+
|
468
|
+
options.apply_defaults timeout: @config.timeout,
|
469
|
+
metadata: @config.metadata,
|
460
470
|
retry_policy: @config.retry_policy
|
461
471
|
|
462
472
|
@operations_stub.call_rpc :wait_operation, request, options: options do |response, operation|
|
@@ -481,26 +491,25 @@ module Google
|
|
481
491
|
# Configuration can be applied globally to all clients, or to a single client
|
482
492
|
# on construction.
|
483
493
|
#
|
484
|
-
#
|
485
|
-
#
|
486
|
-
# To modify the global config, setting the timeout for list_operations
|
487
|
-
# to 20 seconds, and all remaining timeouts to 10 seconds:
|
488
|
-
#
|
489
|
-
# ::Google::Longrunning::Operations::Client.configure do |config|
|
490
|
-
# config.timeout = 10.0
|
491
|
-
# config.rpcs.list_operations.timeout = 20.0
|
492
|
-
# end
|
494
|
+
# @example
|
493
495
|
#
|
494
|
-
#
|
496
|
+
# # Modify the global config, setting the timeout for
|
497
|
+
# # list_operations to 20 seconds,
|
498
|
+
# # and all remaining timeouts to 10 seconds.
|
499
|
+
# ::Google::Longrunning::Operations::Client.configure do |config|
|
500
|
+
# config.timeout = 10.0
|
501
|
+
# config.rpcs.list_operations.timeout = 20.0
|
502
|
+
# end
|
495
503
|
#
|
496
|
-
#
|
497
|
-
#
|
498
|
-
#
|
499
|
-
#
|
504
|
+
# # Apply the above configuration only to a new client.
|
505
|
+
# client = ::Google::Longrunning::Operations::Client.new do |config|
|
506
|
+
# config.timeout = 10.0
|
507
|
+
# config.rpcs.list_operations.timeout = 20.0
|
508
|
+
# end
|
500
509
|
#
|
501
510
|
# @!attribute [rw] endpoint
|
502
511
|
# The hostname or hostname:port of the service endpoint.
|
503
|
-
# Defaults to `"
|
512
|
+
# Defaults to `"documentai.googleapis.com"`.
|
504
513
|
# @return [::String]
|
505
514
|
# @!attribute [rw] credentials
|
506
515
|
# Credentials to send with calls. You may provide any of the following types:
|
@@ -551,7 +560,7 @@ module Google
|
|
551
560
|
class Configuration
|
552
561
|
extend ::Gapic::Config
|
553
562
|
|
554
|
-
config_attr :endpoint, "
|
563
|
+
config_attr :endpoint, "documentai.googleapis.com", ::String
|
555
564
|
config_attr :credentials, nil do |value|
|
556
565
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
557
566
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
@@ -43,6 +43,23 @@ module Google
|
|
43
43
|
"projects/#{project}/locations/#{location}/processors/#{processor}/humanReviewConfig"
|
44
44
|
end
|
45
45
|
|
46
|
+
##
|
47
|
+
# Create a fully-qualified Location resource string.
|
48
|
+
#
|
49
|
+
# The resource will be in the following format:
|
50
|
+
#
|
51
|
+
# `projects/{project}/locations/{location}`
|
52
|
+
#
|
53
|
+
# @param project [String]
|
54
|
+
# @param location [String]
|
55
|
+
#
|
56
|
+
# @return [::String]
|
57
|
+
def location_path project:, location:
|
58
|
+
raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
|
59
|
+
|
60
|
+
"projects/#{project}/locations/#{location}"
|
61
|
+
end
|
62
|
+
|
46
63
|
##
|
47
64
|
# Create a fully-qualified Processor resource string.
|
48
65
|
#
|
@@ -63,6 +63,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
63
63
|
repeated :visual_elements, :message, 9, "google.cloud.documentai.v1beta3.Document.Page.VisualElement"
|
64
64
|
repeated :tables, :message, 10, "google.cloud.documentai.v1beta3.Document.Page.Table"
|
65
65
|
repeated :form_fields, :message, 11, "google.cloud.documentai.v1beta3.Document.Page.FormField"
|
66
|
+
optional :provenance, :message, 16, "google.cloud.documentai.v1beta3.Document.Provenance"
|
66
67
|
end
|
67
68
|
add_message "google.cloud.documentai.v1beta3.Document.Page.Dimension" do
|
68
69
|
optional :width, :float, 1
|
@@ -150,6 +151,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
150
151
|
repeated :name_detected_languages, :message, 3, "google.cloud.documentai.v1beta3.Document.Page.DetectedLanguage"
|
151
152
|
repeated :value_detected_languages, :message, 4, "google.cloud.documentai.v1beta3.Document.Page.DetectedLanguage"
|
152
153
|
optional :value_type, :string, 5
|
154
|
+
optional :provenance, :message, 8, "google.cloud.documentai.v1beta3.Document.Provenance"
|
153
155
|
end
|
154
156
|
add_message "google.cloud.documentai.v1beta3.Document.Page.DetectedLanguage" do
|
155
157
|
optional :language_code, :string, 1
|
@@ -199,6 +201,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
199
201
|
optional :layout_type, :enum, 2, "google.cloud.documentai.v1beta3.Document.PageAnchor.PageRef.LayoutType"
|
200
202
|
optional :layout_id, :string, 3
|
201
203
|
optional :bounding_poly, :message, 4, "google.cloud.documentai.v1beta3.BoundingPoly"
|
204
|
+
optional :confidence, :float, 5
|
202
205
|
end
|
203
206
|
add_enum "google.cloud.documentai.v1beta3.Document.PageAnchor.PageRef.LayoutType" do
|
204
207
|
value :LAYOUT_TYPE_UNSPECIFIED, 0
|
@@ -218,6 +221,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
218
221
|
end
|
219
222
|
add_message "google.cloud.documentai.v1beta3.Document.Provenance.Parent" do
|
220
223
|
optional :revision, :int32, 1
|
224
|
+
optional :index, :int32, 3
|
221
225
|
optional :id, :int32, 2
|
222
226
|
end
|
223
227
|
add_enum "google.cloud.documentai.v1beta3.Document.Provenance.OperationType" do
|
@@ -9,6 +9,9 @@ require 'google/api/field_behavior_pb'
|
|
9
9
|
require 'google/api/resource_pb'
|
10
10
|
require 'google/cloud/documentai/v1beta3/document_pb'
|
11
11
|
require 'google/cloud/documentai/v1beta3/document_io_pb'
|
12
|
+
require 'google/cloud/documentai/v1beta3/operation_metadata_pb'
|
13
|
+
require 'google/cloud/documentai/v1beta3/processor_pb'
|
14
|
+
require 'google/cloud/documentai/v1beta3/processor_type_pb'
|
12
15
|
require 'google/longrunning/operations_pb'
|
13
16
|
require 'google/protobuf/field_mask_pb'
|
14
17
|
require 'google/protobuf/timestamp_pb'
|
@@ -81,13 +84,60 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
81
84
|
value :CANCELLED, 5
|
82
85
|
value :FAILED, 6
|
83
86
|
end
|
87
|
+
add_message "google.cloud.documentai.v1beta3.FetchProcessorTypesRequest" do
|
88
|
+
optional :parent, :string, 1
|
89
|
+
end
|
90
|
+
add_message "google.cloud.documentai.v1beta3.FetchProcessorTypesResponse" do
|
91
|
+
repeated :processor_types, :message, 1, "google.cloud.documentai.v1beta3.ProcessorType"
|
92
|
+
end
|
93
|
+
add_message "google.cloud.documentai.v1beta3.ListProcessorsRequest" do
|
94
|
+
optional :parent, :string, 1
|
95
|
+
optional :page_size, :int32, 2
|
96
|
+
optional :page_token, :string, 3
|
97
|
+
end
|
98
|
+
add_message "google.cloud.documentai.v1beta3.ListProcessorsResponse" do
|
99
|
+
repeated :processors, :message, 1, "google.cloud.documentai.v1beta3.Processor"
|
100
|
+
optional :next_page_token, :string, 2
|
101
|
+
end
|
102
|
+
add_message "google.cloud.documentai.v1beta3.CreateProcessorRequest" do
|
103
|
+
optional :parent, :string, 1
|
104
|
+
optional :processor, :message, 2, "google.cloud.documentai.v1beta3.Processor"
|
105
|
+
end
|
106
|
+
add_message "google.cloud.documentai.v1beta3.DeleteProcessorRequest" do
|
107
|
+
optional :name, :string, 1
|
108
|
+
end
|
109
|
+
add_message "google.cloud.documentai.v1beta3.DeleteProcessorMetadata" do
|
110
|
+
optional :common_metadata, :message, 5, "google.cloud.documentai.v1beta3.CommonOperationMetadata"
|
111
|
+
end
|
112
|
+
add_message "google.cloud.documentai.v1beta3.EnableProcessorRequest" do
|
113
|
+
optional :name, :string, 1
|
114
|
+
end
|
115
|
+
add_message "google.cloud.documentai.v1beta3.EnableProcessorResponse" do
|
116
|
+
end
|
117
|
+
add_message "google.cloud.documentai.v1beta3.EnableProcessorMetadata" do
|
118
|
+
optional :common_metadata, :message, 5, "google.cloud.documentai.v1beta3.CommonOperationMetadata"
|
119
|
+
end
|
120
|
+
add_message "google.cloud.documentai.v1beta3.DisableProcessorRequest" do
|
121
|
+
optional :name, :string, 1
|
122
|
+
end
|
123
|
+
add_message "google.cloud.documentai.v1beta3.DisableProcessorResponse" do
|
124
|
+
end
|
125
|
+
add_message "google.cloud.documentai.v1beta3.DisableProcessorMetadata" do
|
126
|
+
optional :common_metadata, :message, 5, "google.cloud.documentai.v1beta3.CommonOperationMetadata"
|
127
|
+
end
|
84
128
|
add_message "google.cloud.documentai.v1beta3.ReviewDocumentRequest" do
|
85
129
|
optional :human_review_config, :string, 1
|
86
130
|
optional :document, :message, 2, "google.cloud.documentai.v1beta3.Document"
|
131
|
+
optional :enable_schema_validation, :bool, 3
|
132
|
+
optional :priority, :enum, 5, "google.cloud.documentai.v1beta3.ReviewDocumentRequest.Priority"
|
87
133
|
oneof :source do
|
88
134
|
optional :inline_document, :message, 4, "google.cloud.documentai.v1beta3.Document"
|
89
135
|
end
|
90
136
|
end
|
137
|
+
add_enum "google.cloud.documentai.v1beta3.ReviewDocumentRequest.Priority" do
|
138
|
+
value :DEFAULT, 0
|
139
|
+
value :URGENT, 1
|
140
|
+
end
|
91
141
|
add_message "google.cloud.documentai.v1beta3.ReviewDocumentResponse" do
|
92
142
|
optional :gcs_destination, :string, 1
|
93
143
|
end
|
@@ -106,20 +156,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
106
156
|
value :FAILED, 4
|
107
157
|
value :CANCELLED, 5
|
108
158
|
end
|
109
|
-
add_message "google.cloud.documentai.v1beta3.CommonOperationMetadata" do
|
110
|
-
optional :state, :enum, 1, "google.cloud.documentai.v1beta3.CommonOperationMetadata.State"
|
111
|
-
optional :state_message, :string, 2
|
112
|
-
optional :create_time, :message, 3, "google.protobuf.Timestamp"
|
113
|
-
optional :update_time, :message, 4, "google.protobuf.Timestamp"
|
114
|
-
end
|
115
|
-
add_enum "google.cloud.documentai.v1beta3.CommonOperationMetadata.State" do
|
116
|
-
value :STATE_UNSPECIFIED, 0
|
117
|
-
value :RUNNING, 1
|
118
|
-
value :CANCELLING, 2
|
119
|
-
value :SUCCEEDED, 3
|
120
|
-
value :FAILED, 4
|
121
|
-
value :CANCELLED, 5
|
122
|
-
end
|
123
159
|
end
|
124
160
|
end
|
125
161
|
|
@@ -138,12 +174,24 @@ module Google
|
|
138
174
|
BatchProcessMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.BatchProcessMetadata").msgclass
|
139
175
|
BatchProcessMetadata::IndividualProcessStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.BatchProcessMetadata.IndividualProcessStatus").msgclass
|
140
176
|
BatchProcessMetadata::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.BatchProcessMetadata.State").enummodule
|
177
|
+
FetchProcessorTypesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.FetchProcessorTypesRequest").msgclass
|
178
|
+
FetchProcessorTypesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.FetchProcessorTypesResponse").msgclass
|
179
|
+
ListProcessorsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.ListProcessorsRequest").msgclass
|
180
|
+
ListProcessorsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.ListProcessorsResponse").msgclass
|
181
|
+
CreateProcessorRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.CreateProcessorRequest").msgclass
|
182
|
+
DeleteProcessorRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.DeleteProcessorRequest").msgclass
|
183
|
+
DeleteProcessorMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.DeleteProcessorMetadata").msgclass
|
184
|
+
EnableProcessorRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.EnableProcessorRequest").msgclass
|
185
|
+
EnableProcessorResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.EnableProcessorResponse").msgclass
|
186
|
+
EnableProcessorMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.EnableProcessorMetadata").msgclass
|
187
|
+
DisableProcessorRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.DisableProcessorRequest").msgclass
|
188
|
+
DisableProcessorResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.DisableProcessorResponse").msgclass
|
189
|
+
DisableProcessorMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.DisableProcessorMetadata").msgclass
|
141
190
|
ReviewDocumentRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.ReviewDocumentRequest").msgclass
|
191
|
+
ReviewDocumentRequest::Priority = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.ReviewDocumentRequest.Priority").enummodule
|
142
192
|
ReviewDocumentResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.ReviewDocumentResponse").msgclass
|
143
193
|
ReviewDocumentOperationMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.ReviewDocumentOperationMetadata").msgclass
|
144
194
|
ReviewDocumentOperationMetadata::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.ReviewDocumentOperationMetadata.State").enummodule
|
145
|
-
CommonOperationMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.CommonOperationMetadata").msgclass
|
146
|
-
CommonOperationMetadata::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.CommonOperationMetadata.State").enummodule
|
147
195
|
end
|
148
196
|
end
|
149
197
|
end
|
@@ -41,6 +41,20 @@ module Google
|
|
41
41
|
# LRO endpoint to batch process many documents. The output is written
|
42
42
|
# to Cloud Storage as JSON in the [Document] format.
|
43
43
|
rpc :BatchProcessDocuments, ::Google::Cloud::DocumentAI::V1beta3::BatchProcessRequest, ::Google::Longrunning::Operation
|
44
|
+
# Fetches processor types.
|
45
|
+
rpc :FetchProcessorTypes, ::Google::Cloud::DocumentAI::V1beta3::FetchProcessorTypesRequest, ::Google::Cloud::DocumentAI::V1beta3::FetchProcessorTypesResponse
|
46
|
+
# Lists all processors which belong to this project.
|
47
|
+
rpc :ListProcessors, ::Google::Cloud::DocumentAI::V1beta3::ListProcessorsRequest, ::Google::Cloud::DocumentAI::V1beta3::ListProcessorsResponse
|
48
|
+
# Creates a processor from the type processor that the user chose.
|
49
|
+
# The processor will be at "ENABLED" state by default after its creation.
|
50
|
+
rpc :CreateProcessor, ::Google::Cloud::DocumentAI::V1beta3::CreateProcessorRequest, ::Google::Cloud::DocumentAI::V1beta3::Processor
|
51
|
+
# Deletes the processor, unloads all deployed model artifacts if it was
|
52
|
+
# enabled and then deletes all artifacts associated with this processor.
|
53
|
+
rpc :DeleteProcessor, ::Google::Cloud::DocumentAI::V1beta3::DeleteProcessorRequest, ::Google::Longrunning::Operation
|
54
|
+
# Enables a processor
|
55
|
+
rpc :EnableProcessor, ::Google::Cloud::DocumentAI::V1beta3::EnableProcessorRequest, ::Google::Longrunning::Operation
|
56
|
+
# Disables a processor
|
57
|
+
rpc :DisableProcessor, ::Google::Cloud::DocumentAI::V1beta3::DisableProcessorRequest, ::Google::Longrunning::Operation
|
44
58
|
# Send a document for Human Review. The input document should be processed by
|
45
59
|
# the specified processor.
|
46
60
|
rpc :ReviewDocument, ::Google::Cloud::DocumentAI::V1beta3::ReviewDocumentRequest, ::Google::Longrunning::Operation
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/cloud/documentai/v1beta3/operation_metadata.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/protobuf/timestamp_pb'
|
7
|
+
require 'google/api/annotations_pb'
|
8
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
|
+
add_file("google/cloud/documentai/v1beta3/operation_metadata.proto", :syntax => :proto3) do
|
10
|
+
add_message "google.cloud.documentai.v1beta3.CommonOperationMetadata" do
|
11
|
+
optional :state, :enum, 1, "google.cloud.documentai.v1beta3.CommonOperationMetadata.State"
|
12
|
+
optional :state_message, :string, 2
|
13
|
+
optional :create_time, :message, 3, "google.protobuf.Timestamp"
|
14
|
+
optional :update_time, :message, 4, "google.protobuf.Timestamp"
|
15
|
+
end
|
16
|
+
add_enum "google.cloud.documentai.v1beta3.CommonOperationMetadata.State" do
|
17
|
+
value :STATE_UNSPECIFIED, 0
|
18
|
+
value :RUNNING, 1
|
19
|
+
value :CANCELLING, 2
|
20
|
+
value :SUCCEEDED, 3
|
21
|
+
value :FAILED, 4
|
22
|
+
value :CANCELLED, 5
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
module Google
|
28
|
+
module Cloud
|
29
|
+
module DocumentAI
|
30
|
+
module V1beta3
|
31
|
+
CommonOperationMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.CommonOperationMetadata").msgclass
|
32
|
+
CommonOperationMetadata::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.CommonOperationMetadata.State").enummodule
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/cloud/documentai/v1beta3/processor.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/field_behavior_pb'
|
7
|
+
require 'google/api/resource_pb'
|
8
|
+
require 'google/cloud/documentai/v1beta3/document_io_pb'
|
9
|
+
require 'google/protobuf/timestamp_pb'
|
10
|
+
require 'google/api/annotations_pb'
|
11
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
12
|
+
add_file("google/cloud/documentai/v1beta3/processor.proto", :syntax => :proto3) do
|
13
|
+
add_message "google.cloud.documentai.v1beta3.Processor" do
|
14
|
+
optional :name, :string, 1
|
15
|
+
optional :type, :string, 2
|
16
|
+
optional :display_name, :string, 3
|
17
|
+
optional :state, :enum, 4, "google.cloud.documentai.v1beta3.Processor.State"
|
18
|
+
optional :default_processor_version, :string, 9
|
19
|
+
optional :process_endpoint, :string, 6
|
20
|
+
optional :create_time, :message, 7, "google.protobuf.Timestamp"
|
21
|
+
optional :kms_key_name, :string, 8
|
22
|
+
end
|
23
|
+
add_enum "google.cloud.documentai.v1beta3.Processor.State" do
|
24
|
+
value :STATE_UNSPECIFIED, 0
|
25
|
+
value :ENABLED, 1
|
26
|
+
value :DISABLED, 2
|
27
|
+
value :ENABLING, 3
|
28
|
+
value :DISABLING, 4
|
29
|
+
value :CREATING, 5
|
30
|
+
value :FAILED, 6
|
31
|
+
value :DELETING, 7
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
module Google
|
37
|
+
module Cloud
|
38
|
+
module DocumentAI
|
39
|
+
module V1beta3
|
40
|
+
Processor = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.Processor").msgclass
|
41
|
+
Processor::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.Processor.State").enummodule
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/cloud/documentai/v1beta3/processor_type.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/resource_pb'
|
7
|
+
require 'google/api/annotations_pb'
|
8
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
|
+
add_file("google/cloud/documentai/v1beta3/processor_type.proto", :syntax => :proto3) do
|
10
|
+
add_message "google.cloud.documentai.v1beta3.ProcessorType" do
|
11
|
+
optional :name, :string, 1
|
12
|
+
optional :type, :string, 2
|
13
|
+
optional :category, :string, 3
|
14
|
+
repeated :available_locations, :message, 4, "google.cloud.documentai.v1beta3.ProcessorType.LocationInfo"
|
15
|
+
optional :allow_creation, :bool, 6
|
16
|
+
end
|
17
|
+
add_message "google.cloud.documentai.v1beta3.ProcessorType.LocationInfo" do
|
18
|
+
optional :location_id, :string, 1
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
module Google
|
24
|
+
module Cloud
|
25
|
+
module DocumentAI
|
26
|
+
module V1beta3
|
27
|
+
ProcessorType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.ProcessorType").msgclass
|
28
|
+
ProcessorType::LocationInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1beta3.ProcessorType.LocationInfo").msgclass
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|