google-apis-documentai_v1beta3 0.51.0 → 0.54.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: f068b33e52840fe38988bb3a915d6cfae968da95b54a128a058bb956b374c942
4
- data.tar.gz: 735910b119b61f50f2d603725bfdbcf2c84ad42df85c4192eacf3c5a0549d7d2
3
+ metadata.gz: 6a42f2529ec379ae0838b7400b0461afa464f1bb652e95bc4b0184ab06dc4f7e
4
+ data.tar.gz: fccfd4ea90576d4e0e9bed4f66ffd9a46e55e63cf481c7f6bb8643a9001c61dd
5
5
  SHA512:
6
- metadata.gz: 5eec68ad30d2b958c1dafee1c9891798fb59d20478a95031427bf3adf59d2950b4497593af60a32151bf8590f1c7b0362ce6082260c4b9eff0109a54ea12179f
7
- data.tar.gz: fc624326535ceda7204941ec0b9ecbdd991fe50f0cb81639a936adbef4bdbead433b7a75ce84ca4a638e6b9515ce3ce35b8e533bac7782a5a1552caf327ff7e3
6
+ metadata.gz: 439bc99fd3e8dc7015260c75c61696a584657eabf343cac832527a196e50e07c5848299b3f874fa3cd0cd2ec1482a4b576abb1a014fdd972d8ca6671b301dca5
7
+ data.tar.gz: 270b49a511d712745a0e6349adcf27c3d2691acfb227c5f107c72cd15b9757747822be2ad4d314d03db11b40ec92c41f0875d2df8f60cce39d98d89341633fbe
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-documentai_v1beta3
2
2
 
3
+ ### v0.54.0 (2022-08-24)
4
+
5
+ * Regenerated from discovery document revision 20220821
6
+
7
+ ### v0.53.0 (2022-08-16)
8
+
9
+ * Regenerated from discovery document revision 20220815
10
+
11
+ ### v0.52.0 (2022-08-10)
12
+
13
+ * Regenerated from discovery document revision 20220808
14
+
3
15
  ### v0.51.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::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
32
32
  attr_accessor :common_metadata
33
33
 
34
+ # Total number of documents that failed to be deleted in storage.
35
+ # Corresponds to the JSON property `errorDocumentCount`
36
+ # @return [Fixnum]
37
+ attr_accessor :error_document_count
38
+
34
39
  # The list of response details of each document.
35
40
  # Corresponds to the JSON property `individualBatchDeleteStatuses`
36
41
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus>]
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
 
@@ -543,6 +555,11 @@ module Google
543
555
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
544
556
  attr_accessor :common_metadata
545
557
 
558
+ # Validation statuses of the batch documents import config.
559
+ # Corresponds to the JSON property `importConfigValidationResults`
560
+ # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult>]
561
+ attr_accessor :import_config_validation_results
562
+
546
563
  # The list of response details of each document.
547
564
  # Corresponds to the JSON property `individualImportStatuses`
548
565
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus>]
@@ -560,11 +577,44 @@ module Google
560
577
  # Update properties of this object
561
578
  def update!(**args)
562
579
  @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
580
+ @import_config_validation_results = args[:import_config_validation_results] if args.key?(:import_config_validation_results)
563
581
  @individual_import_statuses = args[:individual_import_statuses] if args.key?(:individual_import_statuses)
564
582
  @total_document_count = args[:total_document_count] if args.key?(:total_document_count)
565
583
  end
566
584
  end
567
585
 
586
+ # The validation status of each import config. Status is set to errors if there
587
+ # is no documents to import in the import_config, or OK if the operation will
588
+ # try to proceed at least one document.
589
+ class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult
590
+ include Google::Apis::Core::Hashable
591
+
592
+ # The source Cloud Storage URI specified in the import config.
593
+ # Corresponds to the JSON property `inputGcsSource`
594
+ # @return [String]
595
+ attr_accessor :input_gcs_source
596
+
597
+ # The `Status` type defines a logical error model that is suitable for different
598
+ # programming environments, including REST APIs and RPC APIs. It is used by [
599
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
600
+ # data: error code, error message, and error details. You can find out more
601
+ # about this error model and how to work with it in the [API Design Guide](https:
602
+ # //cloud.google.com/apis/design/errors).
603
+ # Corresponds to the JSON property `status`
604
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleRpcStatus]
605
+ attr_accessor :status
606
+
607
+ def initialize(**args)
608
+ update!(**args)
609
+ end
610
+
611
+ # Update properties of this object
612
+ def update!(**args)
613
+ @input_gcs_source = args[:input_gcs_source] if args.key?(:input_gcs_source)
614
+ @status = args[:status] if args.key?(:status)
615
+ end
616
+ end
617
+
568
618
  # The status of each individual document in the import process.
