google-apis-documentai_v1beta3 0.53.0 → 0.54.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a42f2529ec379ae0838b7400b0461afa464f1bb652e95bc4b0184ab06dc4f7e
|
4
|
+
data.tar.gz: fccfd4ea90576d4e0e9bed4f66ffd9a46e55e63cf481c7f6bb8643a9001c61dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 439bc99fd3e8dc7015260c75c61696a584657eabf343cac832527a196e50e07c5848299b3f874fa3cd0cd2ec1482a4b576abb1a014fdd972d8ca6671b301dca5
|
7
|
+
data.tar.gz: 270b49a511d712745a0e6349adcf27c3d2691acfb227c5f107c72cd15b9757747822be2ad4d314d03db11b40ec92c41f0875d2df8f60cce39d98d89341633fbe
|
data/CHANGELOG.md
CHANGED
@@ -31,6 +31,11 @@ module Google
|
|
31
31
|
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
|
32
32
|
attr_accessor :common_metadata
|
33
33
|
|
34
|
+
# Total number of documents that failed to be deleted in storage.
|
35
|
+
# Corresponds to the JSON property `errorDocumentCount`
|
36
|
+
# @return [Fixnum]
|
37
|
+
attr_accessor :error_document_count
|
38
|
+
|
34
39
|
# The list of response details of each document.
|
35
40
|
# Corresponds to the JSON property `individualBatchDeleteStatuses`
|
36
41
|
# @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus>]
|
@@ -48,6 +53,7 @@ module Google
|
|
48
53
|
# Update properties of this object
|
49
54
|
def update!(**args)
|
50
55
|
@common_metadata = args[:common_metadata] if args.key?(:common_metadata)
|
56
|
+
@error_document_count = args[:error_document_count] if args.key?(:error_document_count)
|
51
57
|
@individual_batch_delete_statuses = args[:individual_batch_delete_statuses] if args.key?(:individual_batch_delete_statuses)
|
52
58
|
@total_document_count = args[:total_document_count] if args.key?(:total_document_count)
|
53
59
|
end
|
@@ -577,9 +583,9 @@ module Google
|
|
577
583
|
end
|
578
584
|
end
|
579
585
|
|
580
|
-
# The validation status of each import config. Status is
|
581
|
-
# is
|
582
|
-
#
|
586
|
+
# The validation status of each import config. Status is set to errors if there
|
587
|
+
# is no documents to import in the import_config, or OK if the operation will
|
588
|
+
# try to proceed at least one document.
|
583
589
|
class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult
|
584
590
|
include Google::Apis::Core::Hashable
|
585
591
|
|
@@ -680,12 +686,6 @@ module Google
|
|
680
686
|
# @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus>]
|
681
687
|
attr_accessor :individual_document_resync_statuses
|
682
688
|
|
683
|
-
# Returns the newly added document Cloud Storage prefix if the documents are
|
684
|
-
# founded in Cloud Storage while not in Document Service storage.
|
685
|
-
# Corresponds to the JSON property `newlyAddedDocuments`
|
686
|
-
# @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument>]
|
687
|
-
attr_accessor :newly_added_documents
|
688
|
-
|
689
689
|
def initialize(**args)
|
690
690
|
update!(**args)
|
691
691
|
end
|
@@ -695,7 +695,6 @@ module Google
|
|
695
695
|
@common_metadata = args[:common_metadata] if args.key?(:common_metadata)
|
696
696
|
@dataset_resync_statuses = args[:dataset_resync_statuses] if args.key?(:dataset_resync_statuses)
|
697
697
|
@individual_document_resync_statuses = args[:individual_document_resync_statuses] if args.key?(:individual_document_resync_statuses)
|
698
|
-
@newly_added_documents = args[:newly_added_documents] if args.key?(:newly_added_documents)
|
699
698
|
end
|
700
699
|
end
|
701
700
|
|
@@ -765,44 +764,6 @@ module Google
|
|
765
764
|
end
|
766
765
|
end
|
767
766
|
|
768
|
-
# The proto for updated document in resync pipeline.
|
769
|
-
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
|
770
|
-
include Google::Apis::Core::Hashable
|
771
|
-
|
772
|
-
# The prefix of cloud storage, identifies the destination document which should
|
773
|
-
# be updated by resync pipeline.
|
774
|
-
# Corresponds to the JSON property `destinationPrefix`
|
775
|
-
# @return [String]
|
776
|
-
attr_accessor :destination_prefix
|
777
|
-
|
778
|
-
# The prefix of cloud storage, identifies the original document which should be
|
779
|
-
# updated by resync pipeline.
|
780
|
-
# Corresponds to the JSON property `sourcePrefix`
|
781
|
-
# @return [String]
|
782
|
-
attr_accessor :source_prefix
|
783
|
-
|
784
|
-
# The `Status` type defines a logical error model that is suitable for different
|
785
|
-
# programming environments, including REST APIs and RPC APIs. It is used by [
|
786
|
-
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
787
|
-
# data: error code, error message, and error details. You can find out more
|
788
|
-
# about this error model and how to work with it in the [API Design Guide](https:
|
789
|
-
# //cloud.google.com/apis/design/errors).
|
790
|
-
# Corresponds to the JSON property `status`
|
791
|
-
# @return [Google::Apis::DocumentaiV1beta3::GoogleRpcStatus]
|
792
|
-
attr_accessor :status
|
793
|
-
|
794
|
-
def initialize(**args)
|
795
|
-
update!(**args)
|
796
|
-
end
|
797
|
-
|
798
|
-
# Update properties of this object
|
799
|
-
def update!(**args)
|
800
|
-
@destination_prefix = args[:destination_prefix] if args.key?(:destination_prefix)
|
801
|
-
@source_prefix = args[:source_prefix] if args.key?(:source_prefix)
|
802
|
-
@status = args[:status] if args.key?(:status)
|
803
|
-
end
|
804
|
-
end
|
805
|
-
|
806
767
|
# The response proto of ResyncDataset method.
|
807
768
|
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetResponse
|
808
769
|
include Google::Apis::Core::Hashable
|
@@ -7056,6 +7017,11 @@ module Google
|
|
7056
7017
|
# @return [String]
|
7057
7018
|
attr_accessor :display_name
|
7058
7019
|
|
7020
|
+
# Metadata about an entity type.
|
7021
|
+
# Corresponds to the JSON property `entityTypeMetadata`
|
7022
|
+
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EntityTypeMetadata]
|
7023
|
+
attr_accessor :entity_type_metadata
|
7024
|
+
|
7059
7025
|
# Defines the a list of enum values.
|
7060
7026
|
# Corresponds to the JSON property `enumValues`
|
7061
7027
|
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentSchemaEntityTypeEnumValues]
|
@@ -7086,6 +7052,7 @@ module Google
|
|
7086
7052
|
def update!(**args)
|
7087
7053
|
@base_types = args[:base_types] if args.key?(:base_types)
|
7088
7054
|
@display_name = args[:display_name] if args.key?(:display_name)
|
7055
|
+
@entity_type_metadata = args[:entity_type_metadata] if args.key?(:entity_type_metadata)
|
7089
7056
|
@enum_values = args[:enum_values] if args.key?(:enum_values)
|
7090
7057
|
@name = args[:name] if args.key?(:name)
|
7091
7058
|
@properties = args[:properties] if args.key?(:properties)
|
@@ -7126,6 +7093,11 @@ module Google
|
|
7126
7093
|
# @return [String]
|
7127
7094
|
attr_accessor :occurrence_type
|
7128
7095
|
|
7096
|
+
# Metadata about a property.
|
7097
|
+
# Corresponds to the JSON property `propertyMetadata`
|
7098
|
+
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3PropertyMetadata]
|
7099
|
+
attr_accessor :property_metadata
|
7100
|
+
|
7129
7101
|
# A reference to the value type of the property. This type is subject to the
|
7130
7102
|
# same conventions as the `Entity.base_types` field.
|
7131
7103
|
# Corresponds to the JSON property `valueType`
|
@@ -7140,6 +7112,7 @@ module Google
|
|
7140
7112
|
def update!(**args)
|
7141
7113
|
@name = args[:name] if args.key?(:name)
|
7142
7114
|
@occurrence_type = args[:occurrence_type] if args.key?(:occurrence_type)
|
7115
|
+
@property_metadata = args[:property_metadata] if args.key?(:property_metadata)
|
7143
7116
|
@value_type = args[:value_type] if args.key?(:value_type)
|
7144
7117
|
end
|
7145
7118
|
end
|
@@ -7524,6 +7497,45 @@ module Google
|
|
7524
7497
|
end
|
7525
7498
|
end
|
7526
7499
|
|
7500
|
+
# Metadata about an entity type.
|
7501
|
+
class GoogleCloudDocumentaiV1beta3EntityTypeMetadata
|
7502
|
+
include Google::Apis::Core::Hashable
|
7503
|
+
|
7504
|
+
# Metadata for human review labeling config.
|
7505
|
+
# Corresponds to the JSON property `humanReviewLabelingMetadata`
|
7506
|
+
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata]
|
7507
|
+
attr_accessor :human_review_labeling_metadata
|
7508
|
+
|
7509
|
+
# Metadata for Human Review config.
|
7510
|
+
# Corresponds to the JSON property `humanReviewMetadata`
|
7511
|
+
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata]
|
7512
|
+
attr_accessor :human_review_metadata
|
7513
|
+
|
7514
|
+
# Whether the entity type should be considered as "inactive".
|
7515
|
+
# Corresponds to the JSON property `inactive`
|
7516
|
+
# @return [Boolean]
|
7517
|
+
attr_accessor :inactive
|
7518
|
+
alias_method :inactive?, :inactive
|
7519
|
+
|
7520
|
+
# If set, the properties of this entity type must be prefixed with the parents.
|
7521
|
+
# Corresponds to the JSON property `prefixedNamingOnProperties`
|
7522
|
+
# @return [Boolean]
|
7523
|
+
attr_accessor :prefixed_naming_on_properties
|
7524
|
+
alias_method :prefixed_naming_on_properties?, :prefixed_naming_on_properties
|
7525
|
+
|
7526
|
+
def initialize(**args)
|
7527
|
+
update!(**args)
|
7528
|
+
end
|
7529
|
+
|
7530
|
+
# Update properties of this object
|
7531
|
+
def update!(**args)
|
7532
|
+
@human_review_labeling_metadata = args[:human_review_labeling_metadata] if args.key?(:human_review_labeling_metadata)
|
7533
|
+
@human_review_metadata = args[:human_review_metadata] if args.key?(:human_review_metadata)
|
7534
|
+
@inactive = args[:inactive] if args.key?(:inactive)
|
7535
|
+
@prefixed_naming_on_properties = args[:prefixed_naming_on_properties] if args.key?(:prefixed_naming_on_properties)
|
7536
|
+
end
|
7537
|
+
end
|
7538
|
+
|
7527
7539
|
# Response message for fetch processor types.
|
7528
7540
|
class GoogleCloudDocumentaiV1beta3FetchProcessorTypesResponse
|
7529
7541
|
include Google::Apis::Core::Hashable
|
@@ -7606,6 +7618,26 @@ module Google
|
|
7606
7618
|
end
|
7607
7619
|
end
|
7608
7620
|
|
7621
|
+
# Metadata for human review labeling config.
|
7622
|
+
class GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata
|
7623
|
+
include Google::Apis::Core::Hashable
|
7624
|
+
|
7625
|
+
# Whether to enable normalization editing.
|
7626
|
+
# Corresponds to the JSON property `enableNormalizationEditing`
|
7627
|
+
# @return [Boolean]
|
7628
|
+
attr_accessor :enable_normalization_editing
|
7629
|
+
alias_method :enable_normalization_editing?, :enable_normalization_editing
|
7630
|
+
|
7631
|
+
def initialize(**args)
|
7632
|
+
update!(**args)
|
7633
|
+
end
|
7634
|
+
|
7635
|
+
# Update properties of this object
|
7636
|
+
def update!(**args)
|
7637
|
+
@enable_normalization_editing = args[:enable_normalization_editing] if args.key?(:enable_normalization_editing)
|
7638
|
+
end
|
7639
|
+
end
|
7640
|
+
|
7609
7641
|
# The status of human review on a processed document.
|
7610
7642
|
class GoogleCloudDocumentaiV1beta3HumanReviewStatus
|
7611
7643
|
include Google::Apis::Core::Hashable
|
@@ -7640,6 +7672,32 @@ module Google
|
|
7640
7672
|
end
|
7641
7673
|
end
|
7642
7674
|
|
7675
|
+
# Metadata for Human Review config.
|
7676
|
+
class GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata
|
7677
|
+
include Google::Apis::Core::Hashable
|
7678
|
+
|
7679
|
+
# The confidence threshold if human review validation is enabled.
|
7680
|
+
# Corresponds to the JSON property `confidenceThreshold`
|
7681
|
+
# @return [Float]
|
7682
|
+
attr_accessor :confidence_threshold
|
7683
|
+
|
7684
|
+
# Whether to enable human review validation.
|
7685
|
+
# Corresponds to the JSON property `enableValidation`
|
7686
|
+
# @return [Boolean]
|
7687
|
+
attr_accessor :enable_validation
|
7688
|
+
alias_method :enable_validation?, :enable_validation
|
7689
|
+
|
7690
|
+
def initialize(**args)
|
7691
|
+
update!(**args)
|
7692
|
+
end
|
7693
|
+
|
7694
|
+
# Update properties of this object
|
7695
|
+
def update!(**args)
|
7696
|
+
@confidence_threshold = args[:confidence_threshold] if args.key?(:confidence_threshold)
|
7697
|
+
@enable_validation = args[:enable_validation] if args.key?(:enable_validation)
|
7698
|
+
end
|
7699
|
+
end
|
7700
|
+
|
7643
7701
|
# Response message for list processor types.
|
7644
7702
|
class GoogleCloudDocumentaiV1beta3ListProcessorTypesResponse
|
7645
7703
|
include Google::Apis::Core::Hashable
|
@@ -8060,6 +8118,38 @@ module Google
|
|
8060
8118
|
end
|
8061
8119
|
end
|
8062
8120
|
|
8121
|
+
# Metadata about a property.
|
8122
|
+
class GoogleCloudDocumentaiV1beta3PropertyMetadata
|
8123
|
+
include Google::Apis::Core::Hashable
|
8124
|
+
|
8125
|
+
# Metadata for human review labeling config.
|
8126
|
+
# Corresponds to the JSON property `humanReviewLabelingMetadata`
|
8127
|
+
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata]
|
8128
|
+
attr_accessor :human_review_labeling_metadata
|
8129
|
+
|
8130
|
+
# Metadata for Human Review config.
|
8131
|
+
# Corresponds to the JSON property `humanReviewMetadata`
|
8132
|
+
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata]
|
8133
|
+
attr_accessor :human_review_metadata
|
8134
|
+
|
8135
|
+
# Whether the property should be considered as "inactive".
|
8136
|
+
# Corresponds to the JSON property `inactive`
|
8137
|
+
# @return [Boolean]
|
8138
|
+
attr_accessor :inactive
|
8139
|
+
alias_method :inactive?, :inactive
|
8140
|
+
|
8141
|
+
def initialize(**args)
|
8142
|
+
update!(**args)
|
8143
|
+
end
|
8144
|
+
|
8145
|
+
# Update properties of this object
|
8146
|
+
def update!(**args)
|
8147
|
+
@human_review_labeling_metadata = args[:human_review_labeling_metadata] if args.key?(:human_review_labeling_metadata)
|
8148
|
+
@human_review_metadata = args[:human_review_metadata] if args.key?(:human_review_metadata)
|
8149
|
+
@inactive = args[:inactive] if args.key?(:inactive)
|
8150
|
+
end
|
8151
|
+
end
|
8152
|
+
|
8063
8153
|
# Payload message of raw document content (bytes).
|
8064
8154
|
class GoogleCloudDocumentaiV1beta3RawDocument
|
8065
8155
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DocumentaiV1beta3
|
18
18
|
# Version of the google-apis-documentai_v1beta3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.54.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220821"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -208,12 +208,6 @@ module Google
|
|
208
208
|
include Google::Apis::Core::JsonObjectSupport
|
209
209
|
end
|
210
210
|
|
211
|
-
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
|
212
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
|
-
|
214
|
-
include Google::Apis::Core::JsonObjectSupport
|
215
|
-
end
|
216
|
-
|
217
211
|
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetResponse
|
218
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
213
|
|
@@ -1330,6 +1324,12 @@ module Google
|
|
1330
1324
|
include Google::Apis::Core::JsonObjectSupport
|
1331
1325
|
end
|
1332
1326
|
|
1327
|
+
class GoogleCloudDocumentaiV1beta3EntityTypeMetadata
|
1328
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1329
|
+
|
1330
|
+
include Google::Apis::Core::JsonObjectSupport
|
1331
|
+
end
|
1332
|
+
|
1333
1333
|
class GoogleCloudDocumentaiV1beta3FetchProcessorTypesResponse
|
1334
1334
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1335
1335
|
|
@@ -1354,12 +1354,24 @@ module Google
|
|
1354
1354
|
include Google::Apis::Core::JsonObjectSupport
|
1355
1355
|
end
|
1356
1356
|
|
1357
|
+
class GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata
|
1358
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1359
|
+
|
1360
|
+
include Google::Apis::Core::JsonObjectSupport
|
1361
|
+
end
|
1362
|
+
|
1357
1363
|
class GoogleCloudDocumentaiV1beta3HumanReviewStatus
|
1358
1364
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1359
1365
|
|
1360
1366
|
include Google::Apis::Core::JsonObjectSupport
|
1361
1367
|
end
|
1362
1368
|
|
1369
|
+
class GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata
|
1370
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1371
|
+
|
1372
|
+
include Google::Apis::Core::JsonObjectSupport
|
1373
|
+
end
|
1374
|
+
|
1363
1375
|
class GoogleCloudDocumentaiV1beta3ListProcessorTypesResponse
|
1364
1376
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1365
1377
|
|
@@ -1426,6 +1438,12 @@ module Google
|
|
1426
1438
|
include Google::Apis::Core::JsonObjectSupport
|
1427
1439
|
end
|
1428
1440
|
|
1441
|
+
class GoogleCloudDocumentaiV1beta3PropertyMetadata
|
1442
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1443
|
+
|
1444
|
+
include Google::Apis::Core::JsonObjectSupport
|
1445
|
+
end
|
1446
|
+
|
1429
1447
|
class GoogleCloudDocumentaiV1beta3RawDocument
|
1430
1448
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1431
1449
|
|
@@ -1569,6 +1587,7 @@ module Google
|
|
1569
1587
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1570
1588
|
property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
|
1571
1589
|
|
1590
|
+
property :error_document_count, as: 'errorDocumentCount'
|
1572
1591
|
collection :individual_batch_delete_statuses, as: 'individualBatchDeleteStatuses', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus::Representation
|
1573
1592
|
|
1574
1593
|
property :total_document_count, as: 'totalDocumentCount'
|
@@ -1807,8 +1826,6 @@ module Google
|
|
1807
1826
|
|
1808
1827
|
collection :individual_document_resync_statuses, as: 'individualDocumentResyncStatuses', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus::Representation
|
1809
1828
|
|
1810
|
-
collection :newly_added_documents, as: 'newlyAddedDocuments', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument::Representation
|
1811
|
-
|
1812
1829
|
end
|
1813
1830
|
end
|
1814
1831
|
|
@@ -1832,16 +1849,6 @@ module Google
|
|
1832
1849
|
end
|
1833
1850
|
end
|
1834
1851
|
|
1835
|
-
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
|
1836
|
-
# @private
|
1837
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1838
|
-
property :destination_prefix, as: 'destinationPrefix'
|
1839
|
-
property :source_prefix, as: 'sourcePrefix'
|
1840
|
-
property :status, as: 'status', class: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus::Representation
|
1841
|
-
|
1842
|
-
end
|
1843
|
-
end
|
1844
|
-
|
1845
1852
|
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetResponse
|
1846
1853
|
# @private
|
1847
1854
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3720,6 +3727,8 @@ module Google
|
|
3720
3727
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3721
3728
|
collection :base_types, as: 'baseTypes'
|
3722
3729
|
property :display_name, as: 'displayName'
|
3730
|
+
property :entity_type_metadata, as: 'entityTypeMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EntityTypeMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EntityTypeMetadata::Representation
|
3731
|
+
|
3723
3732
|
property :enum_values, as: 'enumValues', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentSchemaEntityTypeEnumValues, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentSchemaEntityTypeEnumValues::Representation
|
3724
3733
|
|
3725
3734
|
property :name, as: 'name'
|
@@ -3740,6 +3749,8 @@ module Google
|
|
3740
3749
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3741
3750
|
property :name, as: 'name'
|
3742
3751
|
property :occurrence_type, as: 'occurrenceType'
|
3752
|
+
property :property_metadata, as: 'propertyMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3PropertyMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3PropertyMetadata::Representation
|
3753
|
+
|
3743
3754
|
property :value_type, as: 'valueType'
|
3744
3755
|
end
|
3745
3756
|
end
|
@@ -3836,6 +3847,18 @@ module Google
|
|
3836
3847
|
end
|
3837
3848
|
end
|
3838
3849
|
|
3850
|
+
class GoogleCloudDocumentaiV1beta3EntityTypeMetadata
|
3851
|
+
# @private
|
3852
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3853
|
+
property :human_review_labeling_metadata, as: 'humanReviewLabelingMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata::Representation
|
3854
|
+
|
3855
|
+
property :human_review_metadata, as: 'humanReviewMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata::Representation
|
3856
|
+
|
3857
|
+
property :inactive, as: 'inactive'
|
3858
|
+
property :prefixed_naming_on_properties, as: 'prefixedNamingOnProperties'
|
3859
|
+
end
|
3860
|
+
end
|
3861
|
+
|
3839
3862
|
class GoogleCloudDocumentaiV1beta3FetchProcessorTypesResponse
|
3840
3863
|
# @private
|
3841
3864
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3867,6 +3890,13 @@ module Google
|
|
3867
3890
|
end
|
3868
3891
|
end
|
3869
3892
|
|
3893
|
+
class GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata
|
3894
|
+
# @private
|
3895
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3896
|
+
property :enable_normalization_editing, as: 'enableNormalizationEditing'
|
3897
|
+
end
|
3898
|
+
end
|
3899
|
+
|
3870
3900
|
class GoogleCloudDocumentaiV1beta3HumanReviewStatus
|
3871
3901
|
# @private
|
3872
3902
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3876,6 +3906,14 @@ module Google
|
|
3876
3906
|
end
|
3877
3907
|
end
|
3878
3908
|
|
3909
|
+
class GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata
|
3910
|
+
# @private
|
3911
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3912
|
+
property :confidence_threshold, as: 'confidenceThreshold'
|
3913
|
+
property :enable_validation, as: 'enableValidation'
|
3914
|
+
end
|
3915
|
+
end
|
3916
|
+
|
3879
3917
|
class GoogleCloudDocumentaiV1beta3ListProcessorTypesResponse
|
3880
3918
|
# @private
|
3881
3919
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3993,6 +4031,17 @@ module Google
|
|
3993
4031
|
end
|
3994
4032
|
end
|
3995
4033
|
|
4034
|
+
class GoogleCloudDocumentaiV1beta3PropertyMetadata
|
4035
|
+
# @private
|
4036
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4037
|
+
property :human_review_labeling_metadata, as: 'humanReviewLabelingMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata::Representation
|
4038
|
+
|
4039
|
+
property :human_review_metadata, as: 'humanReviewMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata::Representation
|
4040
|
+
|
4041
|
+
property :inactive, as: 'inactive'
|
4042
|
+
end
|
4043
|
+
end
|
4044
|
+
|
3996
4045
|
class GoogleCloudDocumentaiV1beta3RawDocument
|
3997
4046
|
# @private
|
3998
4047
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-documentai_v1beta3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.54.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-08-
|
11
|
+
date: 2022-08-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.54.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|