google-cloud-document_ai-v1beta3 0.9.1 → 0.10.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/.yardopts +1 -1
- data/AUTHENTICATION.md +7 -25
- data/README.md +1 -1
- data/lib/google/cloud/document_ai/v1beta3/document_processor_service/client.rb +278 -72
- data/lib/google/cloud/document_ai/v1beta3/document_processor_service/operations.rb +145 -33
- data/lib/google/cloud/document_ai/v1beta3/version.rb +1 -1
- data/lib/google/cloud/documentai/v1beta3/document_io_pb.rb +1 -1
- data/lib/google/cloud/documentai/v1beta3/document_pb.rb +2 -2
- data/lib/google/cloud/documentai/v1beta3/document_processor_service_pb.rb +3 -2
- data/lib/google/cloud/documentai/v1beta3/document_processor_service_services_pb.rb +1 -1
- data/lib/google/cloud/documentai/v1beta3/geometry_pb.rb +1 -1
- data/lib/google/cloud/documentai/v1beta3/operation_metadata_pb.rb +2 -2
- data/lib/google/cloud/documentai/v1beta3/processor_pb.rb +2 -2
- data/lib/google/cloud/documentai/v1beta3/processor_type_pb.rb +2 -2
- data/proto_docs/google/api/resource.rb +10 -71
- data/proto_docs/google/cloud/documentai/v1beta3/document_processor_service.rb +3 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a8b5d13342041bd0460232e6eb8289dd242e64926b3363655fa5127cbae2575
|
4
|
+
data.tar.gz: 19748ac67ebe76e711f76a0ea63908a76f286c60fe10b767cb777120cdda906b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa4fc0d69f1457f93a013c2cac9dd7fb51f6ae710da9a03836016388d857f96d45259f28e33aef0a442bafb4aaba0336086584c0c1352bdba38cb008b7cb48c5
|
7
|
+
data.tar.gz: 324c2a23e1b5e3bbc49a0b6abdb7ebeea4ce5e6b544815cefe1749795c770db7a342f53ab1be3e53beed29e85bf68ee84e6336d8425ec799b1ddfb64d60900e1
|
data/.yardopts
CHANGED
data/AUTHENTICATION.md
CHANGED
@@ -120,15 +120,6 @@ To configure your system for this, simply:
|
|
120
120
|
**NOTE:** This is _not_ recommended for running in production. The Cloud SDK
|
121
121
|
*should* only be used during development.
|
122
122
|
|
123
|
-
[gce-how-to]: https://cloud.google.com/compute/docs/authentication#using
|
124
|
-
[dev-console]: https://console.cloud.google.com/project
|
125
|
-
|
126
|
-
[enable-apis]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/enable-apis.png
|
127
|
-
|
128
|
-
[create-new-service-account]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/create-new-service-account.png
|
129
|
-
[create-new-service-account-existing-keys]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/create-new-service-account-existing-keys.png
|
130
|
-
[reuse-service-account]: https://raw.githubusercontent.com/GoogleCloudPlatform/gcloud-common/master/authentication/reuse-service-account.png
|
131
|
-
|
132
123
|
## Creating a Service Account
|
133
124
|
|
134
125
|
Google Cloud requires **Service Account Credentials** to
|
@@ -139,31 +130,22 @@ If you are not running this client within
|
|
139
130
|
[Google Cloud Platform environments](#google-cloud-platform-environments), you
|
140
131
|
need a Google Developers service account.
|
141
132
|
|
142
|
-
1. Visit the [Google
|
133
|
+
1. Visit the [Google Cloud Console](https://console.cloud.google.com/project).
|
143
134
|
2. Create a new project or click on an existing project.
|
144
|
-
3. Activate the
|
135
|
+
3. Activate the menu in the upper left and select **APIs & Services**. From
|
145
136
|
here, you will enable the APIs that your application requires.
|
146
137
|
|
147
|
-
![Enable the APIs that your application requires][enable-apis]
|
148
|
-
|
149
138
|
*Note: You may need to enable billing in order to use these services.*
|
150
139
|
|
151
140
|
4. Select **Credentials** from the side navigation.
|
152
141
|
|
153
|
-
|
154
|
-
|
155
|
-
![Create a new service account][create-new-service-account]
|
156
|
-
|
157
|
-
![Create a new service account With Existing Keys][create-new-service-account-existing-keys]
|
158
|
-
|
159
|
-
Find the "Add credentials" drop down and select "Service account" to be
|
160
|
-
guided through downloading a new JSON key file.
|
142
|
+
Find the "Create credentials" drop down near the top of the page, and select
|
143
|
+
"Service account" to be guided through downloading a new JSON key file.
|
161
144
|
|
162
145
|
If you want to re-use an existing service account, you can easily generate a
|
163
|
-
new key file. Just select the account you wish to re-use,
|
164
|
-
|
165
|
-
|
166
|
-
![Re-use an existing service account][reuse-service-account]
|
146
|
+
new key file. Just select the account you wish to re-use, click the pencil
|
147
|
+
tool on the right side to edit the service account, select the **Keys** tab,
|
148
|
+
and then select **Add Key**.
|
167
149
|
|
168
150
|
The key file you download will be used by this library to authenticate API
|
169
151
|
requests and should be stored in a secure location.
|
data/README.md
CHANGED
@@ -37,7 +37,7 @@ request = ::Google::Cloud::DocumentAI::V1beta3::ProcessRequest.new # (request fi
|
|
37
37
|
response = client.process_document request
|
38
38
|
```
|
39
39
|
|
40
|
-
View the [Client Library Documentation](https://
|
40
|
+
View the [Client Library Documentation](https://cloud.google.com/ruby/docs/reference/google-cloud-document_ai-v1beta3/latest)
|
41
41
|
for class and method documentation.
|
42
42
|
|
43
43
|
See also the [Product Documentation](https://cloud.google.com/document-ai/)
|
@@ -44,13 +44,12 @@ module Google
|
|
44
44
|
# See {::Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client::Configuration}
|
45
45
|
# for a description of the configuration fields.
|
46
46
|
#
|
47
|
-
#
|
47
|
+
# @example
|
48
48
|
#
|
49
|
-
#
|
50
|
-
#
|
51
|
-
#
|
52
|
-
#
|
53
|
-
# end
|
49
|
+
# # Modify the configuration for all DocumentProcessorService clients
|
50
|
+
# ::Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.configure do |config|
|
51
|
+
# config.timeout = 10.0
|
52
|
+
# end
|
54
53
|
#
|
55
54
|
# @yield [config] Configure the Client client.
|
56
55
|
# @yieldparam config [Client::Configuration]
|
@@ -112,19 +111,15 @@ module Google
|
|
112
111
|
##
|
113
112
|
# Create a new DocumentProcessorService client object.
|
114
113
|
#
|
115
|
-
#
|
116
|
-
#
|
117
|
-
# To create a new DocumentProcessorService client with the default
|
118
|
-
# configuration:
|
119
|
-
#
|
120
|
-
# client = ::Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.new
|
114
|
+
# @example
|
121
115
|
#
|
122
|
-
#
|
123
|
-
#
|
116
|
+
# # Create a client using the default configuration
|
117
|
+
# client = ::Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.new
|
124
118
|
#
|
125
|
-
#
|
126
|
-
#
|
127
|
-
#
|
119
|
+
# # Create a client using a custom configuration
|
120
|
+
# client = ::Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.new do |config|
|
121
|
+
# config.timeout = 10.0
|
122
|
+
# end
|
128
123
|
#
|
129
124
|
# @yield [config] Configure the DocumentProcessorService client.
|
130
125
|
# @yieldparam config [Client::Configuration]
|
@@ -144,10 +139,9 @@ module Google
|
|
144
139
|
|
145
140
|
# Create credentials
|
146
141
|
credentials = @config.credentials
|
147
|
-
# Use self-signed JWT if the
|
142
|
+
# Use self-signed JWT if the endpoint is unchanged from default,
|
148
143
|
# but only if the default endpoint does not have a region prefix.
|
149
|
-
enable_self_signed_jwt = @config.
|
150
|
-
@config.endpoint == Client.configure.endpoint &&
|
144
|
+
enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
|
151
145
|
!@config.endpoint.split(".").first.include?("-")
|
152
146
|
credentials ||= Credentials.default scope: @config.scope,
|
153
147
|
enable_self_signed_jwt: enable_self_signed_jwt
|
@@ -159,6 +153,7 @@ module Google
|
|
159
153
|
|
160
154
|
@operations_client = Operations.new do |config|
|
161
155
|
config.credentials = credentials
|
156
|
+
config.quota_project = @quota_project_id
|
162
157
|
config.endpoint = @config.endpoint
|
163
158
|
end
|
164
159
|
|
@@ -218,6 +213,21 @@ module Google
|
|
218
213
|
#
|
219
214
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
220
215
|
#
|
216
|
+
# @example Basic example
|
217
|
+
# require "google/cloud/document_ai/v1beta3"
|
218
|
+
#
|
219
|
+
# # Create a client object. The client can be reused for multiple calls.
|
220
|
+
# client = Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.new
|
221
|
+
#
|
222
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
223
|
+
# request = Google::Cloud::DocumentAI::V1beta3::ProcessRequest.new
|
224
|
+
#
|
225
|
+
# # Call the process_document method.
|
226
|
+
# result = client.process_document request
|
227
|
+
#
|
228
|
+
# # The returned object is of type Google::Cloud::DocumentAI::V1beta3::ProcessResponse.
|
229
|
+
# p result
|
230
|
+
#
|
221
231
|
def process_document request, options = nil
|
222
232
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
223
233
|
|
@@ -235,16 +245,20 @@ module Google
|
|
235
245
|
gapic_version: ::Google::Cloud::DocumentAI::V1beta3::VERSION
|
236
246
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
237
247
|
|
238
|
-
header_params = {
|
239
|
-
|
240
|
-
|
248
|
+
header_params = {}
|
249
|
+
if request.name
|
250
|
+
header_params["name"] = request.name
|
251
|
+
end
|
252
|
+
|
241
253
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
242
254
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
243
255
|
|
244
256
|
options.apply_defaults timeout: @config.rpcs.process_document.timeout,
|
245
257
|
metadata: metadata,
|
246
258
|
retry_policy: @config.rpcs.process_document.retry_policy
|
247
|
-
|
259
|
+
|
260
|
+
options.apply_defaults timeout: @config.timeout,
|
261
|
+
metadata: @config.metadata,
|
248
262
|
retry_policy: @config.retry_policy
|
249
263
|
|
250
264
|
@document_processor_service_stub.call_rpc :process_document, request, options: options do |response, operation|
|
@@ -296,6 +310,28 @@ module Google
|
|
296
310
|
#
|
297
311
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
298
312
|
#
|
313
|
+
# @example Basic example
|
314
|
+
# require "google/cloud/document_ai/v1beta3"
|
315
|
+
#
|
316
|
+
# # Create a client object. The client can be reused for multiple calls.
|
317
|
+
# client = Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.new
|
318
|
+
#
|
319
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
320
|
+
# request = Google::Cloud::DocumentAI::V1beta3::BatchProcessRequest.new
|
321
|
+
#
|
322
|
+
# # Call the batch_process_documents method.
|
323
|
+
# result = client.batch_process_documents request
|
324
|
+
#
|
325
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
326
|
+
# # object to check the status of an operation, cancel it, or wait
|
327
|
+
# # for results. Here is how to block until completion:
|
328
|
+
# result.wait_until_done! timeout: 60
|
329
|
+
# if result.response?
|
330
|
+
# p result.response
|
331
|
+
# else
|
332
|
+
# puts "Error!"
|
333
|
+
# end
|
334
|
+
#
|
299
335
|
def batch_process_documents request, options = nil
|
300
336
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
301
337
|
|
@@ -313,16 +349,20 @@ module Google
|
|
313
349
|
gapic_version: ::Google::Cloud::DocumentAI::V1beta3::VERSION
|
314
350
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
315
351
|
|
316
|
-
header_params = {
|
317
|
-
|
318
|
-
|
352
|
+
header_params = {}
|
353
|
+
if request.name
|
354
|
+
header_params["name"] = request.name
|
355
|
+
end
|
356
|
+
|
319
357
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
320
358
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
321
359
|
|
322
360
|
options.apply_defaults timeout: @config.rpcs.batch_process_documents.timeout,
|
323
361
|
metadata: metadata,
|
324
362
|
retry_policy: @config.rpcs.batch_process_documents.retry_policy
|
325
|
-
|
363
|
+
|
364
|
+
options.apply_defaults timeout: @config.timeout,
|
365
|
+
metadata: @config.metadata,
|
326
366
|
retry_policy: @config.retry_policy
|
327
367
|
|
328
368
|
@document_processor_service_stub.call_rpc :batch_process_documents, request, options: options do |response, operation|
|
@@ -364,6 +404,21 @@ module Google
|
|
364
404
|
#
|
365
405
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
366
406
|
#
|
407
|
+
# @example Basic example
|
408
|
+
# require "google/cloud/document_ai/v1beta3"
|
409
|
+
#
|
410
|
+
# # Create a client object. The client can be reused for multiple calls.
|
411
|
+
# client = Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.new
|
412
|
+
#
|
413
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
414
|
+
# request = Google::Cloud::DocumentAI::V1beta3::FetchProcessorTypesRequest.new
|
415
|
+
#
|
416
|
+
# # Call the fetch_processor_types method.
|
417
|
+
# result = client.fetch_processor_types request
|
418
|
+
#
|
419
|
+
# # The returned object is of type Google::Cloud::DocumentAI::V1beta3::FetchProcessorTypesResponse.
|
420
|
+
# p result
|
421
|
+
#
|
367
422
|
def fetch_processor_types request, options = nil
|
368
423
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
369
424
|
|
@@ -381,16 +436,20 @@ module Google
|
|
381
436
|
gapic_version: ::Google::Cloud::DocumentAI::V1beta3::VERSION
|
382
437
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
383
438
|
|
384
|
-
header_params = {
|
385
|
-
|
386
|
-
|
439
|
+
header_params = {}
|
440
|
+
if request.parent
|
441
|
+
header_params["parent"] = request.parent
|
442
|
+
end
|
443
|
+
|
387
444
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
388
445
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
389
446
|
|
390
447
|
options.apply_defaults timeout: @config.rpcs.fetch_processor_types.timeout,
|
391
448
|
metadata: metadata,
|
392
449
|
retry_policy: @config.rpcs.fetch_processor_types.retry_policy
|
393
|
-
|
450
|
+
|
451
|
+
options.apply_defaults timeout: @config.timeout,
|
452
|
+
metadata: @config.metadata,
|
394
453
|
retry_policy: @config.retry_policy
|
395
454
|
|
396
455
|
@document_processor_service_stub.call_rpc :fetch_processor_types, request, options: options do |response, operation|
|
@@ -438,6 +497,27 @@ module Google
|
|
438
497
|
#
|
439
498
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
440
499
|
#
|
500
|
+
# @example Basic example
|
501
|
+
# require "google/cloud/document_ai/v1beta3"
|
502
|
+
#
|
503
|
+
# # Create a client object. The client can be reused for multiple calls.
|
504
|
+
# client = Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.new
|
505
|
+
#
|
506
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
507
|
+
# request = Google::Cloud::DocumentAI::V1beta3::ListProcessorsRequest.new
|
508
|
+
#
|
509
|
+
# # Call the list_processors method.
|
510
|
+
# result = client.list_processors request
|
511
|
+
#
|
512
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can
|
513
|
+
# # iterate over all elements by calling #each, and the enumerable
|
514
|
+
# # will lazily make API calls to fetch subsequent pages. Other
|
515
|
+
# # methods are also available for managing paging directly.
|
516
|
+
# result.each do |response|
|
517
|
+
# # Each element is of type ::Google::Cloud::DocumentAI::V1beta3::Processor.
|
518
|
+
# p response
|
519
|
+
# end
|
520
|
+
#
|
441
521
|
def list_processors request, options = nil
|
442
522
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
443
523
|
|
@@ -455,16 +535,20 @@ module Google
|
|
455
535
|
gapic_version: ::Google::Cloud::DocumentAI::V1beta3::VERSION
|
456
536
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
457
537
|
|
458
|
-
header_params = {
|
459
|
-
|
460
|
-
|
538
|
+
header_params = {}
|
539
|
+
if request.parent
|
540
|
+
header_params["parent"] = request.parent
|
541
|
+
end
|
542
|
+
|
461
543
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
462
544
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
463
545
|
|
464
546
|
options.apply_defaults timeout: @config.rpcs.list_processors.timeout,
|
465
547
|
metadata: metadata,
|
466
548
|
retry_policy: @config.rpcs.list_processors.retry_policy
|
467
|
-
|
549
|
+
|
550
|
+
options.apply_defaults timeout: @config.timeout,
|
551
|
+
metadata: @config.metadata,
|
468
552
|
retry_policy: @config.retry_policy
|
469
553
|
|
470
554
|
@document_processor_service_stub.call_rpc :list_processors, request, options: options do |response, operation|
|
@@ -510,6 +594,21 @@ module Google
|
|
510
594
|
#
|
511
595
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
512
596
|
#
|
597
|
+
# @example Basic example
|
598
|
+
# require "google/cloud/document_ai/v1beta3"
|
599
|
+
#
|
600
|
+
# # Create a client object. The client can be reused for multiple calls.
|
601
|
+
# client = Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.new
|
602
|
+
#
|
603
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
604
|
+
# request = Google::Cloud::DocumentAI::V1beta3::CreateProcessorRequest.new
|
605
|
+
#
|
606
|
+
# # Call the create_processor method.
|
607
|
+
# result = client.create_processor request
|
608
|
+
#
|
609
|
+
# # The returned object is of type Google::Cloud::DocumentAI::V1beta3::Processor.
|
610
|
+
# p result
|
611
|
+
#
|
513
612
|
def create_processor request, options = nil
|
514
613
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
515
614
|
|
@@ -527,16 +626,20 @@ module Google
|
|
527
626
|
gapic_version: ::Google::Cloud::DocumentAI::V1beta3::VERSION
|
528
627
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
529
628
|
|
530
|
-
header_params = {
|
531
|
-
|
532
|
-
|
629
|
+
header_params = {}
|
630
|
+
if request.parent
|
631
|
+
header_params["parent"] = request.parent
|
632
|
+
end
|
633
|
+
|
533
634
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
534
635
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
535
636
|
|
536
637
|
options.apply_defaults timeout: @config.rpcs.create_processor.timeout,
|
537
638
|
metadata: metadata,
|
538
639
|
retry_policy: @config.rpcs.create_processor.retry_policy
|
539
|
-
|
640
|
+
|
641
|
+
options.apply_defaults timeout: @config.timeout,
|
642
|
+
metadata: @config.metadata,
|
540
643
|
retry_policy: @config.retry_policy
|
541
644
|
|
542
645
|
@document_processor_service_stub.call_rpc :create_processor, request, options: options do |response, operation|
|
@@ -577,6 +680,28 @@ module Google
|
|
577
680
|
#
|
578
681
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
579
682
|
#
|
683
|
+
# @example Basic example
|
684
|
+
# require "google/cloud/document_ai/v1beta3"
|
685
|
+
#
|
686
|
+
# # Create a client object. The client can be reused for multiple calls.
|
687
|
+
# client = Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.new
|
688
|
+
#
|
689
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
690
|
+
# request = Google::Cloud::DocumentAI::V1beta3::DeleteProcessorRequest.new
|
691
|
+
#
|
692
|
+
# # Call the delete_processor method.
|
693
|
+
# result = client.delete_processor request
|
694
|
+
#
|
695
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
696
|
+
# # object to check the status of an operation, cancel it, or wait
|
697
|
+
# # for results. Here is how to block until completion:
|
698
|
+
# result.wait_until_done! timeout: 60
|
699
|
+
# if result.response?
|
700
|
+
# p result.response
|
701
|
+
# else
|
702
|
+
# puts "Error!"
|
703
|
+
# end
|
704
|
+
#
|
580
705
|
def delete_processor request, options = nil
|
581
706
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
582
707
|
|
@@ -594,16 +719,20 @@ module Google
|
|
594
719
|
gapic_version: ::Google::Cloud::DocumentAI::V1beta3::VERSION
|
595
720
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
596
721
|
|
597
|
-
header_params = {
|
598
|
-
|
599
|
-
|
722
|
+
header_params = {}
|
723
|
+
if request.name
|
724
|
+
header_params["name"] = request.name
|
725
|
+
end
|
726
|
+
|
600
727
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
601
728
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
602
729
|
|
603
730
|
options.apply_defaults timeout: @config.rpcs.delete_processor.timeout,
|
604
731
|
metadata: metadata,
|
605
732
|
retry_policy: @config.rpcs.delete_processor.retry_policy
|
606
|
-
|
733
|
+
|
734
|
+
options.apply_defaults timeout: @config.timeout,
|
735
|
+
metadata: @config.metadata,
|
607
736
|
retry_policy: @config.retry_policy
|
608
737
|
|
609
738
|
@document_processor_service_stub.call_rpc :delete_processor, request, options: options do |response, operation|
|
@@ -644,6 +773,28 @@ module Google
|
|
644
773
|
#
|
645
774
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
646
775
|
#
|
776
|
+
# @example Basic example
|
777
|
+
# require "google/cloud/document_ai/v1beta3"
|
778
|
+
#
|
779
|
+
# # Create a client object. The client can be reused for multiple calls.
|
780
|
+
# client = Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.new
|
781
|
+
#
|
782
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
783
|
+
# request = Google::Cloud::DocumentAI::V1beta3::EnableProcessorRequest.new
|
784
|
+
#
|
785
|
+
# # Call the enable_processor method.
|
786
|
+
# result = client.enable_processor request
|
787
|
+
#
|
788
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
789
|
+
# # object to check the status of an operation, cancel it, or wait
|
790
|
+
# # for results. Here is how to block until completion:
|
791
|
+
# result.wait_until_done! timeout: 60
|
792
|
+
# if result.response?
|
793
|
+
# p result.response
|
794
|
+
# else
|
795
|
+
# puts "Error!"
|
796
|
+
# end
|
797
|
+
#
|
647
798
|
def enable_processor request, options = nil
|
648
799
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
649
800
|
|
@@ -661,16 +812,20 @@ module Google
|
|
661
812
|
gapic_version: ::Google::Cloud::DocumentAI::V1beta3::VERSION
|
662
813
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
663
814
|
|
664
|
-
header_params = {
|
665
|
-
|
666
|
-
|
815
|
+
header_params = {}
|
816
|
+
if request.name
|
817
|
+
header_params["name"] = request.name
|
818
|
+
end
|
819
|
+
|
667
820
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
668
821
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
669
822
|
|
670
823
|
options.apply_defaults timeout: @config.rpcs.enable_processor.timeout,
|
671
824
|
metadata: metadata,
|
672
825
|
retry_policy: @config.rpcs.enable_processor.retry_policy
|
673
|
-
|
826
|
+
|
827
|
+
options.apply_defaults timeout: @config.timeout,
|
828
|
+
metadata: @config.metadata,
|
674
829
|
retry_policy: @config.retry_policy
|
675
830
|
|
676
831
|
@document_processor_service_stub.call_rpc :enable_processor, request, options: options do |response, operation|
|
@@ -711,6 +866,28 @@ module Google
|
|
711
866
|
#
|
712
867
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
713
868
|
#
|
869
|
+
# @example Basic example
|
870
|
+
# require "google/cloud/document_ai/v1beta3"
|
871
|
+
#
|
872
|
+
# # Create a client object. The client can be reused for multiple calls.
|
873
|
+
# client = Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.new
|
874
|
+
#
|
875
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
876
|
+
# request = Google::Cloud::DocumentAI::V1beta3::DisableProcessorRequest.new
|
877
|
+
#
|
878
|
+
# # Call the disable_processor method.
|
879
|
+
# result = client.disable_processor request
|
880
|
+
#
|
881
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
882
|
+
# # object to check the status of an operation, cancel it, or wait
|
883
|
+
# # for results. Here is how to block until completion:
|
884
|
+
# result.wait_until_done! timeout: 60
|
885
|
+
# if result.response?
|
886
|
+
# p result.response
|
887
|
+
# else
|
888
|
+
# puts "Error!"
|
889
|
+
# end
|
890
|
+
#
|
714
891
|
def disable_processor request, options = nil
|
715
892
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
716
893
|
|
@@ -728,16 +905,20 @@ module Google
|
|
728
905
|
gapic_version: ::Google::Cloud::DocumentAI::V1beta3::VERSION
|
729
906
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
730
907
|
|
731
|
-
header_params = {
|
732
|
-
|
733
|
-
|
908
|
+
header_params = {}
|
909
|
+
if request.name
|
910
|
+
header_params["name"] = request.name
|
911
|
+
end
|
912
|
+
|
734
913
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
735
914
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
736
915
|
|
737
916
|
options.apply_defaults timeout: @config.rpcs.disable_processor.timeout,
|
738
917
|
metadata: metadata,
|
739
918
|
retry_policy: @config.rpcs.disable_processor.retry_policy
|
740
|
-
|
919
|
+
|
920
|
+
options.apply_defaults timeout: @config.timeout,
|
921
|
+
metadata: @config.metadata,
|
741
922
|
retry_policy: @config.retry_policy
|
742
923
|
|
743
924
|
@document_processor_service_stub.call_rpc :disable_processor, request, options: options do |response, operation|
|
@@ -788,6 +969,28 @@ module Google
|
|
788
969
|
#
|
789
970
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
790
971
|
#
|
972
|
+
# @example Basic example
|
973
|
+
# require "google/cloud/document_ai/v1beta3"
|
974
|
+
#
|
975
|
+
# # Create a client object. The client can be reused for multiple calls.
|
976
|
+
# client = Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.new
|
977
|
+
#
|
978
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
979
|
+
# request = Google::Cloud::DocumentAI::V1beta3::ReviewDocumentRequest.new
|
980
|
+
#
|
981
|
+
# # Call the review_document method.
|
982
|
+
# result = client.review_document request
|
983
|
+
#
|
984
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
985
|
+
# # object to check the status of an operation, cancel it, or wait
|
986
|
+
# # for results. Here is how to block until completion:
|
987
|
+
# result.wait_until_done! timeout: 60
|
988
|
+
# if result.response?
|
989
|
+
# p result.response
|
990
|
+
# else
|
991
|
+
# puts "Error!"
|
992
|
+
# end
|
993
|
+
#
|
791
994
|
def review_document request, options = nil
|
792
995
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
793
996
|
|
@@ -805,16 +1008,20 @@ module Google
|
|
805
1008
|
gapic_version: ::Google::Cloud::DocumentAI::V1beta3::VERSION
|
806
1009
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
807
1010
|
|
808
|
-
header_params = {
|
809
|
-
|
810
|
-
|
1011
|
+
header_params = {}
|
1012
|
+
if request.human_review_config
|
1013
|
+
header_params["human_review_config"] = request.human_review_config
|
1014
|
+
end
|
1015
|
+
|
811
1016
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
812
1017
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
813
1018
|
|
814
1019
|
options.apply_defaults timeout: @config.rpcs.review_document.timeout,
|
815
1020
|
metadata: metadata,
|
816
1021
|
retry_policy: @config.rpcs.review_document.retry_policy
|
817
|
-
|
1022
|
+
|
1023
|
+
options.apply_defaults timeout: @config.timeout,
|
1024
|
+
metadata: @config.metadata,
|
818
1025
|
retry_policy: @config.retry_policy
|
819
1026
|
|
820
1027
|
@document_processor_service_stub.call_rpc :review_document, request, options: options do |response, operation|
|
@@ -839,22 +1046,21 @@ module Google
|
|
839
1046
|
# Configuration can be applied globally to all clients, or to a single client
|
840
1047
|
# on construction.
|
841
1048
|
#
|
842
|
-
#
|
843
|
-
#
|
844
|
-
#
|
845
|
-
# to 20 seconds,
|
846
|
-
#
|
847
|
-
#
|
848
|
-
#
|
849
|
-
#
|
850
|
-
#
|
851
|
-
#
|
852
|
-
#
|
853
|
-
#
|
854
|
-
#
|
855
|
-
#
|
856
|
-
#
|
857
|
-
# end
|
1049
|
+
# @example
|
1050
|
+
#
|
1051
|
+
# # Modify the global config, setting the timeout for
|
1052
|
+
# # process_document to 20 seconds,
|
1053
|
+
# # and all remaining timeouts to 10 seconds.
|
1054
|
+
# ::Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.configure do |config|
|
1055
|
+
# config.timeout = 10.0
|
1056
|
+
# config.rpcs.process_document.timeout = 20.0
|
1057
|
+
# end
|
1058
|
+
#
|
1059
|
+
# # Apply the above configuration only to a new client.
|
1060
|
+
# client = ::Google::Cloud::DocumentAI::V1beta3::DocumentProcessorService::Client.new do |config|
|
1061
|
+
# config.timeout = 10.0
|
1062
|
+
# config.rpcs.process_document.timeout = 20.0
|
1063
|
+
# end
|
858
1064
|
#
|
859
1065
|
# @!attribute [rw] endpoint
|
860
1066
|
# The hostname or hostname:port of the service endpoint.
|
@@ -143,6 +143,27 @@ module Google
|
|
143
143
|
#
|
144
144
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
145
145
|
#
|
146
|
+
# @example Basic example
|
147
|
+
# require "google/longrunning"
|
148
|
+
#
|
149
|
+
# # Create a client object. The client can be reused for multiple calls.
|
150
|
+
# client = Google::Longrunning::Operations::Client.new
|
151
|
+
#
|
152
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
153
|
+
# request = Google::Longrunning::ListOperationsRequest.new
|
154
|
+
#
|
155
|
+
# # Call the list_operations method.
|
156
|
+
# result = client.list_operations request
|
157
|
+
#
|
158
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can
|
159
|
+
# # iterate over all elements by calling #each, and the enumerable
|
160
|
+
# # will lazily make API calls to fetch subsequent pages. Other
|
161
|
+
# # methods are also available for managing paging directly.
|
162
|
+
# result.each do |response|
|
163
|
+
# # Each element is of type ::Google::Longrunning::Operation.
|
164
|
+
# p response
|
165
|
+
# end
|
166
|
+
#
|
146
167
|
def list_operations request, options = nil
|
147
168
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
148
169
|
|
@@ -160,16 +181,20 @@ module Google
|
|
160
181
|
gapic_version: ::Google::Cloud::DocumentAI::V1beta3::VERSION
|
161
182
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
162
183
|
|
163
|
-
header_params = {
|
164
|
-
|
165
|
-
|
184
|
+
header_params = {}
|
185
|
+
if request.name
|
186
|
+
header_params["name"] = request.name
|
187
|
+
end
|
188
|
+
|
166
189
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
167
190
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
168
191
|
|
169
192
|
options.apply_defaults timeout: @config.rpcs.list_operations.timeout,
|
170
193
|
metadata: metadata,
|
171
194
|
retry_policy: @config.rpcs.list_operations.retry_policy
|
172
|
-
|
195
|
+
|
196
|
+
options.apply_defaults timeout: @config.timeout,
|
197
|
+
metadata: @config.metadata,
|
173
198
|
retry_policy: @config.retry_policy
|
174
199
|
|
175
200
|
@operations_stub.call_rpc :list_operations, request, options: options do |response, operation|
|
@@ -213,6 +238,28 @@ module Google
|
|
213
238
|
#
|
214
239
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
215
240
|
#
|
241
|
+
# @example Basic example
|
242
|
+
# require "google/longrunning"
|
243
|
+
#
|
244
|
+
# # Create a client object. The client can be reused for multiple calls.
|
245
|
+
# client = Google::Longrunning::Operations::Client.new
|
246
|
+
#
|
247
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
248
|
+
# request = Google::Longrunning::GetOperationRequest.new
|
249
|
+
#
|
250
|
+
# # Call the get_operation method.
|
251
|
+
# result = client.get_operation request
|
252
|
+
#
|
253
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
254
|
+
# # object to check the status of an operation, cancel it, or wait
|
255
|
+
# # for results. Here is how to block until completion:
|
256
|
+
# result.wait_until_done! timeout: 60
|
257
|
+
# if result.response?
|
258
|
+
# p result.response
|
259
|
+
# else
|
260
|
+
# puts "Error!"
|
261
|
+
# end
|
262
|
+
#
|
216
263
|
def get_operation request, options = nil
|
217
264
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
218
265
|
|
@@ -230,16 +277,20 @@ module Google
|
|
230
277
|
gapic_version: ::Google::Cloud::DocumentAI::V1beta3::VERSION
|
231
278
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
232
279
|
|
233
|
-
header_params = {
|
234
|
-
|
235
|
-
|
280
|
+
header_params = {}
|
281
|
+
if request.name
|
282
|
+
header_params["name"] = request.name
|
283
|
+
end
|
284
|
+
|
236
285
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
237
286
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
238
287
|
|
239
288
|
options.apply_defaults timeout: @config.rpcs.get_operation.timeout,
|
240
289
|
metadata: metadata,
|
241
290
|
retry_policy: @config.rpcs.get_operation.retry_policy
|
242
|
-
|
291
|
+
|
292
|
+
options.apply_defaults timeout: @config.timeout,
|
293
|
+
metadata: @config.metadata,
|
243
294
|
retry_policy: @config.retry_policy
|
244
295
|
|
245
296
|
@operations_stub.call_rpc :get_operation, request, options: options do |response, operation|
|
@@ -283,6 +334,21 @@ module Google
|
|
283
334
|
#
|
284
335
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
285
336
|
#
|
337
|
+
# @example Basic example
|
338
|
+
# require "google/longrunning"
|
339
|
+
#
|
340
|
+
# # Create a client object. The client can be reused for multiple calls.
|
341
|
+
# client = Google::Longrunning::Operations::Client.new
|
342
|
+
#
|
343
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
344
|
+
# request = Google::Longrunning::DeleteOperationRequest.new
|
345
|
+
#
|
346
|
+
# # Call the delete_operation method.
|
347
|
+
# result = client.delete_operation request
|
348
|
+
#
|
349
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
350
|
+
# p result
|
351
|
+
#
|
286
352
|
def delete_operation request, options = nil
|
287
353
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
288
354
|
|
@@ -300,16 +366,20 @@ module Google
|
|
300
366
|
gapic_version: ::Google::Cloud::DocumentAI::V1beta3::VERSION
|
301
367
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
302
368
|
|
303
|
-
header_params = {
|
304
|
-
|
305
|
-
|
369
|
+
header_params = {}
|
370
|
+
if request.name
|
371
|
+
header_params["name"] = request.name
|
372
|
+
end
|
373
|
+
|
306
374
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
307
375
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
308
376
|
|
309
377
|
options.apply_defaults timeout: @config.rpcs.delete_operation.timeout,
|
310
378
|
metadata: metadata,
|
311
379
|
retry_policy: @config.rpcs.delete_operation.retry_policy
|
312
|
-
|
380
|
+
|
381
|
+
options.apply_defaults timeout: @config.timeout,
|
382
|
+
metadata: @config.metadata,
|
313
383
|
retry_policy: @config.retry_policy
|
314
384
|
|
315
385
|
@operations_stub.call_rpc :delete_operation, request, options: options do |response, operation|
|
@@ -358,6 +428,21 @@ module Google
|
|
358
428
|
#
|
359
429
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
360
430
|
#
|
431
|
+
# @example Basic example
|
432
|
+
# require "google/longrunning"
|
433
|
+
#
|
434
|
+
# # Create a client object. The client can be reused for multiple calls.
|
435
|
+
# client = Google::Longrunning::Operations::Client.new
|
436
|
+
#
|
437
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
438
|
+
# request = Google::Longrunning::CancelOperationRequest.new
|
439
|
+
#
|
440
|
+
# # Call the cancel_operation method.
|
441
|
+
# result = client.cancel_operation request
|
442
|
+
#
|
443
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
444
|
+
# p result
|
445
|
+
#
|
361
446
|
def cancel_operation request, options = nil
|
362
447
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
363
448
|
|
@@ -375,16 +460,20 @@ module Google
|
|
375
460
|
gapic_version: ::Google::Cloud::DocumentAI::V1beta3::VERSION
|
376
461
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
377
462
|
|
378
|
-
header_params = {
|
379
|
-
|
380
|
-
|
463
|
+
header_params = {}
|
464
|
+
if request.name
|
465
|
+
header_params["name"] = request.name
|
466
|
+
end
|
467
|
+
|
381
468
|
request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
|
382
469
|
metadata[:"x-goog-request-params"] ||= request_params_header
|
383
470
|
|
384
471
|
options.apply_defaults timeout: @config.rpcs.cancel_operation.timeout,
|
385
472
|
metadata: metadata,
|
386
473
|
retry_policy: @config.rpcs.cancel_operation.retry_policy
|
387
|
-
|
474
|
+
|
475
|
+
options.apply_defaults timeout: @config.timeout,
|
476
|
+
metadata: @config.metadata,
|
388
477
|
retry_policy: @config.retry_policy
|
389
478
|
|
390
479
|
@operations_stub.call_rpc :cancel_operation, request, options: options do |response, operation|
|
@@ -436,6 +525,28 @@ module Google
|
|
436
525
|
#
|
437
526
|
# @raise [::Google::Cloud::Error] if the RPC is aborted.
|
438
527
|
#
|
528
|
+
# @example Basic example
|
529
|
+
# require "google/longrunning"
|
530
|
+
#
|
531
|
+
# # Create a client object. The client can be reused for multiple calls.
|
532
|
+
# client = Google::Longrunning::Operations::Client.new
|
533
|
+
#
|
534
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
535
|
+
# request = Google::Longrunning::WaitOperationRequest.new
|
536
|
+
#
|
537
|
+
# # Call the wait_operation method.
|
538
|
+
# result = client.wait_operation request
|
539
|
+
#
|
540
|
+
# # The returned object is of type Gapic::Operation. You can use this
|
541
|
+
# # object to check the status of an operation, cancel it, or wait
|
542
|
+
# # for results. Here is how to block until completion:
|
543
|
+
# result.wait_until_done! timeout: 60
|
544
|
+
# if result.response?
|
545
|
+
# p result.response
|
546
|
+
# else
|
547
|
+
# puts "Error!"
|
548
|
+
# end
|
549
|
+
#
|
439
550
|
def wait_operation request, options = nil
|
440
551
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
441
552
|
|
@@ -456,7 +567,9 @@ module Google
|
|
456
567
|
options.apply_defaults timeout: @config.rpcs.wait_operation.timeout,
|
457
568
|
metadata: metadata,
|
458
569
|
retry_policy: @config.rpcs.wait_operation.retry_policy
|
459
|
-
|
570
|
+
|
571
|
+
options.apply_defaults timeout: @config.timeout,
|
572
|
+
metadata: @config.metadata,
|
460
573
|
retry_policy: @config.retry_policy
|
461
574
|
|
462
575
|
@operations_stub.call_rpc :wait_operation, request, options: options do |response, operation|
|
@@ -481,22 +594,21 @@ module Google
|
|
481
594
|
# Configuration can be applied globally to all clients, or to a single client
|
482
595
|
# on construction.
|
483
596
|
#
|
484
|
-
#
|
485
|
-
#
|
486
|
-
#
|
487
|
-
# to 20 seconds,
|
488
|
-
#
|
489
|
-
#
|
490
|
-
#
|
491
|
-
#
|
492
|
-
#
|
493
|
-
#
|
494
|
-
#
|
495
|
-
#
|
496
|
-
#
|
497
|
-
#
|
498
|
-
#
|
499
|
-
# end
|
597
|
+
# @example
|
598
|
+
#
|
599
|
+
# # Modify the global config, setting the timeout for
|
600
|
+
# # list_operations to 20 seconds,
|
601
|
+
# # and all remaining timeouts to 10 seconds.
|
602
|
+
# ::Google::Longrunning::Operations::Client.configure do |config|
|
603
|
+
# config.timeout = 10.0
|
604
|
+
# config.rpcs.list_operations.timeout = 20.0
|
605
|
+
# end
|
606
|
+
#
|
607
|
+
# # Apply the above configuration only to a new client.
|
608
|
+
# client = ::Google::Longrunning::Operations::Client.new do |config|
|
609
|
+
# config.timeout = 10.0
|
610
|
+
# config.rpcs.list_operations.timeout = 20.0
|
611
|
+
# end
|
500
612
|
#
|
501
613
|
# @!attribute [rw] endpoint
|
502
614
|
# The hostname or hostname:port of the service endpoint.
|
@@ -1,9 +1,9 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/documentai/v1beta3/document_io.proto
|
3
3
|
|
4
|
+
require 'google/api/annotations_pb'
|
4
5
|
require 'google/protobuf'
|
5
6
|
|
6
|
-
require 'google/api/annotations_pb'
|
7
7
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
8
|
add_file("google/cloud/documentai/v1beta3/document_io.proto", :syntax => :proto3) do
|
9
9
|
add_message "google.cloud.documentai.v1beta3.RawDocument" do
|
@@ -1,8 +1,6 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/documentai/v1beta3/document.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/field_behavior_pb'
|
7
5
|
require 'google/cloud/documentai/v1beta3/geometry_pb'
|
8
6
|
require 'google/protobuf/timestamp_pb'
|
@@ -13,6 +11,8 @@ require 'google/type/datetime_pb'
|
|
13
11
|
require 'google/type/money_pb'
|
14
12
|
require 'google/type/postal_address_pb'
|
15
13
|
require 'google/api/annotations_pb'
|
14
|
+
require 'google/protobuf'
|
15
|
+
|
16
16
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
17
17
|
add_file("google/cloud/documentai/v1beta3/document.proto", :syntax => :proto3) do
|
18
18
|
add_message "google.cloud.documentai.v1beta3.Document" do
|
@@ -1,8 +1,6 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/documentai/v1beta3/document_processor_service.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/annotations_pb'
|
7
5
|
require 'google/api/client_pb'
|
8
6
|
require 'google/api/field_behavior_pb'
|
@@ -16,6 +14,8 @@ require 'google/longrunning/operations_pb'
|
|
16
14
|
require 'google/protobuf/field_mask_pb'
|
17
15
|
require 'google/protobuf/timestamp_pb'
|
18
16
|
require 'google/rpc/status_pb'
|
17
|
+
require 'google/protobuf'
|
18
|
+
|
19
19
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
20
20
|
add_file("google/cloud/documentai/v1beta3/document_processor_service.proto", :syntax => :proto3) do
|
21
21
|
add_message "google.cloud.documentai.v1beta3.ProcessRequest" do
|
@@ -147,6 +147,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
147
147
|
optional :create_time, :message, 3, "google.protobuf.Timestamp"
|
148
148
|
optional :update_time, :message, 4, "google.protobuf.Timestamp"
|
149
149
|
optional :common_metadata, :message, 5, "google.cloud.documentai.v1beta3.CommonOperationMetadata"
|
150
|
+
optional :question_id, :string, 6
|
150
151
|
end
|
151
152
|
add_enum "google.cloud.documentai.v1beta3.ReviewDocumentOperationMetadata.State" do
|
152
153
|
value :STATE_UNSPECIFIED, 0
|
@@ -1,9 +1,9 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/documentai/v1beta3/geometry.proto
|
3
3
|
|
4
|
+
require 'google/api/annotations_pb'
|
4
5
|
require 'google/protobuf'
|
5
6
|
|
6
|
-
require 'google/api/annotations_pb'
|
7
7
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
8
|
add_file("google/cloud/documentai/v1beta3/geometry.proto", :syntax => :proto3) do
|
9
9
|
add_message "google.cloud.documentai.v1beta3.Vertex" do
|
@@ -1,10 +1,10 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/documentai/v1beta3/operation_metadata.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/protobuf/timestamp_pb'
|
7
5
|
require 'google/api/annotations_pb'
|
6
|
+
require 'google/protobuf'
|
7
|
+
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
9
|
add_file("google/cloud/documentai/v1beta3/operation_metadata.proto", :syntax => :proto3) do
|
10
10
|
add_message "google.cloud.documentai.v1beta3.CommonOperationMetadata" do
|
@@ -1,13 +1,13 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/documentai/v1beta3/processor.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/field_behavior_pb'
|
7
5
|
require 'google/api/resource_pb'
|
8
6
|
require 'google/cloud/documentai/v1beta3/document_io_pb'
|
9
7
|
require 'google/protobuf/timestamp_pb'
|
10
8
|
require 'google/api/annotations_pb'
|
9
|
+
require 'google/protobuf'
|
10
|
+
|
11
11
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
12
12
|
add_file("google/cloud/documentai/v1beta3/processor.proto", :syntax => :proto3) do
|
13
13
|
add_message "google.cloud.documentai.v1beta3.Processor" do
|
@@ -1,10 +1,10 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# source: google/cloud/documentai/v1beta3/processor_type.proto
|
3
3
|
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
4
|
require 'google/api/resource_pb'
|
7
5
|
require 'google/api/annotations_pb'
|
6
|
+
require 'google/protobuf'
|
7
|
+
|
8
8
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
9
9
|
add_file("google/cloud/documentai/v1beta3/processor_type.proto", :syntax => :proto3) do
|
10
10
|
add_message "google.cloud.documentai.v1beta3.ProcessorType" do
|
@@ -33,11 +33,7 @@ module Google
|
|
33
33
|
# // For Kubernetes resources, the format is {api group}/{kind}.
|
34
34
|
# option (google.api.resource) = {
|
35
35
|
# type: "pubsub.googleapis.com/Topic"
|
36
|
-
#
|
37
|
-
# pattern: "projects/{project}/topics/{topic}"
|
38
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
39
|
-
# parent_name_extractor: "projects/{project}"
|
40
|
-
# }
|
36
|
+
# pattern: "projects/{project}/topics/{topic}"
|
41
37
|
# };
|
42
38
|
# }
|
43
39
|
#
|
@@ -45,10 +41,7 @@ module Google
|
|
45
41
|
#
|
46
42
|
# resources:
|
47
43
|
# - type: "pubsub.googleapis.com/Topic"
|
48
|
-
#
|
49
|
-
# - pattern: "projects/{project}/topics/{topic}"
|
50
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
51
|
-
# parent_name_extractor: "projects/{project}"
|
44
|
+
# pattern: "projects/{project}/topics/{topic}"
|
52
45
|
#
|
53
46
|
# Sometimes, resources have multiple patterns, typically because they can
|
54
47
|
# live under multiple parents.
|
@@ -58,26 +51,10 @@ module Google
|
|
58
51
|
# message LogEntry {
|
59
52
|
# option (google.api.resource) = {
|
60
53
|
# type: "logging.googleapis.com/LogEntry"
|
61
|
-
#
|
62
|
-
#
|
63
|
-
#
|
64
|
-
#
|
65
|
-
# }
|
66
|
-
# name_descriptor: {
|
67
|
-
# pattern: "folders/{folder}/logs/{log}"
|
68
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
69
|
-
# parent_name_extractor: "folders/{folder}"
|
70
|
-
# }
|
71
|
-
# name_descriptor: {
|
72
|
-
# pattern: "organizations/{organization}/logs/{log}"
|
73
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Organization"
|
74
|
-
# parent_name_extractor: "organizations/{organization}"
|
75
|
-
# }
|
76
|
-
# name_descriptor: {
|
77
|
-
# pattern: "billingAccounts/{billing_account}/logs/{log}"
|
78
|
-
# parent_type: "billing.googleapis.com/BillingAccount"
|
79
|
-
# parent_name_extractor: "billingAccounts/{billing_account}"
|
80
|
-
# }
|
54
|
+
# pattern: "projects/{project}/logs/{log}"
|
55
|
+
# pattern: "folders/{folder}/logs/{log}"
|
56
|
+
# pattern: "organizations/{organization}/logs/{log}"
|
57
|
+
# pattern: "billingAccounts/{billing_account}/logs/{log}"
|
81
58
|
# };
|
82
59
|
# }
|
83
60
|
#
|
@@ -85,48 +62,10 @@ module Google
|
|
85
62
|
#
|
86
63
|
# resources:
|
87
64
|
# - type: 'logging.googleapis.com/LogEntry'
|
88
|
-
#
|
89
|
-
#
|
90
|
-
#
|
91
|
-
#
|
92
|
-
# - pattern: "folders/{folder}/logs/{log}"
|
93
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
94
|
-
# parent_name_extractor: "folders/{folder}"
|
95
|
-
# - pattern: "organizations/{organization}/logs/{log}"
|
96
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Organization"
|
97
|
-
# parent_name_extractor: "organizations/{organization}"
|
98
|
-
# - pattern: "billingAccounts/{billing_account}/logs/{log}"
|
99
|
-
# parent_type: "billing.googleapis.com/BillingAccount"
|
100
|
-
# parent_name_extractor: "billingAccounts/{billing_account}"
|
101
|
-
#
|
102
|
-
# For flexible resources, the resource name doesn't contain parent names, but
|
103
|
-
# the resource itself has parents for policy evaluation.
|
104
|
-
#
|
105
|
-
# Example:
|
106
|
-
#
|
107
|
-
# message Shelf {
|
108
|
-
# option (google.api.resource) = {
|
109
|
-
# type: "library.googleapis.com/Shelf"
|
110
|
-
# name_descriptor: {
|
111
|
-
# pattern: "shelves/{shelf}"
|
112
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
113
|
-
# }
|
114
|
-
# name_descriptor: {
|
115
|
-
# pattern: "shelves/{shelf}"
|
116
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
117
|
-
# }
|
118
|
-
# };
|
119
|
-
# }
|
120
|
-
#
|
121
|
-
# The ResourceDescriptor Yaml config will look like:
|
122
|
-
#
|
123
|
-
# resources:
|
124
|
-
# - type: 'library.googleapis.com/Shelf'
|
125
|
-
# name_descriptor:
|
126
|
-
# - pattern: "shelves/{shelf}"
|
127
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Project"
|
128
|
-
# - pattern: "shelves/{shelf}"
|
129
|
-
# parent_type: "cloudresourcemanager.googleapis.com/Folder"
|
65
|
+
# pattern: "projects/{project}/logs/{log}"
|
66
|
+
# pattern: "folders/{folder}/logs/{log}"
|
67
|
+
# pattern: "organizations/{organization}/logs/{log}"
|
68
|
+
# pattern: "billingAccounts/{billing_account}/logs/{log}"
|
130
69
|
# @!attribute [rw] type
|
131
70
|
# @return [::String]
|
132
71
|
# The resource type. It must be in the format of
|
@@ -420,6 +420,9 @@ module Google
|
|
420
420
|
# @!attribute [rw] common_metadata
|
421
421
|
# @return [::Google::Cloud::DocumentAI::V1beta3::CommonOperationMetadata]
|
422
422
|
# The basic metadata of the long running operation.
|
423
|
+
# @!attribute [rw] question_id
|
424
|
+
# @return [::String]
|
425
|
+
# The question ID.
|
423
426
|
class ReviewDocumentOperationMetadata
|
424
427
|
include ::Google::Protobuf::MessageExts
|
425
428
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
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.10.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: 2022-02-09 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.7'
|
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.7'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -228,7 +228,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
228
228
|
- !ruby/object:Gem::Version
|
229
229
|
version: '0'
|
230
230
|
requirements: []
|
231
|
-
rubygems_version: 3.
|
231
|
+
rubygems_version: 3.3.5
|
232
232
|
signing_key:
|
233
233
|
specification_version: 4
|
234
234
|
summary: API Client library for the Document AI V1beta3 API
|