google-apis-documentai_v1beta2 0.9.0 → 0.14.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: 831938999e0daa7c9771de59c087be50d4c66e73de01e04a3fa5816c10539ff4
4
- data.tar.gz: 491c06fe0da4e23cdf78c2b70e9bda3c35d1ae0d97400b76bfe469a024968dc6
3
+ metadata.gz: 9469807fb3f0c4d870e26b7e7530eec8dd8e9403f432a8d5cf494177f921844c
4
+ data.tar.gz: 9ec5dbff6fdd77cdd0f453a698caaaf3b22b91aced51348e2bdd109b786672ba
5
5
  SHA512:
6
- metadata.gz: 36a9ee823926958427cb36a8576e95b71d3832ac0ed35022d73443f50277c5a5d9660ccec87af9d2a46d9dea69ca90a43bcb2e738266abab874202088a4fb70c
7
- data.tar.gz: fabb642f1b149e5361aedad4753ca8091b243c0047ed46e3efad2442f8593fda234521406527718edb43457213561c8f9c2562834e190cc0c172ccc19a8d9adc
6
+ metadata.gz: d1dcda20389c80889d5ef4e5c838783bc94af34256ef078bccb51f908f186bacb7692d4263d81dea625b09853cb4c41e2df218eabb19b02f13ca4784148010cb
7
+ data.tar.gz: d070f6aa33aa2b83cb32df7dbc2fb0fe8bf27105a9bdd6608ea8e9362eedf69f46b14a8295d2facd523153839c1a858e01846a4925d9e5aa08db1c8f80312294
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-documentai_v1beta2
2
2
 
3
+ ### v0.14.0 (2021-06-29)
4
+
5
+ * Regenerated from discovery document revision 20210625
6
+ * Regenerated using generator version 0.4.0
7
+
8
+ ### v0.13.0 (2021-06-24)
9
+
10
+ * Unspecified changes
11
+
12
+ ### v0.12.0 (2021-06-09)
13
+
14
+ * Regenerated from discovery document revision 20210607
15
+
16
+ ### v0.11.0 (2021-06-03)
17
+
18
+ * Regenerated from discovery document revision 20210527
19
+ * Regenerated using generator version 0.3.0
20
+
21
+ ### v0.10.0 (2021-05-19)
22
+
23
+ * Unspecified changes
24
+
3
25
  ### v0.9.0 (2021-05-12)
4
26
 
5
27
  * Regenerated from discovery document revision 20210507
@@ -271,6 +271,38 @@ 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::DocumentaiV1beta2::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
+ def initialize(**args)
298
+ update!(**args)
299
+ end
300
+
301
+ # Update properties of this object
302
+ def update!(**args)
303
+ end
304
+ end
305
+
274
306
  # The long running operation metadata for set default processor version method.
275
307
  class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata
276
308
  include Google::Apis::Core::Hashable
@@ -1084,6 +1116,12 @@ module Google
1084
1116
  # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageParagraph>]
1085
1117
  attr_accessor :paragraphs
1086
1118
 
1119
+ # Structure to identify provenance relationships between annotations in
1120
+ # different revisions.
1121
+ # Corresponds to the JSON property `provenance`
1122
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentProvenance]
1123
+ attr_accessor :provenance
1124
+
1087
1125
  # A list of visually detected tables on the page.
1088
1126
  # Corresponds to the JSON property `tables`
1089
1127
  # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageTable>]
@@ -1121,6 +1159,7 @@ module Google
1121
1159
  @lines = args[:lines] if args.key?(:lines)
1122
1160
  @page_number = args[:page_number] if args.key?(:page_number)
1123
1161
  @paragraphs = args[:paragraphs] if args.key?(:paragraphs)
1162
+ @provenance = args[:provenance] if args.key?(:provenance)
1124
1163
  @tables = args[:tables] if args.key?(:tables)
1125
1164
  @tokens = args[:tokens] if args.key?(:tokens)
1126
1165
  @transforms = args[:transforms] if args.key?(:transforms)
@@ -1174,7 +1213,9 @@ module Google
1174
1213
  attr_accessor :layout_type
1175
1214
 
1176
1215
  # Required. Index into the Document.pages element, for example using Document.
1177
- # pages to locate the related page element.
1216
+ # pages to locate the related page element. This field is skipped when its value
1217
+ # is the default 0. See https://developers.google.com/protocol-buffers/docs/
1218
+ # proto3#json.
1178
1219
  # Corresponds to the JSON property `page`
1179
1220
  # @return [Fixnum]