569
619
  class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus
570
620
  include Google::Apis::Core::Hashable
@@ -624,11 +674,17 @@ module Google
624
674
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
625
675
  attr_accessor :common_metadata
626
676
 
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::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument>]
631
- attr_accessor :newly_added_documents
677
+ # The list of dataset resync statuses. Not checked when `dataset_documents` is
678
+ # specified in ResyncRequest.
679
+ # Corresponds to the JSON property `datasetResyncStatuses`
680
+ # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus>]
681
+ attr_accessor :dataset_resync_statuses
682
+
683
+ # The list of document resync statuses. The same document could have multiple `
684
+ # individual_document_resync_statuses` if it has multiple inconsistencies.
685
+ # Corresponds to the JSON property `individualDocumentResyncStatuses`
686
+ # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus>]
687
+ attr_accessor :individual_document_resync_statuses
632
688
 
633
689
  def initialize(**args)
634
690
  update!(**args)
@@ -637,25 +693,54 @@ 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)
640
- @newly_added_documents = args[:newly_added_documents] if args.key?(:newly_added_documents)
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)
641
698
  end
642
699
  end
643
700
 
644
- # The proto for updated document in resync pipeline.
645
- class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
701
+ # Resync status against inconsistency types on the dataset level.
702
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus
646
703
  include Google::Apis::Core::Hashable
647
704
 
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`
705
+ # The type of the inconsistency of the dataset.
706
+ # Corresponds to the JSON property `datasetInconsistencyType`
651
707
  # @return [String]
652
- attr_accessor :destination_prefix
708
+ attr_accessor :dataset_inconsistency_type
709
+
710
+ # The `Status` type defines a logical error model that is suitable for different
711
+ # programming environments, including REST APIs and RPC APIs. It is used by [
712
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
713
+ # data: error code, error message, and error details. You can find out more
714
+ # about this error model and how to work with it in the [API Design Guide](https:
715
+ # //cloud.google.com/apis/design/errors).
716
+ # Corresponds to the JSON property `status`
717
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleRpcStatus]
718
+ attr_accessor :status
719
+
720
+ def initialize(**args)
721
+ update!(**args)
722
+ end
723
+
724
+ # Update properties of this object
725
+ def update!(**args)
726
+ @dataset_inconsistency_type = args[:dataset_inconsistency_type] if args.key?(:dataset_inconsistency_type)
727
+ @status = args[:status] if args.key?(:status)
728
+ end
729
+ end
653
730
 
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`
731
+ # Resync status for each document per inconsistency type.
732
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus
733
+ include Google::Apis::Core::Hashable
734
+
735
+ # Document Identifier.
736
+ # Corresponds to the JSON property `documentId`
737
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentId]
738
+ attr_accessor :document_id
739
+
740
+ # The type of document inconsistency.
741
+ # Corresponds to the JSON property `documentInconsistencyType`
657
742
  # @return [String]
658
- attr_accessor :source_prefix
743
+ attr_accessor :document_inconsistency_type
659
744
 
660
745
  # The `Status` type defines a logical error model that is suitable for different
661
746
  # programming environments, including REST APIs and RPC APIs. It is used by [
@@ -673,8 +758,8 @@ module Google
673
758
 
674
759
  # Update properties of this object
675
760
  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)
761
+ @document_id = args[:document_id] if args.key?(:document_id)
762
+ @document_inconsistency_type = args[:document_inconsistency_type] if args.key?(:document_inconsistency_type)
678
763
  @status = args[:status] if args.key?(:status)
679
764
  end
680
765
  end
@@ -1656,15 +1741,6 @@ module Google
1656
1741
  # @return [String]
