google-apis-documentai_v1beta2 0.43.0 → 0.46.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: a6ec0c9ab68bd0a8b7e773e130403f29a80f08bc83e57b932b20c0ce52dcb190
4
- data.tar.gz: 21fb4713bf1a1677c5e7040c112c76a317dba014184f18b1e4b1122971524cfa
3
+ metadata.gz: 62d117e0bae35e29d0f32d2ef5791fba6376701f42b08e3333e20f35cc4a8872
4
+ data.tar.gz: 9d03b8c0bdbf419be7375d2bb9af3442128372bb8dd183a06d8102a3e7f882d9
5
5
  SHA512:
6
- metadata.gz: 4d9d7d1440974420194fe90386164e5b03f252c6ec01ff814ddde1dc81f001b4e7655252fc319043ad6fc8477f61546f316a50d98eab307b8600e1a8f1fee39a
7
- data.tar.gz: a992138b572b22f25560f75b2b9c6901914d908597e5807a2e7a5aa346b705033372623c1071e259484ec6fa84ae95b1cc4722c3f0772d1a5ce3bbe2dd6527c7
6
+ metadata.gz: 0a58e4ded6b20df61638f2b4201905ed6ed9b0899ccdc02f12292bf03c24cbd04130e6ab77224123af8b690da6cfb41569f168846e9b38b45ed82b7a51ab6dad
7
+ data.tar.gz: acda36656fb1ab2e912ba3bf07f3aeadbc898526653efc97af7265adba6ea253e839a94744107c47dc0d6e6996e501bd58002227b7b50bd467f27fce00f4c422
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-documentai_v1beta2
2
2
 
3
+ ### v0.46.0 (2022-08-31)
4
+
5
+ * Regenerated from discovery document revision 20220824
6
+
7
+ ### v0.45.0 (2022-08-24)
8
+
9
+ * Regenerated from discovery document revision 20220821
10
+
11
+ ### v0.44.0 (2022-08-16)
12
+
13
+ * Regenerated from discovery document revision 20220815
14
+
3
15
  ### v0.43.0 (2022-07-26)
4
16
 
5
17
  * Regenerated from discovery document revision 20220720
@@ -31,11 +31,21 @@ module Google
31
31
  # @return [Google::Apis::DocumentaiV1beta2::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::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus>]
37
42
  attr_accessor :individual_batch_delete_statuses
38
43
 
44
+ # Total number of documents deleting from dataset.
45
+ # Corresponds to the JSON property `totalDocumentCount`
46
+ # @return [Fixnum]
47
+ attr_accessor :total_document_count
48
+
39
49
  def initialize(**args)
40
50
  update!(**args)
41
51
  end
@@ -43,7 +53,9 @@ module Google
43
53
  # Update properties of this object
44
54
  def update!(**args)
45
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)
46
57
  @individual_batch_delete_statuses = args[:individual_batch_delete_statuses] if args.key?(:individual_batch_delete_statuses)
58
+ @total_document_count = args[:total_document_count] if args.key?(:total_document_count)
47
59
  end
48
60
  end
49
61
 
@@ -496,6 +508,112 @@ module Google
496
508
  end
497
509
  end
498
510
 