1180
1221
  attr_accessor :page
@@ -1302,6 +1343,12 @@ module Google
1302
1343
  # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage>]
1303
1344
  attr_accessor :name_detected_languages
1304
1345
 
1346
+ # Structure to identify provenance relationships between annotations in
1347
+ # different revisions.
1348
+ # Corresponds to the JSON property `provenance`
1349
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentProvenance]
1350
+ attr_accessor :provenance
1351
+
1305
1352
  # A list of detected languages for value together with confidence.
1306
1353
  # Corresponds to the JSON property `valueDetectedLanguages`
1307
1354
  # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage>]
@@ -1323,6 +1370,7 @@ module Google
1323
1370
  @field_name = args[:field_name] if args.key?(:field_name)
1324
1371
  @field_value = args[:field_value] if args.key?(:field_value)
1325
1372
  @name_detected_languages = args[:name_detected_languages] if args.key?(:name_detected_languages)
1373
+ @provenance = args[:provenance] if args.key?(:provenance)
1326
1374
  @value_detected_languages = args[:value_detected_languages] if args.key?(:value_detected_languages)
1327
1375
  @value_type = args[:value_type] if args.key?(:value_type)
1328
1376
  end
@@ -2832,6 +2880,12 @@ module Google
2832
2880
  # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageParagraph>]
2833
2881
  attr_accessor :paragraphs
2834
2882
 
2883
+ # Structure to identify provenance relationships between annotations in
2884
+ # different revisions.
2885
+ # Corresponds to the JSON property `provenance`
2886
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentProvenance]
2887
+ attr_accessor :provenance
2888
+
2835
2889
  # A list of visually detected tables on the page.
2836
2890
  # Corresponds to the JSON property `tables`
2837
2891
  # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageTable>]
@@ -2869,6 +2923,7 @@ module Google
2869
2923
  @lines = args[:lines] if args.key?(:lines)
2870
2924
  @page_number = args[:page_number] if args.key?(:page_number)
2871
2925
  @paragraphs = args[:paragraphs] if args.key?(:paragraphs)
2926
+ @provenance = args[:provenance] if args.key?(:provenance)
2872
2927
  @tables = args[:tables] if args.key?(:tables)
2873
2928
  @tokens = args[:tokens] if args.key?(:tokens)
2874
2929
  @transforms = args[:transforms] if args.key?(:transforms)
@@ -2922,7 +2977,9 @@ module Google
2922
2977
  attr_accessor :layout_type
2923
2978
 
2924
2979
  # Required. Index into the Document.pages element, for example using Document.
2925
- # pages to locate the related page element.
2980
+ # pages to locate the related page element. This field is skipped when its value
2981
+ # is the default 0. See https://developers.google.com/protocol-buffers/docs/
2982
+ # proto3#json.
2926
2983
  # Corresponds to the JSON property `page`
2927
2984
  # @return [Fixnum]
2928
2985
  attr_accessor :page
@@ -3050,6 +3107,12 @@ module Google
3050
3107
  # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage>]
3051
3108
  attr_accessor :name_detected_languages
3052
3109
 
3110
+ # Structure to identify provenance relationships between annotations in
3111
+ # different revisions.
3112
+ # Corresponds to the JSON property `provenance`
3113
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentProvenance]
3114
+ attr_accessor :provenance
3115
+
3053
3116
  # A list of detected languages for value together with confidence.
3054
3117
  # Corresponds to the JSON property `valueDetectedLanguages`
3055
3118
  # @return [Array<Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage>]
@@ -3071,6 +3134,7 @@ module Google
3071
3134
  @field_name = args[:field_name] if args.key?(:field_name)
3072
3135
  @field_value = args[:field_value] if args.key?(:field_value)
3073
3136
  @name_detected_languages = args[:name_detected_languages] if args.key?(:name_detected_languages)
3137
+ @provenance = args[:provenance] if args.key?(:provenance)
3074
3138
  @value_detected_languages = args[:value_detected_languages] if args.key?(:value_detected_languages)
3075
3139
  @value_type = args[:value_type] if args.key?(:value_type)
3076
3140
  end
@@ -4504,6 +4568,91 @@ module Google
4504
4568
  end
4505
4569
  end
4506
4570
 