1657
1742
  attr_accessor :mention_text
1658
1743
 
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
1744
  # Parsed and normalized entity value.
1669
1745
  # Corresponds to the JSON property `normalizedValue`
1670
1746
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue]
@@ -1715,7 +1791,6 @@ module Google
1715
1791
  @id = args[:id] if args.key?(:id)
1716
1792
  @mention_id = args[:mention_id] if args.key?(:mention_id)
1717
1793
  @mention_text = args[:mention_text] if args.key?(:mention_text)
1718
- @non_present = args[:non_present] if args.key?(:non_present)
1719
1794
  @normalized_value = args[:normalized_value] if args.key?(:normalized_value)
1720
1795
  @page_anchor = args[:page_anchor] if args.key?(:page_anchor)
1721
1796
  @properties = args[:properties] if args.key?(:properties)
@@ -3495,15 +3570,6 @@ module Google
3495
3570
  # @return [String]
3496
3571
  attr_accessor :mention_text
3497
3572
 
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
3573
  # Parsed and normalized entity value.
3508
3574
  # Corresponds to the JSON property `normalizedValue`
3509
3575
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue]
@@ -3554,7 +3620,6 @@ module Google
3554
3620
  @id = args[:id] if args.key?(:id)
3555
3621
  @mention_id = args[:mention_id] if args.key?(:mention_id)
3556
3622
  @mention_text = args[:mention_text] if args.key?(:mention_text)
3557
- @non_present = args[:non_present] if args.key?(:non_present)
3558
3623
  @normalized_value = args[:normalized_value] if args.key?(:normalized_value)
3559
3624
  @page_anchor = args[:page_anchor] if args.key?(:page_anchor)
3560
3625
  @properties = args[:properties] if args.key?(:properties)
@@ -5756,15 +5821,6 @@ module Google
5756
5821
  # @return [String]
5757
5822
  attr_accessor :mention_text
5758
5823
 
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
5824
  # Parsed and normalized entity value.
5769
5825
  # Corresponds to the JSON property `normalizedValue`
5770
5826
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentEntityNormalizedValue]
@@ -5815,7 +5871,6 @@ module Google
5815
5871
  @id = args[:id] if args.key?(:id)
5816
5872
  @mention_id = args[:mention_id] if args.key?(:mention_id)
5817
5873
  @mention_text = args[:mention_text] if args.key?(:mention_text)
5818
- @non_present = args[:non_present] if args.key?(:non_present)
5819
5874
  @normalized_value = args[:normalized_value] if args.key?(:normalized_value)
5820
5875
  @page_anchor = args[:page_anchor] if args.key?(:page_anchor)
5821
5876
  @properties = args[:properties] if args.key?(:properties)
@@ -6962,6 +7017,11 @@ module Google
6962
7017
  # @return [String]
6963
7018
  attr_accessor :display_name
6964
7019
 
7020
+ # Metadata about an entity type.
7021
+ # Corresponds to the JSON property `entityTypeMetadata`
7022
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EntityTypeMetadata]
7023
+ attr_accessor :entity_type_metadata
7024
+
6965
7025
  # Defines the a list of enum values.
6966
7026
  # Corresponds to the JSON property `enumValues`
6967
7027
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentSchemaEntityTypeEnumValues]
@@ -6970,8 +7030,8 @@ module Google
6970
7030
  # Name of the type. It must be unique within the schema file and cannot be a '
6971
7031
  # Common Type'. Besides that we use the following naming conventions: - *use
6972
7032
  # 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
7033
+ # Must start with a letter. - Allowed characters: ASCII letters `[a-z0-9_-]`. (
7034
+ # For backward compatibility internal infrastructure and tooling can handle any
6975
7035
  # ascii character) - The '/' is sometimes used to denote a property of a type.
6976
7036
  # For example line_item/amount. This convention is deprecated, but will still be
6977
7037
  # honored for backward compatibility.
@@ -6992,6 +7052,7 @@ module Google
6992
7052
  def update!(**args)
6993
7053
  @base_types = args[:base_types] if args.key?(:base_types)
6994
7054
  @display_name = args[:display_name] if args.key?(:display_name)
