google-apis-documentai_v1beta3 0.52.0 → 0.53.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: c49f002e23375d817801cedaefd6f223b6e4fbe354f5e9866984874eaf359cd0
4
- data.tar.gz: 9ded1252a499d4f7fa2ce88561d522c8f8fccf331d2f4adc4567a1afd3f0f6ab
3
+ metadata.gz: 1f7802b1003dea013b566033fbd3f1568bba9e2185c890de3ce0c9906b144025
4
+ data.tar.gz: 07d0fca5042aef6b740132d9fdf6eb5245b609ab3799d312ff71151951e2211c
5
5
  SHA512:
6
- metadata.gz: 7445bdbf74e2619eae0bcab90e3b6138e19a51a58c0202d38b1c53ce22565d9f6ec27ef52c5010bf3d1c361b591df0de3765695e5d90b1762783363c0a8ffc78
7
- data.tar.gz: d384828b313ea4276476085ace30279ffc13c8fc65086f5f56573276f3da41d913b9fd1fd1d30f61304a0fc278cd7865f185a4adde9e82c7f8d637d43a29a69d
6
+ metadata.gz: 1598d3ff26305b5a68901f96b0ee6a4b16b44493a666ae42c49ccf8faeb10e569fdae7f45d79ae0afa579079f5c237bbccaac8c63bc2137ad163b3138a1422e2
7
+ data.tar.gz: f86dbe4df24746ebb4ed4c84832408e4f27526c06ba687bf29c37c0959108fdd2d7c1fec3ac848a28818a51d08b9287dc06df08f7cae14b538211271af161d75
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-documentai_v1beta3
2
2
 
3
+ ### v0.53.0 (2022-08-16)
4
+
5
+ * Regenerated from discovery document revision 20220815
6
+
3
7
  ### v0.52.0 (2022-08-10)
4
8
 
5
9
  * Regenerated from discovery document revision 20220808
@@ -36,6 +36,11 @@ module Google
36
36
  # @return [Array<Google::Apis::DocumentaiV1beta3::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::DocumentaiV1beta3::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::DocumentaiV1beta3::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::DocumentaiV1beta3::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::DocumentaiV1beta3::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::DocumentaiV1beta3::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::DocumentaiV1beta3::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::DocumentaiV1beta3::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::DocumentaiV1beta3::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::DocumentaiV1beta3::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::DocumentaiV1beta3::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
@@ -1656,15 +1780,6 @@ module Google
1656
1780
  # @return [String]
1657
1781
  attr_accessor :mention_text
1658
1782
 
1659
- # Optional. This attribute indicates that the processing didn't actually
1660
- # identify this entity, but a confidence score was assigned that represent the
1661
- # potential that this could be a false negative. A non-present entity should
1662
- # have an empty mention_text and text_anchor.
1663
- # Corresponds to the JSON property `nonPresent`
1664
- # @return [Boolean]
1665
- attr_accessor :non_present
1666
- alias_method :non_present?, :non_present
1667
-
1668
1783
  # Parsed and normalized entity value.
1669
1784
  # Corresponds to the JSON property `normalizedValue`
1670
1785
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue]
@@ -1715,7 +1830,6 @@ module Google
1715
1830
  @id = args[:id] if args.key?(:id)
1716
1831
  @mention_id = args[:mention_id] if args.key?(:mention_id)
1717
1832
  @mention_text = args[:mention_text] if args.key?(:mention_text)
1718
- @non_present = args[:non_present] if args.key?(:non_present)
1719
1833
  @normalized_value = args[:normalized_value] if args.key?(:normalized_value)
1720
1834
  @page_anchor = args[:page_anchor] if args.key?(:page_anchor)
1721
1835
  @properties = args[:properties] if args.key?(:properties)
@@ -3495,15 +3609,6 @@ module Google
3495
3609
  # @return [String]
3496
3610
  attr_accessor :mention_text
3497
3611
 
