google-apis-documentai_v1 0.5.0 → 0.9.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: bcbb6b4878504a3a6e14a781f6ca2b6cf1ccdec61c9b877ba4df751c259cb0f9
4
- data.tar.gz: bf2c3ed5261d9f8f1f2752c878b200e11776a83d2fcc5b85f1c809ee73091748
3
+ metadata.gz: 865fc2e5326a70e680ce746bd6eef376f3b3b3050efba0961252512749a6cd30
4
+ data.tar.gz: 32b8a033dd759885199d6d47867317931138ff608932c709a427bdb4ff262df7
5
5
  SHA512:
6
- metadata.gz: 7f42af2cfc787f1c1165791d4e149eb558a15cfed46743407117aacf9ae51eafadcf598a41c3e540b42f57aaf7858e031ca92ed5f105392de0fc34a988780735
7
- data.tar.gz: d7aa323341a3f094d27ee28e98ee1ddf8d271f668b8f4e0592ea87cad1c032b1bb5c972951627d4031e4b828646d3dbfe2a2a1fb24b0090637f4791423faef4e
6
+ metadata.gz: 19301178efd5c417cf15775ed40bf52da8e321a5954cea3145f2c18bf511bb0f0b1fc8b2b87e98d0a2e5eec44cb7884ae6d36b4cf5f88ef453233e47a5340eb6
7
+ data.tar.gz: f5ded62402a44923789ae6dba1079cea2d8506a0bddea517085de3ae365006adc5a3ccc20bb509d854cdc1bb7a775f27c5123ce3c94f9c8b0468860552892fc1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-documentai_v1
2
2
 
3
+ ### v0.9.0 (2021-07-13)
4
+
5
+ * Regenerated from discovery document revision 20210709
6
+
7
+ ### v0.8.0 (2021-06-29)
8
+
9
+ * Regenerated from discovery document revision 20210625
10
+ * Regenerated using generator version 0.4.0
11
+
12
+ ### v0.7.0 (2021-06-24)
13
+
14
+ * Unspecified changes
15
+
16
+ ### v0.6.0 (2021-06-09)
17
+
18
+ * Regenerated from discovery document revision 20210607
19
+
3
20
  ### v0.5.0 (2021-06-03)
4
21
 
5
22
  * Regenerated from discovery document revision 20210527
@@ -271,6 +271,44 @@ module Google
271
271
  end
272
272
  end
273
273
 
274
+ # Metadata message associated with the ExportProcessorVersion operation.
275
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata
276
+ include Google::Apis::Core::Hashable
277
+
278
+ # The common metadata for long running operations.
279
+ # Corresponds to the JSON property `commonMetadata`
280
+ # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
281
+ attr_accessor :common_metadata
282
+
283
+ def initialize(**args)
284
+ update!(**args)
285
+ end
286
+
287
+ # Update properties of this object
288
+ def update!(**args)
289
+ @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
290
+ end
291
+ end
292
+
293
+ # Response message associated with the ExportProcessorVersion operation.
294
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionResponse
295
+ include Google::Apis::Core::Hashable
296
+
297
+ # The Cloud Storage URI containing the output artifacts.
298
+ # Corresponds to the JSON property `gcsUri`
299
+ # @return [String]
300
+ attr_accessor :gcs_uri
301
+
302
+ def initialize(**args)
303
+ update!(**args)
304
+ end
305
+
306
+ # Update properties of this object
307
+ def update!(**args)
308
+ @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
309
+ end
310
+ end
311
+
274
312
  # The long running operation metadata for set default processor version method.
275
313
  class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata
276
314
  include Google::Apis::Core::Hashable
@@ -1090,6 +1128,12 @@ module Google
1090
1128
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageParagraph>]
1091
1129
  attr_accessor :paragraphs
1092
1130
 
1131
+ # Structure to identify provenance relationships between annotations in
1132
+ # different revisions.
1133
+ # Corresponds to the JSON property `provenance`
1134
+ # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentProvenance]
1135
+ attr_accessor :provenance
1136
+
1093
1137
  # A list of visually detected tables on the page.
1094
1138
  # Corresponds to the JSON property `tables`
1095
1139
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageTable>]
@@ -1127,6 +1171,7 @@ module Google
1127
1171
  @lines = args[:lines] if args.key?(:lines)
1128
1172
  @page_number = args[:page_number] if args.key?(:page_number)
1129
1173
  @paragraphs = args[:paragraphs] if args.key?(:paragraphs)
1174
+ @provenance = args[:provenance] if args.key?(:provenance)
1130
1175
  @tables = args[:tables] if args.key?(:tables)