4571
+ # The long running operation metadata for delete processor method.
4572
+ class GoogleCloudDocumentaiV1beta3DeleteProcessorMetadata
4573
+ include Google::Apis::Core::Hashable
4574
+
4575
+ # The common metadata for long running operations.
4576
+ # Corresponds to the JSON property `commonMetadata`
4577
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata]
4578
+ attr_accessor :common_metadata
4579
+
4580
+ def initialize(**args)
4581
+ update!(**args)
4582
+ end
4583
+
4584
+ # Update properties of this object
4585
+ def update!(**args)
4586
+ @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
4587
+ end
4588
+ end
4589
+
4590
+ # The long running operation metadata for disable processor method.
4591
+ class GoogleCloudDocumentaiV1beta3DisableProcessorMetadata
4592
+ include Google::Apis::Core::Hashable
4593
+
4594
+ # The common metadata for long running operations.
4595
+ # Corresponds to the JSON property `commonMetadata`
4596
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata]
4597
+ attr_accessor :common_metadata
4598
+
4599
+ def initialize(**args)
4600
+ update!(**args)
4601
+ end
4602
+
4603
+ # Update properties of this object
4604
+ def update!(**args)
4605
+ @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
4606
+ end
4607
+ end
4608
+
4609
+ # Response message for the disable processor method. Intentionally empty proto
4610
+ # for adding fields in future.
4611
+ class GoogleCloudDocumentaiV1beta3DisableProcessorResponse
4612
+ include Google::Apis::Core::Hashable
4613
+
4614
+ def initialize(**args)
4615
+ update!(**args)
4616
+ end
4617
+
4618
+ # Update properties of this object
4619
+ def update!(**args)
4620
+ end
4621
+ end
4622
+
4623
+ # The long running operation metadata for enable processor method.
4624
+ class GoogleCloudDocumentaiV1beta3EnableProcessorMetadata
4625
+ include Google::Apis::Core::Hashable
4626
+
4627
+ # The common metadata for long running operations.
4628
+ # Corresponds to the JSON property `commonMetadata`
4629
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata]
4630
+ attr_accessor :common_metadata
4631
+
4632
+ def initialize(**args)
4633
+ update!(**args)
4634
+ end
4635
+
4636
+ # Update properties of this object
4637
+ def update!(**args)
4638
+ @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
4639
+ end
4640
+ end
4641
+
4642
+ # Response message for the enable processor method. Intentionally empty proto
4643
+ # for adding fields in future.
4644
+ class GoogleCloudDocumentaiV1beta3EnableProcessorResponse
4645
+ include Google::Apis::Core::Hashable
4646
+
4647
+ def initialize(**args)
4648
+ update!(**args)
4649
+ end
4650
+
4651
+ # Update properties of this object
4652
+ def update!(**args)
4653
+ end
4654
+ end
4655
+
4507
4656
  # The status of human review on a processed document.
4508
4657
  class GoogleCloudDocumentaiV1beta3HumanReviewStatus
4509
4658
  include Google::Apis::Core::Hashable
@@ -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.9.0"
19
+ GEM_VERSION = "0.14.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.2.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210507"
25
+ REVISION = "20210625"
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
 
@@ -784,6 +796,36 @@ module Google
784
796
  include Google::Apis::Core::JsonObjectSupport
785
797
  end
786
798
 
799
+ class GoogleCloudDocumentaiV1beta3DeleteProcessorMetadata
800
+ class Representation < Google::Apis::Core::JsonRepresentation; end
801
+
802
+ include Google::Apis::Core::JsonObjectSupport
803
+ end
804
+
805
+ class GoogleCloudDocumentaiV1beta3DisableProcessorMetadata
806
+ class Representation < Google::Apis::Core::JsonRepresentation; end
807
+
808
+ include Google::Apis::Core::JsonObjectSupport
809
+ end
810
+
811
+ class GoogleCloudDocumentaiV1beta3DisableProcessorResponse
812
+ class Representation < Google::Apis::Core::JsonRepresentation; end
813
+
814
+ include Google::Apis::Core::JsonObjectSupport
815
+ end
816
+
817
+ class GoogleCloudDocumentaiV1beta3EnableProcessorMetadata
818
+ class Representation < Google::Apis::Core::JsonRepresentation; end
819
+
820
+ include Google::Apis::Core::JsonObjectSupport
821
+ end
822
+
823
+ class GoogleCloudDocumentaiV1beta3EnableProcessorResponse
824
+ class Representation < Google::Apis::Core::JsonRepresentation; end
825
+
826
+ include Google::Apis::Core::JsonObjectSupport
827
+ end
828
+
787
829
  class GoogleCloudDocumentaiV1beta3HumanReviewStatus
788
830
  class Representation < Google::Apis::Core::JsonRepresentation; end
789
831
 
