google-apis-documentai_v1beta2 0.28.0 → 0.29.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6036bef4ac7be9ccc7e199383d668ceb9047d4de81cfcab27dfcb1f8ddb20d6b
|
4
|
+
data.tar.gz: 187962bc592238797854a9506575eacdc83d9b3cdf5c01bbf0ea8632a1388745
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 919cfb12935050604d0d5f88f1b7be1fcfbdc774103b244fb6d49b9ad08db0de4fd6e67c2b550bf224655a417b8c95b24d6e53f3a09539386dcdd6f0ccb7f1e7
|
7
|
+
data.tar.gz: e9e5cdcac1fcc5425eddac5f34e40f3ebeb0242ff37a64a777b995bbd1abc332780fca2bc4bc59eb68385afffe848c373b77635bfa6c78d6cf03ba89fedb2d9f
|
data/CHANGELOG.md
CHANGED
@@ -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::DocumentaiV1beta2::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::DocumentaiV1beta2::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::DocumentaiV1beta2::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::DocumentaiV1beta2::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::DocumentaiV1beta2::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::DocumentaiV1beta2::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
|
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::DocumentaiV1beta2::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::DocumentaiV1beta2::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
|
@@ -3512,6 +3620,11 @@ module Google
|
|
3512
3620
|
# @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentProvenance]
|
3513
3621
|
attr_accessor :provenance
|
3514
3622
|
|
3623
|
+
# A list of visually detected symbols on the page.
|
3624
|
+
# Corresponds to the JSON property `symbols`
|
3625
|
+
# @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageSymbol>]
|
3626
|
+
attr_accessor :symbols
|
3627
|
+
|
3515
3628
|
# A list of visually detected tables on the page.
|
3516
3629
|
# Corresponds to the JSON property `tables`
|
3517
3630
|
# @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageTable>]
|
@@ -3550,6 +3663,7 @@ module Google
|
|
3550
3663
|
@page_number = args[:page_number] if args.key?(:page_number)
|
3551
3664
|
@paragraphs = args[:paragraphs] if args.key?(:paragraphs)
|
3552
3665
|
@provenance = args[:provenance] if args.key?(:provenance)
|
3666
|
+
@symbols = args[:symbols] if args.key?(:symbols)
|
3553
3667
|
@tables = args[:tables] if args.key?(:tables)
|
3554
3668
|
@tokens = args[:tokens] if args.key?(:tokens)
|
3555
3669
|
@transforms = args[:transforms] if args.key?(:transforms)
|
@@ -3667,7 +3781,7 @@ module Google
|
|
3667
3781
|
attr_accessor :confidence
|
3668
3782
|
|
3669
3783
|
# The BCP-47 language code, such as "en-US" or "sr-Latn". For more information,
|
3670
|
-
# see
|
3784
|
+
# see https://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
|
3671
3785
|
# Corresponds to the JSON property `languageCode`
|
3672
3786
|
# @return [String]
|
3673
3787
|
attr_accessor :language_code
|
@@ -3966,6 +4080,31 @@ module Google
|
|
3966
4080
|
end
|
3967
4081
|
end
|
3968
4082
|
|
4083
|
+
# A detected symbol.
|
4084
|
+
class GoogleCloudDocumentaiV1beta2DocumentPageSymbol
|
4085
|
+
include Google::Apis::Core::Hashable
|
4086
|
+
|
4087
|
+
# A list of detected languages together with confidence.
|
4088
|
+
# Corresponds to the JSON property `detectedLanguages`
|
4089
|
+
# @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage>]
|
4090
|
+
attr_accessor :detected_languages
|
4091
|
+
|
4092
|
+
# Visual element describing a layout unit on a page.
|
4093
|
+
# Corresponds to the JSON property `layout`
|
4094
|
+
# @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageLayout]
|
4095
|
+
attr_accessor :layout
|
4096
|
+
|
4097
|
+
def initialize(**args)
|
4098
|
+
update!(**args)
|
4099
|
+
end
|
4100
|
+
|
4101
|
+
# Update properties of this object
|
4102
|
+
def update!(**args)
|
4103
|
+
@detected_languages = args[:detected_languages] if args.key?(:detected_languages)
|
4104
|
+
@layout = args[:layout] if args.key?(:layout)
|
4105
|
+
end
|
4106
|
+
end
|
4107
|
+
|
3969
4108
|
# A table representation similar to HTML table structure.
|
3970
4109
|
class GoogleCloudDocumentaiV1beta2DocumentPageTable
|
3971
4110
|
include Google::Apis::Core::Hashable
|
@@ -4514,7 +4653,7 @@ module Google
|
|
4514
4653
|
include Google::Apis::Core::Hashable
|
4515
4654
|
|
4516
4655
|
# Contains the content of the text span so that users do not have to look it up
|
4517
|
-
# in the text_segments.
|
4656
|
+
# in the text_segments. It is always populated for formFields.
|
4518
4657
|
# Corresponds to the JSON property `content`
|
4519
4658
|
# @return [String]
|
4520
4659
|
attr_accessor :content
|
@@ -4637,7 +4776,7 @@ module Google
|
|
4637
4776
|
|
4638
4777
|
# Model version of the form extraction system. Default is "builtin/stable".
|
4639
4778
|
# Specify "builtin/latest" for the latest model. For custom form models, specify:
|
4640
|
-
#
|
4779
|
+
# "custom/`model_name`". Model name format is "bucket_name/path/to/modeldir"
|
4641
4780
|
# corresponding to "gs://bucket_name/path/to/modeldir" where annotated examples
|
4642
4781
|
# are stored.
|
4643
4782
|
# Corresponds to the JSON property `modelVersion`
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.29.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 = "
|
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
|
|
@@ -742,6 +766,12 @@ module Google
|
|
742
766
|
include Google::Apis::Core::JsonObjectSupport
|
743
767
|
end
|
744
768
|
|
769
|
+
class GoogleCloudDocumentaiV1beta2DocumentPageSymbol
|
770
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
771
|
+
|
772
|
+
include Google::Apis::Core::JsonObjectSupport
|
773
|
+
end
|
774
|
+
|
745
775
|
class GoogleCloudDocumentaiV1beta2DocumentPageTable
|
746
776
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
747
777
|
|
@@ -1296,6 +1326,32 @@ module Google
|
|
1296
1326
|
end
|
1297
1327
|
end
|
1298
1328
|
|
1329
|
+
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadata
|
1330
|
+
# @private
|
1331
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1332
|
+
property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
|
1333
|
+
|
1334
|
+
collection :newly_added_documents, as: 'newlyAddedDocuments', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument::Representation
|
1335
|
+
|
1336
|
+
end
|
1337
|
+
end
|
1338
|
+
|
1339
|
+
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetMetadataUpdatedDocument
|
1340
|
+
# @private
|
1341
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1342
|
+
property :destination_prefix, as: 'destinationPrefix'
|
1343
|
+
property :source_prefix, as: 'sourcePrefix'
|
1344
|
+
property :status, as: 'status', class: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta2::GoogleRpcStatus::Representation
|
1345
|
+
|
1346
|
+
end
|
1347
|
+
end
|
1348
|
+
|
1349
|
+
class GoogleCloudDocumentaiUiv1beta3ResyncDatasetResponse
|
1350
|
+
# @private
|
1351
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1352
|
+
end
|
1353
|
+
end
|
1354
|
+
|
1299
1355
|
class GoogleCloudDocumentaiUiv1beta3RevisionReference
|
1300
1356
|
# @private
|
1301
1357
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1674,6 +1730,8 @@ module Google
|
|
1674
1730
|
|
1675
1731
|
property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentProvenance::Representation
|
1676
1732
|
|
1733
|
+
collection :symbols, as: 'symbols', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageSymbol, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageSymbol::Representation
|
1734
|
+
|
1677
1735
|
collection :tables, as: 'tables', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageTable, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageTable::Representation
|
1678
1736
|
|
1679
1737
|
collection :tokens, as: 'tokens', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageToken, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageToken::Representation
|
@@ -1809,6 +1867,16 @@ module Google
|
|
1809
1867
|
end
|
1810
1868
|
end
|
1811
1869
|
|
1870
|
+
class GoogleCloudDocumentaiV1beta1DocumentPageSymbol
|
1871
|
+
# @private
|
1872
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1873
|
+
collection :detected_languages, as: 'detectedLanguages', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage::Representation
|
1874
|
+
|
1875
|
+
property :layout, as: 'layout', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageLayout, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageLayout::Representation
|
1876
|
+
|
1877
|
+
end
|
1878
|
+
end
|
1879
|
+
|
1812
1880
|
class GoogleCloudDocumentaiV1beta1DocumentPageTable
|
1813
1881
|
# @private
|
1814
1882
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2188,6 +2256,8 @@ module Google
|
|
2188
2256
|
|
2189
2257
|
property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentProvenance::Representation
|
2190
2258
|
|
2259
|
+
collection :symbols, as: 'symbols', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageSymbol, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageSymbol::Representation
|
2260
|
+
|
2191
2261
|
collection :tables, as: 'tables', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageTable, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageTable::Representation
|
2192
2262
|
|
2193
2263
|
collection :tokens, as: 'tokens', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageToken, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageToken::Representation
|
@@ -2323,6 +2393,16 @@ module Google
|
|
2323
2393
|
end
|
2324
2394
|
end
|
2325
2395
|
|
2396
|
+
class GoogleCloudDocumentaiV1beta2DocumentPageSymbol
|
2397
|
+
# @private
|
2398
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2399
|
+
collection :detected_languages, as: 'detectedLanguages', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage::Representation
|
2400
|
+
|
2401
|
+
property :layout, as: 'layout', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageLayout, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageLayout::Representation
|
2402
|
+
|
2403
|
+
end
|
2404
|
+
end
|
2405
|
+
|
2326
2406
|
class GoogleCloudDocumentaiV1beta2DocumentPageTable
|
2327
2407
|
# @private
|
2328
2408
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.
|
4
|
+
version: 0.29.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-
|
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_v1beta2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.29.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: []
|