7055
+ @entity_type_metadata = args[:entity_type_metadata] if args.key?(:entity_type_metadata)
6995
7056
  @enum_values = args[:enum_values] if args.key?(:enum_values)
6996
7057
  @name = args[:name] if args.key?(:name)
6997
7058
  @properties = args[:properties] if args.key?(:properties)
@@ -7032,6 +7093,11 @@ module Google
7032
7093
  # @return [String]
7033
7094
  attr_accessor :occurrence_type
7034
7095
 
7096
+ # Metadata about a property.
7097
+ # Corresponds to the JSON property `propertyMetadata`
7098
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3PropertyMetadata]
7099
+ attr_accessor :property_metadata
7100
+
7035
7101
  # A reference to the value type of the property. This type is subject to the
7036
7102
  # same conventions as the `Entity.base_types` field.
7037
7103
  # Corresponds to the JSON property `valueType`
@@ -7046,6 +7112,7 @@ module Google
7046
7112
  def update!(**args)
7047
7113
  @name = args[:name] if args.key?(:name)
7048
7114
  @occurrence_type = args[:occurrence_type] if args.key?(:occurrence_type)
7115
+ @property_metadata = args[:property_metadata] if args.key?(:property_metadata)
7049
7116
  @value_type = args[:value_type] if args.key?(:value_type)
7050
7117
  end
7051
7118
  end
@@ -7074,6 +7141,14 @@ module Google
7074
7141
  attr_accessor :prefixed_naming_on_properties
7075
7142
  alias_method :prefixed_naming_on_properties?, :prefixed_naming_on_properties
7076
7143
 
7144
+ # If set, we will skip the naming format validation in the schema. So the string
7145
+ # values in `DocumentSchema.EntityType.name` and `DocumentSchema.EntityType.
7146
+ # Property.name` will not be checked.
7147
+ # Corresponds to the JSON property `skipNamingValidation`
7148
+ # @return [Boolean]
7149
+ attr_accessor :skip_naming_validation
7150
+ alias_method :skip_naming_validation?, :skip_naming_validation
7151
+
7077
7152
  def initialize(**args)
7078
7153
  update!(**args)
7079
7154
  end
@@ -7083,6 +7158,7 @@ module Google
7083
7158
  @document_allow_multiple_labels = args[:document_allow_multiple_labels] if args.key?(:document_allow_multiple_labels)
7084
7159
  @document_splitter = args[:document_splitter] if args.key?(:document_splitter)
7085
7160
  @prefixed_naming_on_properties = args[:prefixed_naming_on_properties] if args.key?(:prefixed_naming_on_properties)
7161
+ @skip_naming_validation = args[:skip_naming_validation] if args.key?(:skip_naming_validation)
7086
7162
  end
7087
7163
  end
7088
7164
 
@@ -7421,6 +7497,45 @@ module Google
7421
7497
  end
7422
7498
  end
7423
7499
 
7500
+ # Metadata about an entity type.
7501
+ class GoogleCloudDocumentaiV1beta3EntityTypeMetadata
7502
+ include Google::Apis::Core::Hashable
7503
+
7504
+ # Metadata for human review labeling config.
7505
+ # Corresponds to the JSON property `humanReviewLabelingMetadata`
7506
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata]
7507
+ attr_accessor :human_review_labeling_metadata
7508
+
7509
+ # Metadata for Human Review config.
7510
+ # Corresponds to the JSON property `humanReviewMetadata`
7511
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata]
7512
+ attr_accessor :human_review_metadata
7513
+
7514
+ # Whether the entity type should be considered as "inactive".
7515
+ # Corresponds to the JSON property `inactive`
7516
+ # @return [Boolean]
7517
+ attr_accessor :inactive
7518
+ alias_method :inactive?, :inactive
7519
+
7520
+ # If set, the properties of this entity type must be prefixed with the parents.
7521
+ # Corresponds to the JSON property `prefixedNamingOnProperties`
7522
+ # @return [Boolean]
7523
+ attr_accessor :prefixed_naming_on_properties
7524
+ alias_method :prefixed_naming_on_properties?, :prefixed_naming_on_properties
7525
+
7526
+ def initialize(**args)
7527
+ update!(**args)
7528
+ end
7529
+
7530
+ # Update properties of this object
7531
+ def update!(**args)
7532
+ @human_review_labeling_metadata = args[:human_review_labeling_metadata] if args.key?(:human_review_labeling_metadata)
7533
+ @human_review_metadata = args[:human_review_metadata] if args.key?(:human_review_metadata)
7534
+ @inactive = args[:inactive] if args.key?(:inactive)
7535
+ @prefixed_naming_on_properties = args[:prefixed_naming_on_properties] if args.key?(:prefixed_naming_on_properties)
7536
+ end
7537
+ end
7538
+
7424
7539
  # Response message for fetch processor types.