1131
1176
  @tokens = args[:tokens] if args.key?(:tokens)
1132
1177
  @transforms = args[:transforms] if args.key?(:transforms)
@@ -1180,7 +1225,9 @@ module Google
1180
1225
  attr_accessor :layout_type
1181
1226
 
1182
1227
  # Required. Index into the Document.pages element, for example using Document.
1183
- # pages to locate the related page element.
1228
+ # pages to locate the related page element. This field is skipped when its value
1229
+ # is the default 0. See https://developers.google.com/protocol-buffers/docs/
1230
+ # proto3#json.
1184
1231
  # Corresponds to the JSON property `page`
1185
1232
  # @return [Fixnum]
1186
1233
  attr_accessor :page
@@ -1308,6 +1355,12 @@ module Google
1308
1355
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageDetectedLanguage>]
1309
1356
  attr_accessor :name_detected_languages
1310
1357
 
1358
+ # Structure to identify provenance relationships between annotations in
1359
+ # different revisions.
1360
+ # Corresponds to the JSON property `provenance`
1361
+ # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentProvenance]
1362
+ attr_accessor :provenance
1363
+
1311
1364
  # A list of detected languages for value together with confidence.
1312
1365
  # Corresponds to the JSON property `valueDetectedLanguages`
1313
1366
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageDetectedLanguage>]
@@ -1329,6 +1382,7 @@ module Google
1329
1382
  @field_name = args[:field_name] if args.key?(:field_name)
1330
1383
  @field_value = args[:field_value] if args.key?(:field_value)
1331
1384
  @name_detected_languages = args[:name_detected_languages] if args.key?(:name_detected_languages)
1385
+ @provenance = args[:provenance] if args.key?(:provenance)
1332
1386
  @value_detected_languages = args[:value_detected_languages] if args.key?(:value_detected_languages)
1333
1387
  @value_type = args[:value_type] if args.key?(:value_type)
1334
1388
  end
@@ -2369,7 +2423,7 @@ module Google
2369
2423
  end
2370
2424
  end
2371
2425
 
2372
- # Request message for review document method. Next Id: 5.
2426
+ # Request message for review document method. Next Id: 6.
2373
2427
  class GoogleCloudDocumentaiV1ReviewDocumentRequest
2374
2428
  include Google::Apis::Core::Hashable
2375
2429
 
@@ -2387,6 +2441,11 @@ module Google
2387
2441
  # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1Document]
2388
2442
  attr_accessor :inline_document
2389
2443
 
2444
+ # The priority of the human review task.
2445
+ # Corresponds to the JSON property `priority`
2446
+ # @return [String]
2447
+ attr_accessor :priority
2448
+
2390
2449
  def initialize(**args)
2391
2450
  update!(**args)
2392
2451
  end
@@ -2395,6 +2454,7 @@ module Google
2395
2454
  def update!(**args)
2396
2455
  @enable_schema_validation = args[:enable_schema_validation] if args.key?(:enable_schema_validation)
2397
2456
  @inline_document = args[:inline_document] if args.key?(:inline_document)
2457
+ @priority = args[:priority] if args.key?(:priority)
2398
2458
  end
2399
2459
  end
2400
2460
 
@@ -2848,6 +2908,12 @@ module Google
2848
2908
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageParagraph>]
2849
2909
  attr_accessor :paragraphs
2850
2910
 
2911
+ # Structure to identify provenance relationships between annotations in
2912
+ # different revisions.
2913
+ # Corresponds to the JSON property `provenance`
2914
+ # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentProvenance]
2915
+ attr_accessor :provenance
2916
+
2851
2917
  # A list of visually detected tables on the page.
2852
2918
  # Corresponds to the JSON property `tables`
2853
2919
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageTable>]
@@ -2885,6 +2951,7 @@ module Google
2885
2951
  @lines = args[:lines] if args.key?(:lines)
2886
2952
  @page_number = args[:page_number] if args.key?(:page_number)
2887
2953
  @paragraphs = args[:paragraphs] if args.key?(:paragraphs)
2954
+ @provenance = args[:provenance] if args.key?(:provenance)
2888
2955
  @tables = args[:tables] if args.key?(:tables)
2889
2956
  @tokens = args[:tokens] if args.key?(:tokens)
2890
2957
  @transforms = args[:transforms] if args.key?(:transforms)
@@ -2938,7 +3005,9 @@ module Google
2938
3005
  attr_accessor :layout_type
2939
3006
 
2940
3007
  # Required. Index into the Document.pages element, for example using Document.