511
+ # Metadata of the batch export documents operation.
512
+ class GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadata
513
+ include Google::Apis::Core::Hashable
514
+
515
+ # The common metadata for long running operations.
516
+ # Corresponds to the JSON property `commonMetadata`
517
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
518
+ attr_accessor :common_metadata
519
+
520
+ # The list of response details of each document.
521
+ # Corresponds to the JSON property `individualExportStatuses`
522
+ # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus>]
523
+ attr_accessor :individual_export_statuses
524
+
525
+ # The list of statistics for each dataset split type.
526
+ # Corresponds to the JSON property `splitExportStats`
527
+ # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat>]
528
+ attr_accessor :split_export_stats
529
+
530
+ def initialize(**args)
531
+ update!(**args)
532
+ end
533
+
534
+ # Update properties of this object
535
+ def update!(**args)
536
+ @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
537
+ @individual_export_statuses = args[:individual_export_statuses] if args.key?(:individual_export_statuses)
538
+ @split_export_stats = args[:split_export_stats] if args.key?(:split_export_stats)
539
+ end
540
+ end
541
+
542
+ # The status of each individual document in the export process.
543
+ class GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus
544
+ include Google::Apis::Core::Hashable
545
+
546
+ # Document Identifier.
547
+ # Corresponds to the JSON property `documentId`
548
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3DocumentId]
549
+ attr_accessor :document_id
550
+
551
+ # The output_gcs_destination of the exported document if it was successful,
552
+ # otherwise empty.
553
+ # Corresponds to the JSON property `outputGcsDestination`
554
+ # @return [String]
555
+ attr_accessor :output_gcs_destination
556
+
557
+ # The `Status` type defines a logical error model that is suitable for different
558
+ # programming environments, including REST APIs and RPC APIs. It is used by [
559
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
560
+ # data: error code, error message, and error details. You can find out more
561
+ # about this error model and how to work with it in the [API Design Guide](https:
562
+ # //cloud.google.com/apis/design/errors).
563
+ # Corresponds to the JSON property `status`
564
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleRpcStatus]
565
+ attr_accessor :status
566
+
567
+ def initialize(**args)
568
+ update!(**args)
569
+ end
570
+
571
+ # Update properties of this object
572
+ def update!(**args)
573
+ @document_id = args[:document_id] if args.key?(:document_id)
574
+ @output_gcs_destination = args[:output_gcs_destination] if args.key?(:output_gcs_destination)
575
+ @status = args[:status] if args.key?(:status)
576
+ end
577
+ end
578
+
579
+ # The statistic representing a dataset split type for this export.
580
+ class GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat
581
+ include Google::Apis::Core::Hashable
582
+
583
+ # The dataset split type.
584
+ # Corresponds to the JSON property `splitType`
585
+ # @return [String]
586
+ attr_accessor :split_type
587
+
588
+ # Total number of documents with the given dataset split type to be exported.
589
+ # Corresponds to the JSON property `totalDocumentCount`
590
+ # @return [Fixnum]
591
+ attr_accessor :total_document_count
592
+
593
+ def initialize(**args)
594
+ update!(**args)
595
+ end
596
+
597
+ # Update properties of this object
598
+ def update!(**args)
599
+ @split_type = args[:split_type] if args.key?(:split_type)
600
+ @total_document_count = args[:total_document_count] if args.key?(:total_document_count)
601
+ end
602
+ end
603
+
604
+ # The response proto of ExportDocuments method.
605
+ class GoogleCloudDocumentaiUiv1beta3ExportDocumentsResponse
606
+ include Google::Apis::Core::Hashable
607
+
608
+ def initialize(**args)
609
+ update!(**args)
610
+ end
611
+
612
+ # Update properties of this object
613
+ def update!(**args)
614
+ end
615
+ end
616
+
499
617
  # Metadata message associated with the ExportProcessorVersion operation.
500
618
  class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata
501
619
  include Google::Apis::Core::Hashable
@@ -543,6 +661,11 @@ module Google
543
661
  # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
544
662
  attr_accessor :common_metadata
545
663
 
664
+ # Validation statuses of the batch documents import config.
665
+ # Corresponds to the JSON property `importConfigValidationResults`
666
+ # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult>]
667
+ attr_accessor :import_config_validation_results
668
+
546
669
  # The list of response details of each document.
547
670
  # Corresponds to the JSON property `individualImportStatuses`
548
671
  # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus>]
@@ -560,11 +683,44 @@ module Google
560
683
  # Update properties of this object
561
684
  def update!(**args)
562
685
  @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