7425
7540
  class GoogleCloudDocumentaiV1beta3FetchProcessorTypesResponse
7426
7541
  include Google::Apis::Core::Hashable
@@ -7503,6 +7618,26 @@ module Google
7503
7618
  end
7504
7619
  end
7505
7620
 
7621
+ # Metadata for human review labeling config.
7622
+ class GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata
7623
+ include Google::Apis::Core::Hashable
7624
+
7625
+ # Whether to enable normalization editing.
7626
+ # Corresponds to the JSON property `enableNormalizationEditing`
7627
+ # @return [Boolean]
7628
+ attr_accessor :enable_normalization_editing
7629
+ alias_method :enable_normalization_editing?, :enable_normalization_editing
7630
+
7631
+ def initialize(**args)
7632
+ update!(**args)
7633
+ end
7634
+
7635
+ # Update properties of this object
7636
+ def update!(**args)
7637
+ @enable_normalization_editing = args[:enable_normalization_editing] if args.key?(:enable_normalization_editing)
7638
+ end
7639
+ end
7640
+
7506
7641
  # The status of human review on a processed document.
7507
7642
  class GoogleCloudDocumentaiV1beta3HumanReviewStatus
7508
7643
  include Google::Apis::Core::Hashable
@@ -7537,6 +7672,32 @@ module Google
7537
7672
  end
7538
7673
  end
7539
7674
 
7675
+ # Metadata for Human Review config.
7676
+ class GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata
7677
+ include Google::Apis::Core::Hashable
7678
+
7679
+ # The confidence threshold if human review validation is enabled.
7680
+ # Corresponds to the JSON property `confidenceThreshold`
7681
+ # @return [Float]
7682
+ attr_accessor :confidence_threshold
7683
+
7684
+ # Whether to enable human review validation.
7685
+ # Corresponds to the JSON property `enableValidation`
7686
+ # @return [Boolean]
7687
+ attr_accessor :enable_validation
7688
+ alias_method :enable_validation?, :enable_validation
7689
+
7690
+ def initialize(**args)
7691
+ update!(**args)
7692
+ end
7693
+
7694
+ # Update properties of this object
7695
+ def update!(**args)
7696
+ @confidence_threshold = args[:confidence_threshold] if args.key?(:confidence_threshold)
7697
+ @enable_validation = args[:enable_validation] if args.key?(:enable_validation)
7698
+ end
7699
+ end
7700
+
7540
7701
  # Response message for list processor types.
7541
7702
  class GoogleCloudDocumentaiV1beta3ListProcessorTypesResponse
7542
7703
  include Google::Apis::Core::Hashable
@@ -7957,6 +8118,38 @@ module Google
7957
8118
  end
7958
8119
  end
7959
8120
 
8121
+ # Metadata about a property.
8122
+ class GoogleCloudDocumentaiV1beta3PropertyMetadata
8123
+ include Google::Apis::Core::Hashable
8124
+
8125
+ # Metadata for human review labeling config.
8126
+ # Corresponds to the JSON property `humanReviewLabelingMetadata`
8127
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata]
8128
+ attr_accessor :human_review_labeling_metadata
8129
+
8130
+ # Metadata for Human Review config.
8131
+ # Corresponds to the JSON property `humanReviewMetadata`
8132
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata]
8133
+ attr_accessor :human_review_metadata
8134
+
8135
+ # Whether the property should be considered as "inactive".
8136
+ # Corresponds to the JSON property `inactive`
8137
+ # @return [Boolean]
8138
+ attr_accessor :inactive
8139
+ alias_method :inactive?, :inactive
8140
+
8141
+ def initialize(**args)
8142
+ update!(**args)
8143
+ end
8144
+
8145
+ # Update properties of this object
8146
+ def update!(**args)
8147
+ @human_review_labeling_metadata = args[:human_review_labeling_metadata] if args.key?(:human_review_labeling_metadata)
8148
+ @human_review_metadata = args[:human_review_metadata] if args.key?(:human_review_metadata)
8149
+ @inactive = args[:inactive] if args.key?(:inactive)
8150
+ end
8151
+ end
8152
+
7960
8153
  # Payload message of raw document content (bytes).
