google-apis-documentai_v1beta3 0.33.0 → 0.34.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae2184bc70965678a2a88c88aef6904acfc5568eb2671208a65213a35dc57945
4
- data.tar.gz: dd3e7b32350bf3112289e1eb5bff40a59add704c5ac9b37faaaa40a93b2f1019
3
+ metadata.gz: d8ddec4ba5c12ec235cb7571b1909c57ecc7a6f56f2abd3d2b3c623e9a74485e
4
+ data.tar.gz: d9cc1f8f78fe0bdb6ca0cfa33ed043075cafcf29429ae59968091ab5c10f7088
5
5
  SHA512:
6
- metadata.gz: 7443590e4bb38d05792bae98cad15da7d00cb06337279132497b52d8858ec2aae2e8de6a6ad40cf501663c310fbdd035292994540df043a51f44e23c577184f3
7
- data.tar.gz: 4eee0a963a9c081e111bba859c05d45e3276ad6bad41c6af08a404ff31f66adcd4506d978070860a6eccd8f834d552b1f9394543759e89adb0c8948578506e2f
6
+ metadata.gz: 857534320d6603b275516367306bc3798e5f7ff5dd6daa8a83ff2f01eb46e4e4e4212e98b4b24b3640a2f922d7ab88a1aaafd00d854c0209271b2b955a10cdd8
7
+ data.tar.gz: c9926b2177758cb0d332b072fc718c769a59fd06a9e2e2bd25ab12d802607a1894241bd85de170a2e146022e79a2cbcc7738173d30fa3cdbb1df0163ed3dc0e4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-documentai_v1beta3
2
2
 
3
+ ### v0.34.0 (2022-02-15)
4
+
5
+ * Regenerated from discovery document revision 20220212
6
+
3
7
  ### v0.33.0 (2022-02-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20220205
@@ -548,6 +548,83 @@ module Google
548
548
  end
549
549
  end
550
550
 
551
+ # The metadata proto of ResyncDataset method.
552
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadata
553
+ include Google::Apis::Core::Hashable
554
+
555
+ # The common metadata for long running operations.
556
+ # Corresponds to the JSON property `commonMetadata`
557
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
558
+ attr_accessor :common_metadata
559
+
560
+ # Returns the newly added document Cloud Storage prefix if the documents are
561
+ # founded in Cloud Storage while not in Document Service storage.
562
+ # Corresponds to the JSON property `newlyAddedDocuments`
563
+ # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument>]
564
+ attr_accessor :newly_added_documents
565
+
566
+ def initialize(**args)
567
+ update!(**args)
568
+ end
569
+
570
+ # Update properties of this object
571
+ def update!(**args)
572
+ @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
573
+ @newly_added_documents = args[:newly_added_documents] if args.key?(:newly_added_documents)
574
+ end
575
+ end
576
+
577
+ # The proto for updated document in resync pipeline.
578
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
579
+ include Google::Apis::Core::Hashable
580
+
581
+ # The prefix of cloud storage, identifies the destination document which should
582
+ # be updated by resync pipeline.
583
+ # Corresponds to the JSON property `destinationPrefix`
584
+ # @return [String]
585
+ attr_accessor :destination_prefix
586
+
587
+ # The prefix of cloud storage, identifies the original document which should be
588
+ # updated by resync pipeline.
589
+ # Corresponds to the JSON property `sourcePrefix`
590
+ # @return [String]
591
+ attr_accessor :source_prefix
592
+
593
+ # The `Status` type defines a logical error model that is suitable for different
594
+ # programming environments, including REST APIs and RPC APIs. It is used by [
595
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
596
+ # data: error code, error message, and error details. You can find out more
597
+ # about this error model and how to work with it in the [API Design Guide](https:
598
+ # //cloud.google.com/apis/design/errors).
599
+ # Corresponds to the JSON property `status`
600
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleRpcStatus]
601
+ attr_accessor :status
602
+
603
+ def initialize(**args)
604
+ update!(**args)
605
+ end
606
+
607
+ # Update properties of this object
608
+ def update!(**args)
609
+ @destination_prefix = args[:destination_prefix] if args.key?(:destination_prefix)
610
+ @source_prefix = args[:source_prefix] if args.key?(:source_prefix)
611
+ @status = args[:status] if args.key?(:status)
612
+ end
613
+ end
614
+
615
+ # The response proto of ResyncDataset method.
616
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetResponse
617
+ include Google::Apis::Core::Hashable
618
+
619
+ def initialize(**args)
620
+ update!(**args)
621
+ end
622
+
623
+ # Update properties of this object
624
+ def update!(**args)
625
+ end
626
+ end
627
+
551
628
  # The revision reference specifies which revision on the document to read.