686
+ @import_config_validation_results = args[:import_config_validation_results] if args.key?(:import_config_validation_results)
563
687
  @individual_import_statuses = args[:individual_import_statuses] if args.key?(:individual_import_statuses)
564
688
  @total_document_count = args[:total_document_count] if args.key?(:total_document_count)
565
689
  end
566
690
  end
567
691
 
692
+ # The validation status of each import config. Status is set to errors if there
693
+ # is no documents to import in the import_config, or OK if the operation will
694
+ # try to proceed at least one document.
695
+ class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult
696
+ include Google::Apis::Core::Hashable
697
+
698
+ # The source Cloud Storage URI specified in the import config.
699
+ # Corresponds to the JSON property `inputGcsSource`
700
+ # @return [String]
701
+ attr_accessor :input_gcs_source
702
+
703
+ # The `Status` type defines a logical error model that is suitable for different
704
+ # programming environments, including REST APIs and RPC APIs. It is used by [
705
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
706
+ # data: error code, error message, and error details. You can find out more
707
+ # about this error model and how to work with it in the [API Design Guide](https:
708
+ # //cloud.google.com/apis/design/errors).
709
+ # Corresponds to the JSON property `status`
710
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleRpcStatus]
711
+ attr_accessor :status
712
+
713
+ def initialize(**args)
714
+ update!(**args)
715
+ end
716
+
717
+ # Update properties of this object
718
+ def update!(**args)
719
+ @input_gcs_source = args[:input_gcs_source] if args.key?(:input_gcs_source)
720
+ @status = args[:status] if args.key?(:status)
721
+ end
722
+ end
723
+
568
724
  # The status of each individual document in the import process.
569
725
  class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus
570
726
  include Google::Apis::Core::Hashable
@@ -624,11 +780,17 @@ module Google
624
780
  # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
625
781
  attr_accessor :common_metadata
626
782
 
627
- # Returns the newly added document Cloud Storage prefix if the documents are
628
- # founded in Cloud Storage while not in Document Service storage.
629
- # Corresponds to the JSON property `newlyAddedDocuments`
630
- # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument>]
631
- attr_accessor :newly_added_documents
783
+ # The list of dataset resync statuses. Not checked when `dataset_documents` is
784
+ # specified in ResyncRequest.
785
+ # Corresponds to the JSON property `datasetResyncStatuses`
786
+ # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus>]
787
+ attr_accessor :dataset_resync_statuses
788
+
789
+ # The list of document resync statuses. The same document could have multiple `
790
+ # individual_document_resync_statuses` if it has multiple inconsistencies.
791
+ # Corresponds to the JSON property `individualDocumentResyncStatuses`
792
+ # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus>]
793
+ attr_accessor :individual_document_resync_statuses
632
794
 
633
795
  def initialize(**args)
634
796
  update!(**args)
@@ -637,25 +799,54 @@ module Google
637
799
  # Update properties of this object
638
800
  def update!(**args)
639
801
  @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
640
- @newly_added_documents = args[:newly_added_documents] if args.key?(:newly_added_documents)
802
+ @dataset_resync_statuses = args[:dataset_resync_statuses] if args.key?(:dataset_resync_statuses)
803
+ @individual_document_resync_statuses = args[:individual_document_resync_statuses] if args.key?(:individual_document_resync_statuses)
641
804
  end
642
805
  end
643
806
 
644
- # The proto for updated document in resync pipeline.
645
- class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
807
+ # Resync status against inconsistency types on the dataset level.
808
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus
646
809
  include Google::Apis::Core::Hashable
647
810
 
648
- # The prefix of cloud storage, identifies the destination document which should
649
- # be updated by resync pipeline.
650
- # Corresponds to the JSON property `destinationPrefix`
811
+ # The type of the inconsistency of the dataset.
812
+ # Corresponds to the JSON property `datasetInconsistencyType`
651
813
  # @return [String]