7961
8154
  class GoogleCloudDocumentaiV1beta3RawDocument
7962
8155
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DocumentaiV1beta3
18
18
  # Version of the google-apis-documentai_v1beta3 gem
19
- GEM_VERSION = "0.51.0"
19
+ GEM_VERSION = "0.54.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220720"
25
+ REVISION = "20220821"
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,7 +196,13 @@ module Google
190
196
  include Google::Apis::Core::JsonObjectSupport
191
197
  end
192
198
 
193
- class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
199
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
205
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus
194
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
207
 
196
208
  include Google::Apis::Core::JsonObjectSupport
@@ -1312,6 +1324,12 @@ module Google
1312
1324
  include Google::Apis::Core::JsonObjectSupport
1313
1325
  end
1314
1326
 
1327
+ class GoogleCloudDocumentaiV1beta3EntityTypeMetadata
1328
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1329
+
1330
+ include Google::Apis::Core::JsonObjectSupport
1331
+ end
1332
+
1315
1333
  class GoogleCloudDocumentaiV1beta3FetchProcessorTypesResponse
1316
1334
  class Representation < Google::Apis::Core::JsonRepresentation; end
1317
1335
 
@@ -1336,12 +1354,24 @@ module Google
1336
1354
  include Google::Apis::Core::JsonObjectSupport
1337
1355
  end
1338
1356
 
1357
+ class GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata
1358
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1359
+
1360
+ include Google::Apis::Core::JsonObjectSupport
1361
+ end
1362
+
1339
1363
  class GoogleCloudDocumentaiV1beta3HumanReviewStatus
1340
1364
  class Representation < Google::Apis::Core::JsonRepresentation; end
1341
1365
 
1342
1366
  include Google::Apis::Core::JsonObjectSupport
1343
1367
  end
1344
1368
 
1369
+ class GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata
1370
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1371
+
1372
+ include Google::Apis::Core::JsonObjectSupport
1373
+ end
1374
+
1345
1375
  class GoogleCloudDocumentaiV1beta3ListProcessorTypesResponse
1346
1376
  class Representation < Google::Apis::Core::JsonRepresentation; end
1347
1377
 
@@ -1408,6 +1438,12 @@ module Google
1408
1438
  include Google::Apis::Core::JsonObjectSupport
1409
1439
  end
1410
1440
 
1441
+ class GoogleCloudDocumentaiV1beta3PropertyMetadata
1442
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1443
+
1444
+ include Google::Apis::Core::JsonObjectSupport
1445
+ end
1446
+
1411
1447
  class GoogleCloudDocumentaiV1beta3RawDocument
1412
1448
  class Representation < Google::Apis::Core::JsonRepresentation; end
1413
1449
 
@@ -1551,8 +1587,10 @@ module Google
1551
1587
  class Representation < Google::Apis::Core::JsonRepresentation
1552
1588
  property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1553
1589
 
1590
+ property :error_document_count, as: 'errorDocumentCount'
1554
1591
  collection :individual_batch_delete_statuses, as: 'individualBatchDeleteStatuses', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3BatchDeleteDocumentsMetadataIndividualBatchDeleteStatus::Representation
1555
1592
 
1593
+ property :total_document_count, as: 'totalDocumentCount'
1556
1594
  end
1557
1595
  end
1558
1596
 
@@ -1746,12 +1784,23 @@ module Google
1746
1784
  class Representation < Google::Apis::Core::JsonRepresentation
1747
1785
  property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1748
1786
 
