google-apis-documentai_v1beta3 0.77.0 → 0.78.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: f2feb1428413253c80ba6c3b428a66cac71aa501ed16da7295b8cd64564e0f2d
|
|
4
|
+
data.tar.gz: 4c750aa253a764085e9395ce9f406d4e52758aeffcdaa5331dea05be6d9aabcf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7c59fb50cb84eb8540668ce57b434f1eb1b8d359a96a116957a943b04ba13fa9445d31fa09db785ec838a4d8e82b9750e9d57adc0f8ea255abc69f38b56993f
|
|
7
|
+
data.tar.gz: d623e16eef23c03962b9c00e1b63e6f8b4caf46ed1c9167b3bb15126fe28f7af3691540fada859252c2d2b33d237b2245439987210c141d69ece8da04700aa09
|
data/CHANGELOG.md
CHANGED
|
@@ -6370,6 +6370,11 @@ module Google
|
|
|
6370
6370
|
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3GcsPrefix]
|
|
6371
6371
|
attr_accessor :gcs_prefix
|
|
6372
6372
|
|
|
6373
|
+
# Specifies a set of raw documents.
|
|
6374
|
+
# Corresponds to the JSON property `rawDocuments`
|
|
6375
|
+
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3RawDocuments]
|
|
6376
|
+
attr_accessor :raw_documents
|
|
6377
|
+
|
|
6373
6378
|
def initialize(**args)
|
|
6374
6379
|
update!(**args)
|
|
6375
6380
|
end
|
|
@@ -6378,6 +6383,7 @@ module Google
|
|
|
6378
6383
|
def update!(**args)
|
|
6379
6384
|
@gcs_documents = args[:gcs_documents] if args.key?(:gcs_documents)
|
|
6380
6385
|
@gcs_prefix = args[:gcs_prefix] if args.key?(:gcs_prefix)
|
|
6386
|
+
@raw_documents = args[:raw_documents] if args.key?(:raw_documents)
|
|
6381
6387
|
end
|
|
6382
6388
|
end
|
|
6383
6389
|
|
|
@@ -10407,7 +10413,7 @@ module Google
|
|
|
10407
10413
|
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentSchema]
|
|
10408
10414
|
attr_accessor :document_schema
|
|
10409
10415
|
|
|
10410
|
-
# Denotes that this `ProcessorVersion` is managed by Google.
|
|
10416
|
+
# Output only. Denotes that this `ProcessorVersion` is managed by Google.
|
|
10411
10417
|
# Corresponds to the JSON property `googleManaged`
|
|
10412
10418
|
# @return [Boolean]
|
|
10413
10419
|
attr_accessor :google_managed
|
|
@@ -10530,6 +10536,25 @@ module Google
|
|
|
10530
10536
|
end
|
|
10531
10537
|
end
|
|
10532
10538
|
|
|
10539
|
+
# Specifies a set of raw documents.
|
|
10540
|
+
class GoogleCloudDocumentaiV1beta3RawDocuments
|
|
10541
|
+
include Google::Apis::Core::Hashable
|
|
10542
|
+
|
|
10543
|
+
# Specifies raw document content and mime type.
|
|
10544
|
+
# Corresponds to the JSON property `documents`
|
|
10545
|
+
# @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3RawDocument>]
|
|
10546
|
+
attr_accessor :documents
|
|
10547
|
+
|
|
10548
|
+
def initialize(**args)
|
|
10549
|
+
update!(**args)
|
|
10550
|
+
end
|
|
10551
|
+
|
|
10552
|
+
# Update properties of this object
|
|
10553
|
+
def update!(**args)
|
|
10554
|
+
@documents = args[:documents] if args.key?(:documents)
|
|
10555
|
+
end
|
|
10556
|
+
end
|
|
10557
|
+
|
|
10533
10558
|
# The long-running operation metadata for the ReviewDocument method.
|
|
10534
10559
|
class GoogleCloudDocumentaiV1beta3ReviewDocumentOperationMetadata
|
|
10535
10560
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DocumentaiV1beta3
|
|
18
18
|
# Version of the google-apis-documentai_v1beta3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.78.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230719"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1822,6 +1822,12 @@ module Google
|
|
|
1822
1822
|
include Google::Apis::Core::JsonObjectSupport
|
|
1823
1823
|
end
|
|
1824
1824
|
|
|
1825
|
+
class GoogleCloudDocumentaiV1beta3RawDocuments
|
|
1826
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1827
|
+
|
|
1828
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1829
|
+
end
|
|
1830
|
+
|
|
1825
1831
|
class GoogleCloudDocumentaiV1beta3ReviewDocumentOperationMetadata
|
|
1826
1832
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1827
1833
|
|
|
@@ -3892,6 +3898,8 @@ module Google
|
|
|
3892
3898
|
|
|
3893
3899
|
property :gcs_prefix, as: 'gcsPrefix', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3GcsPrefix, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3GcsPrefix::Representation
|
|
3894
3900
|
|
|
3901
|
+
property :raw_documents, as: 'rawDocuments', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3RawDocuments, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3RawDocuments::Representation
|
|
3902
|
+
|
|
3895
3903
|
end
|
|
3896
3904
|
end
|
|
3897
3905
|
|
|
@@ -5111,6 +5119,14 @@ module Google
|
|
|
5111
5119
|
end
|
|
5112
5120
|
end
|
|
5113
5121
|
|
|
5122
|
+
class GoogleCloudDocumentaiV1beta3RawDocuments
|
|
5123
|
+
# @private
|
|
5124
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5125
|
+
collection :documents, as: 'documents', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3RawDocument, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3RawDocument::Representation
|
|
5126
|
+
|
|
5127
|
+
end
|
|
5128
|
+
end
|
|
5129
|
+
|
|
5114
5130
|
class GoogleCloudDocumentaiV1beta3ReviewDocumentOperationMetadata
|
|
5115
5131
|
# @private
|
|
5116
5132
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-documentai_v1beta3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.78.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: 2023-07-
|
|
11
|
+
date: 2023-07-23 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_v1beta3/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.78.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta3
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|