652
- attr_accessor :destination_prefix
814
+ attr_accessor :dataset_inconsistency_type
815
+
816
+ # The `Status` type defines a logical error model that is suitable for different
817
+ # programming environments, including REST APIs and RPC APIs. It is used by [
818
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
819
+ # data: error code, error message, and error details. You can find out more
820
+ # about this error model and how to work with it in the [API Design Guide](https:
821
+ # //cloud.google.com/apis/design/errors).
822
+ # Corresponds to the JSON property `status`
823
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleRpcStatus]
824
+ attr_accessor :status
825
+
826
+ def initialize(**args)
827
+ update!(**args)
828
+ end
653
829
 
654
- # The prefix of cloud storage, identifies the original document which should be
655
- # updated by resync pipeline.
656
- # Corresponds to the JSON property `sourcePrefix`
830
+ # Update properties of this object
831
+ def update!(**args)
832
+ @dataset_inconsistency_type = args[:dataset_inconsistency_type] if args.key?(:dataset_inconsistency_type)
833
+ @status = args[:status] if args.key?(:status)
834
+ end
835
+ end
836
+
837
+ # Resync status for each document per inconsistency type.
838
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus
839
+ include Google::Apis::Core::Hashable
840
+
841
+ # Document Identifier.
842
+ # Corresponds to the JSON property `documentId`
843
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3DocumentId]
844
+ attr_accessor :document_id
845
+
846
+ # The type of document inconsistency.
847
+ # Corresponds to the JSON property `documentInconsistencyType`
657
848
  # @return [String]
658
- attr_accessor :source_prefix
849
+ attr_accessor :document_inconsistency_type
659
850
 
660
851
  # The `Status` type defines a logical error model that is suitable for different
661
852
  # programming environments, including REST APIs and RPC APIs. It is used by [
@@ -673,8 +864,8 @@ module Google
673
864
 
674
865
  # Update properties of this object
675
866
  def update!(**args)
676
- @destination_prefix = args[:destination_prefix] if args.key?(:destination_prefix)
677
- @source_prefix = args[:source_prefix] if args.key?(:source_prefix)
867
+ @document_id = args[:document_id] if args.key?(:document_id)
868
+ @document_inconsistency_type = args[:document_inconsistency_type] if args.key?(:document_inconsistency_type)
678
869
  @status = args[:status] if args.key?(:status)
679
870
  end
680
871
  end
@@ -1656,15 +1847,6 @@ module Google
1656
1847
  # @return [String]
1657
1848
  attr_accessor :mention_text
1658
1849
 
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
1850
  # Parsed and normalized entity value.
1669
1851
  # Corresponds to the JSON property `normalizedValue`
1670
1852
  # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue]
@@ -1715,7 +1897,6 @@ module Google
1715
1897
  @id = args[:id] if args.key?(:id)
1716
1898
  @mention_id = args[:mention_id] if args.key?(:mention_id)
1717
1899
  @mention_text = args[:mention_text] if args.key?(:mention_text)
1718
- @non_present = args[:non_present] if args.key?(:non_present)
1719
1900
  @normalized_value = args[:normalized_value] if args.key?(:normalized_value)
1720
1901
  @page_anchor = args[:page_anchor] if args.key?(:page_anchor)
1721
1902
  @properties = args[:properties] if args.key?(:properties)
@@ -3535,15 +3716,6 @@ module Google
3535
3716
  # @return [String]
3536
3717
  attr_accessor :mention_text
3537
3718
 
3538
- # Optional. This attribute indicates that the processing didn't actually
3539
- # identify this entity, but a confidence score was assigned that represent the
3540
- # potential that this could be a false negative. A non-present entity should
3541
- # have an empty mention_text and text_anchor.
3542
- # Corresponds to the JSON property `nonPresent`
3543
- # @return [Boolean]
3544
- attr_accessor :non_present
3545
- alias_method :non_present?, :non_present
3546
-
3547
3719
  # Parsed and normalized entity value.