@@ -955,6 +997,20 @@ module Google
955
997
  end
956
998
  end
957
999
 
1000
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionMetadata
1001
+ # @private
1002
+ class Representation < Google::Apis::Core::JsonRepresentation
1003
+ property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
1004
+
1005
+ end
1006
+ end
1007
+
1008
+ class GoogleCloudDocumentaiUiv1beta3ExportProcessorVersionResponse
1009
+ # @private
1010
+ class Representation < Google::Apis::Core::JsonRepresentation
1011
+ end
1012
+ end
1013
+
958
1014
  class GoogleCloudDocumentaiUiv1beta3SetDefaultProcessorVersionMetadata
959
1015
  # @private
960
1016
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1205,6 +1261,8 @@ module Google
1205
1261
  property :page_number, as: 'pageNumber'
1206
1262
  collection :paragraphs, as: 'paragraphs', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageParagraph, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageParagraph::Representation
1207
1263
 
1264
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentProvenance::Representation
1265
+
1208
1266
  collection :tables, as: 'tables', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageTable, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageTable::Representation
1209
1267
 
1210
1268
  collection :tokens, as: 'tokens', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageToken, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageToken::Representation
@@ -1274,6 +1332,8 @@ module Google
1274
1332
 
1275
1333
  collection :name_detected_languages, as: 'nameDetectedLanguages', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage::Representation
1276
1334
 
1335
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentProvenance::Representation
1336
+
1277
1337
  collection :value_detected_languages, as: 'valueDetectedLanguages', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage::Representation
1278
1338
 
1279
1339
  property :value_type, as: 'valueType'
@@ -1710,6 +1770,8 @@ module Google
1710
1770
  property :page_number, as: 'pageNumber'
1711
1771
  collection :paragraphs, as: 'paragraphs', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageParagraph, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageParagraph::Representation
1712
1772
 
1773
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentProvenance::Representation
1774
+
1713
1775
  collection :tables, as: 'tables', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageTable, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageTable::Representation
1714
1776
 
1715
1777
  collection :tokens, as: 'tokens', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageToken, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageToken::Representation
@@ -1779,6 +1841,8 @@ module Google
1779
1841
 
1780
1842
  collection :name_detected_languages, as: 'nameDetectedLanguages', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage::Representation
1781
1843
 
1844
+ property :provenance, as: 'provenance', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentProvenance, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentProvenance::Representation
1845
+
1782
1846
  collection :value_detected_languages, as: 'valueDetectedLanguages', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta2DocumentPageDetectedLanguage::Representation
1783
1847
 
1784
1848
  property :value_type, as: 'valueType'
@@ -2195,6 +2259,42 @@ module Google
2195
2259
  end
2196
2260
  end
2197
2261
 
2262
+ class GoogleCloudDocumentaiV1beta3DeleteProcessorMetadata
2263
+ # @private
2264
+ class Representation < Google::Apis::Core::JsonRepresentation
2265
+ property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata::Representation
2266
+
2267
+ end
2268
+ end
2269
+
2270
+ class GoogleCloudDocumentaiV1beta3DisableProcessorMetadata
2271
+ # @private
2272
+ class Representation < Google::Apis::Core::JsonRepresentation
2273
+ property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata::Representation
2274
+
2275
+ end
2276
+ end
2277
+
2278
+ class GoogleCloudDocumentaiV1beta3DisableProcessorResponse
2279
+ # @private
2280
+ class Representation < Google::Apis::Core::JsonRepresentation
2281
+ end
2282
+ end
2283
+
2284
+ class GoogleCloudDocumentaiV1beta3EnableProcessorMetadata
2285
+ # @private
2286
+ class Representation < Google::Apis::Core::JsonRepresentation
2287
+ property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata::Representation
2288
+
2289
+ end
2290
+ end
2291
+
2292
+ class GoogleCloudDocumentaiV1beta3EnableProcessorResponse
2293
+ # @private
2294
+ class Representation < Google::Apis::Core::JsonRepresentation
2295
+ end
2296
+ end
2297
+
2198
2298
  class GoogleCloudDocumentaiV1beta3HumanReviewStatus
2199
2299
  # @private
2200
2300
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-documentai_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.14.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-05-18 00:00:00.000000000 Z
11
+ date: 2021-07-05 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 V1beta2. Simple
28
34
  REST clients are Ruby client libraries that provide access to Google services via
29
35
  their 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_v1beta2/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.14.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-documentai_v1beta2
57
63
  post_install_message:
58
64
  rdoc_options: []