google-apis-documentai_v1 0.69.0 → 0.70.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: ce89a709df8bf1971bd9242407ba2f2f94e9eef17475ddbb3483c3ffb6ff2256
4
- data.tar.gz: 6686d2a00ab1d4fa85f6d947ca1c943f6673170ef5379e354ae541a2392c6fda
3
+ metadata.gz: 8f62428ab4057ab7d142378597bc91dff52f5c062f9919f8fe51373bcba053f9
4
+ data.tar.gz: 32cfd53eb2c5ffbf7a2d80d02d6f0baa6b80c3e5eb1d35fded48f8b7b565e305
5
5
  SHA512:
6
- metadata.gz: 41465e7d1a0610bea2e160bec4792edf39f78110d21b4b983a38e9f6b8d71ae5cc98d819eb9cfb750d96c546c69ae3b3b5990d0b7172bd77328994abe66b6593
7
- data.tar.gz: 2f8098594f0048a1d9488ee26ba59c78011f0df5b347c17b57a7ef72a4ebdc4ba0fab59cf6e1cacddd238e6394338e5e91fdf93ae2e2d04fae39622839f3c289
6
+ metadata.gz: 17c6a2395cd9a001c80ba4c0313d09d28128eec3d7171a9653bd851f1d69e6a35372fc38eadf0e3fa62c7f3b65e112f05fcd9c94bfefc5dfec18756ee49166ef
7
+ data.tar.gz: e2e22e25dc67eb3b1543569c37376fe324b27041478ae6823022b95eaa402593524c9cfb0609b550999c21718b8d99b506eeb78850ac3b7dbd1abd39c1bf11db
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-documentai_v1
2
2
 
3
+ ### v0.70.0 (2023-07-23)
4
+
5
+ * Regenerated from discovery document revision 20230719
6
+
3
7
  ### v0.69.0 (2023-07-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20230706
@@ -1393,6 +1393,11 @@ module Google
1393
1393
  # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1GcsPrefix]
1394
1394
  attr_accessor :gcs_prefix
1395
1395
 
1396
+ # Specifies a set of raw documents.
1397
+ # Corresponds to the JSON property `rawDocuments`
1398
+ # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1RawDocuments]
1399
+ attr_accessor :raw_documents
1400
+
1396
1401
  def initialize(**args)
1397
1402
  update!(**args)
1398
1403
  end
@@ -1401,6 +1406,7 @@ module Google
1401
1406
  def update!(**args)
1402
1407
  @gcs_documents = args[:gcs_documents] if args.key?(:gcs_documents)
1403
1408
  @gcs_prefix = args[:gcs_prefix] if args.key?(:gcs_prefix)
1409
+ @raw_documents = args[:raw_documents] if args.key?(:raw_documents)
1404
1410
  end
1405
1411
  end
1406
1412
 
@@ -4812,7 +4818,7 @@ module Google
4812
4818
  # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchema]
4813
4819
  attr_accessor :document_schema
4814
4820
 
4815
- # Denotes that this `ProcessorVersion` is managed by Google.
4821
+ # Output only. Denotes that this `ProcessorVersion` is managed by Google.
4816
4822
  # Corresponds to the JSON property `googleManaged`
4817
4823
  # @return [Boolean]
4818
4824
  attr_accessor :google_managed
@@ -4915,6 +4921,25 @@ module Google
4915
4921
  end
4916
4922
  end
4917
4923
 
4924
+ # Specifies a set of raw documents.
4925
+ class GoogleCloudDocumentaiV1RawDocuments
4926
+ include Google::Apis::Core::Hashable
4927
+
4928
+ # Specifies raw document content and mime type.
4929
+ # Corresponds to the JSON property `documents`
4930
+ # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1RawDocument>]
4931
+ attr_accessor :documents
4932
+
4933
+ def initialize(**args)
4934
+ update!(**args)
4935
+ end
4936
+
4937
+ # Update properties of this object
4938
+ def update!(**args)
4939
+ @documents = args[:documents] if args.key?(:documents)
4940
+ end
4941
+ end
4942
+
4918
4943
  # The long-running operation metadata for the ReviewDocument method.
4919
4944
  class GoogleCloudDocumentaiV1ReviewDocumentOperationMetadata
4920
4945
  include Google::Apis::Core::Hashable
@@ -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.69.0"
19
+ GEM_VERSION = "0.70.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 = "20230706"
25
+ REVISION = "20230719"
26
26
  end
27
27
  end
28
28
  end
@@ -916,6 +916,12 @@ module Google
916
916
  include Google::Apis::Core::JsonObjectSupport
917
917
  end
918
918
 
919
+ class GoogleCloudDocumentaiV1RawDocuments
920
+ class Representation < Google::Apis::Core::JsonRepresentation; end
921
+
922
+ include Google::Apis::Core::JsonObjectSupport
923
+ end
924
+
919
925
  class GoogleCloudDocumentaiV1ReviewDocumentOperationMetadata
920
926
  class Representation < Google::Apis::Core::JsonRepresentation; end
921
927
 
@@ -2419,6 +2425,8 @@ module Google
2419
2425
 
2420
2426
  property :gcs_prefix, as: 'gcsPrefix', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1GcsPrefix, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1GcsPrefix::Representation
2421
2427
 
2428
+ property :raw_documents, as: 'rawDocuments', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1RawDocuments, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1RawDocuments::Representation
2429
+
2422
2430
  end
2423
2431
  end
2424
2432
 
@@ -3422,6 +3430,14 @@ module Google
3422
3430
  end
3423
3431
  end
3424
3432
 
3433
+ class GoogleCloudDocumentaiV1RawDocuments
3434
+ # @private
3435
+ class Representation < Google::Apis::Core::JsonRepresentation
3436
+ collection :documents, as: 'documents', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1RawDocument, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1RawDocument::Representation
3437
+
3438
+ end
3439
+ end
3440
+
3425
3441
  class GoogleCloudDocumentaiV1ReviewDocumentOperationMetadata
3426
3442
  # @private
3427
3443
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-documentai_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.69.0
4
+ version: 0.70.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-16 00:00:00.000000000 Z
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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.69.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.70.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1
63
63
  post_install_message:
64
64
  rdoc_options: []