3548
3720
  # Corresponds to the JSON property `normalizedValue`
3549
3721
  # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue]
@@ -3594,7 +3766,6 @@ module Google
3594
3766
  @id = args[:id] if args.key?(:id)
3595
3767
  @mention_id = args[:mention_id] if args.key?(:mention_id)
3596
3768
  @mention_text = args[:mention_text] if args.key?(:mention_text)
3597
- @non_present = args[:non_present] if args.key?(:non_present)
3598
3769
  @normalized_value = args[:normalized_value] if args.key?(:normalized_value)
3599
3770
  @page_anchor = args[:page_anchor] if args.key?(:page_anchor)
3600
3771
  @properties = args[:properties] if args.key?(:properties)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DocumentaiV1beta2
18
18
  # Version of the google-apis-documentai_v1beta2 gem
19
- GEM_VERSION = "0.43.0"
19
+ GEM_VERSION = "0.46.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 = "20220720"
25
+ REVISION = "20220824"
26
26
  end
27
27
  end
28
28
  end
@@ -154,6 +154,30 @@ module Google
154
154
  include Google::Apis::Core::JsonObjectSupport
155
155
  end
156
156
 
157
+ class GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadata
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
163
+ class GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
169
+ class GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
175
+ class GoogleCloudDocumentaiUiv1beta3ExportDocumentsResponse
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
157
181
  class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata
158
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
183
 
@@ -172,6 +196,12 @@ module Google
172
196
  include Google::Apis::Core::JsonObjectSupport
173
197
  end
174
198
 
199
+ class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
175
205
  class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus
176
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
207
 
@@ -190,7 +220,13 @@ module Google
190
220
  include Google::Apis::Core::JsonObjectSupport
191
221
  end
192
222
 
193
- class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
223
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
229
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus
194
230
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
231
 
196
232
  include Google::Apis::Core::JsonObjectSupport
@@ -1167,8 +1203,10 @@ module Google
1167
1203
  class Representation < Google::Apis::Core::JsonRepresentation
1168
1204
  property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1169
1205
 
1206
+ property :error_document_count, as: 'errorDocumentCount'
1170
1207
  collection :individual_batch_delete_statuses, as: 'individualBatchDeleteStatuses', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus::Representation
1171
1208
 
1209
+ property :total_document_count, as: 'totalDocumentCount'
1172
1210
  end
1173
1211
  end
1174
1212
 
@@ -1342,6 +1380,43 @@ module Google
1342
1380
  end
1343
1381
  end
1344
1382
 
1383
+ class GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadata
1384
+ # @private
1385
+ class Representation < Google::Apis::Core::JsonRepresentation
1386
+ property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1387
+
1388
+ collection :individual_export_statuses, as: 'individualExportStatuses', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus::Representation
1389
+
1390
+ collection :split_export_stats, as: 'splitExportStats', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat::Representation
1391
+
1392
+ end
1393
+ end
1394
+
1395
+ class GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataIndividualExportStatus
1396
+ # @private
1397
+ class Representation < Google::Apis::Core::JsonRepresentation
1398
+ property :document_id, as: 'documentId', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3DocumentId, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3DocumentId::Representation
1399
+
1400
+ property :output_gcs_destination, as: 'outputGcsDestination'
1401
+ property :status, as: 'status', class: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus::Representation
1402
+
1403
+ end
1404
+ end
1405
+
1406
+ class GoogleCloudDocumentaiUiv1beta3ExportDocumentsMetadataSplitExportStat
1407
+ # @private
1408
+ class Representation < Google::Apis::Core::JsonRepresentation
1409
+ property :split_type, as: 'splitType'
1410
+ property :total_document_count, as: 'totalDocumentCount'
1411
+ end
1412
+ end
1413
+
1414
+ class GoogleCloudDocumentaiUiv1beta3ExportDocumentsResponse
1415
+ # @private
1416
+ class Representation < Google::Apis::Core::JsonRepresentation
1417
+ end
1418
+ end
1419
+
1345
1420
  class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata
