google-apis-documentai_v1beta2 0.38.0 → 0.39.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: bc832ac4687557b98bc6cdcd75f356e06d39d4d8766f1d8ecfe3f761514cdda5
|
|
4
|
+
data.tar.gz: 6bd8466372d237482f368ca3d0d82011daee1de57185d858dc92ae70df2859f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a9a75da05c066d85737d7656f61245972ff49e8641f2c0535c9b317830ed33711a909c13aa089f8cf80bf59d93d9e107e07cc65273763e3f03e50fdc3aefbf65
|
|
7
|
+
data.tar.gz: e983bae73b97c75596ec1ca4f8166f5000565eacd94be99a16735d31d411543d9abda64e51c7cd062a20aaa09dfd6605b5524fb90a3550362510a955a47900a4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-documentai_v1beta2
|
|
2
2
|
|
|
3
|
+
### v0.39.0 (2022-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20220610
|
|
6
|
+
* Regenerated using generator version 0.6.0
|
|
7
|
+
|
|
3
8
|
### v0.38.0 (2022-06-08)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20220602
|
|
@@ -1278,11 +1278,22 @@ module Google
|
|
|
1278
1278
|
class GoogleCloudDocumentaiV1ReviewDocumentResponse
|
|
1279
1279
|
include Google::Apis::Core::Hashable
|
|
1280
1280
|
|
|
1281
|
-
# The Cloud Storage uri for the human reviewed document
|
|
1281
|
+
# The Cloud Storage uri for the human reviewed document if the review is
|
|
1282
|
+
# succeeded.
|
|
1282
1283
|
# Corresponds to the JSON property `gcsDestination`
|
|
1283
1284
|
# @return [String]
|
|
1284
1285
|
attr_accessor :gcs_destination
|
|
1285
1286
|
|
|
1287
|
+
# The reason why the review is rejected by reviewer.
|
|
1288
|
+
# Corresponds to the JSON property `rejectionReason`
|
|
1289
|
+
# @return [String]
|
|
1290
|
+
attr_accessor :rejection_reason
|
|
1291
|
+
|
|
1292
|
+
# The state of the review operation.
|
|
1293
|
+
# Corresponds to the JSON property `state`
|
|
1294
|
+
# @return [String]
|
|
1295
|
+
attr_accessor :state
|
|
1296
|
+
|
|
1286
1297
|
def initialize(**args)
|
|
1287
1298
|
update!(**args)
|
|
1288
1299
|
end
|
|
@@ -1290,6 +1301,8 @@ module Google
|
|
|
1290
1301
|
# Update properties of this object
|
|
1291
1302
|
def update!(**args)
|
|
1292
1303
|
@gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
|
|
1304
|
+
@rejection_reason = args[:rejection_reason] if args.key?(:rejection_reason)
|
|
1305
|
+
@state = args[:state] if args.key?(:state)
|
|
1293
1306
|
end
|
|
1294
1307
|
end
|
|
1295
1308
|
|
|
@@ -5668,11 +5681,22 @@ module Google
|
|
|
5668
5681
|
class GoogleCloudDocumentaiV1beta3ReviewDocumentResponse
|
|
5669
5682
|
include Google::Apis::Core::Hashable
|
|
5670
5683
|
|
|
5671
|
-
# The Cloud Storage uri for the human reviewed document
|
|
5684
|
+
# The Cloud Storage uri for the human reviewed document if the review is
|
|
5685
|
+
# succeeded.
|
|
5672
5686
|
# Corresponds to the JSON property `gcsDestination`
|
|
5673
5687
|
# @return [String]
|
|
5674
5688
|
attr_accessor :gcs_destination
|
|
5675
5689
|
|
|
5690
|
+
# The reason why the review is rejected by reviewer.
|
|
5691
|
+
# Corresponds to the JSON property `rejectionReason`
|
|
5692
|
+
# @return [String]
|
|
5693
|
+
attr_accessor :rejection_reason
|
|
5694
|
+
|
|
5695
|
+
# The state of the review operation.
|
|
5696
|
+
# Corresponds to the JSON property `state`
|
|
5697
|
+
# @return [String]
|
|
5698
|
+
attr_accessor :state
|
|
5699
|
+
|
|
5676
5700
|
def initialize(**args)
|
|
5677
5701
|
update!(**args)
|
|
5678
5702
|
end
|
|
@@ -5680,6 +5704,8 @@ module Google
|
|
|
5680
5704
|
# Update properties of this object
|
|
5681
5705
|
def update!(**args)
|
|
5682
5706
|
@gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
|
|
5707
|
+
@rejection_reason = args[:rejection_reason] if args.key?(:rejection_reason)
|
|
5708
|
+
@state = args[:state] if args.key?(:state)
|
|
5683
5709
|
end
|
|
5684
5710
|
end
|
|
5685
5711
|
|
|
@@ -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.39.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.6.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220610"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1598,6 +1598,8 @@ module Google
|
|
|
1598
1598
|
# @private
|
|
1599
1599
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1600
1600
|
property :gcs_destination, as: 'gcsDestination'
|
|
1601
|
+
property :rejection_reason, as: 'rejectionReason'
|
|
1602
|
+
property :state, as: 'state'
|
|
1601
1603
|
end
|
|
1602
1604
|
end
|
|
1603
1605
|
|
|
@@ -2878,6 +2880,8 @@ module Google
|
|
|
2878
2880
|
# @private
|
|
2879
2881
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2880
2882
|
property :gcs_destination, as: 'gcsDestination'
|
|
2883
|
+
property :rejection_reason, as: 'rejectionReason'
|
|
2884
|
+
property :state, as: 'state'
|
|
2881
2885
|
end
|
|
2882
2886
|
end
|
|
2883
2887
|
|
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.39.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-06-
|
|
11
|
+
date: 2022-06-20 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.39.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: []
|