3498
- # Optional. This attribute indicates that the processing didn't actually
3499
- # identify this entity, but a confidence score was assigned that represent the
3500
- # potential that this could be a false negative. A non-present entity should
3501
- # have an empty mention_text and text_anchor.
3502
- # Corresponds to the JSON property `nonPresent`
3503
- # @return [Boolean]
3504
- attr_accessor :non_present
3505
- alias_method :non_present?, :non_present
3506
-
3507
3612
  # Parsed and normalized entity value.
3508
3613
  # Corresponds to the JSON property `normalizedValue`
3509
3614
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue]
@@ -3554,7 +3659,6 @@ module Google
3554
3659
  @id = args[:id] if args.key?(:id)
3555
3660
  @mention_id = args[:mention_id] if args.key?(:mention_id)
3556
3661
  @mention_text = args[:mention_text] if args.key?(:mention_text)
3557
- @non_present = args[:non_present] if args.key?(:non_present)
3558
3662
  @normalized_value = args[:normalized_value] if args.key?(:normalized_value)
3559
3663
  @page_anchor = args[:page_anchor] if args.key?(:page_anchor)
3560
3664
  @properties = args[:properties] if args.key?(:properties)
@@ -5756,15 +5860,6 @@ module Google
5756
5860
  # @return [String]
5757
5861
  attr_accessor :mention_text
5758
5862
 
5759
- # Optional. This attribute indicates that the processing didn't actually
5760
- # identify this entity, but a confidence score was assigned that represent the
5761
- # potential that this could be a false negative. A non-present entity should
5762
- # have an empty mention_text and text_anchor.
5763
- # Corresponds to the JSON property `nonPresent`
5764
- # @return [Boolean]
5765
- attr_accessor :non_present
5766
- alias_method :non_present?, :non_present
5767
-
5768
5863
  # Parsed and normalized entity value.
5769
5864
  # Corresponds to the JSON property `normalizedValue`
5770
5865
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentEntityNormalizedValue]
@@ -5815,7 +5910,6 @@ module Google
5815
5910
  @id = args[:id] if args.key?(:id)
5816
5911
  @mention_id = args[:mention_id] if args.key?(:mention_id)
5817
5912
  @mention_text = args[:mention_text] if args.key?(:mention_text)
5818
- @non_present = args[:non_present] if args.key?(:non_present)
5819
5913
  @normalized_value = args[:normalized_value] if args.key?(:normalized_value)
5820
5914
  @page_anchor = args[:page_anchor] if args.key?(:page_anchor)
5821
5915
  @properties = args[:properties] if args.key?(:properties)
@@ -6970,8 +7064,8 @@ module Google
6970
7064
  # Name of the type. It must be unique within the schema file and cannot be a '
6971
7065
  # Common Type'. Besides that we use the following naming conventions: - *use
6972
7066
  # snake_casing* - name matching is case-insensitive - Maximum 64 characters. -
6973
- # Must start with a letter. - Allowed characters: ASCII letters [a-z0-9_-]. (For
6974
- # backward compatibility internal infrastructure and tooling can handle any
7067
+ # Must start with a letter. - Allowed characters: ASCII letters `[a-z0-9_-]`. (
7068
+ # For backward compatibility internal infrastructure and tooling can handle any
6975
7069
  # ascii character) - The '/' is sometimes used to denote a property of a type.
6976
7070
  # For example line_item/amount. This convention is deprecated, but will still be
6977
7071
  # honored for backward compatibility.
@@ -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.52.0"
19
+ GEM_VERSION = "0.53.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 = "20220808"
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
 
@@ -1553,6 +1571,7 @@ module Google
1553
1571
 
1554
1572
  collection :individual_batch_delete_statuses, as: 'individualBatchDeleteStatuses', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus::Representation
1555
1573
 
1574
+ property :total_document_count, as: 'totalDocumentCount'
1556
1575
  end
1557
1576
  end
1558
1577
 