1787
+ collection :import_config_validation_results, as: 'importConfigValidationResults', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult::Representation
1788
+
1749
1789
  collection :individual_import_statuses, as: 'individualImportStatuses', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus::Representation
1750
1790
 
1751
1791
  property :total_document_count, as: 'totalDocumentCount'
1752
1792
  end
1753
1793
  end
1754
1794
 
1795
+ class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataImportConfigValidationResult
1796
+ # @private
1797
+ class Representation < Google::Apis::Core::JsonRepresentation
1798
+ property :input_gcs_source, as: 'inputGcsSource'
1799
+ property :status, as: 'status', class: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus::Representation
1800
+
1801
+ end
1802
+ end
1803
+
1755
1804
  class GoogleCloudDocumentaiUiv1beta3ImportDocumentsMetadataIndividualImportStatus
1756
1805
  # @private
1757
1806
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1773,16 +1822,28 @@ module Google
1773
1822
  class Representation < Google::Apis::Core::JsonRepresentation
1774
1823
  property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1775
1824
 
1776
- collection :newly_added_documents, as: 'newlyAddedDocuments', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument::Representation
1825
+ collection :dataset_resync_statuses, as: 'datasetResyncStatuses', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus::Representation
1826
+
1827
+ collection :individual_document_resync_statuses, as: 'individualDocumentResyncStatuses', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus::Representation
1777
1828
 
1778
1829
  end
1779
1830
  end
1780
1831
 
1781
- class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
1832
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataDatasetResyncStatus
1782
1833
  # @private
1783
1834
  class Representation < Google::Apis::Core::JsonRepresentation
1784
- property :destination_prefix, as: 'destinationPrefix'
1785
- property :source_prefix, as: 'sourcePrefix'
1835
+ property :dataset_inconsistency_type, as: 'datasetInconsistencyType'
1836
+ property :status, as: 'status', class: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus::Representation
1837
+
1838
+ end
1839
+ end
1840
+
1841
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataIndividualDocumentResyncStatus
1842
+ # @private
1843
+ class Representation < Google::Apis::Core::JsonRepresentation
1844
+ property :document_id, as: 'documentId', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentId, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentId::Representation
1845
+
1846
+ property :document_inconsistency_type, as: 'documentInconsistencyType'
1786
1847
  property :status, as: 'status', class: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus::Representation
1787
1848
 
1788
1849
  end
@@ -2119,7 +2180,6 @@ module Google
2119
2180
  property :id, as: 'id'
2120
2181
  property :mention_id, as: 'mentionId'
2121
2182
  property :mention_text, as: 'mentionText'
2122
- property :non_present, as: 'nonPresent'
2123
2183
  property :normalized_value, as: 'normalizedValue', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentEntityNormalizedValue::Representation
2124
2184
 
2125
2185
  property :page_anchor, as: 'pageAnchor', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageAnchor, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageAnchor::Representation
@@ -2643,7 +2703,6 @@ module Google
2643
2703
  property :id, as: 'id'
2644
2704
  property :mention_id, as: 'mentionId'
2645
2705
  property :mention_text, as: 'mentionText'
2646
- property :non_present, as: 'nonPresent'
2647
2706
  property :normalized_value, as: 'normalizedValue', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentEntityNormalizedValue::Representation
2648
2707
 
2649
2708
  property :page_anchor, as: 'pageAnchor', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageAnchor, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageAnchor::Representation
@@ -3305,7 +3364,6 @@ module Google
3305
3364
  property :id, as: 'id'
3306
3365
  property :mention_id, as: 'mentionId'
3307
3366
  property :mention_text, as: 'mentionText'
3308
- property :non_present, as: 'nonPresent'
3309
3367
  property :normalized_value, as: 'normalizedValue', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentEntityNormalizedValue, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentEntityNormalizedValue::Representation
3310
3368
 
3311
3369
  property :page_anchor, as: 'pageAnchor', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageAnchor, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageAnchor::Representation
@@ -3669,6 +3727,8 @@ module Google
3669
3727
  class Representation < Google::Apis::Core::JsonRepresentation
3670
3728
  collection :base_types, as: 'baseTypes'
3671
3729
  property :display_name, as: 'displayName'