552
629
  class GoogleCloudDocumentaiUiv1beta3RevisionReference
553
630
  include Google::Apis::Core::Hashable
@@ -1708,6 +1785,11 @@ module Google
1708
1785
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentProvenance]
1709
1786
  attr_accessor :provenance
1710
1787
 
1788
+ # A list of visually detected symbols on the page.
1789
+ # Corresponds to the JSON property `symbols`
1790
+ # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageSymbol>]
1791
+ attr_accessor :symbols
1792
+
1711
1793
  # A list of visually detected tables on the page.
1712
1794
  # Corresponds to the JSON property `tables`
1713
1795
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageTable>]
@@ -1746,6 +1828,7 @@ module Google
1746
1828
  @page_number = args[:page_number] if args.key?(:page_number)
1747
1829
  @paragraphs = args[:paragraphs] if args.key?(:paragraphs)
1748
1830
  @provenance = args[:provenance] if args.key?(:provenance)
1831
+ @symbols = args[:symbols] if args.key?(:symbols)
1749
1832
  @tables = args[:tables] if args.key?(:tables)
1750
1833
  @tokens = args[:tokens] if args.key?(:tokens)
1751
1834
  @transforms = args[:transforms] if args.key?(:transforms)
@@ -1863,7 +1946,7 @@ module Google
1863
1946
  attr_accessor :confidence
1864
1947
 
1865
1948
  # The BCP-47 language code, such as "en-US" or "sr-Latn". For more information,
1866
- # see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
1949
+ # see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
1867
1950
  # Corresponds to the JSON property `languageCode`
1868
1951
  # @return [String]
1869
1952
  attr_accessor :language_code
@@ -2162,6 +2245,31 @@ module Google
2162
2245
  end
2163
2246
  end
2164
2247
 
2248
+ # A detected symbol.
2249
+ class GoogleCloudDocumentaiV1beta1DocumentPageSymbol
2250
+ include Google::Apis::Core::Hashable
2251
+
2252
+ # A list of detected languages together with confidence.
2253
+ # Corresponds to the JSON property `detectedLanguages`
2254
+ # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage>]
2255
+ attr_accessor :detected_languages
2256
+
2257
+ # Visual element describing a layout unit on a page.
2258
+ # Corresponds to the JSON property `layout`
2259
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageLayout]
2260
+ attr_accessor :layout
2261
+
2262
+ def initialize(**args)
2263
+ update!(**args)
2264
+ end
2265
+
2266
+ # Update properties of this object
2267
+ def update!(**args)
2268
+ @detected_languages = args[:detected_languages] if args.key?(:detected_languages)
2269
+ @layout = args[:layout] if args.key?(:layout)
2270
+ end
2271
+ end
2272
+
2165
2273
  # A table representation similar to HTML table structure.
2166
2274
  class GoogleCloudDocumentaiV1beta1DocumentPageTable
2167
2275
  include Google::Apis::Core::Hashable
@@ -2710,7 +2818,7 @@ module Google
2710
2818
  include Google::Apis::Core::Hashable
2711
2819
 
2712
2820
  # Contains the content of the text span so that users do not have to look it up
2713
- # in the text_segments.
2821
+ # in the text_segments. It is always populated for formFields.
2714
2822
  # Corresponds to the JSON property `content`
2715
2823
  # @return [String]
2716
2824
  attr_accessor :content
@@ -3472,6 +3580,11 @@ module Google
3472
3580
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentProvenance]
3473
3581
  attr_accessor :provenance
3474
3582
 
3583
+ # A list of visually detected symbols on the page.
3584
+ # Corresponds to the JSON property `symbols`
3585
+ # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageSymbol>]
3586
+ attr_accessor :symbols
3587
+
3475
3588
  # A list of visually detected tables on the page.
3476
3589
  # Corresponds to the JSON property `tables`
