google-apis-documentai_v1 0.44.0 → 0.45.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7258fbe9a863d41ea9b5c3b41bf55e3db1d19a889b0448070cfa0a75bb4f1a4
|
4
|
+
data.tar.gz: f1b6db776db2629f8453bb745fe3a922e288efe1717b66a5c7e8e0248816c00d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2d85a45e95956e368b9cf426aef5b74354447323acf38d9f6bf816e6de732b137c0577e3ee31fa446c057a23d1560ed68d1e8df6dbcf3e5036494ce329996a6
|
7
|
+
data.tar.gz: 550cee6c5e44293b7b22914607da2f3ed86eb095ca136993ba71dbc3f5a879926c74d9bca86adbffcaaa716a9137913a7ae9347189966d39ebb11f9d9a57d89d
|
data/CHANGELOG.md
CHANGED
@@ -36,6 +36,11 @@ module Google
|
|
36
36
|
# @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus>]
|
37
37
|
attr_accessor :individual_batch_delete_statuses
|
38
38
|
|
39
|
+
# Total number of documents deleting from dataset.
|
40
|
+
# Corresponds to the JSON property `totalDocumentCount`
|
41
|
+
# @return [Fixnum]
|
42
|
+
attr_accessor :total_document_count
|
43
|
+
|
39
44
|
def initialize(**args)
|
40
45
|
update!(**args)
|
41
46
|
end
|
@@ -44,6 +49,7 @@ module Google
|
|
44
49
|
def update!(**args)
|
45
50
|
@common_metadata = args[:common_metadata] if args.key?(:common_metadata)
|
46
51
|
@individual_batch_delete_statuses = args[:individual_batch_delete_statuses] if args.key?(:individual_batch_delete_statuses)
|
52
|
+
@total_document_count = args[:total_document_count] if args.key?(:total_document_count)
|
47
53
|
end
|
48
54
|
end
|
49
55
|
|
@@ -543,6 +549,11 @@ module Google
|
|
543
549
|
# @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
|
544
550
|
attr_accessor :common_metadata
|
545
551
|
|
552
|
+
# Validation statuses of the batch documents import config.
|
553
|
+
# Corresponds to the JSON property `importConfigValidationResults`
|
554
|
+
# @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult>]
|
555
|
+
attr_accessor :import_config_validation_results
|
556
|
+
|
546
557
|
# The list of response details of each document.
|
547
558
|
# Corresponds to the JSON property `individualImportStatuses`
|
548
559
|
# @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus>]
|
@@ -560,11 +571,44 @@ module Google
|
|
560
571
|
# Update properties of this object
|
561
572
|
def update!(**args)
|
562
573
|
@common_metadata = args[:common_metadata] if args.key?(:common_metadata)
|
574
|
+
@import_config_validation_results = args[:import_config_validation_results] if args.key?(:import_config_validation_results)
|
563
575
|
@individual_import_statuses = args[:individual_import_statuses] if args.key?(:individual_import_statuses)
|
564
576
|
@total_document_count = args[:total_document_count] if args.key?(:total_document_count)
|
565
577
|
end
|
566
578
|
end
|
567
579
|
|
580
|
+
# The validation status of each import config. Status is ok if the configuration
|
581
|
+
# is valid and the specified documents are valid for importing. Otherwise status
|
582
|
+
# will be set as errors.
|
583
|
+
class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult
|
584
|
+
include Google::Apis::Core::Hashable
|
585
|
+
|
586
|
+
# The source Cloud Storage URI specified in the import config.
|
587
|
+
# Corresponds to the JSON property `inputGcsSource`
|
588
|
+
# @return [String]
|
589
|
+
attr_accessor :input_gcs_source
|
590
|
+
|
591
|
+
# The `Status` type defines a logical error model that is suitable for different
|
592
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
593
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
594
|
+
# data: error code, error message, and error details. You can find out more
|
595
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
596
|
+
# //cloud.google.com/apis/design/errors).
|
597
|
+
# Corresponds to the JSON property `status`
|
598
|
+
# @return [Google::Apis::DocumentaiV1::GoogleRpcStatus]
|
599
|
+
attr_accessor :status
|
600
|
+
|
601
|
+
def initialize(**args)
|
602
|
+
update!(**args)
|
603
|
+
end
|
604
|
+
|
605
|
+
# Update properties of this object
|
606
|
+
def update!(**args)
|
607
|
+
@input_gcs_source = args[:input_gcs_source] if args.key?(:input_gcs_source)
|
608
|
+
@status = args[:status] if args.key?(:status)
|
609
|
+
end
|
610
|
+
end
|
611
|
+
|
568
612
|
# The status of each individual document in the import process.
|
569
613
|
class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus
|
570
614
|
include Google::Apis::Core::Hashable
|
@@ -624,6 +668,18 @@ module Google
|
|
624
668
|
# @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
|
625
669
|
attr_accessor :common_metadata
|
626
670
|
|
671
|
+
# The list of dataset resync statuses. Not checked when `dataset_documents` is
|
672
|
+
# specified in ResyncRequest.
|
673
|
+
# Corresponds to the JSON property `datasetResyncStatuses`
|
674
|
+
# @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus>]
|
675
|
+
attr_accessor :dataset_resync_statuses
|
676
|
+
|
677
|
+
# The list of document resync statuses. The same document could have multiple `
|
678
|
+
# individual_document_resync_statuses` if it has multiple inconsistencies.
|
679
|
+
# Corresponds to the JSON property `individualDocumentResyncStatuses`
|
680
|
+
# @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus>]
|
681
|
+
attr_accessor :individual_document_resync_statuses
|
682
|
+
|
627
683
|
# Returns the newly added document Cloud Storage prefix if the documents are
|
628
684
|
# founded in Cloud Storage while not in Document Service storage.
|
629
685
|
# Corresponds to the JSON property `newlyAddedDocuments`
|
@@ -637,10 +693,78 @@ module Google
|
|
637
693
|
# Update properties of this object
|
638
694
|
def update!(**args)
|
639
695
|
@common_metadata = args[:common_metadata] if args.key?(:common_metadata)
|
696
|
+
@dataset_resync_statuses = args[:dataset_resync_statuses] if args.key?(:dataset_resync_statuses)
|
697
|
+
@individual_document_resync_statuses = args[:individual_document_resync_statuses] if args.key?(:individual_document_resync_statuses)
|
640
698
|
@newly_added_documents = args[:newly_added_documents] if args.key?(:newly_added_documents)
|
641
699
|
end
|
642
700
|
end
|
643
701
|
|
702
|
+
# Resync status against inconsistency types on the dataset level.
|
703
|
+
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus
|
704
|
+
include Google::Apis::Core::Hashable
|
705
|
+
|
706
|
+
# The type of the inconsistency of the dataset.
|
707
|
+
# Corresponds to the JSON property `datasetInconsistencyType`
|
708
|
+
# @return [String]
|
709
|
+
attr_accessor :dataset_inconsistency_type
|
710
|
+
|
711
|
+
# The `Status` type defines a logical error model that is suitable for different
|
712
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
713
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
714
|
+
# data: error code, error message, and error details. You can find out more
|
715
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
716
|
+
# //cloud.google.com/apis/design/errors).
|
717
|
+
# Corresponds to the JSON property `status`
|
718
|
+
# @return [Google::Apis::DocumentaiV1::GoogleRpcStatus]
|
719
|
+
attr_accessor :status
|
720
|
+
|
721
|
+
def initialize(**args)
|
722
|
+
update!(**args)
|
723
|
+
end
|
724
|
+
|
725
|
+
# Update properties of this object
|
726
|
+
def update!(**args)
|
727
|
+
@dataset_inconsistency_type = args[:dataset_inconsistency_type] if args.key?(:dataset_inconsistency_type)
|
728
|
+
@status = args[:status] if args.key?(:status)
|
729
|
+
end
|
730
|
+
end
|
731
|
+
|
732
|
+
# Resync status for each document per inconsistency type.
|
733
|
+
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus
|
734
|
+
include Google::Apis::Core::Hashable
|
735
|
+
|
736
|
+
# Document Identifier.
|
737
|
+
# Corresponds to the JSON property `documentId`
|
738
|
+
# @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3DocumentId]
|
739
|
+
attr_accessor :document_id
|
740
|
+
|
741
|
+
# The type of document inconsistency.
|
742
|
+
# Corresponds to the JSON property `documentInconsistencyType`
|
743
|
+
# @return [String]
|
744
|
+
attr_accessor :document_inconsistency_type
|
745
|
+
|
746
|
+
# The `Status` type defines a logical error model that is suitable for different
|
747
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
748
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
749
|
+
# data: error code, error message, and error details. You can find out more
|
750
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
751
|
+
# //cloud.google.com/apis/design/errors).
|
752
|
+
# Corresponds to the JSON property `status`
|
753
|
+
# @return [Google::Apis::DocumentaiV1::GoogleRpcStatus]
|
754
|
+
attr_accessor :status
|
755
|
+
|
756
|
+
def initialize(**args)
|
757
|
+
update!(**args)
|
758
|
+
end
|
759
|
+
|
760
|
+
# Update properties of this object
|
761
|
+
def update!(**args)
|
762
|
+
@document_id = args[:document_id] if args.key?(:document_id)
|
763
|
+
@document_inconsistency_type = args[:document_inconsistency_type] if args.key?(:document_inconsistency_type)
|
764
|
+
@status = args[:status] if args.key?(:status)
|
765
|
+
end
|
766
|
+
end
|
767
|
+
|
644
768
|
# The proto for updated document in resync pipeline.
|
645
769
|
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
|
646
770
|
include Google::Apis::Core::Hashable
|
@@ -1471,15 +1595,6 @@ module Google
|
|
1471
1595
|
# @return [String]
|
1472
1596
|
attr_accessor :mention_text
|
1473
1597
|
|
1474
|
-
# Optional. This attribute indicates that the processing didn't actually
|
1475
|
-
# identify this entity, but a confidence score was assigned that represent the
|
1476
|
-
# potential that this could be a false negative. A non-present entity should
|
1477
|
-
# have an empty mention_text and text_anchor.
|
1478
|
-
# Corresponds to the JSON property `nonPresent`
|
1479
|
-
# @return [Boolean]
|
1480
|
-
attr_accessor :non_present
|
1481
|
-
alias_method :non_present?, :non_present
|
1482
|
-
|
1483
1598
|
# Parsed and normalized entity value.
|
1484
1599
|
# Corresponds to the JSON property `normalizedValue`
|
1485
1600
|
# @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentEntityNormalizedValue]
|
@@ -1530,7 +1645,6 @@ module Google
|
|
1530
1645
|
@id = args[:id] if args.key?(:id)
|
1531
1646
|
@mention_id = args[:mention_id] if args.key?(:mention_id)
|
1532
1647
|
@mention_text = args[:mention_text] if args.key?(:mention_text)
|
1533
|
-
@non_present = args[:non_present] if args.key?(:non_present)
|
1534
1648
|
@normalized_value = args[:normalized_value] if args.key?(:normalized_value)
|
1535
1649
|
@page_anchor = args[:page_anchor] if args.key?(:page_anchor)
|
1536
1650
|
@properties = args[:properties] if args.key?(:properties)
|
@@ -2685,8 +2799,8 @@ module Google
|
|
2685
2799
|
# Name of the type. It must be unique within the schema file and cannot be a '
|
2686
2800
|
# Common Type'. Besides that we use the following naming conventions: - *use
|
2687
2801
|
# snake_casing* - name matching is case-insensitive - Maximum 64 characters. -
|
2688
|
-
# Must start with a letter. - Allowed characters: ASCII letters [a-z0-9_-]
|
2689
|
-
# backward compatibility internal infrastructure and tooling can handle any
|
2802
|
+
# Must start with a letter. - Allowed characters: ASCII letters `[a-z0-9_-]`. (
|
2803
|
+
# For backward compatibility internal infrastructure and tooling can handle any
|
2690
2804
|
# ascii character) - The '/' is sometimes used to denote a property of a type.
|
2691
2805
|
# For example line_item/amount. This convention is deprecated, but will still be
|
2692
2806
|
# honored for backward compatibility.
|
@@ -4191,15 +4305,6 @@ module Google
|
|
4191
4305
|
# @return [String]
|
4192
4306
|
attr_accessor :mention_text
|
4193
4307
|
|
4194
|
-
# Optional. This attribute indicates that the processing didn't actually
|
4195
|
-
# identify this entity, but a confidence score was assigned that represent the
|
4196
|
-
# potential that this could be a false negative. A non-present entity should
|
4197
|
-
# have an empty mention_text and text_anchor.
|
4198
|
-
# Corresponds to the JSON property `nonPresent`
|
4199
|
-
# @return [Boolean]
|
4200
|
-
attr_accessor :non_present
|
4201
|
-
alias_method :non_present?, :non_present
|
4202
|
-
|
4203
4308
|
# Parsed and normalized entity value.
|
4204
4309
|
# Corresponds to the JSON property `normalizedValue`
|
4205
4310
|
# @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue]
|
@@ -4250,7 +4355,6 @@ module Google
|
|
4250
4355
|
@id = args[:id] if args.key?(:id)
|
4251
4356
|
@mention_id = args[:mention_id] if args.key?(:mention_id)
|
4252
4357
|
@mention_text = args[:mention_text] if args.key?(:mention_text)
|
4253
|
-
@non_present = args[:non_present] if args.key?(:non_present)
|
4254
4358
|
@normalized_value = args[:normalized_value] if args.key?(:normalized_value)
|
4255
4359
|
@page_anchor = args[:page_anchor] if args.key?(:page_anchor)
|
4256
4360
|
@properties = args[:properties] if args.key?(:properties)
|
@@ -6030,15 +6134,6 @@ module Google
|
|
6030
6134
|
# @return [String]
|
6031
6135
|
attr_accessor :mention_text
|
6032
6136
|
|
6033
|
-
# Optional. This attribute indicates that the processing didn't actually
|
6034
|
-
# identify this entity, but a confidence score was assigned that represent the
|
6035
|
-
# potential that this could be a false negative. A non-present entity should
|
6036
|
-
# have an empty mention_text and text_anchor.
|
6037
|
-
# Corresponds to the JSON property `nonPresent`
|
6038
|
-
# @return [Boolean]
|
6039
|
-
attr_accessor :non_present
|
6040
|
-
alias_method :non_present?, :non_present
|
6041
|
-
|
6042
6137
|
# Parsed and normalized entity value.
|
6043
6138
|
# Corresponds to the JSON property `normalizedValue`
|
6044
6139
|
# @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue]
|
@@ -6089,7 +6184,6 @@ module Google
|
|
6089
6184
|
@id = args[:id] if args.key?(:id)
|
6090
6185
|
@mention_id = args[:mention_id] if args.key?(:mention_id)
|
6091
6186
|
@mention_text = args[:mention_text] if args.key?(:mention_text)
|
6092
|
-
@non_present = args[:non_present] if args.key?(:non_present)
|
6093
6187
|
@normalized_value = args[:normalized_value] if args.key?(:normalized_value)
|
6094
6188
|
@page_anchor = args[:page_anchor] if args.key?(:page_anchor)
|
6095
6189
|
@properties = args[:properties] if args.key?(:properties)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DocumentaiV1
|
18
18
|
# Version of the google-apis-documentai_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.45.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 = "20220815"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -172,6 +172,12 @@ module Google
|
|
172
172
|
include Google::Apis::Core::JsonObjectSupport
|
173
173
|
end
|
174
174
|
|
175
|
+
class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
175
181
|
class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus
|
176
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
183
|
|
@@ -190,6 +196,18 @@ module Google
|
|
190
196
|
include Google::Apis::Core::JsonObjectSupport
|
191
197
|
end
|
192
198
|
|
199
|
+
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
205
|
+
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
193
211
|
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
|
194
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
213
|
|
@@ -1541,6 +1559,7 @@ module Google
|
|
1541
1559
|
|
1542
1560
|
collection :individual_batch_delete_statuses, as: 'individualBatchDeleteStatuses', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus::Representation
|
1543
1561
|
|
1562
|
+
property :total_document_count, as: 'totalDocumentCount'
|
1544
1563
|
end
|
1545
1564
|
end
|
1546
1565
|
|
@@ -1734,12 +1753,23 @@ module Google
|
|
1734
1753
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1735
1754
|
property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
|
1736
1755
|
|
1756
|
+
collection :import_config_validation_results, as: 'importConfigValidationResults', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult::Representation
|
1757
|
+
|
1737
1758
|
collection :individual_import_statuses, as: 'individualImportStatuses', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus::Representation
|
1738
1759
|
|
1739
1760
|
property :total_document_count, as: 'totalDocumentCount'
|
1740
1761
|
end
|
1741
1762
|
end
|
1742
1763
|
|
1764
|
+
class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult
|
1765
|
+
# @private
|
1766
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1767
|
+
property :input_gcs_source, as: 'inputGcsSource'
|
1768
|
+
property :status, as: 'status', class: Google::Apis::DocumentaiV1::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1::GoogleRpcStatus::Representation
|
1769
|
+
|
1770
|
+
end
|
1771
|
+
end
|
1772
|
+
|
1743
1773
|
class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus
|
1744
1774
|
# @private
|
1745
1775
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1761,11 +1791,35 @@ module Google
|
|
1761
1791
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1762
1792
|
property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
|
1763
1793
|
|
1794
|
+
collection :dataset_resync_statuses, as: 'datasetResyncStatuses', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus::Representation
|
1795
|
+
|
1796
|
+
collection :individual_document_resync_statuses, as: 'individualDocumentResyncStatuses', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus::Representation
|
1797
|
+
|
1764
1798
|
collection :newly_added_documents, as: 'newlyAddedDocuments', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument::Representation
|
1765
1799
|
|
1766
1800
|
end
|
1767
1801
|
end
|
1768
1802
|
|
1803
|
+
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus
|
1804
|
+
# @private
|
1805
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1806
|
+
property :dataset_inconsistency_type, as: 'datasetInconsistencyType'
|
1807
|
+
property :status, as: 'status', class: Google::Apis::DocumentaiV1::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1::GoogleRpcStatus::Representation
|
1808
|
+
|
1809
|
+
end
|
1810
|
+
end
|
1811
|
+
|
1812
|
+
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus
|
1813
|
+
# @private
|
1814
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1815
|
+
property :document_id, as: 'documentId', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3DocumentId, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3DocumentId::Representation
|
1816
|
+
|
1817
|
+
property :document_inconsistency_type, as: 'documentInconsistencyType'
|
1818
|
+
property :status, as: 'status', class: Google::Apis::DocumentaiV1::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1::GoogleRpcStatus::Representation
|
1819
|
+
|
1820
|
+
end
|
1821
|
+
end
|
1822
|
+
|
1769
1823
|
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
|
1770
1824
|
# @private
|
1771
1825
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2044,7 +2098,6 @@ module Google
|
|
2044
2098
|
property :id, as: 'id'
|
2045
2099
|
property :mention_id, as: 'mentionId'
|
2046
2100
|
property :mention_text, as: 'mentionText'
|
2047
|
-
property :non_present, as: 'nonPresent'
|
2048
2101
|
property :normalized_value, as: 'normalizedValue', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentEntityNormalizedValue, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentEntityNormalizedValue::Representation
|
2049
2102
|
|
2050
2103
|
property :page_anchor, as: 'pageAnchor', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageAnchor, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageAnchor::Representation
|
@@ -2844,7 +2897,6 @@ module Google
|
|
2844
2897
|
property :id, as: 'id'
|
2845
2898
|
property :mention_id, as: 'mentionId'
|
2846
2899
|
property :mention_text, as: 'mentionText'
|
2847
|
-
property :non_present, as: 'nonPresent'
|
2848
2900
|
property :normalized_value, as: 'normalizedValue', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue::Representation
|
2849
2901
|
|
2850
2902
|
property :page_anchor, as: 'pageAnchor', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageAnchor, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageAnchor::Representation
|
@@ -3368,7 +3420,6 @@ module Google
|
|
3368
3420
|
property :id, as: 'id'
|
3369
3421
|
property :mention_id, as: 'mentionId'
|
3370
3422
|
property :mention_text, as: 'mentionText'
|
3371
|
-
property :non_present, as: 'nonPresent'
|
3372
3423
|
property :normalized_value, as: 'normalizedValue', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue::Representation
|
3373
3424
|
|
3374
3425
|
property :page_anchor, as: 'pageAnchor', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageAnchor, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageAnchor::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-documentai_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.45.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-22 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.45.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|