2941
- # pages to locate the related page element.
3008
+ # pages to locate the related page element. This field is skipped when its value
3009
+ # is the default 0. See https://developers.google.com/protocol-buffers/docs/
3010
+ # proto3#json.
2942
3011
  # Corresponds to the JSON property `page`
2943
3012
  # @return [Fixnum]
2944
3013
  attr_accessor :page
@@ -3066,6 +3135,12 @@ module Google
3066
3135
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage>]
3067
3136
  attr_accessor :name_detected_languages
3068
3137
 
3138
+ # Structure to identify provenance relationships between annotations in
3139
+ # different revisions.
3140
+ # Corresponds to the JSON property `provenance`
3141
+ # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentProvenance]
3142
+ attr_accessor :provenance
3143
+
3069
3144
  # A list of detected languages for value together with confidence.
3070
3145
  # Corresponds to the JSON property `valueDetectedLanguages`
3071
3146
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage>]
@@ -3087,6 +3162,7 @@ module Google
3087
3162
  @field_name = args[:field_name] if args.key?(:field_name)
3088
3163
  @field_value = args[:field_value] if args.key?(:field_value)
3089
3164
  @name_detected_languages = args[:name_detected_languages] if args.key?(:name_detected_languages)
3165
+ @provenance = args[:provenance] if args.key?(:provenance)
3090
3166
  @value_detected_languages = args[:value_detected_languages] if args.key?(:value_detected_languages)
3091
3167
  @value_type = args[:value_type] if args.key?(:value_type)
3092
3168
  end
@@ -4556,6 +4632,12 @@ module Google
4556
4632
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageParagraph>]
4557
4633
  attr_accessor :paragraphs
4558
4634
 
4635
+ # Structure to identify provenance relationships between annotations in
4636
+ # different revisions.
4637
+ # Corresponds to the JSON property `provenance`
4638
+ # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentProvenance]
4639
+ attr_accessor :provenance
4640
+
4559
4641
  # A list of visually detected tables on the page.
4560
4642
  # Corresponds to the JSON property `tables`
4561
4643
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageTable>]
@@ -4593,6 +4675,7 @@ module Google
4593
4675
  @lines = args[:lines] if args.key?(:lines)
4594
4676
  @page_number = args[:page_number] if args.key?(:page_number)
4595
4677
  @paragraphs = args[:paragraphs] if args.key?(:paragraphs)
4678
+ @provenance = args[:provenance] if args.key?(:provenance)
4596
4679
  @tables = args[:tables] if args.key?(:tables)
4597
4680
  @tokens = args[:tokens] if args.key?(:tokens)
4598
4681
  @transforms = args[:transforms] if args.key?(:transforms)
@@ -4646,7 +4729,9 @@ module Google
4646
4729
  attr_accessor :layout_type
4647
4730
 
4648
4731
  # Required. Index into the Document.pages element, for example using Document.
4649
- # pages to locate the related page element.
4732
+ # pages to locate the related page element. This field is skipped when its value
4733
+ # is the default 0. See https://developers.google.com/protocol-buffers/docs/
4734
+ # proto3#json.
4650
4735
  # Corresponds to the JSON property `page`
4651
4736
  # @return [Fixnum]
4652
4737
  attr_accessor :page
@@ -4774,6 +4859,12 @@ module Google
4774
4859
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage>]
4775
4860
  attr_accessor :name_detected_languages
4776
4861
 
4862
+ # Structure to identify provenance relationships between annotations in
4863
+ # different revisions.
4864
+ # Corresponds to the JSON property `provenance`
4865
+ # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentProvenance]
4866
+ attr_accessor :provenance
4867
+
4777
4868
  # A list of detected languages for value together with confidence.
4778
4869
  # Corresponds to the JSON property `valueDetectedLanguages`
4779
4870
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage>]
@@ -4795,6 +4886,7 @@ module Google
4795
4886
  @field_name = args[:field_name] if args.key?(:field_name)
4796
4887
  @field_value = args[:field_value] if args.key?(:field_value)
4797
4888
  @name_detected_languages = args[:name_detected_languages] if args.key?(:name_detected_languages)
4889
+ @provenance = args[:provenance] if args.key?(:provenance)
4798
4890
  @value_detected_languages = args[:value_detected_languages] if args.key?(:value_detected_languages)
4799
4891
  @value_type = args[:value_type] if args.key?(:value_type)
4800
4892
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DocumentaiV1
18
18
  # Version of the google-apis-documentai_v1 gem
19
- GEM_VERSION = "0.5.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210527"
25
+ REVISION = "20210709"
26
26
  end