3477
3590
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageTable>]
@@ -3510,6 +3623,7 @@ module Google
3510
3623
  @page_number = args[:page_number] if args.key?(:page_number)
3511
3624
  @paragraphs = args[:paragraphs] if args.key?(:paragraphs)
3512
3625
  @provenance = args[:provenance] if args.key?(:provenance)
3626
+ @symbols = args[:symbols] if args.key?(:symbols)
3513
3627
  @tables = args[:tables] if args.key?(:tables)
3514
3628
  @tokens = args[:tokens] if args.key?(:tokens)
3515
3629
  @transforms = args[:transforms] if args.key?(:transforms)
@@ -3627,7 +3741,7 @@ module Google
3627
3741
  attr_accessor :confidence
3628
3742
 
3629
3743
  # The BCP-47 language code, such as "en-US" or "sr-Latn". For more information,
3630
- # see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
3744
+ # see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
3631
3745
  # Corresponds to the JSON property `languageCode`
3632
3746
  # @return [String]
3633
3747
  attr_accessor :language_code
@@ -3926,6 +4040,31 @@ module Google
3926
4040
  end
3927
4041
  end
3928
4042
 
4043
+ # A detected symbol.
4044
+ class GoogleCloudDocumentaiV1beta2DocumentPageSymbol
4045
+ include Google::Apis::Core::Hashable
4046
+
4047
+ # A list of detected languages together with confidence.
4048
+ # Corresponds to the JSON property `detectedLanguages`
4049
+ # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage>]
4050
+ attr_accessor :detected_languages
4051
+
4052
+ # Visual element describing a layout unit on a page.
4053
+ # Corresponds to the JSON property `layout`
4054
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageLayout]
4055
+ attr_accessor :layout
4056
+
4057
+ def initialize(**args)
4058
+ update!(**args)
4059
+ end
4060
+
4061
+ # Update properties of this object
4062
+ def update!(**args)
4063
+ @detected_languages = args[:detected_languages] if args.key?(:detected_languages)
4064
+ @layout = args[:layout] if args.key?(:layout)
4065
+ end
4066
+ end
4067
+
3929
4068
  # A table representation similar to HTML table structure.
3930
4069
  class GoogleCloudDocumentaiV1beta2DocumentPageTable
3931
4070
  include Google::Apis::Core::Hashable
@@ -4474,7 +4613,7 @@ module Google
4474
4613
  include Google::Apis::Core::Hashable
4475
4614
 
4476
4615
  # Contains the content of the text span so that users do not have to look it up
4477
- # in the text_segments.
4616
+ # in the text_segments. It is always populated for formFields.
4478
4617
  # Corresponds to the JSON property `content`
4479
4618
  # @return [String]
4480
4619
  attr_accessor :content
@@ -5623,6 +5762,11 @@ module Google
5623
5762
  # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentProvenance]
5624
5763
  attr_accessor :provenance
5625
5764
 
5765
+ # A list of visually detected symbols on the page.
5766
+ # Corresponds to the JSON property `symbols`
5767
+ # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageSymbol>]
5768
+ attr_accessor :symbols
5769
+
5626
5770
  # A list of visually detected tables on the page.
5627
5771
  # Corresponds to the JSON property `tables`
5628
5772
  # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageTable>]
@@ -5661,6 +5805,7 @@ module Google
5661
5805
  @page_number = args[:page_number] if args.key?(:page_number)
5662
5806
  @paragraphs = args[:paragraphs] if args.key?(:paragraphs)
5663
5807
  @provenance = args[:provenance] if args.key?(:provenance)
5808
+ @symbols = args[:symbols] if args.key?(:symbols)
5664
5809
  @tables = args[:tables] if args.key?(:tables)
5665
5810
  @tokens = args[:tokens] if args.key?(:tokens)
5666
5811
  @transforms = args[:transforms] if args.key?(:transforms)
@@ -5778,7 +5923,7 @@ module Google
5778
5923
  attr_accessor :confidence
5779
5924
 
5780
5925
  # The BCP-47 language code, such as "en-US" or "sr-Latn". For more information,
5781
- # see http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
5926
+ # see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
5782
5927
  # Corresponds to the JSON property `languageCode`
5783
5928
  # @return [String]
5784
5929
  attr_accessor :language_code