3730
+ property :entity_type_metadata, as: 'entityTypeMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EntityTypeMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3EntityTypeMetadata::Representation
3731
+
3672
3732
  property :enum_values, as: 'enumValues', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentSchemaEntityTypeEnumValues, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentSchemaEntityTypeEnumValues::Representation
3673
3733
 
3674
3734
  property :name, as: 'name'
@@ -3689,6 +3749,8 @@ module Google
3689
3749
  class Representation < Google::Apis::Core::JsonRepresentation
3690
3750
  property :name, as: 'name'
3691
3751
  property :occurrence_type, as: 'occurrenceType'
3752
+ property :property_metadata, as: 'propertyMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3PropertyMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3PropertyMetadata::Representation
3753
+
3692
3754
  property :value_type, as: 'valueType'
3693
3755
  end
3694
3756
  end
@@ -3699,6 +3761,7 @@ module Google
3699
3761
  property :document_allow_multiple_labels, as: 'documentAllowMultipleLabels'
3700
3762
  property :document_splitter, as: 'documentSplitter'
3701
3763
  property :prefixed_naming_on_properties, as: 'prefixedNamingOnProperties'
3764
+ property :skip_naming_validation, as: 'skipNamingValidation'
3702
3765
  end
3703
3766
  end
3704
3767
 
@@ -3784,6 +3847,18 @@ module Google
3784
3847
  end
3785
3848
  end
3786
3849
 
3850
+ class GoogleCloudDocumentaiV1beta3EntityTypeMetadata
3851
+ # @private
3852
+ class Representation < Google::Apis::Core::JsonRepresentation
3853
+ property :human_review_labeling_metadata, as: 'humanReviewLabelingMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata::Representation
3854
+
3855
+ property :human_review_metadata, as: 'humanReviewMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata::Representation
3856
+
3857
+ property :inactive, as: 'inactive'
3858
+ property :prefixed_naming_on_properties, as: 'prefixedNamingOnProperties'
3859
+ end
3860
+ end
3861
+
3787
3862
  class GoogleCloudDocumentaiV1beta3FetchProcessorTypesResponse
3788
3863
  # @private
3789
3864
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3815,6 +3890,13 @@ module Google
3815
3890
  end
3816
3891
  end
3817
3892
 
3893
+ class GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata
3894
+ # @private
3895
+ class Representation < Google::Apis::Core::JsonRepresentation
3896
+ property :enable_normalization_editing, as: 'enableNormalizationEditing'
3897
+ end
3898
+ end
3899
+
3818
3900
  class GoogleCloudDocumentaiV1beta3HumanReviewStatus
3819
3901
  # @private
3820
3902
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3824,6 +3906,14 @@ module Google
3824
3906
  end
3825
3907
  end
3826
3908
 
3909
+ class GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata
3910
+ # @private
3911
+ class Representation < Google::Apis::Core::JsonRepresentation
3912
+ property :confidence_threshold, as: 'confidenceThreshold'
3913
+ property :enable_validation, as: 'enableValidation'
3914
+ end
3915
+ end
3916
+
3827
3917
  class GoogleCloudDocumentaiV1beta3ListProcessorTypesResponse
3828
3918
  # @private
3829
3919
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3941,6 +4031,17 @@ module Google
3941
4031
  end
3942
4032
  end
3943
4033
 
4034
+ class GoogleCloudDocumentaiV1beta3PropertyMetadata
4035
+ # @private
4036
+ class Representation < Google::Apis::Core::JsonRepresentation
4037
+ property :human_review_labeling_metadata, as: 'humanReviewLabelingMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewLabelingMetadata::Representation
4038
+
4039
+ property :human_review_metadata, as: 'humanReviewMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3HumanReviewValidationMetadata::Representation
4040
+
4041
+ property :inactive, as: 'inactive'
4042
+ end
4043
+ end
4044
+
3944
4045
  class GoogleCloudDocumentaiV1beta3RawDocument
3945
4046
  # @private
3946
4047
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-documentai_v1beta3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.51.0
4
+ version: 0.54.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-01 00:00:00.000000000 Z
11
+ date: 2022-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.51.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.54.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta3
63
63
  post_install_message:
64
64
  rdoc_options: []