27
27
  end
28
28
  end
@@ -100,6 +100,18 @@ module Google
100
100
  include Google::Apis::Core::JsonObjectSupport
101
101
  end
102
102
 
103
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
109
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionResponse
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
103
115
  class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata
104
116
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
117
 
@@ -1225,6 +1237,21 @@ module Google
1225
1237
  end
1226
1238
  end
1227
1239
 
1240
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata
1241
+ # @private
1242
+ class Representation < Google::Apis::Core::JsonRepresentation
1243
+ property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1244
+
1245
+ end
1246
+ end
1247
+
1248
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionResponse
1249
+ # @private
1250
+ class Representation < Google::Apis::Core::JsonRepresentation
1251
+ property :gcs_uri, as: 'gcsUri'
1252
+ end
1253
+ end
1254
+
1228
1255
  class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata
1229
1256
  # @private
1230
1257
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1479,6 +1506,8 @@ module Google
1479
1506
  property :page_number, as: 'pageNumber'
1480
1507
  collection :paragraphs, as: 'paragraphs', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageParagraph, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageParagraph::Representation
1481
1508
 
1509
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentProvenance, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentProvenance::Representation
1510
+
1482
1511
  collection :tables, as: 'tables', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageTable, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageTable::Representation
1483
1512
 
1484
1513
  collection :tokens, as: 'tokens', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageToken, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageToken::Representation
@@ -1548,6 +1577,8 @@ module Google
1548
1577
 
1549
1578
  collection :name_detected_languages, as: 'nameDetectedLanguages', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageDetectedLanguage::Representation
1550
1579
 
1580
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentProvenance, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentProvenance::Representation
1581
+
1551
1582
  collection :value_detected_languages, as: 'valueDetectedLanguages', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageDetectedLanguage::Representation
1552
1583
 
1553
1584
  property :value_type, as: 'valueType'
@@ -1862,6 +1893,7 @@ module Google
1862
1893
  property :enable_schema_validation, as: 'enableSchemaValidation'
1863
1894
  property :inline_document, as: 'inlineDocument', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1Document, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1Document::Representation
1864
1895
 
1896
+ property :priority, as: 'priority'
1865
1897
  end
1866
1898
  end
1867
1899
 
@@ -1991,6 +2023,8 @@ module Google
1991
2023
  property :page_number, as: 'pageNumber'
1992
2024
  collection :paragraphs, as: 'paragraphs', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageParagraph, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageParagraph::Representation
1993
2025
 
2026
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentProvenance, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentProvenance::Representation
2027
+
1994
2028
  collection :tables, as: 'tables', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageTable, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageTable::Representation
1995
2029
 
1996
2030
  collection :tokens, as: 'tokens', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageToken, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageToken::Representation
@@ -2060,6 +2094,8 @@ module Google
2060
2094
 
2061
2095
  collection :name_detected_languages, as: 'nameDetectedLanguages', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage::Representation
2062
2096
 
2097
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentProvenance, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentProvenance::Representation
2098
+
2063
2099
  collection :value_detected_languages, as: 'valueDetectedLanguages', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage::Representation
2064
2100
 
2065
2101
  property :value_type, as: 'valueType'
@@ -2481,6 +2517,8 @@ module Google
2481
2517
  property :page_number, as: 'pageNumber'
2482
2518
  collection :paragraphs, as: 'paragraphs', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageParagraph, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageParagraph::Representation
2483
2519
 
2520
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentProvenance, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentProvenance::Representation
2521
+
2484
2522
  collection :tables, as: 'tables', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageTable, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageTable::Representation
2485
2523
 
2486
2524
  collection :tokens, as: 'tokens', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageToken, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageToken::Representation
@@ -2550,6 +2588,8 @@ module Google
2550
2588
 
2551
2589
  collection :name_detected_languages, as: 'nameDetectedLanguages', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage::Representation
2552
2590
 
2591
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentProvenance, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentProvenance::Representation
2592
+
2553
2593
  collection :value_detected_languages, as: 'valueDetectedLanguages', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage::Representation
2554
2594
 
2555
2595
  property :value_type, as: 'valueType'
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-documentai_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.9.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: 2021-06-07 00:00:00.000000000 Z
11
+ date: 2021-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.4'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.4'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for Cloud Document AI API V1. Simple REST
28
34
  clients are Ruby client libraries that provide access to Google services via their
29
35
  HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-documentai_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.5.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.9.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-documentai_v1
57
63
  post_install_message:
58
64
  rdoc_options: []