@@ -6077,6 +6222,31 @@ module Google
6077
6222
  end
6078
6223
  end
6079
6224
 
6225
+ # A detected symbol.
6226
+ class GoogleCloudDocumentaiV1beta3DocumentPageSymbol
6227
+ include Google::Apis::Core::Hashable
6228
+
6229
+ # A list of detected languages together with confidence.
6230
+ # Corresponds to the JSON property `detectedLanguages`
6231
+ # @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageDetectedLanguage>]
6232
+ attr_accessor :detected_languages
6233
+
6234
+ # Visual element describing a layout unit on a page.
6235
+ # Corresponds to the JSON property `layout`
6236
+ # @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageLayout]
6237
+ attr_accessor :layout
6238
+
6239
+ def initialize(**args)
6240
+ update!(**args)
6241
+ end
6242
+
6243
+ # Update properties of this object
6244
+ def update!(**args)
6245
+ @detected_languages = args[:detected_languages] if args.key?(:detected_languages)
6246
+ @layout = args[:layout] if args.key?(:layout)
6247
+ end
6248
+ end
6249
+
6080
6250
  # A table representation similar to HTML table structure.
6081
6251
  class GoogleCloudDocumentaiV1beta3DocumentPageTable
6082
6252
  include Google::Apis::Core::Hashable
@@ -6625,7 +6795,7 @@ module Google
6625
6795
  include Google::Apis::Core::Hashable
6626
6796
 
6627
6797
  # Contains the content of the text span so that users do not have to look it up
6628
- # in the text_segments.
6798
+ # in the text_segments. It is always populated for formFields.
6629
6799
  # Corresponds to the JSON property `content`
6630
6800
  # @return [String]
6631
6801
  attr_accessor :content
@@ -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.33.0"
19
+ GEM_VERSION = "0.34.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220205"
25
+ REVISION = "20220212"
26
26
  end
27
27
  end
28
28
  end
@@ -172,6 +172,24 @@ module Google
172
172
  include Google::Apis::Core::JsonObjectSupport
173
173
  end
174
174
 
175
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadata
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
181
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
187
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetResponse
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
175
193
  class GoogleCloudDocumentaiUiv1beta3RevisionReference
176
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
195
 
@@ -472,6 +490,12 @@ module Google
472
490
  include Google::Apis::Core::JsonObjectSupport
473
491
  end
474
492
 
493
+ class GoogleCloudDocumentaiV1beta1DocumentPageSymbol
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
475
499
  class GoogleCloudDocumentaiV1beta1DocumentPageTable
476
500
  class Representation < Google::Apis::Core::JsonRepresentation; end
477
501
 
@@ -730,6 +754,12 @@ module Google
730
754
  include Google::Apis::Core::JsonObjectSupport
731
755
  end
732
756
 
757
+ class GoogleCloudDocumentaiV1beta2DocumentPageSymbol
758
+ class Representation < Google::Apis::Core::JsonRepresentation; end
759
+
760
+ include Google::Apis::Core::JsonObjectSupport
761
+ end
762
+
733
763
  class GoogleCloudDocumentaiV1beta2DocumentPageTable
734
764
  class Representation < Google::Apis::Core::JsonRepresentation; end
735
765
 
@@ -1084,6 +1114,12 @@ module Google
1084
1114
  include Google::Apis::Core::JsonObjectSupport
1085
1115
  end
1086
1116
 
1117
+ class GoogleCloudDocumentaiV1beta3DocumentPageSymbol
1118
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1119
+
1120
+ include Google::Apis::Core::JsonObjectSupport
1121
+ end
1122
+
1087
1123
  class GoogleCloudDocumentaiV1beta3DocumentPageTable
1088
1124
  class Representation < Google::Apis::Core::JsonRepresentation; end
1089
1125
 
@@ -1620,6 +1656,32 @@ module Google
1620
1656
  end
1621
1657
  end
1622
1658
 
