google-apis-documentai_v1beta2 0.43.0 → 0.44.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: db65a343043243da264eee3347eff84d4958e104e1d42cfc0b08c039fa2ee60a
4
+ data.tar.gz: 4e6191f210c583174fde9102110a13550ef4c1d1e99bd1f75e03c1114e08cbbe
5
5
  SHA512:
6
- metadata.gz: 4d9d7d1440974420194fe90386164e5b03f252c6ec01ff814ddde1dc81f001b4e7655252fc319043ad6fc8477f61546f316a50d98eab307b8600e1a8f1fee39a
7
- data.tar.gz: a992138b572b22f25560f75b2b9c6901914d908597e5807a2e7a5aa346b705033372623c1071e259484ec6fa84ae95b1cc4722c3f0772d1a5ce3bbe2dd6527c7
6
+ metadata.gz: b2891be12afe3cb795d07eec4a3fd4e95e80fd925833d926263d912035dead9f965958292ddafbfa72e3ababf9baebd6dc5c858b968c0c5093d5f25c4724b812
7
+ data.tar.gz: 161cc7235973a7cfc6d2782a585e69db2899cfd906f8b95c8c067a6ccb28aa55372696c5ba71f51988e43eea419ec05ea0e2753bc612f7af3bc21c5142581256
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-documentai_v1beta2
2
2
 
3
+ ### v0.44.0 (2022-08-16)
4
+
5
+ * Regenerated from discovery document revision 20220815
6
+
3
7
  ### v0.43.0 (2022-07-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20220720
@@ -36,6 +36,11 @@ module Google
36
36
  # @return [Array<Google::Apis::DocumentaiV1beta2::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::DocumentaiV1beta2::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::DocumentaiV1beta2::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::DocumentaiV1beta2::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::DocumentaiV1beta2::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::DocumentaiV1beta2::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::DocumentaiV1beta2::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::DocumentaiV1beta2::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::DocumentaiV1beta2::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::DocumentaiV1beta2::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::DocumentaiV1beta2::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::DocumentaiV1beta2::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)
@@ -3535,15 +3649,6 @@ module Google
3535
3649
  # @return [String]
3536
3650
  attr_accessor :mention_text
3537
3651
 
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
3652
  # Parsed and normalized entity value.
3548
3653
  # Corresponds to the JSON property `normalizedValue`
3549
3654
  # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue]
@@ -3594,7 +3699,6 @@ module Google
3594
3699
  @id = args[:id] if args.key?(:id)
3595
3700
  @mention_id = args[:mention_id] if args.key?(:mention_id)
3596
3701
  @mention_text = args[:mention_text] if args.key?(:mention_text)
3597
- @non_present = args[:non_present] if args.key?(:non_present)
3598
3702
  @normalized_value = args[:normalized_value] if args.key?(:normalized_value)
3599
3703
  @page_anchor = args[:page_anchor] if args.key?(:page_anchor)
3600
3704
  @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.44.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 = "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
 
@@ -1169,6 +1187,7 @@ module Google
1169
1187
 
1170
1188
  collection :individual_batch_delete_statuses, as: 'individualBatchDeleteStatuses', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus::Representation
1171
1189
 
1190
+ property :total_document_count, as: 'totalDocumentCount'
1172
1191
  end
1173
1192
  end
1174
1193
 
@@ -1362,12 +1381,23 @@ module Google
1362
1381
  class Representation < Google::Apis::Core::JsonRepresentation
1363
1382
  property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1364
1383
 
1384
+ collection :import_config_validation_results, as: 'importConfigValidationResults', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult::Representation
1385
+
1365
1386
  collection :individual_import_statuses, as: 'individualImportStatuses', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus::Representation
1366
1387
 
1367
1388
  property :total_document_count, as: 'totalDocumentCount'
1368
1389
  end
1369
1390
  end
1370
1391
 
1392
+ class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult
1393
+ # @private
1394
+ class Representation < Google::Apis::Core::JsonRepresentation
1395
+ property :input_gcs_source, as: 'inputGcsSource'
1396
+ property :status, as: 'status', class: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus::Representation
1397
+
1398
+ end
1399
+ end
1400
+
1371
1401
  class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus
1372
1402
  # @private
1373
1403
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1389,11 +1419,35 @@ module Google
1389
1419
  class Representation < Google::Apis::Core::JsonRepresentation
1390
1420
  property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1391
1421
 
1422
+ collection :dataset_resync_statuses, as: 'datasetResyncStatuses', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus::Representation
1423
+
1424
+ collection :individual_document_resync_statuses, as: 'individualDocumentResyncStatuses', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus::Representation
1425
+
1392
1426
  collection :newly_added_documents, as: 'newlyAddedDocuments', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument::Representation
1393
1427
 
1394
1428
  end
1395
1429
  end
1396
1430
 
1431
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus
1432
+ # @private
1433
+ class Representation < Google::Apis::Core::JsonRepresentation
1434
+ property :dataset_inconsistency_type, as: 'datasetInconsistencyType'
1435
+ property :status, as: 'status', class: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus::Representation
1436
+
1437
+ end
1438
+ end
1439
+
1440
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus
1441
+ # @private
1442
+ class Representation < Google::Apis::Core::JsonRepresentation
1443
+ property :document_id, as: 'documentId', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3DocumentId, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3DocumentId::Representation
1444
+
1445
+ property :document_inconsistency_type, as: 'documentInconsistencyType'
1446
+ property :status, as: 'status', class: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus::Representation
1447
+
1448
+ end
1449
+ end
1450
+
1397
1451
  class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
1398
1452
  # @private
1399
1453
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1735,7 +1789,6 @@ module Google
1735
1789
  property :id, as: 'id'
1736
1790
  property :mention_id, as: 'mentionId'
1737
1791
  property :mention_text, as: 'mentionText'
1738
- property :non_present, as: 'nonPresent'
1739
1792
  property :normalized_value, as: 'normalizedValue', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue::Representation
1740
1793
 
1741
1794
  property :page_anchor, as: 'pageAnchor', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageAnchor, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageAnchor::Representation
@@ -2274,7 +2327,6 @@ module Google
2274
2327
  property :id, as: 'id'
2275
2328
  property :mention_id, as: 'mentionId'
2276
2329
  property :mention_text, as: 'mentionText'
2277
- property :non_present, as: 'nonPresent'
2278
2330
  property :normalized_value, as: 'normalizedValue', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue::Representation
2279
2331
 
2280
2332
  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.44.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-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_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.44.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: []