google-cloud-document_ai-v1 0.20.0 → 0.21.1
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/lib/google/cloud/document_ai/v1/document_processor_service/client.rb +50 -23
- data/lib/google/cloud/document_ai/v1/document_processor_service/operations.rb +13 -5
- data/lib/google/cloud/document_ai/v1/document_processor_service/rest/client.rb +50 -23
- data/lib/google/cloud/document_ai/v1/document_processor_service/rest/operations.rb +11 -4
- data/lib/google/cloud/document_ai/v1/version.rb +1 -1
- data/lib/google/cloud/documentai/v1/document_processor_service_pb.rb +2 -1
- data/lib/google/cloud/documentai/v1/processor_pb.rb +1 -1
- data/proto_docs/google/api/client.rb +4 -0
- data/proto_docs/google/cloud/documentai/v1/document.rb +4 -4
- data/proto_docs/google/cloud/documentai/v1/document_processor_service.rb +18 -0
- data/proto_docs/google/cloud/documentai/v1/processor.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fe5b4b89f9de99c9eb7b5c4ee673613ea24b7b3e17212197fca9794754c2c899
|
|
4
|
+
data.tar.gz: 03e31159dd60913b995a2a8d5a7be5ee4737ef389140a6d63a5c5f43a48e74db
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 675d27ea9b5924cc4e41e31278b852f7956df1c2b80c2c0b0acdbb5a399ac7401fd0d72f71bfa15190a9d6a08038bbec0df7203430baefc20bccf709c6f3261c
|
|
7
|
+
data.tar.gz: '08b9f3c0751e5ce5fc1928640e36cb10ddba8eb5f44d91894d25a0f6a4237255bbc67599be18f0d94612212e0e749ef71c20a838d9bd97aaa4c8ec3868440145'
|
|
@@ -34,6 +34,9 @@ module Google
|
|
|
34
34
|
# structured information from unstructured or semi-structured documents.
|
|
35
35
|
#
|
|
36
36
|
class Client
|
|
37
|
+
# @private
|
|
38
|
+
API_VERSION = ""
|
|
39
|
+
|
|
37
40
|
# @private
|
|
38
41
|
DEFAULT_ENDPOINT_TEMPLATE = "documentai.$UNIVERSE_DOMAIN$"
|
|
39
42
|
|
|
@@ -294,10 +297,11 @@ module Google
|
|
|
294
297
|
# Customize the options with defaults
|
|
295
298
|
metadata = @config.rpcs.process_document.metadata.to_h
|
|
296
299
|
|
|
297
|
-
# Set x-goog-api-client
|
|
300
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
298
301
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
299
302
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
300
303
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
304
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
301
305
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
302
306
|
|
|
303
307
|
header_params = {}
|
|
@@ -412,10 +416,11 @@ module Google
|
|
|
412
416
|
# Customize the options with defaults
|
|
413
417
|
metadata = @config.rpcs.batch_process_documents.metadata.to_h
|
|
414
418
|
|
|
415
|
-
# Set x-goog-api-client
|
|
419
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
416
420
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
417
421
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
418
422
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
423
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
419
424
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
420
425
|
|
|
421
426
|
header_params = {}
|
|
@@ -501,10 +506,11 @@ module Google
|
|
|
501
506
|
# Customize the options with defaults
|
|
502
507
|
metadata = @config.rpcs.fetch_processor_types.metadata.to_h
|
|
503
508
|
|
|
504
|
-
# Set x-goog-api-client
|
|
509
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
505
510
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
506
511
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
507
512
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
513
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
508
514
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
509
515
|
|
|
510
516
|
header_params = {}
|
|
@@ -597,10 +603,11 @@ module Google
|
|
|
597
603
|
# Customize the options with defaults
|
|
598
604
|
metadata = @config.rpcs.list_processor_types.metadata.to_h
|
|
599
605
|
|
|
600
|
-
# Set x-goog-api-client
|
|
606
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
601
607
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
602
608
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
603
609
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
610
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
604
611
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
605
612
|
|
|
606
613
|
header_params = {}
|
|
@@ -683,10 +690,11 @@ module Google
|
|
|
683
690
|
# Customize the options with defaults
|
|
684
691
|
metadata = @config.rpcs.get_processor_type.metadata.to_h
|
|
685
692
|
|
|
686
|
-
# Set x-goog-api-client
|
|
693
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
687
694
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
688
695
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
689
696
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
697
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
690
698
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
691
699
|
|
|
692
700
|
header_params = {}
|
|
@@ -780,10 +788,11 @@ module Google
|
|
|
780
788
|
# Customize the options with defaults
|
|
781
789
|
metadata = @config.rpcs.list_processors.metadata.to_h
|
|
782
790
|
|
|
783
|
-
# Set x-goog-api-client
|
|
791
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
784
792
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
785
793
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
786
794
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
795
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
787
796
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
788
797
|
|
|
789
798
|
header_params = {}
|
|
@@ -866,10 +875,11 @@ module Google
|
|
|
866
875
|
# Customize the options with defaults
|
|
867
876
|
metadata = @config.rpcs.get_processor.metadata.to_h
|
|
868
877
|
|
|
869
|
-
# Set x-goog-api-client
|
|
878
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
870
879
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
871
880
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
872
881
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
882
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
873
883
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
874
884
|
|
|
875
885
|
header_params = {}
|
|
@@ -911,13 +921,15 @@ module Google
|
|
|
911
921
|
# @param options [::Gapic::CallOptions, ::Hash]
|
|
912
922
|
# Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
|
|
913
923
|
#
|
|
914
|
-
# @overload train_processor_version(custom_document_extraction_options: nil, parent: nil, processor_version: nil, document_schema: nil, input_data: nil, base_processor_version: nil)
|
|
924
|
+
# @overload train_processor_version(custom_document_extraction_options: nil, foundation_model_tuning_options: nil, parent: nil, processor_version: nil, document_schema: nil, input_data: nil, base_processor_version: nil)
|
|
915
925
|
# Pass arguments to `train_processor_version` via keyword arguments. Note that at
|
|
916
926
|
# least one keyword argument is required. To specify no parameters, or to keep all
|
|
917
927
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
|
918
928
|
#
|
|
919
929
|
# @param custom_document_extraction_options [::Google::Cloud::DocumentAI::V1::TrainProcessorVersionRequest::CustomDocumentExtractionOptions, ::Hash]
|
|
920
930
|
# Options to control Custom Document Extraction (CDE) Processor.
|
|
931
|
+
# @param foundation_model_tuning_options [::Google::Cloud::DocumentAI::V1::TrainProcessorVersionRequest::FoundationModelTuningOptions, ::Hash]
|
|
932
|
+
# Options to control foundation model tuning of a processor.
|
|
921
933
|
# @param parent [::String]
|
|
922
934
|
# Required. The parent (project, location and processor) to create the new
|
|
923
935
|
# version for. Format:
|
|
@@ -975,10 +987,11 @@ module Google
|
|
|
975
987
|
# Customize the options with defaults
|
|
976
988
|
metadata = @config.rpcs.train_processor_version.metadata.to_h
|
|
977
989
|
|
|
978
|
-
# Set x-goog-api-client
|
|
990
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
979
991
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
980
992
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
981
993
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
994
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
982
995
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
983
996
|
|
|
984
997
|
header_params = {}
|
|
@@ -1061,10 +1074,11 @@ module Google
|
|
|
1061
1074
|
# Customize the options with defaults
|
|
1062
1075
|
metadata = @config.rpcs.get_processor_version.metadata.to_h
|
|
1063
1076
|
|
|
1064
|
-
# Set x-goog-api-client
|
|
1077
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1065
1078
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1066
1079
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1067
1080
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
1081
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1068
1082
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1069
1083
|
|
|
1070
1084
|
header_params = {}
|
|
@@ -1159,10 +1173,11 @@ module Google
|
|
|
1159
1173
|
# Customize the options with defaults
|
|
1160
1174
|
metadata = @config.rpcs.list_processor_versions.metadata.to_h
|
|
1161
1175
|
|
|
1162
|
-
# Set x-goog-api-client
|
|
1176
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1163
1177
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1164
1178
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1165
1179
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
1180
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1166
1181
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1167
1182
|
|
|
1168
1183
|
header_params = {}
|
|
@@ -1253,10 +1268,11 @@ module Google
|
|
|
1253
1268
|
# Customize the options with defaults
|
|
1254
1269
|
metadata = @config.rpcs.delete_processor_version.metadata.to_h
|
|
1255
1270
|
|
|
1256
|
-
# Set x-goog-api-client
|
|
1271
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1257
1272
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1258
1273
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1259
1274
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
1275
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1260
1276
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1261
1277
|
|
|
1262
1278
|
header_params = {}
|
|
@@ -1346,10 +1362,11 @@ module Google
|
|
|
1346
1362
|
# Customize the options with defaults
|
|
1347
1363
|
metadata = @config.rpcs.deploy_processor_version.metadata.to_h
|
|
1348
1364
|
|
|
1349
|
-
# Set x-goog-api-client
|
|
1365
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1350
1366
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1351
1367
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1352
1368
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
1369
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1353
1370
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1354
1371
|
|
|
1355
1372
|
header_params = {}
|
|
@@ -1439,10 +1456,11 @@ module Google
|
|
|
1439
1456
|
# Customize the options with defaults
|
|
1440
1457
|
metadata = @config.rpcs.undeploy_processor_version.metadata.to_h
|
|
1441
1458
|
|
|
1442
|
-
# Set x-goog-api-client
|
|
1459
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1443
1460
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1444
1461
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1445
1462
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
1463
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1446
1464
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1447
1465
|
|
|
1448
1466
|
header_params = {}
|
|
@@ -1535,10 +1553,11 @@ module Google
|
|
|
1535
1553
|
# Customize the options with defaults
|
|
1536
1554
|
metadata = @config.rpcs.create_processor.metadata.to_h
|
|
1537
1555
|
|
|
1538
|
-
# Set x-goog-api-client
|
|
1556
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1539
1557
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1540
1558
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1541
1559
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
1560
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1542
1561
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1543
1562
|
|
|
1544
1563
|
header_params = {}
|
|
@@ -1628,10 +1647,11 @@ module Google
|
|
|
1628
1647
|
# Customize the options with defaults
|
|
1629
1648
|
metadata = @config.rpcs.delete_processor.metadata.to_h
|
|
1630
1649
|
|
|
1631
|
-
# Set x-goog-api-client
|
|
1650
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1632
1651
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1633
1652
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1634
1653
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
1654
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1635
1655
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1636
1656
|
|
|
1637
1657
|
header_params = {}
|
|
@@ -1721,10 +1741,11 @@ module Google
|
|
|
1721
1741
|
# Customize the options with defaults
|
|
1722
1742
|
metadata = @config.rpcs.enable_processor.metadata.to_h
|
|
1723
1743
|
|
|
1724
|
-
# Set x-goog-api-client
|
|
1744
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1725
1745
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1726
1746
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1727
1747
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
1748
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1728
1749
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1729
1750
|
|
|
1730
1751
|
header_params = {}
|
|
@@ -1814,10 +1835,11 @@ module Google
|
|
|
1814
1835
|
# Customize the options with defaults
|
|
1815
1836
|
metadata = @config.rpcs.disable_processor.metadata.to_h
|
|
1816
1837
|
|
|
1817
|
-
# Set x-goog-api-client
|
|
1838
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1818
1839
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1819
1840
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1820
1841
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
1842
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1821
1843
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1822
1844
|
|
|
1823
1845
|
header_params = {}
|
|
@@ -1918,10 +1940,11 @@ module Google
|
|
|
1918
1940
|
# Customize the options with defaults
|
|
1919
1941
|
metadata = @config.rpcs.set_default_processor_version.metadata.to_h
|
|
1920
1942
|
|
|
1921
|
-
# Set x-goog-api-client
|
|
1943
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1922
1944
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1923
1945
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1924
1946
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
1947
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1925
1948
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1926
1949
|
|
|
1927
1950
|
header_params = {}
|
|
@@ -2022,10 +2045,11 @@ module Google
|
|
|
2022
2045
|
# Customize the options with defaults
|
|
2023
2046
|
metadata = @config.rpcs.review_document.metadata.to_h
|
|
2024
2047
|
|
|
2025
|
-
# Set x-goog-api-client
|
|
2048
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
2026
2049
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
2027
2050
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
2028
2051
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
2052
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
2029
2053
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
2030
2054
|
|
|
2031
2055
|
header_params = {}
|
|
@@ -2122,10 +2146,11 @@ module Google
|
|
|
2122
2146
|
# Customize the options with defaults
|
|
2123
2147
|
metadata = @config.rpcs.evaluate_processor_version.metadata.to_h
|
|
2124
2148
|
|
|
2125
|
-
# Set x-goog-api-client
|
|
2149
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
2126
2150
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
2127
2151
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
2128
2152
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
2153
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
2129
2154
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
2130
2155
|
|
|
2131
2156
|
header_params = {}
|
|
@@ -2210,10 +2235,11 @@ module Google
|
|
|
2210
2235
|
# Customize the options with defaults
|
|
2211
2236
|
metadata = @config.rpcs.get_evaluation.metadata.to_h
|
|
2212
2237
|
|
|
2213
|
-
# Set x-goog-api-client
|
|
2238
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
2214
2239
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
2215
2240
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
2216
2241
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
2242
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
2217
2243
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
2218
2244
|
|
|
2219
2245
|
header_params = {}
|
|
@@ -2309,10 +2335,11 @@ module Google
|
|
|
2309
2335
|
# Customize the options with defaults
|
|
2310
2336
|
metadata = @config.rpcs.list_evaluations.metadata.to_h
|
|
2311
2337
|
|
|
2312
|
-
# Set x-goog-api-client
|
|
2338
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
2313
2339
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
2314
2340
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
2315
2341
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
2342
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
2316
2343
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
2317
2344
|
|
|
2318
2345
|
header_params = {}
|
|
@@ -26,6 +26,9 @@ module Google
|
|
|
26
26
|
module DocumentProcessorService
|
|
27
27
|
# Service that implements Longrunning Operations API.
|
|
28
28
|
class Operations
|
|
29
|
+
# @private
|
|
30
|
+
API_VERSION = ""
|
|
31
|
+
|
|
29
32
|
# @private
|
|
30
33
|
DEFAULT_ENDPOINT_TEMPLATE = "documentai.$UNIVERSE_DOMAIN$"
|
|
31
34
|
|
|
@@ -191,10 +194,11 @@ module Google
|
|
|
191
194
|
# Customize the options with defaults
|
|
192
195
|
metadata = @config.rpcs.list_operations.metadata.to_h
|
|
193
196
|
|
|
194
|
-
# Set x-goog-api-client
|
|
197
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
195
198
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
196
199
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
197
200
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
201
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
198
202
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
199
203
|
|
|
200
204
|
header_params = {}
|
|
@@ -287,10 +291,11 @@ module Google
|
|
|
287
291
|
# Customize the options with defaults
|
|
288
292
|
metadata = @config.rpcs.get_operation.metadata.to_h
|
|
289
293
|
|
|
290
|
-
# Set x-goog-api-client
|
|
294
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
291
295
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
292
296
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
293
297
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
298
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
294
299
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
295
300
|
|
|
296
301
|
header_params = {}
|
|
@@ -376,10 +381,11 @@ module Google
|
|
|
376
381
|
# Customize the options with defaults
|
|
377
382
|
metadata = @config.rpcs.delete_operation.metadata.to_h
|
|
378
383
|
|
|
379
|
-
# Set x-goog-api-client
|
|
384
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
380
385
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
381
386
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
382
387
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
388
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
383
389
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
384
390
|
|
|
385
391
|
header_params = {}
|
|
@@ -470,10 +476,11 @@ module Google
|
|
|
470
476
|
# Customize the options with defaults
|
|
471
477
|
metadata = @config.rpcs.cancel_operation.metadata.to_h
|
|
472
478
|
|
|
473
|
-
# Set x-goog-api-client
|
|
479
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
474
480
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
475
481
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
476
482
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
483
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
477
484
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
478
485
|
|
|
479
486
|
header_params = {}
|
|
@@ -574,10 +581,11 @@ module Google
|
|
|
574
581
|
# Customize the options with defaults
|
|
575
582
|
metadata = @config.rpcs.wait_operation.metadata.to_h
|
|
576
583
|
|
|
577
|
-
# Set x-goog-api-client
|
|
584
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
578
585
|
metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
579
586
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
580
587
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION
|
|
588
|
+
metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
581
589
|
metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
582
590
|
|
|
583
591
|
options.apply_defaults timeout: @config.rpcs.wait_operation.timeout,
|
|
@@ -36,6 +36,9 @@ module Google
|
|
|
36
36
|
# structured information from unstructured or semi-structured documents.
|
|
37
37
|
#
|
|
38
38
|
class Client
|
|
39
|
+
# @private
|
|
40
|
+
API_VERSION = ""
|
|
41
|
+
|
|
39
42
|
# @private
|
|
40
43
|
DEFAULT_ENDPOINT_TEMPLATE = "documentai.$UNIVERSE_DOMAIN$"
|
|
41
44
|
|
|
@@ -287,12 +290,13 @@ module Google
|
|
|
287
290
|
# Customize the options with defaults
|
|
288
291
|
call_metadata = @config.rpcs.process_document.metadata.to_h
|
|
289
292
|
|
|
290
|
-
# Set x-goog-api-client
|
|
293
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
291
294
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
292
295
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
293
296
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
294
297
|
transports_version_send: [:rest]
|
|
295
298
|
|
|
299
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
296
300
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
297
301
|
|
|
298
302
|
options.apply_defaults timeout: @config.rpcs.process_document.timeout,
|
|
@@ -398,12 +402,13 @@ module Google
|
|
|
398
402
|
# Customize the options with defaults
|
|
399
403
|
call_metadata = @config.rpcs.batch_process_documents.metadata.to_h
|
|
400
404
|
|
|
401
|
-
# Set x-goog-api-client
|
|
405
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
402
406
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
403
407
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
404
408
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
405
409
|
transports_version_send: [:rest]
|
|
406
410
|
|
|
411
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
407
412
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
408
413
|
|
|
409
414
|
options.apply_defaults timeout: @config.rpcs.batch_process_documents.timeout,
|
|
@@ -480,12 +485,13 @@ module Google
|
|
|
480
485
|
# Customize the options with defaults
|
|
481
486
|
call_metadata = @config.rpcs.fetch_processor_types.metadata.to_h
|
|
482
487
|
|
|
483
|
-
# Set x-goog-api-client
|
|
488
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
484
489
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
485
490
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
486
491
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
487
492
|
transports_version_send: [:rest]
|
|
488
493
|
|
|
494
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
489
495
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
490
496
|
|
|
491
497
|
options.apply_defaults timeout: @config.rpcs.fetch_processor_types.timeout,
|
|
@@ -569,12 +575,13 @@ module Google
|
|
|
569
575
|
# Customize the options with defaults
|
|
570
576
|
call_metadata = @config.rpcs.list_processor_types.metadata.to_h
|
|
571
577
|
|
|
572
|
-
# Set x-goog-api-client
|
|
578
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
573
579
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
574
580
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
575
581
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
576
582
|
transports_version_send: [:rest]
|
|
577
583
|
|
|
584
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
578
585
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
579
586
|
|
|
580
587
|
options.apply_defaults timeout: @config.rpcs.list_processor_types.timeout,
|
|
@@ -648,12 +655,13 @@ module Google
|
|
|
648
655
|
# Customize the options with defaults
|
|
649
656
|
call_metadata = @config.rpcs.get_processor_type.metadata.to_h
|
|
650
657
|
|
|
651
|
-
# Set x-goog-api-client
|
|
658
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
652
659
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
653
660
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
654
661
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
655
662
|
transports_version_send: [:rest]
|
|
656
663
|
|
|
664
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
657
665
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
658
666
|
|
|
659
667
|
options.apply_defaults timeout: @config.rpcs.get_processor_type.timeout,
|
|
@@ -738,12 +746,13 @@ module Google
|
|
|
738
746
|
# Customize the options with defaults
|
|
739
747
|
call_metadata = @config.rpcs.list_processors.metadata.to_h
|
|
740
748
|
|
|
741
|
-
# Set x-goog-api-client
|
|
749
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
742
750
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
743
751
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
744
752
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
745
753
|
transports_version_send: [:rest]
|
|
746
754
|
|
|
755
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
747
756
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
748
757
|
|
|
749
758
|
options.apply_defaults timeout: @config.rpcs.list_processors.timeout,
|
|
@@ -817,12 +826,13 @@ module Google
|
|
|
817
826
|
# Customize the options with defaults
|
|
818
827
|
call_metadata = @config.rpcs.get_processor.metadata.to_h
|
|
819
828
|
|
|
820
|
-
# Set x-goog-api-client
|
|
829
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
821
830
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
822
831
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
823
832
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
824
833
|
transports_version_send: [:rest]
|
|
825
834
|
|
|
835
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
826
836
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
827
837
|
|
|
828
838
|
options.apply_defaults timeout: @config.rpcs.get_processor.timeout,
|
|
@@ -856,13 +866,15 @@ module Google
|
|
|
856
866
|
# @param options [::Gapic::CallOptions, ::Hash]
|
|
857
867
|
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
|
858
868
|
#
|
|
859
|
-
# @overload train_processor_version(custom_document_extraction_options: nil, parent: nil, processor_version: nil, document_schema: nil, input_data: nil, base_processor_version: nil)
|
|
869
|
+
# @overload train_processor_version(custom_document_extraction_options: nil, foundation_model_tuning_options: nil, parent: nil, processor_version: nil, document_schema: nil, input_data: nil, base_processor_version: nil)
|
|
860
870
|
# Pass arguments to `train_processor_version` via keyword arguments. Note that at
|
|
861
871
|
# least one keyword argument is required. To specify no parameters, or to keep all
|
|
862
872
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
|
863
873
|
#
|
|
864
874
|
# @param custom_document_extraction_options [::Google::Cloud::DocumentAI::V1::TrainProcessorVersionRequest::CustomDocumentExtractionOptions, ::Hash]
|
|
865
875
|
# Options to control Custom Document Extraction (CDE) Processor.
|
|
876
|
+
# @param foundation_model_tuning_options [::Google::Cloud::DocumentAI::V1::TrainProcessorVersionRequest::FoundationModelTuningOptions, ::Hash]
|
|
877
|
+
# Options to control foundation model tuning of a processor.
|
|
866
878
|
# @param parent [::String]
|
|
867
879
|
# Required. The parent (project, location and processor) to create the new
|
|
868
880
|
# version for. Format:
|
|
@@ -919,12 +931,13 @@ module Google
|
|
|
919
931
|
# Customize the options with defaults
|
|
920
932
|
call_metadata = @config.rpcs.train_processor_version.metadata.to_h
|
|
921
933
|
|
|
922
|
-
# Set x-goog-api-client
|
|
934
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
923
935
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
924
936
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
925
937
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
926
938
|
transports_version_send: [:rest]
|
|
927
939
|
|
|
940
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
928
941
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
929
942
|
|
|
930
943
|
options.apply_defaults timeout: @config.rpcs.train_processor_version.timeout,
|
|
@@ -998,12 +1011,13 @@ module Google
|
|
|
998
1011
|
# Customize the options with defaults
|
|
999
1012
|
call_metadata = @config.rpcs.get_processor_version.metadata.to_h
|
|
1000
1013
|
|
|
1001
|
-
# Set x-goog-api-client
|
|
1014
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1002
1015
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1003
1016
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1004
1017
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
1005
1018
|
transports_version_send: [:rest]
|
|
1006
1019
|
|
|
1020
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1007
1021
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1008
1022
|
|
|
1009
1023
|
options.apply_defaults timeout: @config.rpcs.get_processor_version.timeout,
|
|
@@ -1089,12 +1103,13 @@ module Google
|
|
|
1089
1103
|
# Customize the options with defaults
|
|
1090
1104
|
call_metadata = @config.rpcs.list_processor_versions.metadata.to_h
|
|
1091
1105
|
|
|
1092
|
-
# Set x-goog-api-client
|
|
1106
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1093
1107
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1094
1108
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1095
1109
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
1096
1110
|
transports_version_send: [:rest]
|
|
1097
1111
|
|
|
1112
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1098
1113
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1099
1114
|
|
|
1100
1115
|
options.apply_defaults timeout: @config.rpcs.list_processor_versions.timeout,
|
|
@@ -1176,12 +1191,13 @@ module Google
|
|
|
1176
1191
|
# Customize the options with defaults
|
|
1177
1192
|
call_metadata = @config.rpcs.delete_processor_version.metadata.to_h
|
|
1178
1193
|
|
|
1179
|
-
# Set x-goog-api-client
|
|
1194
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1180
1195
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1181
1196
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1182
1197
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
1183
1198
|
transports_version_send: [:rest]
|
|
1184
1199
|
|
|
1200
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1185
1201
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1186
1202
|
|
|
1187
1203
|
options.apply_defaults timeout: @config.rpcs.delete_processor_version.timeout,
|
|
@@ -1262,12 +1278,13 @@ module Google
|
|
|
1262
1278
|
# Customize the options with defaults
|
|
1263
1279
|
call_metadata = @config.rpcs.deploy_processor_version.metadata.to_h
|
|
1264
1280
|
|
|
1265
|
-
# Set x-goog-api-client
|
|
1281
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1266
1282
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1267
1283
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1268
1284
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
1269
1285
|
transports_version_send: [:rest]
|
|
1270
1286
|
|
|
1287
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1271
1288
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1272
1289
|
|
|
1273
1290
|
options.apply_defaults timeout: @config.rpcs.deploy_processor_version.timeout,
|
|
@@ -1348,12 +1365,13 @@ module Google
|
|
|
1348
1365
|
# Customize the options with defaults
|
|
1349
1366
|
call_metadata = @config.rpcs.undeploy_processor_version.metadata.to_h
|
|
1350
1367
|
|
|
1351
|
-
# Set x-goog-api-client
|
|
1368
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1352
1369
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1353
1370
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1354
1371
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
1355
1372
|
transports_version_send: [:rest]
|
|
1356
1373
|
|
|
1374
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1357
1375
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1358
1376
|
|
|
1359
1377
|
options.apply_defaults timeout: @config.rpcs.undeploy_processor_version.timeout,
|
|
@@ -1437,12 +1455,13 @@ module Google
|
|
|
1437
1455
|
# Customize the options with defaults
|
|
1438
1456
|
call_metadata = @config.rpcs.create_processor.metadata.to_h
|
|
1439
1457
|
|
|
1440
|
-
# Set x-goog-api-client
|
|
1458
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1441
1459
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1442
1460
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1443
1461
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
1444
1462
|
transports_version_send: [:rest]
|
|
1445
1463
|
|
|
1464
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1446
1465
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1447
1466
|
|
|
1448
1467
|
options.apply_defaults timeout: @config.rpcs.create_processor.timeout,
|
|
@@ -1523,12 +1542,13 @@ module Google
|
|
|
1523
1542
|
# Customize the options with defaults
|
|
1524
1543
|
call_metadata = @config.rpcs.delete_processor.metadata.to_h
|
|
1525
1544
|
|
|
1526
|
-
# Set x-goog-api-client
|
|
1545
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1527
1546
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1528
1547
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1529
1548
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
1530
1549
|
transports_version_send: [:rest]
|
|
1531
1550
|
|
|
1551
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1532
1552
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1533
1553
|
|
|
1534
1554
|
options.apply_defaults timeout: @config.rpcs.delete_processor.timeout,
|
|
@@ -1609,12 +1629,13 @@ module Google
|
|
|
1609
1629
|
# Customize the options with defaults
|
|
1610
1630
|
call_metadata = @config.rpcs.enable_processor.metadata.to_h
|
|
1611
1631
|
|
|
1612
|
-
# Set x-goog-api-client
|
|
1632
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1613
1633
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1614
1634
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1615
1635
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
1616
1636
|
transports_version_send: [:rest]
|
|
1617
1637
|
|
|
1638
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1618
1639
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1619
1640
|
|
|
1620
1641
|
options.apply_defaults timeout: @config.rpcs.enable_processor.timeout,
|
|
@@ -1695,12 +1716,13 @@ module Google
|
|
|
1695
1716
|
# Customize the options with defaults
|
|
1696
1717
|
call_metadata = @config.rpcs.disable_processor.metadata.to_h
|
|
1697
1718
|
|
|
1698
|
-
# Set x-goog-api-client
|
|
1719
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1699
1720
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1700
1721
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1701
1722
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
1702
1723
|
transports_version_send: [:rest]
|
|
1703
1724
|
|
|
1725
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1704
1726
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1705
1727
|
|
|
1706
1728
|
options.apply_defaults timeout: @config.rpcs.disable_processor.timeout,
|
|
@@ -1792,12 +1814,13 @@ module Google
|
|
|
1792
1814
|
# Customize the options with defaults
|
|
1793
1815
|
call_metadata = @config.rpcs.set_default_processor_version.metadata.to_h
|
|
1794
1816
|
|
|
1795
|
-
# Set x-goog-api-client
|
|
1817
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1796
1818
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1797
1819
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1798
1820
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
1799
1821
|
transports_version_send: [:rest]
|
|
1800
1822
|
|
|
1823
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1801
1824
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1802
1825
|
|
|
1803
1826
|
options.apply_defaults timeout: @config.rpcs.set_default_processor_version.timeout,
|
|
@@ -1889,12 +1912,13 @@ module Google
|
|
|
1889
1912
|
# Customize the options with defaults
|
|
1890
1913
|
call_metadata = @config.rpcs.review_document.metadata.to_h
|
|
1891
1914
|
|
|
1892
|
-
# Set x-goog-api-client
|
|
1915
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1893
1916
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1894
1917
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1895
1918
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
1896
1919
|
transports_version_send: [:rest]
|
|
1897
1920
|
|
|
1921
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1898
1922
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1899
1923
|
|
|
1900
1924
|
options.apply_defaults timeout: @config.rpcs.review_document.timeout,
|
|
@@ -1982,12 +2006,13 @@ module Google
|
|
|
1982
2006
|
# Customize the options with defaults
|
|
1983
2007
|
call_metadata = @config.rpcs.evaluate_processor_version.metadata.to_h
|
|
1984
2008
|
|
|
1985
|
-
# Set x-goog-api-client
|
|
2009
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
1986
2010
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
1987
2011
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
1988
2012
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
1989
2013
|
transports_version_send: [:rest]
|
|
1990
2014
|
|
|
2015
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
1991
2016
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
1992
2017
|
|
|
1993
2018
|
options.apply_defaults timeout: @config.rpcs.evaluate_processor_version.timeout,
|
|
@@ -2063,12 +2088,13 @@ module Google
|
|
|
2063
2088
|
# Customize the options with defaults
|
|
2064
2089
|
call_metadata = @config.rpcs.get_evaluation.metadata.to_h
|
|
2065
2090
|
|
|
2066
|
-
# Set x-goog-api-client
|
|
2091
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
2067
2092
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
2068
2093
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
2069
2094
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
2070
2095
|
transports_version_send: [:rest]
|
|
2071
2096
|
|
|
2097
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
2072
2098
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
2073
2099
|
|
|
2074
2100
|
options.apply_defaults timeout: @config.rpcs.get_evaluation.timeout,
|
|
@@ -2155,12 +2181,13 @@ module Google
|
|
|
2155
2181
|
# Customize the options with defaults
|
|
2156
2182
|
call_metadata = @config.rpcs.list_evaluations.metadata.to_h
|
|
2157
2183
|
|
|
2158
|
-
# Set x-goog-api-client
|
|
2184
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
2159
2185
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
2160
2186
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
2161
2187
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
2162
2188
|
transports_version_send: [:rest]
|
|
2163
2189
|
|
|
2190
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
2164
2191
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
2165
2192
|
|
|
2166
2193
|
options.apply_defaults timeout: @config.rpcs.list_evaluations.timeout,
|
|
@@ -26,6 +26,9 @@ module Google
|
|
|
26
26
|
module Rest
|
|
27
27
|
# Service that implements Longrunning Operations API.
|
|
28
28
|
class Operations
|
|
29
|
+
# @private
|
|
30
|
+
API_VERSION = ""
|
|
31
|
+
|
|
29
32
|
# @private
|
|
30
33
|
DEFAULT_ENDPOINT_TEMPLATE = "documentai.$UNIVERSE_DOMAIN$"
|
|
31
34
|
|
|
@@ -181,12 +184,13 @@ module Google
|
|
|
181
184
|
# Customize the options with defaults
|
|
182
185
|
call_metadata = @config.rpcs.list_operations.metadata.to_h
|
|
183
186
|
|
|
184
|
-
# Set x-goog-api-client
|
|
187
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
185
188
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
186
189
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
187
190
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
188
191
|
transports_version_send: [:rest]
|
|
189
192
|
|
|
193
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
190
194
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
191
195
|
|
|
192
196
|
options.apply_defaults timeout: @config.rpcs.list_operations.timeout,
|
|
@@ -269,12 +273,13 @@ module Google
|
|
|
269
273
|
# Customize the options with defaults
|
|
270
274
|
call_metadata = @config.rpcs.get_operation.metadata.to_h
|
|
271
275
|
|
|
272
|
-
# Set x-goog-api-client
|
|
276
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
273
277
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
274
278
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
275
279
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
276
280
|
transports_version_send: [:rest]
|
|
277
281
|
|
|
282
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
278
283
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
279
284
|
|
|
280
285
|
options.apply_defaults timeout: @config.rpcs.get_operation.timeout,
|
|
@@ -351,12 +356,13 @@ module Google
|
|
|
351
356
|
# Customize the options with defaults
|
|
352
357
|
call_metadata = @config.rpcs.delete_operation.metadata.to_h
|
|
353
358
|
|
|
354
|
-
# Set x-goog-api-client
|
|
359
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
355
360
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
356
361
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
357
362
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
358
363
|
transports_version_send: [:rest]
|
|
359
364
|
|
|
365
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
360
366
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
361
367
|
|
|
362
368
|
options.apply_defaults timeout: @config.rpcs.delete_operation.timeout,
|
|
@@ -438,12 +444,13 @@ module Google
|
|
|
438
444
|
# Customize the options with defaults
|
|
439
445
|
call_metadata = @config.rpcs.cancel_operation.metadata.to_h
|
|
440
446
|
|
|
441
|
-
# Set x-goog-api-client
|
|
447
|
+
# Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
|
|
442
448
|
call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
|
|
443
449
|
lib_name: @config.lib_name, lib_version: @config.lib_version,
|
|
444
450
|
gapic_version: ::Google::Cloud::DocumentAI::V1::VERSION,
|
|
445
451
|
transports_version_send: [:rest]
|
|
446
452
|
|
|
453
|
+
call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
|
|
447
454
|
call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
|
|
448
455
|
|
|
449
456
|
options.apply_defaults timeout: @config.rpcs.cancel_operation.timeout,
|
|
@@ -22,7 +22,7 @@ require 'google/protobuf/timestamp_pb'
|
|
|
22
22
|
require 'google/rpc/status_pb'
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
descriptor_data = "\n;google/cloud/documentai/v1/document_processor_service.proto\x12\x1agoogle.cloud.documentai.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a)google/cloud/documentai/v1/document.proto\x1a,google/cloud/documentai/v1/document_io.proto\x1a\x30google/cloud/documentai/v1/document_schema.proto\x1a+google/cloud/documentai/v1/evaluation.proto\x1a\x33google/cloud/documentai/v1/operation_metadata.proto\x1a*google/cloud/documentai/v1/processor.proto\x1a/google/cloud/documentai/v1/processor_type.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\"\xe2\x02\n\x0eProcessOptions\x12\x65\n\x18individual_page_selector\x18\x05 \x01(\x0b\x32\x41.google.cloud.documentai.v1.ProcessOptions.IndividualPageSelectorH\x00\x12\x14\n\nfrom_start\x18\x06 \x01(\x05H\x00\x12\x12\n\x08\x66rom_end\x18\x07 \x01(\x05H\x00\x12\x39\n\nocr_config\x18\x01 \x01(\x0b\x32%.google.cloud.documentai.v1.OcrConfig\x12H\n\x0fschema_override\x18\x08 \x01(\x0b\x32*.google.cloud.documentai.v1.DocumentSchemaB\x03\xe0\x41\x01\x1a,\n\x16IndividualPageSelector\x12\x12\n\x05pages\x18\x01 \x03(\x05\x42\x03\xe0\x41\x01\x42\x0c\n\npage_range\"\x82\x04\n\x0eProcessRequest\x12?\n\x0finline_document\x18\x04 \x01(\x0b\x32$.google.cloud.documentai.v1.DocumentH\x00\x12?\n\x0craw_document\x18\x05 \x01(\x0b\x32\'.google.cloud.documentai.v1.RawDocumentH\x00\x12?\n\x0cgcs_document\x18\x08 \x01(\x0b\x32\'.google.cloud.documentai.v1.GcsDocumentH\x00\x12\x17\n\x04name\x18\x01 \x01(\tB\t\xe0\x41\x02\xfa\x41\x03\n\x01*\x12\x19\n\x11skip_human_review\x18\x03 \x01(\x08\x12.\n\nfield_mask\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\x12\x43\n\x0fprocess_options\x18\x07 \x01(\x0b\x32*.google.cloud.documentai.v1.ProcessOptions\x12K\n\x06labels\x18\n \x03(\x0b\x32\x36.google.cloud.documentai.v1.ProcessRequest.LabelsEntryB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x08\n\x06source\"\xee\x01\n\x11HumanReviewStatus\x12\x42\n\x05state\x18\x01 \x01(\x0e\x32\x33.google.cloud.documentai.v1.HumanReviewStatus.State\x12\x15\n\rstate_message\x18\x02 \x01(\t\x12\x1e\n\x16human_review_operation\x18\x03 \x01(\t\"^\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07SKIPPED\x10\x01\x12\x15\n\x11VALIDATION_PASSED\x10\x02\x12\x0f\n\x0bIN_PROGRESS\x10\x03\x12\t\n\x05\x45RROR\x10\x04\"\x95\x01\n\x0fProcessResponse\x12\x36\n\x08\x64ocument\x18\x01 \x01(\x0b\x32$.google.cloud.documentai.v1.Document\x12J\n\x13human_review_status\x18\x03 \x01(\x0b\x32-.google.cloud.documentai.v1.HumanReviewStatus\"\xb1\x03\n\x13\x42\x61tchProcessRequest\x12\x17\n\x04name\x18\x01 \x01(\tB\t\xe0\x41\x02\xfa\x41\x03\n\x01*\x12N\n\x0finput_documents\x18\x05 \x01(\x0b\x32\x35.google.cloud.documentai.v1.BatchDocumentsInputConfig\x12P\n\x16\x64ocument_output_config\x18\x06 \x01(\x0b\x32\x30.google.cloud.documentai.v1.DocumentOutputConfig\x12\x19\n\x11skip_human_review\x18\x04 \x01(\x08\x12\x43\n\x0fprocess_options\x18\x07 \x01(\x0b\x32*.google.cloud.documentai.v1.ProcessOptions\x12P\n\x06labels\x18\t \x03(\x0b\x32;.google.cloud.documentai.v1.BatchProcessRequest.LabelsEntryB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x16\n\x14\x42\x61tchProcessResponse\"\xff\x04\n\x14\x42\x61tchProcessMetadata\x12\x45\n\x05state\x18\x01 \x01(\x0e\x32\x36.google.cloud.documentai.v1.BatchProcessMetadata.State\x12\x15\n\rstate_message\x18\x02 \x01(\t\x12/\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12m\n\x1bindividual_process_statuses\x18\x05 \x03(\x0b\x32H.google.cloud.documentai.v1.BatchProcessMetadata.IndividualProcessStatus\x1a\xc3\x01\n\x17IndividualProcessStatus\x12\x18\n\x10input_gcs_source\x18\x01 \x01(\t\x12\"\n\x06status\x18\x02 \x01(\x0b\x32\x12.google.rpc.Status\x12\x1e\n\x16output_gcs_destination\x18\x03 \x01(\t\x12J\n\x13human_review_status\x18\x05 \x01(\x0b\x32-.google.cloud.documentai.v1.HumanReviewStatus\"r\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07WAITING\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\r\n\tSUCCEEDED\x10\x03\x12\x0e\n\nCANCELLING\x10\x04\x12\r\n\tCANCELLED\x10\x05\x12\n\n\x06\x46\x41ILED\x10\x06\"]\n\x1a\x46\x65tchProcessorTypesRequest\x12?\n\x06parent\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\x12\'documentai.googleapis.com/ProcessorType\"a\n\x1b\x46\x65tchProcessorTypesResponse\x12\x42\n\x0fprocessor_types\x18\x01 \x03(\x0b\x32).google.cloud.documentai.v1.ProcessorType\"\x83\x01\n\x19ListProcessorTypesRequest\x12?\n\x06parent\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\x12\'documentai.googleapis.com/ProcessorType\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"y\n\x1aListProcessorTypesResponse\x12\x42\n\x0fprocessor_types\x18\x01 \x03(\x0b\x32).google.cloud.documentai.v1.ProcessorType\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"{\n\x15ListProcessorsRequest\x12;\n\x06parent\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\x12#documentai.googleapis.com/Processor\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"l\n\x16ListProcessorsResponse\x12\x39\n\nprocessors\x18\x01 \x03(\x0b\x32%.google.cloud.documentai.v1.Processor\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"X\n\x17GetProcessorTypeRequest\x12=\n\x04name\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\n\'documentai.googleapis.com/ProcessorType\"P\n\x13GetProcessorRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#documentai.googleapis.com/Processor\"^\n\x1aGetProcessorVersionRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\"\x89\x01\n\x1cListProcessorVersionsRequest\x12\x42\n\x06parent\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\x12*documentai.googleapis.com/ProcessorVersion\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"\x82\x01\n\x1dListProcessorVersionsResponse\x12H\n\x12processor_versions\x18\x01 \x03(\x0b\x32,.google.cloud.documentai.v1.ProcessorVersion\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"a\n\x1d\x44\x65leteProcessorVersionRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\"n\n\x1e\x44\x65leteProcessorVersionMetadata\x12L\n\x0f\x63ommon_metadata\x18\x01 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"a\n\x1d\x44\x65ployProcessorVersionRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\" \n\x1e\x44\x65ployProcessorVersionResponse\"n\n\x1e\x44\x65ployProcessorVersionMetadata\x12L\n\x0f\x63ommon_metadata\x18\x01 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"c\n\x1fUndeployProcessorVersionRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\"\"\n UndeployProcessorVersionResponse\"p\n UndeployProcessorVersionMetadata\x12L\n\x0f\x63ommon_metadata\x18\x01 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"\x94\x01\n\x16\x43reateProcessorRequest\x12;\n\x06parent\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\x12#documentai.googleapis.com/Processor\x12=\n\tprocessor\x18\x02 \x01(\x0b\x32%.google.cloud.documentai.v1.ProcessorB\x03\xe0\x41\x02\"S\n\x16\x44\x65leteProcessorRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#documentai.googleapis.com/Processor\"g\n\x17\x44\x65leteProcessorMetadata\x12L\n\x0f\x63ommon_metadata\x18\x05 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"S\n\x16\x45nableProcessorRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#documentai.googleapis.com/Processor\"\x19\n\x17\x45nableProcessorResponse\"g\n\x17\x45nableProcessorMetadata\x12L\n\x0f\x63ommon_metadata\x18\x05 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"T\n\x17\x44isableProcessorRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#documentai.googleapis.com/Processor\"\x1a\n\x18\x44isableProcessorResponse\"h\n\x18\x44isableProcessorMetadata\x12L\n\x0f\x63ommon_metadata\x18\x05 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"\xba\x01\n!SetDefaultProcessorVersionRequest\x12>\n\tprocessor\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#documentai.googleapis.com/Processor\x12U\n\x19\x64\x65\x66\x61ult_processor_version\x18\x02 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\"$\n\"SetDefaultProcessorVersionResponse\"r\n\"SetDefaultProcessorVersionMetadata\x12L\n\x0f\x63ommon_metadata\x18\x01 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"\xc0\x07\n\x1cTrainProcessorVersionRequest\x12\x86\x01\n\"custom_document_extraction_options\x18\x05 \x01(\x0b\x32X.google.cloud.documentai.v1.TrainProcessorVersionRequest.CustomDocumentExtractionOptionsH\x00\x12;\n\x06parent\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#documentai.googleapis.com/Processor\x12L\n\x11processor_version\x18\x02 \x01(\x0b\x32,.google.cloud.documentai.v1.ProcessorVersionB\x03\xe0\x41\x02\x12H\n\x0f\x64ocument_schema\x18\n \x01(\x0b\x32*.google.cloud.documentai.v1.DocumentSchemaB\x03\xe0\x41\x01\x12[\n\ninput_data\x18\x04 \x01(\x0b\x32\x42.google.cloud.documentai.v1.TrainProcessorVersionRequest.InputDataB\x03\xe0\x41\x01\x12#\n\x16\x62\x61se_processor_version\x18\x08 \x01(\tB\x03\xe0\x41\x01\x1a\xad\x01\n\tInputData\x12Q\n\x12training_documents\x18\x03 \x01(\x0b\x32\x35.google.cloud.documentai.v1.BatchDocumentsInputConfig\x12M\n\x0etest_documents\x18\x04 \x01(\x0b\x32\x35.google.cloud.documentai.v1.BatchDocumentsInputConfig\x1a\xfc\x01\n\x1f\x43ustomDocumentExtractionOptions\x12\x80\x01\n\x0ftraining_method\x18\x03 \x01(\x0e\x32g.google.cloud.documentai.v1.TrainProcessorVersionRequest.CustomDocumentExtractionOptions.TrainingMethod\"V\n\x0eTrainingMethod\x12\x1f\n\x1bTRAINING_METHOD_UNSPECIFIED\x10\x00\x12\x0f\n\x0bMODEL_BASED\x10\x01\x12\x12\n\x0eTEMPLATE_BASED\x10\x02\x42\x11\n\x0fprocessor_flags\":\n\x1dTrainProcessorVersionResponse\x12\x19\n\x11processor_version\x18\x01 \x01(\t\"\xf7\x03\n\x1dTrainProcessorVersionMetadata\x12L\n\x0f\x63ommon_metadata\x18\x01 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\x12p\n\x1btraining_dataset_validation\x18\x02 \x01(\x0b\x32K.google.cloud.documentai.v1.TrainProcessorVersionMetadata.DatasetValidation\x12l\n\x17test_dataset_validation\x18\x03 \x01(\x0b\x32K.google.cloud.documentai.v1.TrainProcessorVersionMetadata.DatasetValidation\x1a\xa7\x01\n\x11\x44\x61tasetValidation\x12\x1c\n\x14\x64ocument_error_count\x18\x03 \x01(\x05\x12\x1b\n\x13\x64\x61taset_error_count\x18\x04 \x01(\x05\x12+\n\x0f\x64ocument_errors\x18\x01 \x03(\x0b\x32\x12.google.rpc.Status\x12*\n\x0e\x64\x61taset_errors\x18\x02 \x03(\x0b\x32\x12.google.rpc.Status\"\x8e\x03\n\x15ReviewDocumentRequest\x12?\n\x0finline_document\x18\x04 \x01(\x0b\x32$.google.cloud.documentai.v1.DocumentH\x00\x12P\n\x13human_review_config\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+documentai.googleapis.com/HumanReviewConfig\x12 \n\x18\x65nable_schema_validation\x18\x03 \x01(\x08\x12L\n\x08priority\x18\x05 \x01(\x0e\x32:.google.cloud.documentai.v1.ReviewDocumentRequest.Priority\x12\x43\n\x0f\x64ocument_schema\x18\x06 \x01(\x0b\x32*.google.cloud.documentai.v1.DocumentSchema\"#\n\x08Priority\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x00\x12\n\n\x06URGENT\x10\x01\x42\x08\n\x06source\"\xd1\x01\n\x16ReviewDocumentResponse\x12\x17\n\x0fgcs_destination\x18\x01 \x01(\t\x12G\n\x05state\x18\x02 \x01(\x0e\x32\x38.google.cloud.documentai.v1.ReviewDocumentResponse.State\x12\x18\n\x10rejection_reason\x18\x03 \x01(\t\";\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08REJECTED\x10\x01\x12\r\n\tSUCCEEDED\x10\x02\"\x84\x01\n\x1fReviewDocumentOperationMetadata\x12L\n\x0f\x63ommon_metadata\x18\x05 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\x12\x13\n\x0bquestion_id\x18\x06 \x01(\t\"\xca\x01\n\x1f\x45valuateProcessorVersionRequest\x12M\n\x11processor_version\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\x12X\n\x14\x65valuation_documents\x18\x03 \x01(\x0b\x32\x35.google.cloud.documentai.v1.BatchDocumentsInputConfigB\x03\xe0\x41\x01\"p\n EvaluateProcessorVersionMetadata\x12L\n\x0f\x63ommon_metadata\x18\x01 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"6\n EvaluateProcessorVersionResponse\x12\x12\n\nevaluation\x18\x02 \x01(\t\"R\n\x14GetEvaluationRequest\x12:\n\x04name\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$documentai.googleapis.com/Evaluation\"\x83\x01\n\x16ListEvaluationsRequest\x12\x42\n\x06parent\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"o\n\x17ListEvaluationsResponse\x12;\n\x0b\x65valuations\x18\x01 \x03(\x0b\x32&.google.cloud.documentai.v1.Evaluation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t2\x9c*\n\x18\x44ocumentProcessorService\x12\x87\x02\n\x0fProcessDocument\x12*.google.cloud.documentai.v1.ProcessRequest\x1a+.google.cloud.documentai.v1.ProcessResponse\"\x9a\x01\xda\x41\x04name\x82\xd3\xe4\x93\x02\x8c\x01\"6/v1/{name=projects/*/locations/*/processors/*}:process:\x01*ZO\"J/v1/{name=projects/*/locations/*/processors/*/processorVersions/*}:process:\x01*\x12\xbd\x02\n\x15\x42\x61tchProcessDocuments\x12/.google.cloud.documentai.v1.BatchProcessRequest\x1a\x1d.google.longrunning.Operation\"\xd3\x01\xca\x41,\n\x14\x42\x61tchProcessResponse\x12\x14\x42\x61tchProcessMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x96\x01\";/v1/{name=projects/*/locations/*/processors/*}:batchProcess:\x01*ZT\"O/v1/{name=projects/*/locations/*/processors/*/processorVersions/*}:batchProcess:\x01*\x12\xd0\x01\n\x13\x46\x65tchProcessorTypes\x12\x36.google.cloud.documentai.v1.FetchProcessorTypesRequest\x1a\x37.google.cloud.documentai.v1.FetchProcessorTypesResponse\"H\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x39\x12\x37/v1/{parent=projects/*/locations/*}:fetchProcessorTypes\x12\xc8\x01\n\x12ListProcessorTypes\x12\x35.google.cloud.documentai.v1.ListProcessorTypesRequest\x1a\x36.google.cloud.documentai.v1.ListProcessorTypesResponse\"C\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{parent=projects/*/locations/*}/processorTypes\x12\xb5\x01\n\x10GetProcessorType\x12\x33.google.cloud.documentai.v1.GetProcessorTypeRequest\x1a).google.cloud.documentai.v1.ProcessorType\"A\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{name=projects/*/locations/*/processorTypes/*}\x12\xb8\x01\n\x0eListProcessors\x12\x31.google.cloud.documentai.v1.ListProcessorsRequest\x1a\x32.google.cloud.documentai.v1.ListProcessorsResponse\"?\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x30\x12./v1/{parent=projects/*/locations/*}/processors\x12\xa5\x01\n\x0cGetProcessor\x12/.google.cloud.documentai.v1.GetProcessorRequest\x1a%.google.cloud.documentai.v1.Processor\"=\xda\x41\x04name\x82\xd3\xe4\x93\x02\x30\x12./v1/{name=projects/*/locations/*/processors/*}\x12\xa2\x02\n\x15TrainProcessorVersion\x12\x38.google.cloud.documentai.v1.TrainProcessorVersionRequest\x1a\x1d.google.longrunning.Operation\"\xaf\x01\xca\x41>\n\x1dTrainProcessorVersionResponse\x12\x1dTrainProcessorVersionMetadata\xda\x41\x18parent,processor_version\x82\xd3\xe4\x93\x02M\"H/v1/{parent=projects/*/locations/*/processors/*}/processorVersions:train:\x01*\x12\xce\x01\n\x13GetProcessorVersion\x12\x36.google.cloud.documentai.v1.GetProcessorVersionRequest\x1a,.google.cloud.documentai.v1.ProcessorVersion\"Q\xda\x41\x04name\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{name=projects/*/locations/*/processors/*/processorVersions/*}\x12\xe1\x01\n\x15ListProcessorVersions\x12\x38.google.cloud.documentai.v1.ListProcessorVersionsRequest\x1a\x39.google.cloud.documentai.v1.ListProcessorVersionsResponse\"S\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{parent=projects/*/locations/*/processors/*}/processorVersions\x12\x80\x02\n\x16\x44\x65leteProcessorVersion\x12\x39.google.cloud.documentai.v1.DeleteProcessorVersionRequest\x1a\x1d.google.longrunning.Operation\"\x8b\x01\xca\x41\x37\n\x15google.protobuf.Empty\x12\x1e\x44\x65leteProcessorVersionMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x44*B/v1/{name=projects/*/locations/*/processors/*/processorVersions/*}\x12\x93\x02\n\x16\x44\x65ployProcessorVersion\x12\x39.google.cloud.documentai.v1.DeployProcessorVersionRequest\x1a\x1d.google.longrunning.Operation\"\x9e\x01\xca\x41@\n\x1e\x44\x65ployProcessorVersionResponse\x12\x1e\x44\x65ployProcessorVersionMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02N\"I/v1/{name=projects/*/locations/*/processors/*/processorVersions/*}:deploy:\x01*\x12\x9d\x02\n\x18UndeployProcessorVersion\x12;.google.cloud.documentai.v1.UndeployProcessorVersionRequest\x1a\x1d.google.longrunning.Operation\"\xa4\x01\xca\x41\x44\n UndeployProcessorVersionResponse\x12 UndeployProcessorVersionMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02P\"K/v1/{name=projects/*/locations/*/processors/*/processorVersions/*}:undeploy:\x01*\x12\xc2\x01\n\x0f\x43reateProcessor\x12\x32.google.cloud.documentai.v1.CreateProcessorRequest\x1a%.google.cloud.documentai.v1.Processor\"T\xda\x41\x10parent,processor\x82\xd3\xe4\x93\x02;\"./v1/{parent=projects/*/locations/*}/processors:\tprocessor\x12\xd6\x01\n\x0f\x44\x65leteProcessor\x12\x32.google.cloud.documentai.v1.DeleteProcessorRequest\x1a\x1d.google.longrunning.Operation\"p\xca\x41\x30\n\x15google.protobuf.Empty\x12\x17\x44\x65leteProcessorMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x30*./v1/{name=projects/*/locations/*/processors/*}\x12\xdb\x01\n\x0f\x45nableProcessor\x12\x32.google.cloud.documentai.v1.EnableProcessorRequest\x1a\x1d.google.longrunning.Operation\"u\xca\x41\x32\n\x17\x45nableProcessorResponse\x12\x17\x45nableProcessorMetadata\x82\xd3\xe4\x93\x02:\"5/v1/{name=projects/*/locations/*/processors/*}:enable:\x01*\x12\xe0\x01\n\x10\x44isableProcessor\x12\x33.google.cloud.documentai.v1.DisableProcessorRequest\x1a\x1d.google.longrunning.Operation\"x\xca\x41\x34\n\x18\x44isableProcessorResponse\x12\x18\x44isableProcessorMetadata\x82\xd3\xe4\x93\x02;\"6/v1/{name=projects/*/locations/*/processors/*}:disable:\x01*\x12\xa1\x02\n\x1aSetDefaultProcessorVersion\x12=.google.cloud.documentai.v1.SetDefaultProcessorVersionRequest\x1a\x1d.google.longrunning.Operation\"\xa4\x01\xca\x41H\n\"SetDefaultProcessorVersionResponse\x12\"SetDefaultProcessorVersionMetadata\x82\xd3\xe4\x93\x02S\"N/v1/{processor=projects/*/locations/*/processors/*}:setDefaultProcessorVersion:\x01*\x12\xa0\x02\n\x0eReviewDocument\x12\x31.google.cloud.documentai.v1.ReviewDocumentRequest\x1a\x1d.google.longrunning.Operation\"\xbb\x01\xca\x41\x39\n\x16ReviewDocumentResponse\x12\x1fReviewDocumentOperationMetadata\xda\x41\x13human_review_config\x82\xd3\xe4\x93\x02\x63\"^/v1/{human_review_config=projects/*/locations/*/processors/*/humanReviewConfig}:reviewDocument:\x01*\x12\xc7\x02\n\x18\x45valuateProcessorVersion\x12;.google.cloud.documentai.v1.EvaluateProcessorVersionRequest\x1a\x1d.google.longrunning.Operation\"\xce\x01\xca\x41\x44\n EvaluateProcessorVersionResponse\x12 EvaluateProcessorVersionMetadata\xda\x41\x11processor_version\x82\xd3\xe4\x93\x02m\"h/v1/{processor_version=projects/*/locations/*/processors/*/processorVersions/*}:evaluateProcessorVersion:\x01*\x12\xca\x01\n\rGetEvaluation\x12\x30.google.cloud.documentai.v1.GetEvaluationRequest\x1a&.google.cloud.documentai.v1.Evaluation\"_\xda\x41\x04name\x82\xd3\xe4\x93\x02R\x12P/v1/{name=projects/*/locations/*/processors/*/processorVersions/*/evaluations/*}\x12\xdd\x01\n\x0fListEvaluations\x12\x32.google.cloud.documentai.v1.ListEvaluationsRequest\x1a\x33.google.cloud.documentai.v1.ListEvaluationsResponse\"a\xda\x41\x06parent\x82\xd3\xe4\x93\x02R\x12P/v1/{parent=projects/*/locations/*/processors/*/processorVersions/*}/evaluations\x1aM\xca\x41\x19\x64ocumentai.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xaa\x03\n\x1e\x63om.google.cloud.documentai.v1B\x1a\x44ocumentAiProcessorServiceP\x01Z>cloud.google.com/go/documentai/apiv1/documentaipb;documentaipb\xaa\x02\x1aGoogle.Cloud.DocumentAI.V1\xca\x02\x1aGoogle\\Cloud\\DocumentAI\\V1\xea\x02\x1dGoogle::Cloud::DocumentAI::V1\xea\x41\x7f\n+documentai.googleapis.com/HumanReviewConfig\x12Pprojects/{project}/locations/{location}/processors/{processor}/humanReviewConfig\xea\x41M\n\"documentai.googleapis.com/Location\x12\'projects/{project}/locations/{location}b\x06proto3"
|
|
25
|
+
descriptor_data = "\n;google/cloud/documentai/v1/document_processor_service.proto\x12\x1agoogle.cloud.documentai.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a)google/cloud/documentai/v1/document.proto\x1a,google/cloud/documentai/v1/document_io.proto\x1a\x30google/cloud/documentai/v1/document_schema.proto\x1a+google/cloud/documentai/v1/evaluation.proto\x1a\x33google/cloud/documentai/v1/operation_metadata.proto\x1a*google/cloud/documentai/v1/processor.proto\x1a/google/cloud/documentai/v1/processor_type.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\"\xe2\x02\n\x0eProcessOptions\x12\x65\n\x18individual_page_selector\x18\x05 \x01(\x0b\x32\x41.google.cloud.documentai.v1.ProcessOptions.IndividualPageSelectorH\x00\x12\x14\n\nfrom_start\x18\x06 \x01(\x05H\x00\x12\x12\n\x08\x66rom_end\x18\x07 \x01(\x05H\x00\x12\x39\n\nocr_config\x18\x01 \x01(\x0b\x32%.google.cloud.documentai.v1.OcrConfig\x12H\n\x0fschema_override\x18\x08 \x01(\x0b\x32*.google.cloud.documentai.v1.DocumentSchemaB\x03\xe0\x41\x01\x1a,\n\x16IndividualPageSelector\x12\x12\n\x05pages\x18\x01 \x03(\x05\x42\x03\xe0\x41\x01\x42\x0c\n\npage_range\"\x82\x04\n\x0eProcessRequest\x12?\n\x0finline_document\x18\x04 \x01(\x0b\x32$.google.cloud.documentai.v1.DocumentH\x00\x12?\n\x0craw_document\x18\x05 \x01(\x0b\x32\'.google.cloud.documentai.v1.RawDocumentH\x00\x12?\n\x0cgcs_document\x18\x08 \x01(\x0b\x32\'.google.cloud.documentai.v1.GcsDocumentH\x00\x12\x17\n\x04name\x18\x01 \x01(\tB\t\xe0\x41\x02\xfa\x41\x03\n\x01*\x12\x19\n\x11skip_human_review\x18\x03 \x01(\x08\x12.\n\nfield_mask\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\x12\x43\n\x0fprocess_options\x18\x07 \x01(\x0b\x32*.google.cloud.documentai.v1.ProcessOptions\x12K\n\x06labels\x18\n \x03(\x0b\x32\x36.google.cloud.documentai.v1.ProcessRequest.LabelsEntryB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x08\n\x06source\"\xee\x01\n\x11HumanReviewStatus\x12\x42\n\x05state\x18\x01 \x01(\x0e\x32\x33.google.cloud.documentai.v1.HumanReviewStatus.State\x12\x15\n\rstate_message\x18\x02 \x01(\t\x12\x1e\n\x16human_review_operation\x18\x03 \x01(\t\"^\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07SKIPPED\x10\x01\x12\x15\n\x11VALIDATION_PASSED\x10\x02\x12\x0f\n\x0bIN_PROGRESS\x10\x03\x12\t\n\x05\x45RROR\x10\x04\"\x95\x01\n\x0fProcessResponse\x12\x36\n\x08\x64ocument\x18\x01 \x01(\x0b\x32$.google.cloud.documentai.v1.Document\x12J\n\x13human_review_status\x18\x03 \x01(\x0b\x32-.google.cloud.documentai.v1.HumanReviewStatus\"\xb1\x03\n\x13\x42\x61tchProcessRequest\x12\x17\n\x04name\x18\x01 \x01(\tB\t\xe0\x41\x02\xfa\x41\x03\n\x01*\x12N\n\x0finput_documents\x18\x05 \x01(\x0b\x32\x35.google.cloud.documentai.v1.BatchDocumentsInputConfig\x12P\n\x16\x64ocument_output_config\x18\x06 \x01(\x0b\x32\x30.google.cloud.documentai.v1.DocumentOutputConfig\x12\x19\n\x11skip_human_review\x18\x04 \x01(\x08\x12\x43\n\x0fprocess_options\x18\x07 \x01(\x0b\x32*.google.cloud.documentai.v1.ProcessOptions\x12P\n\x06labels\x18\t \x03(\x0b\x32;.google.cloud.documentai.v1.BatchProcessRequest.LabelsEntryB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x16\n\x14\x42\x61tchProcessResponse\"\xff\x04\n\x14\x42\x61tchProcessMetadata\x12\x45\n\x05state\x18\x01 \x01(\x0e\x32\x36.google.cloud.documentai.v1.BatchProcessMetadata.State\x12\x15\n\rstate_message\x18\x02 \x01(\t\x12/\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12m\n\x1bindividual_process_statuses\x18\x05 \x03(\x0b\x32H.google.cloud.documentai.v1.BatchProcessMetadata.IndividualProcessStatus\x1a\xc3\x01\n\x17IndividualProcessStatus\x12\x18\n\x10input_gcs_source\x18\x01 \x01(\t\x12\"\n\x06status\x18\x02 \x01(\x0b\x32\x12.google.rpc.Status\x12\x1e\n\x16output_gcs_destination\x18\x03 \x01(\t\x12J\n\x13human_review_status\x18\x05 \x01(\x0b\x32-.google.cloud.documentai.v1.HumanReviewStatus\"r\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07WAITING\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\r\n\tSUCCEEDED\x10\x03\x12\x0e\n\nCANCELLING\x10\x04\x12\r\n\tCANCELLED\x10\x05\x12\n\n\x06\x46\x41ILED\x10\x06\"]\n\x1a\x46\x65tchProcessorTypesRequest\x12?\n\x06parent\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\x12\'documentai.googleapis.com/ProcessorType\"a\n\x1b\x46\x65tchProcessorTypesResponse\x12\x42\n\x0fprocessor_types\x18\x01 \x03(\x0b\x32).google.cloud.documentai.v1.ProcessorType\"\x83\x01\n\x19ListProcessorTypesRequest\x12?\n\x06parent\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\x12\'documentai.googleapis.com/ProcessorType\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"y\n\x1aListProcessorTypesResponse\x12\x42\n\x0fprocessor_types\x18\x01 \x03(\x0b\x32).google.cloud.documentai.v1.ProcessorType\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"{\n\x15ListProcessorsRequest\x12;\n\x06parent\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\x12#documentai.googleapis.com/Processor\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"l\n\x16ListProcessorsResponse\x12\x39\n\nprocessors\x18\x01 \x03(\x0b\x32%.google.cloud.documentai.v1.Processor\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"X\n\x17GetProcessorTypeRequest\x12=\n\x04name\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\n\'documentai.googleapis.com/ProcessorType\"P\n\x13GetProcessorRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#documentai.googleapis.com/Processor\"^\n\x1aGetProcessorVersionRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\"\x89\x01\n\x1cListProcessorVersionsRequest\x12\x42\n\x06parent\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\x12*documentai.googleapis.com/ProcessorVersion\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"\x82\x01\n\x1dListProcessorVersionsResponse\x12H\n\x12processor_versions\x18\x01 \x03(\x0b\x32,.google.cloud.documentai.v1.ProcessorVersion\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"a\n\x1d\x44\x65leteProcessorVersionRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\"n\n\x1e\x44\x65leteProcessorVersionMetadata\x12L\n\x0f\x63ommon_metadata\x18\x01 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"a\n\x1d\x44\x65ployProcessorVersionRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\" \n\x1e\x44\x65ployProcessorVersionResponse\"n\n\x1e\x44\x65ployProcessorVersionMetadata\x12L\n\x0f\x63ommon_metadata\x18\x01 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"c\n\x1fUndeployProcessorVersionRequest\x12@\n\x04name\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\"\"\n UndeployProcessorVersionResponse\"p\n UndeployProcessorVersionMetadata\x12L\n\x0f\x63ommon_metadata\x18\x01 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"\x94\x01\n\x16\x43reateProcessorRequest\x12;\n\x06parent\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\x12#documentai.googleapis.com/Processor\x12=\n\tprocessor\x18\x02 \x01(\x0b\x32%.google.cloud.documentai.v1.ProcessorB\x03\xe0\x41\x02\"S\n\x16\x44\x65leteProcessorRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#documentai.googleapis.com/Processor\"g\n\x17\x44\x65leteProcessorMetadata\x12L\n\x0f\x63ommon_metadata\x18\x05 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"S\n\x16\x45nableProcessorRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#documentai.googleapis.com/Processor\"\x19\n\x17\x45nableProcessorResponse\"g\n\x17\x45nableProcessorMetadata\x12L\n\x0f\x63ommon_metadata\x18\x05 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"T\n\x17\x44isableProcessorRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#documentai.googleapis.com/Processor\"\x1a\n\x18\x44isableProcessorResponse\"h\n\x18\x44isableProcessorMetadata\x12L\n\x0f\x63ommon_metadata\x18\x05 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"\xba\x01\n!SetDefaultProcessorVersionRequest\x12>\n\tprocessor\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#documentai.googleapis.com/Processor\x12U\n\x19\x64\x65\x66\x61ult_processor_version\x18\x02 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\"$\n\"SetDefaultProcessorVersionResponse\"r\n\"SetDefaultProcessorVersionMetadata\x12L\n\x0f\x63ommon_metadata\x18\x01 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"\xa4\t\n\x1cTrainProcessorVersionRequest\x12\x86\x01\n\"custom_document_extraction_options\x18\x05 \x01(\x0b\x32X.google.cloud.documentai.v1.TrainProcessorVersionRequest.CustomDocumentExtractionOptionsH\x00\x12\x80\x01\n\x1f\x66oundation_model_tuning_options\x18\x0c \x01(\x0b\x32U.google.cloud.documentai.v1.TrainProcessorVersionRequest.FoundationModelTuningOptionsH\x00\x12;\n\x06parent\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#documentai.googleapis.com/Processor\x12L\n\x11processor_version\x18\x02 \x01(\x0b\x32,.google.cloud.documentai.v1.ProcessorVersionB\x03\xe0\x41\x02\x12H\n\x0f\x64ocument_schema\x18\n \x01(\x0b\x32*.google.cloud.documentai.v1.DocumentSchemaB\x03\xe0\x41\x01\x12[\n\ninput_data\x18\x04 \x01(\x0b\x32\x42.google.cloud.documentai.v1.TrainProcessorVersionRequest.InputDataB\x03\xe0\x41\x01\x12#\n\x16\x62\x61se_processor_version\x18\x08 \x01(\tB\x03\xe0\x41\x01\x1a\xad\x01\n\tInputData\x12Q\n\x12training_documents\x18\x03 \x01(\x0b\x32\x35.google.cloud.documentai.v1.BatchDocumentsInputConfig\x12M\n\x0etest_documents\x18\x04 \x01(\x0b\x32\x35.google.cloud.documentai.v1.BatchDocumentsInputConfig\x1a\xfc\x01\n\x1f\x43ustomDocumentExtractionOptions\x12\x80\x01\n\x0ftraining_method\x18\x03 \x01(\x0e\x32g.google.cloud.documentai.v1.TrainProcessorVersionRequest.CustomDocumentExtractionOptions.TrainingMethod\"V\n\x0eTrainingMethod\x12\x1f\n\x1bTRAINING_METHOD_UNSPECIFIED\x10\x00\x12\x0f\n\x0bMODEL_BASED\x10\x01\x12\x12\n\x0eTEMPLATE_BASED\x10\x02\x1a_\n\x1c\x46oundationModelTuningOptions\x12\x18\n\x0btrain_steps\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12%\n\x18learning_rate_multiplier\x18\x03 \x01(\x02\x42\x03\xe0\x41\x01\x42\x11\n\x0fprocessor_flags\":\n\x1dTrainProcessorVersionResponse\x12\x19\n\x11processor_version\x18\x01 \x01(\t\"\xf7\x03\n\x1dTrainProcessorVersionMetadata\x12L\n\x0f\x63ommon_metadata\x18\x01 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\x12p\n\x1btraining_dataset_validation\x18\x02 \x01(\x0b\x32K.google.cloud.documentai.v1.TrainProcessorVersionMetadata.DatasetValidation\x12l\n\x17test_dataset_validation\x18\x03 \x01(\x0b\x32K.google.cloud.documentai.v1.TrainProcessorVersionMetadata.DatasetValidation\x1a\xa7\x01\n\x11\x44\x61tasetValidation\x12\x1c\n\x14\x64ocument_error_count\x18\x03 \x01(\x05\x12\x1b\n\x13\x64\x61taset_error_count\x18\x04 \x01(\x05\x12+\n\x0f\x64ocument_errors\x18\x01 \x03(\x0b\x32\x12.google.rpc.Status\x12*\n\x0e\x64\x61taset_errors\x18\x02 \x03(\x0b\x32\x12.google.rpc.Status\"\x8e\x03\n\x15ReviewDocumentRequest\x12?\n\x0finline_document\x18\x04 \x01(\x0b\x32$.google.cloud.documentai.v1.DocumentH\x00\x12P\n\x13human_review_config\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+documentai.googleapis.com/HumanReviewConfig\x12 \n\x18\x65nable_schema_validation\x18\x03 \x01(\x08\x12L\n\x08priority\x18\x05 \x01(\x0e\x32:.google.cloud.documentai.v1.ReviewDocumentRequest.Priority\x12\x43\n\x0f\x64ocument_schema\x18\x06 \x01(\x0b\x32*.google.cloud.documentai.v1.DocumentSchema\"#\n\x08Priority\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x00\x12\n\n\x06URGENT\x10\x01\x42\x08\n\x06source\"\xd1\x01\n\x16ReviewDocumentResponse\x12\x17\n\x0fgcs_destination\x18\x01 \x01(\t\x12G\n\x05state\x18\x02 \x01(\x0e\x32\x38.google.cloud.documentai.v1.ReviewDocumentResponse.State\x12\x18\n\x10rejection_reason\x18\x03 \x01(\t\";\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08REJECTED\x10\x01\x12\r\n\tSUCCEEDED\x10\x02\"\x84\x01\n\x1fReviewDocumentOperationMetadata\x12L\n\x0f\x63ommon_metadata\x18\x05 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\x12\x13\n\x0bquestion_id\x18\x06 \x01(\t\"\xca\x01\n\x1f\x45valuateProcessorVersionRequest\x12M\n\x11processor_version\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\x12X\n\x14\x65valuation_documents\x18\x03 \x01(\x0b\x32\x35.google.cloud.documentai.v1.BatchDocumentsInputConfigB\x03\xe0\x41\x01\"p\n EvaluateProcessorVersionMetadata\x12L\n\x0f\x63ommon_metadata\x18\x01 \x01(\x0b\x32\x33.google.cloud.documentai.v1.CommonOperationMetadata\"6\n EvaluateProcessorVersionResponse\x12\x12\n\nevaluation\x18\x02 \x01(\t\"R\n\x14GetEvaluationRequest\x12:\n\x04name\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$documentai.googleapis.com/Evaluation\"\x83\x01\n\x16ListEvaluationsRequest\x12\x42\n\x06parent\x18\x01 \x01(\tB2\xe0\x41\x02\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"o\n\x17ListEvaluationsResponse\x12;\n\x0b\x65valuations\x18\x01 \x03(\x0b\x32&.google.cloud.documentai.v1.Evaluation\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t2\x9c*\n\x18\x44ocumentProcessorService\x12\x87\x02\n\x0fProcessDocument\x12*.google.cloud.documentai.v1.ProcessRequest\x1a+.google.cloud.documentai.v1.ProcessResponse\"\x9a\x01\xda\x41\x04name\x82\xd3\xe4\x93\x02\x8c\x01\"6/v1/{name=projects/*/locations/*/processors/*}:process:\x01*ZO\"J/v1/{name=projects/*/locations/*/processors/*/processorVersions/*}:process:\x01*\x12\xbd\x02\n\x15\x42\x61tchProcessDocuments\x12/.google.cloud.documentai.v1.BatchProcessRequest\x1a\x1d.google.longrunning.Operation\"\xd3\x01\xca\x41,\n\x14\x42\x61tchProcessResponse\x12\x14\x42\x61tchProcessMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x96\x01\";/v1/{name=projects/*/locations/*/processors/*}:batchProcess:\x01*ZT\"O/v1/{name=projects/*/locations/*/processors/*/processorVersions/*}:batchProcess:\x01*\x12\xd0\x01\n\x13\x46\x65tchProcessorTypes\x12\x36.google.cloud.documentai.v1.FetchProcessorTypesRequest\x1a\x37.google.cloud.documentai.v1.FetchProcessorTypesResponse\"H\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x39\x12\x37/v1/{parent=projects/*/locations/*}:fetchProcessorTypes\x12\xc8\x01\n\x12ListProcessorTypes\x12\x35.google.cloud.documentai.v1.ListProcessorTypesRequest\x1a\x36.google.cloud.documentai.v1.ListProcessorTypesResponse\"C\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{parent=projects/*/locations/*}/processorTypes\x12\xb5\x01\n\x10GetProcessorType\x12\x33.google.cloud.documentai.v1.GetProcessorTypeRequest\x1a).google.cloud.documentai.v1.ProcessorType\"A\xda\x41\x04name\x82\xd3\xe4\x93\x02\x34\x12\x32/v1/{name=projects/*/locations/*/processorTypes/*}\x12\xb8\x01\n\x0eListProcessors\x12\x31.google.cloud.documentai.v1.ListProcessorsRequest\x1a\x32.google.cloud.documentai.v1.ListProcessorsResponse\"?\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x30\x12./v1/{parent=projects/*/locations/*}/processors\x12\xa5\x01\n\x0cGetProcessor\x12/.google.cloud.documentai.v1.GetProcessorRequest\x1a%.google.cloud.documentai.v1.Processor\"=\xda\x41\x04name\x82\xd3\xe4\x93\x02\x30\x12./v1/{name=projects/*/locations/*/processors/*}\x12\xa2\x02\n\x15TrainProcessorVersion\x12\x38.google.cloud.documentai.v1.TrainProcessorVersionRequest\x1a\x1d.google.longrunning.Operation\"\xaf\x01\xca\x41>\n\x1dTrainProcessorVersionResponse\x12\x1dTrainProcessorVersionMetadata\xda\x41\x18parent,processor_version\x82\xd3\xe4\x93\x02M\"H/v1/{parent=projects/*/locations/*/processors/*}/processorVersions:train:\x01*\x12\xce\x01\n\x13GetProcessorVersion\x12\x36.google.cloud.documentai.v1.GetProcessorVersionRequest\x1a,.google.cloud.documentai.v1.ProcessorVersion\"Q\xda\x41\x04name\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{name=projects/*/locations/*/processors/*/processorVersions/*}\x12\xe1\x01\n\x15ListProcessorVersions\x12\x38.google.cloud.documentai.v1.ListProcessorVersionsRequest\x1a\x39.google.cloud.documentai.v1.ListProcessorVersionsResponse\"S\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x44\x12\x42/v1/{parent=projects/*/locations/*/processors/*}/processorVersions\x12\x80\x02\n\x16\x44\x65leteProcessorVersion\x12\x39.google.cloud.documentai.v1.DeleteProcessorVersionRequest\x1a\x1d.google.longrunning.Operation\"\x8b\x01\xca\x41\x37\n\x15google.protobuf.Empty\x12\x1e\x44\x65leteProcessorVersionMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x44*B/v1/{name=projects/*/locations/*/processors/*/processorVersions/*}\x12\x93\x02\n\x16\x44\x65ployProcessorVersion\x12\x39.google.cloud.documentai.v1.DeployProcessorVersionRequest\x1a\x1d.google.longrunning.Operation\"\x9e\x01\xca\x41@\n\x1e\x44\x65ployProcessorVersionResponse\x12\x1e\x44\x65ployProcessorVersionMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02N\"I/v1/{name=projects/*/locations/*/processors/*/processorVersions/*}:deploy:\x01*\x12\x9d\x02\n\x18UndeployProcessorVersion\x12;.google.cloud.documentai.v1.UndeployProcessorVersionRequest\x1a\x1d.google.longrunning.Operation\"\xa4\x01\xca\x41\x44\n UndeployProcessorVersionResponse\x12 UndeployProcessorVersionMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02P\"K/v1/{name=projects/*/locations/*/processors/*/processorVersions/*}:undeploy:\x01*\x12\xc2\x01\n\x0f\x43reateProcessor\x12\x32.google.cloud.documentai.v1.CreateProcessorRequest\x1a%.google.cloud.documentai.v1.Processor\"T\xda\x41\x10parent,processor\x82\xd3\xe4\x93\x02;\"./v1/{parent=projects/*/locations/*}/processors:\tprocessor\x12\xd6\x01\n\x0f\x44\x65leteProcessor\x12\x32.google.cloud.documentai.v1.DeleteProcessorRequest\x1a\x1d.google.longrunning.Operation\"p\xca\x41\x30\n\x15google.protobuf.Empty\x12\x17\x44\x65leteProcessorMetadata\xda\x41\x04name\x82\xd3\xe4\x93\x02\x30*./v1/{name=projects/*/locations/*/processors/*}\x12\xdb\x01\n\x0f\x45nableProcessor\x12\x32.google.cloud.documentai.v1.EnableProcessorRequest\x1a\x1d.google.longrunning.Operation\"u\xca\x41\x32\n\x17\x45nableProcessorResponse\x12\x17\x45nableProcessorMetadata\x82\xd3\xe4\x93\x02:\"5/v1/{name=projects/*/locations/*/processors/*}:enable:\x01*\x12\xe0\x01\n\x10\x44isableProcessor\x12\x33.google.cloud.documentai.v1.DisableProcessorRequest\x1a\x1d.google.longrunning.Operation\"x\xca\x41\x34\n\x18\x44isableProcessorResponse\x12\x18\x44isableProcessorMetadata\x82\xd3\xe4\x93\x02;\"6/v1/{name=projects/*/locations/*/processors/*}:disable:\x01*\x12\xa1\x02\n\x1aSetDefaultProcessorVersion\x12=.google.cloud.documentai.v1.SetDefaultProcessorVersionRequest\x1a\x1d.google.longrunning.Operation\"\xa4\x01\xca\x41H\n\"SetDefaultProcessorVersionResponse\x12\"SetDefaultProcessorVersionMetadata\x82\xd3\xe4\x93\x02S\"N/v1/{processor=projects/*/locations/*/processors/*}:setDefaultProcessorVersion:\x01*\x12\xa0\x02\n\x0eReviewDocument\x12\x31.google.cloud.documentai.v1.ReviewDocumentRequest\x1a\x1d.google.longrunning.Operation\"\xbb\x01\xca\x41\x39\n\x16ReviewDocumentResponse\x12\x1fReviewDocumentOperationMetadata\xda\x41\x13human_review_config\x82\xd3\xe4\x93\x02\x63\"^/v1/{human_review_config=projects/*/locations/*/processors/*/humanReviewConfig}:reviewDocument:\x01*\x12\xc7\x02\n\x18\x45valuateProcessorVersion\x12;.google.cloud.documentai.v1.EvaluateProcessorVersionRequest\x1a\x1d.google.longrunning.Operation\"\xce\x01\xca\x41\x44\n EvaluateProcessorVersionResponse\x12 EvaluateProcessorVersionMetadata\xda\x41\x11processor_version\x82\xd3\xe4\x93\x02m\"h/v1/{processor_version=projects/*/locations/*/processors/*/processorVersions/*}:evaluateProcessorVersion:\x01*\x12\xca\x01\n\rGetEvaluation\x12\x30.google.cloud.documentai.v1.GetEvaluationRequest\x1a&.google.cloud.documentai.v1.Evaluation\"_\xda\x41\x04name\x82\xd3\xe4\x93\x02R\x12P/v1/{name=projects/*/locations/*/processors/*/processorVersions/*/evaluations/*}\x12\xdd\x01\n\x0fListEvaluations\x12\x32.google.cloud.documentai.v1.ListEvaluationsRequest\x1a\x33.google.cloud.documentai.v1.ListEvaluationsResponse\"a\xda\x41\x06parent\x82\xd3\xe4\x93\x02R\x12P/v1/{parent=projects/*/locations/*/processors/*/processorVersions/*}/evaluations\x1aM\xca\x41\x19\x64ocumentai.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xaa\x03\n\x1e\x63om.google.cloud.documentai.v1B\x1a\x44ocumentAiProcessorServiceP\x01Z>cloud.google.com/go/documentai/apiv1/documentaipb;documentaipb\xaa\x02\x1aGoogle.Cloud.DocumentAI.V1\xca\x02\x1aGoogle\\Cloud\\DocumentAI\\V1\xea\x02\x1dGoogle::Cloud::DocumentAI::V1\xea\x41\x7f\n+documentai.googleapis.com/HumanReviewConfig\x12Pprojects/{project}/locations/{location}/processors/{processor}/humanReviewConfig\xea\x41M\n\"documentai.googleapis.com/Location\x12\'projects/{project}/locations/{location}b\x06proto3"
|
|
26
26
|
|
|
27
27
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
28
28
|
|
|
@@ -108,6 +108,7 @@ module Google
|
|
|
108
108
|
TrainProcessorVersionRequest::InputData = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1.TrainProcessorVersionRequest.InputData").msgclass
|
|
109
109
|
TrainProcessorVersionRequest::CustomDocumentExtractionOptions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1.TrainProcessorVersionRequest.CustomDocumentExtractionOptions").msgclass
|
|
110
110
|
TrainProcessorVersionRequest::CustomDocumentExtractionOptions::TrainingMethod = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1.TrainProcessorVersionRequest.CustomDocumentExtractionOptions.TrainingMethod").enummodule
|
|
111
|
+
TrainProcessorVersionRequest::FoundationModelTuningOptions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1.TrainProcessorVersionRequest.FoundationModelTuningOptions").msgclass
|
|
111
112
|
TrainProcessorVersionResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1.TrainProcessorVersionResponse").msgclass
|
|
112
113
|
TrainProcessorVersionMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1.TrainProcessorVersionMetadata").msgclass
|
|
113
114
|
TrainProcessorVersionMetadata::DatasetValidation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.documentai.v1.TrainProcessorVersionMetadata.DatasetValidation").msgclass
|
|
@@ -11,7 +11,7 @@ require 'google/cloud/documentai/v1/evaluation_pb'
|
|
|
11
11
|
require 'google/protobuf/timestamp_pb'
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
descriptor_data = "\n*google/cloud/documentai/v1/processor.proto\x12\x1agoogle.cloud.documentai.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x30google/cloud/documentai/v1/document_schema.proto\x1a+google/cloud/documentai/v1/evaluation.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\
|
|
14
|
+
descriptor_data = "\n*google/cloud/documentai/v1/processor.proto\x12\x1agoogle.cloud.documentai.v1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x30google/cloud/documentai/v1/document_schema.proto\x1a+google/cloud/documentai/v1/evaluation.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xeb\x08\n\x10ProcessorVersion\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\x12\x43\n\x0f\x64ocument_schema\x18\x0c \x01(\x0b\x32*.google.cloud.documentai.v1.DocumentSchema\x12\x46\n\x05state\x18\x06 \x01(\x0e\x32\x32.google.cloud.documentai.v1.ProcessorVersion.StateB\x03\xe0\x41\x03\x12/\n\x0b\x63reate_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12J\n\x11latest_evaluation\x18\x08 \x01(\x0b\x32/.google.cloud.documentai.v1.EvaluationReference\x12\x14\n\x0ckms_key_name\x18\t \x01(\t\x12\x1c\n\x14kms_key_version_name\x18\n \x01(\t\x12\x1b\n\x0egoogle_managed\x18\x0b \x01(\x08\x42\x03\xe0\x41\x03\x12V\n\x10\x64\x65precation_info\x18\r \x01(\x0b\x32<.google.cloud.documentai.v1.ProcessorVersion.DeprecationInfo\x12O\n\nmodel_type\x18\x0f \x01(\x0e\x32\x36.google.cloud.documentai.v1.ProcessorVersion.ModelTypeB\x03\xe0\x41\x03\x1a\x9f\x01\n\x0f\x44\x65precationInfo\x12\x34\n\x10\x64\x65precation_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12V\n\x1dreplacement_processor_version\x18\x02 \x01(\tB/\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\"\x93\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x44\x45PLOYED\x10\x01\x12\r\n\tDEPLOYING\x10\x02\x12\x0e\n\nUNDEPLOYED\x10\x03\x12\x0f\n\x0bUNDEPLOYING\x10\x04\x12\x0c\n\x08\x43REATING\x10\x05\x12\x0c\n\x08\x44\x45LETING\x10\x06\x12\n\n\x06\x46\x41ILED\x10\x07\x12\r\n\tIMPORTING\x10\x08\"Y\n\tModelType\x12\x1a\n\x16MODEL_TYPE_UNSPECIFIED\x10\x00\x12\x19\n\x15MODEL_TYPE_GENERATIVE\x10\x01\x12\x15\n\x11MODEL_TYPE_CUSTOM\x10\x02:\x96\x01\xea\x41\x92\x01\n*documentai.googleapis.com/ProcessorVersion\x12\x64projects/{project}/locations/{location}/processors/{processor}/processorVersions/{processor_version}\"r\n\x15ProcessorVersionAlias\x12\r\n\x05\x61lias\x18\x01 \x01(\t\x12J\n\x11processor_version\x18\x02 \x01(\tB/\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\"\x88\x05\n\tProcessor\x12\x14\n\x04name\x18\x01 \x01(\tB\x06\xe0\x41\x05\xe0\x41\x03\x12\x0c\n\x04type\x18\x02 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x03 \x01(\t\x12?\n\x05state\x18\x04 \x01(\x0e\x32+.google.cloud.documentai.v1.Processor.StateB\x03\xe0\x41\x03\x12R\n\x19\x64\x65\x66\x61ult_processor_version\x18\t \x01(\tB/\xfa\x41,\n*documentai.googleapis.com/ProcessorVersion\x12Y\n\x19processor_version_aliases\x18\n \x03(\x0b\x32\x31.google.cloud.documentai.v1.ProcessorVersionAliasB\x03\xe0\x41\x03\x12 \n\x10process_endpoint\x18\x06 \x01(\tB\x06\xe0\x41\x03\xe0\x41\x05\x12/\n\x0b\x63reate_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x14\n\x0ckms_key_name\x18\x08 \x01(\t\"~\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x45NABLED\x10\x01\x12\x0c\n\x08\x44ISABLED\x10\x02\x12\x0c\n\x08\x45NABLING\x10\x03\x12\r\n\tDISABLING\x10\x04\x12\x0c\n\x08\x43REATING\x10\x05\x12\n\n\x06\x46\x41ILED\x10\x06\x12\x0c\n\x08\x44\x45LETING\x10\x07:h\xea\x41\x65\n#documentai.googleapis.com/Processor\x12>projects/{project}/locations/{location}/processors/{processor}B\xd1\x01\n\x1e\x63om.google.cloud.documentai.v1B\x13\x44ocumentAiProcessorP\x01Z>cloud.google.com/go/documentai/apiv1/documentaipb;documentaipb\xaa\x02\x1aGoogle.Cloud.DocumentAI.V1\xca\x02\x1aGoogle\\Cloud\\DocumentAI\\V1\xea\x02\x1dGoogle::Cloud::DocumentAI::V1b\x06proto3"
|
|
15
15
|
|
|
16
16
|
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
17
17
|
|
|
@@ -118,6 +118,10 @@ module Google
|
|
|
118
118
|
# @return [::String]
|
|
119
119
|
# Optional link to proto reference documentation. Example:
|
|
120
120
|
# https://cloud.google.com/pubsub/lite/docs/reference/rpc
|
|
121
|
+
# @!attribute [rw] rest_reference_documentation_uri
|
|
122
|
+
# @return [::String]
|
|
123
|
+
# Optional link to REST reference documentation. Example:
|
|
124
|
+
# https://cloud.google.com/pubsub/lite/docs/reference/rest
|
|
121
125
|
class Publishing
|
|
122
126
|
include ::Google::Protobuf::MessageExts
|
|
123
127
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -450,16 +450,16 @@ module Google
|
|
|
450
450
|
# Whether the text is underlined.
|
|
451
451
|
# @!attribute [rw] strikeout
|
|
452
452
|
# @return [::Boolean]
|
|
453
|
-
# Whether the text is strikethrough.
|
|
453
|
+
# Whether the text is strikethrough. This feature is not supported yet.
|
|
454
454
|
# @!attribute [rw] subscript
|
|
455
455
|
# @return [::Boolean]
|
|
456
|
-
# Whether the text is a subscript.
|
|
456
|
+
# Whether the text is a subscript. This feature is not supported yet.
|
|
457
457
|
# @!attribute [rw] superscript
|
|
458
458
|
# @return [::Boolean]
|
|
459
|
-
# Whether the text is a superscript.
|
|
459
|
+
# Whether the text is a superscript. This feature is not supported yet.
|
|
460
460
|
# @!attribute [rw] smallcaps
|
|
461
461
|
# @return [::Boolean]
|
|
462
|
-
# Whether the text is in small caps.
|
|
462
|
+
# Whether the text is in small caps. This feature is not supported yet.
|
|
463
463
|
# @!attribute [rw] font_weight
|
|
464
464
|
# @return [::Integer]
|
|
465
465
|
# TrueType weight on a scale `100` (thin) to `1000` (ultra-heavy).
|
|
@@ -687,6 +687,9 @@ module Google
|
|
|
687
687
|
# @!attribute [rw] custom_document_extraction_options
|
|
688
688
|
# @return [::Google::Cloud::DocumentAI::V1::TrainProcessorVersionRequest::CustomDocumentExtractionOptions]
|
|
689
689
|
# Options to control Custom Document Extraction (CDE) Processor.
|
|
690
|
+
# @!attribute [rw] foundation_model_tuning_options
|
|
691
|
+
# @return [::Google::Cloud::DocumentAI::V1::TrainProcessorVersionRequest::FoundationModelTuningOptions]
|
|
692
|
+
# Options to control foundation model tuning of a processor.
|
|
690
693
|
# @!attribute [rw] parent
|
|
691
694
|
# @return [::String]
|
|
692
695
|
# Required. The parent (project, location and processor) to create the new
|
|
@@ -743,6 +746,21 @@ module Google
|
|
|
743
746
|
TEMPLATE_BASED = 2
|
|
744
747
|
end
|
|
745
748
|
end
|
|
749
|
+
|
|
750
|
+
# Options to control foundation model tuning of the processor.
|
|
751
|
+
# @!attribute [rw] train_steps
|
|
752
|
+
# @return [::Integer]
|
|
753
|
+
# Optional. The number of steps to run for model tuning. Valid values are
|
|
754
|
+
# between 1 and 400. If not provided, recommended steps will be used.
|
|
755
|
+
# @!attribute [rw] learning_rate_multiplier
|
|
756
|
+
# @return [::Float]
|
|
757
|
+
# Optional. The multiplier to apply to the recommended learning rate. Valid
|
|
758
|
+
# values are between 0.1 and 10. If not provided, recommended learning rate
|
|
759
|
+
# will be used.
|
|
760
|
+
class FoundationModelTuningOptions
|
|
761
|
+
include ::Google::Protobuf::MessageExts
|
|
762
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
763
|
+
end
|
|
746
764
|
end
|
|
747
765
|
|
|
748
766
|
# The response for
|
|
@@ -27,7 +27,7 @@ module Google
|
|
|
27
27
|
# Its document-processing behavior is defined by that version.
|
|
28
28
|
# @!attribute [rw] name
|
|
29
29
|
# @return [::String]
|
|
30
|
-
# The resource name of the processor version.
|
|
30
|
+
# Identifier. The resource name of the processor version.
|
|
31
31
|
# Format:
|
|
32
32
|
# `projects/{project}/locations/{location}/processors/{processor}/processorVersions/{processor_version}`
|
|
33
33
|
# @!attribute [rw] display_name
|
|
@@ -36,9 +36,9 @@ module Google
|
|
|
36
36
|
# @!attribute [rw] document_schema
|
|
37
37
|
# @return [::Google::Cloud::DocumentAI::V1::DocumentSchema]
|
|
38
38
|
# The schema of the processor version. Describes the output.
|
|
39
|
-
# @!attribute [
|
|
39
|
+
# @!attribute [r] state
|
|
40
40
|
# @return [::Google::Cloud::DocumentAI::V1::ProcessorVersion::State]
|
|
41
|
-
# The state of the processor version.
|
|
41
|
+
# Output only. The state of the processor version.
|
|
42
42
|
# @!attribute [rw] create_time
|
|
43
43
|
# @return [::Google::Protobuf::Timestamp]
|
|
44
44
|
# The time the processor version was created.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-document_ai-v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.21.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-05-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|