1659
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadata
1660
+ # @private
1661
+ class Representation < Google::Apis::Core::JsonRepresentation
1662
+ property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1663
+
1664
+ collection :newly_added_documents, as: 'newlyAddedDocuments', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument::Representation
1665
+
1666
+ end
1667
+ end
1668
+
1669
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
1670
+ # @private
1671
+ class Representation < Google::Apis::Core::JsonRepresentation
1672
+ property :destination_prefix, as: 'destinationPrefix'
1673
+ property :source_prefix, as: 'sourcePrefix'
1674
+ property :status, as: 'status', class: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus::Representation
1675
+
1676
+ end
1677
+ end
1678
+
1679
+ class GoogleCloudDocumentaiUiv1beta3ResyncDatasetResponse
1680
+ # @private
1681
+ class Representation < Google::Apis::Core::JsonRepresentation
1682
+ end
1683
+ end
1684
+
1623
1685
  class GoogleCloudDocumentaiUiv1beta3RevisionReference
1624
1686
  # @private
1625
1687
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1998,6 +2060,8 @@ module Google
1998
2060
 
1999
2061
  property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentProvenance::Representation
2000
2062
 
2063
+ collection :symbols, as: 'symbols', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageSymbol, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageSymbol::Representation
2064
+
2001
2065
  collection :tables, as: 'tables', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageTable, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageTable::Representation
2002
2066
 
2003
2067
  collection :tokens, as: 'tokens', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageToken, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageToken::Representation
@@ -2133,6 +2197,16 @@ module Google
2133
2197
  end
2134
2198
  end
2135
2199
 
2200
+ class GoogleCloudDocumentaiV1beta1DocumentPageSymbol
2201
+ # @private
2202
+ class Representation < Google::Apis::Core::JsonRepresentation
2203
+ collection :detected_languages, as: 'detectedLanguages', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage::Representation
2204
+
2205
+ property :layout, as: 'layout', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageLayout, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta1DocumentPageLayout::Representation
2206
+
2207
+ end
2208
+ end
2209
+
2136
2210
  class GoogleCloudDocumentaiV1beta1DocumentPageTable
2137
2211
  # @private
2138
2212
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2497,6 +2571,8 @@ module Google
2497
2571
 
2498
2572
  property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentProvenance::Representation
2499
2573
 
2574
+ collection :symbols, as: 'symbols', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageSymbol, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageSymbol::Representation
2575
+
2500
2576
  collection :tables, as: 'tables', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageTable, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageTable::Representation
2501
2577
 
2502
2578
  collection :tokens, as: 'tokens', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageToken, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageToken::Representation
@@ -2632,6 +2708,16 @@ module Google
2632
2708
  end
2633
2709
  end
2634
2710
 
2711
+ class GoogleCloudDocumentaiV1beta2DocumentPageSymbol
2712
+ # @private
2713
+ class Representation < Google::Apis::Core::JsonRepresentation
2714
+ collection :detected_languages, as: 'detectedLanguages', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage::Representation
2715
+
2716
+ property :layout, as: 'layout', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageLayout, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageLayout::Representation
2717
+
2718
+ end
2719
+ end
2720
+
2635
2721
  class GoogleCloudDocumentaiV1beta2DocumentPageTable
2636
2722
  # @private
2637
2723
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3131,6 +3217,8 @@ module Google
3131
3217
 
3132
3218
  property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentProvenance::Representation
3133
3219
 
3220
+ collection :symbols, as: 'symbols', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageSymbol, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageSymbol::Representation
3221
+
3134
3222
  collection :tables, as: 'tables', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageTable, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageTable::Representation
3135
3223
 
3136
3224
  collection :tokens, as: 'tokens', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageToken, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageToken::Representation
@@ -3266,6 +3354,16 @@ module Google
3266
3354
  end
3267
3355
  end
3268
3356
 
3357
+ class GoogleCloudDocumentaiV1beta3DocumentPageSymbol
3358
+ # @private
3359
+ class Representation < Google::Apis::Core::JsonRepresentation
3360
+ collection :detected_languages, as: 'detectedLanguages', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageDetectedLanguage::Representation
3361
+
3362
+ property :layout, as: 'layout', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageLayout, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentPageLayout::Representation
3363
+
3364
+ end
3365
+ end
3366
+
3269
3367
  class GoogleCloudDocumentaiV1beta3DocumentPageTable
3270
3368
  # @private
3271
3369
  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.33.0
4
+ version: 0.34.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-02-14 00:00:00.000000000 Z
11
+ date: 2022-02-21 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.33.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.34.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: []