google-apis-documentai_v1beta2 0.23.0 → 0.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e1567c737a9f43c77998ad7c9bd4bb676b47796aca39567fd86b8df689e0cb3
|
4
|
+
data.tar.gz: b9ef6018a1525f30a1356379d7aba114b15a804d3d6208e54929b4bff4b88941
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b80cd8740095ef561a5494f4074e19882a93c9e5b6b98a75970983cc3387de7ae5836c9663e4f3665201731c0ae9aa28971f88e0f2954d302f560c8cd1192e2
|
7
|
+
data.tar.gz: 0a7d381f357bf5bd8908748989196a978ab0d717a80e4d3cabd07ea9c4e9f1af191d97c98f4fd5681df15003d49cb51bd50524cef69aee45ca950980f9dce5d2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# Release history for google-apis-documentai_v1beta2
|
2
2
|
|
3
|
+
### v0.27.0 (2022-02-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220129
|
6
|
+
|
7
|
+
### v0.26.0 (2022-01-20)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220114
|
10
|
+
* Regenerated using generator version 0.4.1
|
11
|
+
|
12
|
+
### v0.25.0 (2021-12-16)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20211214
|
15
|
+
* Unspecified changes
|
16
|
+
|
17
|
+
### v0.24.0 (2021-12-07)
|
18
|
+
|
19
|
+
* Regenerated from discovery document revision 20211203
|
20
|
+
|
3
21
|
### v0.23.0 (2021-11-09)
|
4
22
|
|
5
23
|
* Regenerated from discovery document revision 20211105
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/documentai_v1beta2"
|
|
51
51
|
client = Google::Apis::DocumentaiV1beta2::DocumentService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -856,7 +856,7 @@ module Google
|
|
856
856
|
# @return [String]
|
857
857
|
attr_accessor :input_gcs_source
|
858
858
|
|
859
|
-
# The output_gcs_destination (in the request as
|
859
|
+
# The output_gcs_destination (in the request as `output_gcs_destination`) of the
|
860
860
|
# processed document if it was successful, otherwise empty.
|
861
861
|
# Corresponds to the JSON property `outputGcsDestination`
|
862
862
|
# @return [String]
|
@@ -1120,6 +1120,11 @@ module Google
|
|
1120
1120
|
# @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1CommonOperationMetadata]
|
1121
1121
|
attr_accessor :common_metadata
|
1122
1122
|
|
1123
|
+
# The Crowd Compute question ID.
|
1124
|
+
# Corresponds to the JSON property `questionId`
|
1125
|
+
# @return [String]
|
1126
|
+
attr_accessor :question_id
|
1127
|
+
|
1123
1128
|
def initialize(**args)
|
1124
1129
|
update!(**args)
|
1125
1130
|
end
|
@@ -1127,6 +1132,7 @@ module Google
|
|
1127
1132
|
# Update properties of this object
|
1128
1133
|
def update!(**args)
|
1129
1134
|
@common_metadata = args[:common_metadata] if args.key?(:common_metadata)
|
1135
|
+
@question_id = args[:question_id] if args.key?(:question_id)
|
1130
1136
|
end
|
1131
1137
|
end
|
1132
1138
|
|
@@ -1213,6 +1219,68 @@ module Google
|
|
1213
1219
|
end
|
1214
1220
|
end
|
1215
1221
|
|
1222
|
+
# The long running operation metadata for AnalyzeHitlData.
|
1223
|
+
class GoogleCloudDocumentaiV1alpha1AnalyzeHitlDataMetadata
|
1224
|
+
include Google::Apis::Core::Hashable
|
1225
|
+
|
1226
|
+
# The common metadata for long running operations.
|
1227
|
+
# Corresponds to the JSON property `commonMetadata`
|
1228
|
+
# @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1alpha1CommonOperationMetadata]
|
1229
|
+
attr_accessor :common_metadata
|
1230
|
+
|
1231
|
+
def initialize(**args)
|
1232
|
+
update!(**args)
|
1233
|
+
end
|
1234
|
+
|
1235
|
+
# Update properties of this object
|
1236
|
+
def update!(**args)
|
1237
|
+
@common_metadata = args[:common_metadata] if args.key?(:common_metadata)
|
1238
|
+
end
|
1239
|
+
end
|
1240
|
+
|
1241
|
+
# The common metadata for long running operations.
|
1242
|
+
class GoogleCloudDocumentaiV1alpha1CommonOperationMetadata
|
1243
|
+
include Google::Apis::Core::Hashable
|
1244
|
+
|
1245
|
+
# The creation time of the operation.
|
1246
|
+
# Corresponds to the JSON property `createTime`
|
1247
|
+
# @return [String]
|
1248
|
+
attr_accessor :create_time
|
1249
|
+
|
1250
|
+
# A related resource to this operation.
|
1251
|
+
# Corresponds to the JSON property `resource`
|
1252
|
+
# @return [String]
|
1253
|
+
attr_accessor :resource
|
1254
|
+
|
1255
|
+
# The state of the operation.
|
1256
|
+
# Corresponds to the JSON property `state`
|
1257
|
+
# @return [String]
|
1258
|
+
attr_accessor :state
|
1259
|
+
|
1260
|
+
# A message providing more details about the current state of processing.
|
1261
|
+
# Corresponds to the JSON property `stateMessage`
|
1262
|
+
# @return [String]
|
1263
|
+
attr_accessor :state_message
|
1264
|
+
|
1265
|
+
# The last update time of the operation.
|
1266
|
+
# Corresponds to the JSON property `updateTime`
|
1267
|
+
# @return [String]
|
1268
|
+
attr_accessor :update_time
|
1269
|
+
|
1270
|
+
def initialize(**args)
|
1271
|
+
update!(**args)
|
1272
|
+
end
|
1273
|
+
|
1274
|
+
# Update properties of this object
|
1275
|
+
def update!(**args)
|
1276
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
1277
|
+
@resource = args[:resource] if args.key?(:resource)
|
1278
|
+
@state = args[:state] if args.key?(:state)
|
1279
|
+
@state_message = args[:state_message] if args.key?(:state_message)
|
1280
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
1281
|
+
end
|
1282
|
+
end
|
1283
|
+
|
1216
1284
|
# Response to an batch document processing request. This is returned in the LRO
|
1217
1285
|
# Operation after the operation is complete.
|
1218
1286
|
class GoogleCloudDocumentaiV1beta1BatchProcessDocumentsResponse
|
@@ -1363,7 +1431,7 @@ module Google
|
|
1363
1431
|
end
|
1364
1432
|
end
|
1365
1433
|
|
1366
|
-
# An entity that could be a phrase in the text or a property belongs to the
|
1434
|
+
# An entity that could be a phrase in the text or a property that belongs to the
|
1367
1435
|
# document. It is a known entity type, such as a person, an organization, or
|
1368
1436
|
# location.
|
1369
1437
|
class GoogleCloudDocumentaiV1beta1DocumentEntity
|
@@ -1475,14 +1543,8 @@ module Google
|
|
1475
1543
|
attr_accessor :boolean_value
|
1476
1544
|
alias_method :boolean_value?, :boolean_value
|
1477
1545
|
|
1478
|
-
#
|
1479
|
-
#
|
1480
|
-
# date is relative to the Gregorian Calendar. This can represent one of the
|
1481
|
-
# following: * A full date, with non-zero year, month, and day values * A month
|
1482
|
-
# and day value, with a zero year, such as an anniversary * A year on its own,
|
1483
|
-
# with zero month and day values * A year and month value, with a zero day, such
|
1484
|
-
# as a credit card expiration date Related types are google.type.TimeOfDay and `
|
1485
|
-
# google.protobuf.Timestamp`.
|
1546
|
+
# Date value. Includes year, month, day. See also: https://github.com/googleapis/
|
1547
|
+
# googleapis/blob/master/google/type/date.proto
|
1486
1548
|
# Corresponds to the JSON property `dateValue`
|
1487
1549
|
# @return [Google::Apis::DocumentaiV1beta2::GoogleTypeDate]
|
1488
1550
|
attr_accessor :date_value
|
@@ -1521,8 +1583,8 @@ module Google
|
|
1521
1583
|
attr_accessor :money_value
|
1522
1584
|
|
1523
1585
|
# Optional. An optional field to store a normalized string. For some entity
|
1524
|
-
# types, one of respective
|
1525
|
-
# not all the types of
|
1586
|
+
# types, one of respective `structured_value` fields may also be populated. Also
|
1587
|
+
# not all the types of `structured_value` will be normalized. For example, some
|
1526
1588
|
# processors may not generate float or int normalized text by default. Below are
|
1527
1589
|
# sample formats mapped to structured values. - Money/Currency type (`
|
1528
1590
|
# money_value`) is in the ISO 4217 text format. - Date type (`date_value`) is in
|
@@ -2313,8 +2375,8 @@ module Google
|
|
2313
2375
|
end
|
2314
2376
|
end
|
2315
2377
|
|
2316
|
-
#
|
2317
|
-
#
|
2378
|
+
# The parent element the current element is based on. Used for referencing/
|
2379
|
+
# aligning, removal and replacement operations.
|
2318
2380
|
class GoogleCloudDocumentaiV1beta1DocumentProvenanceParent
|
2319
2381
|
include Google::Apis::Core::Hashable
|
2320
2382
|
|
@@ -2324,12 +2386,12 @@ module Google
|
|
2324
2386
|
attr_accessor :id
|
2325
2387
|
|
2326
2388
|
# The index of the parent item in the corresponding item list (eg. list of
|
2327
|
-
# entities, properties within entities, etc.)
|
2389
|
+
# entities, properties within entities, etc.) in the parent revision.
|
2328
2390
|
# Corresponds to the JSON property `index`
|
2329
2391
|
# @return [Fixnum]
|
2330
2392
|
attr_accessor :index
|
2331
2393
|
|
2332
|
-
# The index of the
|
2394
|
+
# The index of the index into current revision's parent_ids list.
|
2333
2395
|
# Corresponds to the JSON property `revision`
|
2334
2396
|
# @return [Fixnum]
|
2335
2397
|
attr_accessor :revision
|
@@ -2377,6 +2439,13 @@ module Google
|
|
2377
2439
|
# @return [Array<Fixnum>]
|
2378
2440
|
attr_accessor :parent
|
2379
2441
|
|
2442
|
+
# The revisions that this revision is based on. Must include all the ids that
|
2443
|
+
# have anything to do with this revision - eg. there are `provenance.parent.
|
2444
|
+
# revision` fields that index into this field.
|
2445
|
+
# Corresponds to the JSON property `parentIds`
|
2446
|
+
# @return [Array<String>]
|
2447
|
+
attr_accessor :parent_ids
|
2448
|
+
|
2380
2449
|
# If the annotation was made by processor identify the processor by its resource
|
2381
2450
|
# name.
|
2382
2451
|
# Corresponds to the JSON property `processor`
|
@@ -2394,6 +2463,7 @@ module Google
|
|
2394
2463
|
@human_review = args[:human_review] if args.key?(:human_review)
|
2395
2464
|
@id = args[:id] if args.key?(:id)
|
2396
2465
|
@parent = args[:parent] if args.key?(:parent)
|
2466
|
+
@parent_ids = args[:parent_ids] if args.key?(:parent_ids)
|
2397
2467
|
@processor = args[:processor] if args.key?(:processor)
|
2398
2468
|
end
|
2399
2469
|
end
|
@@ -3122,7 +3192,7 @@ module Google
|
|
3122
3192
|
end
|
3123
3193
|
end
|
3124
3194
|
|
3125
|
-
# An entity that could be a phrase in the text or a property belongs to the
|
3195
|
+
# An entity that could be a phrase in the text or a property that belongs to the
|
3126
3196
|
# document. It is a known entity type, such as a person, an organization, or
|
3127
3197
|
# location.
|
3128
3198
|
class GoogleCloudDocumentaiV1beta2DocumentEntity
|
@@ -3234,14 +3304,8 @@ module Google
|
|
3234
3304
|
attr_accessor :boolean_value
|
3235
3305
|
alias_method :boolean_value?, :boolean_value
|
3236
3306
|
|
3237
|
-
#
|
3238
|
-
#
|
3239
|
-
# date is relative to the Gregorian Calendar. This can represent one of the
|
3240
|
-
# following: * A full date, with non-zero year, month, and day values * A month
|
3241
|
-
# and day value, with a zero year, such as an anniversary * A year on its own,
|
3242
|
-
# with zero month and day values * A year and month value, with a zero day, such
|
3243
|
-
# as a credit card expiration date Related types are google.type.TimeOfDay and `
|
3244
|
-
# google.protobuf.Timestamp`.
|
3307
|
+
# Date value. Includes year, month, day. See also: https://github.com/googleapis/
|
3308
|
+
# googleapis/blob/master/google/type/date.proto
|
3245
3309
|
# Corresponds to the JSON property `dateValue`
|
3246
3310
|
# @return [Google::Apis::DocumentaiV1beta2::GoogleTypeDate]
|
3247
3311
|
attr_accessor :date_value
|
@@ -3280,8 +3344,8 @@ module Google
|
|
3280
3344
|
attr_accessor :money_value
|
3281
3345
|
|
3282
3346
|
# Optional. An optional field to store a normalized string. For some entity
|
3283
|
-
# types, one of respective
|
3284
|
-
# not all the types of
|
3347
|
+
# types, one of respective `structured_value` fields may also be populated. Also
|
3348
|
+
# not all the types of `structured_value` will be normalized. For example, some
|
3285
3349
|
# processors may not generate float or int normalized text by default. Below are
|
3286
3350
|
# sample formats mapped to structured values. - Money/Currency type (`
|
3287
3351
|
# money_value`) is in the ISO 4217 text format. - Date type (`date_value`) is in
|
@@ -4109,8 +4173,8 @@ module Google
|
|
4109
4173
|
end
|
4110
4174
|
end
|
4111
4175
|
|
4112
|
-
#
|
4113
|
-
#
|
4176
|
+
# The parent element the current element is based on. Used for referencing/
|
4177
|
+
# aligning, removal and replacement operations.
|
4114
4178
|
class GoogleCloudDocumentaiV1beta2DocumentProvenanceParent
|
4115
4179
|
include Google::Apis::Core::Hashable
|
4116
4180
|
|
@@ -4120,12 +4184,12 @@ module Google
|
|
4120
4184
|
attr_accessor :id
|
4121
4185
|
|
4122
4186
|
# The index of the parent item in the corresponding item list (eg. list of
|
4123
|
-
# entities, properties within entities, etc.)
|
4187
|
+
# entities, properties within entities, etc.) in the parent revision.
|
4124
4188
|
# Corresponds to the JSON property `index`
|
4125
4189
|
# @return [Fixnum]
|
4126
4190
|
attr_accessor :index
|
4127
4191
|
|
4128
|
-
# The index of the
|
4192
|
+
# The index of the index into current revision's parent_ids list.
|
4129
4193
|
# Corresponds to the JSON property `revision`
|
4130
4194
|
# @return [Fixnum]
|
4131
4195
|
attr_accessor :revision
|
@@ -4173,6 +4237,13 @@ module Google
|
|
4173
4237
|
# @return [Array<Fixnum>]
|
4174
4238
|
attr_accessor :parent
|
4175
4239
|
|
4240
|
+
# The revisions that this revision is based on. Must include all the ids that
|
4241
|
+
# have anything to do with this revision - eg. there are `provenance.parent.
|
4242
|
+
# revision` fields that index into this field.
|
4243
|
+
# Corresponds to the JSON property `parentIds`
|
4244
|
+
# @return [Array<String>]
|
4245
|
+
attr_accessor :parent_ids
|
4246
|
+
|
4176
4247
|
# If the annotation was made by processor identify the processor by its resource
|
4177
4248
|
# name.
|
4178
4249
|
# Corresponds to the JSON property `processor`
|
@@ -4190,6 +4261,7 @@ module Google
|
|
4190
4261
|
@human_review = args[:human_review] if args.key?(:human_review)
|
4191
4262
|
@id = args[:id] if args.key?(:id)
|
4192
4263
|
@parent = args[:parent] if args.key?(:parent)
|
4264
|
+
@parent_ids = args[:parent_ids] if args.key?(:parent_ids)
|
4193
4265
|
@processor = args[:processor] if args.key?(:processor)
|
4194
4266
|
end
|
4195
4267
|
end
|
@@ -5054,7 +5126,7 @@ module Google
|
|
5054
5126
|
# @return [String]
|
5055
5127
|
attr_accessor :input_gcs_source
|
5056
5128
|
|
5057
|
-
# The output_gcs_destination (in the request as
|
5129
|
+
# The output_gcs_destination (in the request as `output_gcs_destination`) of the
|
5058
5130
|
# processed document if it was successful, otherwise empty.
|
5059
5131
|
# Corresponds to the JSON property `outputGcsDestination`
|
5060
5132
|
# @return [String]
|
@@ -5324,6 +5396,11 @@ module Google
|
|
5324
5396
|
# @return [String]
|
5325
5397
|
attr_accessor :create_time
|
5326
5398
|
|
5399
|
+
# The Crowd Compute question ID.
|
5400
|
+
# Corresponds to the JSON property `questionId`
|
5401
|
+
# @return [String]
|
5402
|
+
attr_accessor :question_id
|
5403
|
+
|
5327
5404
|
# Used only when Operation.done is false.
|
5328
5405
|
# Corresponds to the JSON property `state`
|
5329
5406
|
# @return [String]
|
@@ -5348,6 +5425,7 @@ module Google
|
|
5348
5425
|
def update!(**args)
|
5349
5426
|
@common_metadata = args[:common_metadata] if args.key?(:common_metadata)
|
5350
5427
|
@create_time = args[:create_time] if args.key?(:create_time)
|
5428
|
+
@question_id = args[:question_id] if args.key?(:question_id)
|
5351
5429
|
@state = args[:state] if args.key?(:state)
|
5352
5430
|
@state_message = args[:state_message] if args.key?(:state_message)
|
5353
5431
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -5643,14 +5721,7 @@ module Google
|
|
5643
5721
|
end
|
5644
5722
|
end
|
5645
5723
|
|
5646
|
-
#
|
5647
|
-
# day and time zone are either specified elsewhere or are insignificant. The
|
5648
|
-
# date is relative to the Gregorian Calendar. This can represent one of the
|
5649
|
-
# following: * A full date, with non-zero year, month, and day values * A month
|
5650
|
-
# and day value, with a zero year, such as an anniversary * A year on its own,
|
5651
|
-
# with zero month and day values * A year and month value, with a zero day, such
|
5652
|
-
# as a credit card expiration date Related types are google.type.TimeOfDay and `
|
5653
|
-
# google.protobuf.Timestamp`.
|
5724
|
+
#
|
5654
5725
|
class GoogleTypeDate
|
5655
5726
|
include Google::Apis::Core::Hashable
|
5656
5727
|
|
@@ -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.27.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220129"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -352,6 +352,18 @@ module Google
|
|
352
352
|
include Google::Apis::Core::JsonObjectSupport
|
353
353
|
end
|
354
354
|
|
355
|
+
class GoogleCloudDocumentaiV1alpha1AnalyzeHitlDataMetadata
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
|
+
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
359
|
+
end
|
360
|
+
|
361
|
+
class GoogleCloudDocumentaiV1alpha1CommonOperationMetadata
|
362
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
|
+
|
364
|
+
include Google::Apis::Core::JsonObjectSupport
|
365
|
+
end
|
366
|
+
|
355
367
|
class GoogleCloudDocumentaiV1beta1BatchProcessDocumentsResponse
|
356
368
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
369
|
|
@@ -1489,6 +1501,7 @@ module Google
|
|
1489
1501
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1490
1502
|
property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1CommonOperationMetadata::Representation
|
1491
1503
|
|
1504
|
+
property :question_id, as: 'questionId'
|
1492
1505
|
end
|
1493
1506
|
end
|
1494
1507
|
|
@@ -1527,6 +1540,25 @@ module Google
|
|
1527
1540
|
end
|
1528
1541
|
end
|
1529
1542
|
|
1543
|
+
class GoogleCloudDocumentaiV1alpha1AnalyzeHitlDataMetadata
|
1544
|
+
# @private
|
1545
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1546
|
+
property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1alpha1CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1alpha1CommonOperationMetadata::Representation
|
1547
|
+
|
1548
|
+
end
|
1549
|
+
end
|
1550
|
+
|
1551
|
+
class GoogleCloudDocumentaiV1alpha1CommonOperationMetadata
|
1552
|
+
# @private
|
1553
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1554
|
+
property :create_time, as: 'createTime'
|
1555
|
+
property :resource, as: 'resource'
|
1556
|
+
property :state, as: 'state'
|
1557
|
+
property :state_message, as: 'stateMessage'
|
1558
|
+
property :update_time, as: 'updateTime'
|
1559
|
+
end
|
1560
|
+
end
|
1561
|
+
|
1530
1562
|
class GoogleCloudDocumentaiV1beta1BatchProcessDocumentsResponse
|
1531
1563
|
# @private
|
1532
1564
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1872,6 +1904,7 @@ module Google
|
|
1872
1904
|
|
1873
1905
|
property :id, as: 'id'
|
1874
1906
|
collection :parent, as: 'parent'
|
1907
|
+
collection :parent_ids, as: 'parentIds'
|
1875
1908
|
property :processor, as: 'processor'
|
1876
1909
|
end
|
1877
1910
|
end
|
@@ -2385,6 +2418,7 @@ module Google
|
|
2385
2418
|
|
2386
2419
|
property :id, as: 'id'
|
2387
2420
|
collection :parent, as: 'parent'
|
2421
|
+
collection :parent_ids, as: 'parentIds'
|
2388
2422
|
property :processor, as: 'processor'
|
2389
2423
|
end
|
2390
2424
|
end
|
@@ -2718,6 +2752,7 @@ module Google
|
|
2718
2752
|
property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata::Representation
|
2719
2753
|
|
2720
2754
|
property :create_time, as: 'createTime'
|
2755
|
+
property :question_id, as: 'questionId'
|
2721
2756
|
property :state, as: 'state'
|
2722
2757
|
property :state_message, as: 'stateMessage'
|
2723
2758
|
property :update_time, as: 'updateTime'
|
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.27.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:
|
11
|
+
date: 2022-02-07 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.27.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Document AI API V1beta2
|