@@ -1746,12 +1765,23 @@ module Google
1746
1765
  class Representation < Google::Apis::Core::JsonRepresentation
1747
1766
  property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1748
1767
 
1768
+ collection :import_config_validation_results, as: 'importConfigValidationResults', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult::Representation
1769
+
1749
1770
  collection :individual_import_statuses, as: 'individualImportStatuses', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus::Representation
1750
1771
 
1751
1772
  property :total_document_count, as: 'totalDocumentCount'
1752
1773
  end
1753
1774
  end
1754
1775
 
1776
+ class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult
1777
+ # @private
1778
+ class Representation < Google::Apis::Core::JsonRepresentation
1779
+ property :input_gcs_source, as: 'inputGcsSource'
1780
+ property :status, as: 'status', class: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus::Representation
1781
+
1782
+ end
1783
+ end
1784
+
1755
1785
  class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus
1756
1786
  # @private
1757
1787
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1773,11 +1803,35 @@ module Google
1773
1803
  class Representation < Google::Apis::Core::JsonRepresentation
1774
1804
  property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1775
1805
 
1806
+ collection :dataset_resync_statuses, as: 'datasetResyncStatuses', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus::Representation
1807
+
1808
+ collection :individual_document_resync_statuses, as: 'individualDocumentResyncStatuses', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus::Representation
1809
+
1776
1810
  collection :newly_added_documents, as: 'newlyAddedDocuments', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument::Representation
1777
1811
 
1778
1812
  end
1779
1813
  end
1780
1814
 
1815
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus
1816
+ # @private
1817
+ class Representation < Google::Apis::Core::JsonRepresentation
1818
+ property :dataset_inconsistency_type, as: 'datasetInconsistencyType'
1819
+ property :status, as: 'status', class: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus::Representation
1820
+
1821
+ end
1822
+ end
1823
+
1824
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus
1825
+ # @private
1826
+ class Representation < Google::Apis::Core::JsonRepresentation
1827
+ property :document_id, as: 'documentId', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentId, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentId::Representation
1828
+
1829
+ property :document_inconsistency_type, as: 'documentInconsistencyType'
1830
+ property :status, as: 'status', class: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus::Representation
1831
+
1832
+ end
1833
+ end
1834
+
1781
1835
  class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
1782
1836
  # @private
1783
1837
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2119,7 +2173,6 @@ module Google
2119
2173
  property :id, as: 'id'
2120
2174
  property :mention_id, as: 'mentionId'
2121
2175
  property :mention_text, as: 'mentionText'
2122
- property :non_present, as: 'nonPresent'
2123
2176
  property :normalized_value, as: 'normalizedValue', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue::Representation
2124
2177
 
2125
2178
  property :page_anchor, as: 'pageAnchor', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageAnchor, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageAnchor::Representation
@@ -2643,7 +2696,6 @@ module Google
2643
2696
  property :id, as: 'id'
2644
2697
  property :mention_id, as: 'mentionId'
2645
2698
  property :mention_text, as: 'mentionText'
2646
- property :non_present, as: 'nonPresent'
2647
2699
  property :normalized_value, as: 'normalizedValue', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue::Representation
2648
2700
 
2649
2701
  property :page_anchor, as: 'pageAnchor', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageAnchor, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageAnchor::Representation
@@ -3305,7 +3357,6 @@ module Google
3305
3357
  property :id, as: 'id'
3306
3358
  property :mention_id, as: 'mentionId'
3307
3359
  property :mention_text, as: 'mentionText'
3308
- property :non_present, as: 'nonPresent'
3309
3360
  property :normalized_value, as: 'normalizedValue', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentEntityNormalizedValue, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentEntityNormalizedValue::Representation
3310
3361
 
3311
3362
  property :page_anchor, as: 'pageAnchor', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageAnchor, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageAnchor::Representation
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.52.0
4
+ version: 0.53.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-15 00:00:00.000000000 Z
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_v1beta3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.52.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.53.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: []