1346
1421
  # @private
1347
1422
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1362,12 +1437,23 @@ module Google
1362
1437
  class Representation < Google::Apis::Core::JsonRepresentation
1363
1438
  property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1364
1439
 
1440
+ collection :import_config_validation_results, as: 'importConfigValidationResults', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult::Representation
1441
+
1365
1442
  collection :individual_import_statuses, as: 'individualImportStatuses', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus::Representation
1366
1443
 
1367
1444
  property :total_document_count, as: 'totalDocumentCount'
1368
1445
  end
1369
1446
  end
1370
1447
 
1448
+ class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult
1449
+ # @private
1450
+ class Representation < Google::Apis::Core::JsonRepresentation
1451
+ property :input_gcs_source, as: 'inputGcsSource'
1452
+ property :status, as: 'status', class: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus::Representation
1453
+
1454
+ end
1455
+ end
1456
+
1371
1457
  class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus
1372
1458
  # @private
1373
1459
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1389,16 +1475,28 @@ module Google
1389
1475
  class Representation < Google::Apis::Core::JsonRepresentation
1390
1476
  property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1391
1477
 
1392
- collection :newly_added_documents, as: 'newlyAddedDocuments', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument::Representation
1478
+ collection :dataset_resync_statuses, as: 'datasetResyncStatuses', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus::Representation
1479
+
1480
+ collection :individual_document_resync_statuses, as: 'individualDocumentResyncStatuses', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus::Representation
1481
+
1482
+ end
1483
+ end
1484
+
1485
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus
1486
+ # @private
1487
+ class Representation < Google::Apis::Core::JsonRepresentation
1488
+ property :dataset_inconsistency_type, as: 'datasetInconsistencyType'
1489
+ property :status, as: 'status', class: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus::Representation
1393
1490
 
1394
1491
  end
1395
1492
  end
1396
1493
 
1397
- class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
1494
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus
1398
1495
  # @private
1399
1496
  class Representation < Google::Apis::Core::JsonRepresentation
1400
- property :destination_prefix, as: 'destinationPrefix'
1401
- property :source_prefix, as: 'sourcePrefix'
1497
+ property :document_id, as: 'documentId', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3DocumentId, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3DocumentId::Representation
1498
+
1499
+ property :document_inconsistency_type, as: 'documentInconsistencyType'
1402
1500
  property :status, as: 'status', class: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus::Representation
1403
1501
 
1404
1502
  end
@@ -1735,7 +1833,6 @@ module Google
1735
1833
  property :id, as: 'id'
1736
1834
  property :mention_id, as: 'mentionId'
1737
1835
  property :mention_text, as: 'mentionText'
1738
- property :non_present, as: 'nonPresent'
1739
1836
  property :normalized_value, as: 'normalizedValue', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue::Representation
1740
1837
 
1741
1838
  property :page_anchor, as: 'pageAnchor', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageAnchor, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageAnchor::Representation
@@ -2274,7 +2371,6 @@ module Google
2274
2371
  property :id, as: 'id'
2275
2372
  property :mention_id, as: 'mentionId'
2276
2373
  property :mention_text, as: 'mentionText'
2277
- property :non_present, as: 'nonPresent'
2278
2374
  property :normalized_value, as: 'normalizedValue', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue::Representation
2279
2375
 
2280
2376
  property :page_anchor, as: 'pageAnchor', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageAnchor, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageAnchor::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-documentai_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.43.0
4
+ version: 0.46.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-01 00:00:00.000000000 Z
11
+ date: 2022-09-05 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_v1beta2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.43.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.46.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta2
63
63
  post_install_message:
64
64
  rdoc_options: []