google-apis-documentai_v1beta2 0.58.0 → 0.59.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: be3d76a71a34006912a06b0d84249ff1d4fa51ab337ef9fc4bb93336354e7f31
4
- data.tar.gz: dea05aaa44b01b55d5bbbe0d9f91e0e7b1d04b98de7f61a6d6abdeeff89c1777
3
+ metadata.gz: 01dc64d9dccf7b647d7dc3f6ceb50e9b725a7a206501b8e2f34bd78e58777e30
4
+ data.tar.gz: c9b63fe7fb193f9b7f4670e1ade492cef591312e290f31c91c523673d7fb71b8
5
5
  SHA512:
6
- metadata.gz: 0c8d50ee7bfa2a2831cb47d7246950857f458408d2d4e57539484344df1e52c8bee31572ed36462aaee903c5cfff501e5aa5b119febe8f5d922b47a94ce7c89b
7
- data.tar.gz: 2c39eb77932ccc5b91dc9c8560b444a41e91cfd4ce331983b9467dd7c11c1f24b07e2b18752fbf8dbf5fc6e529abece144b6b6317a4d193ebd6a23b044ee726d
6
+ metadata.gz: 8d7ea8eb154aae828c473542413865576d7f6d39264720cde6b74d9d9a99d42c709d7d11d7af779425b53b4fade4601b9ae7a3d196b11369b7044945077de01c
7
+ data.tar.gz: ab94db37723b2da8ea5ec27fa46d90c65b3bbb69c2e92fba5396740cdb55aae75c8bed11a0c6912c42ec5a5baacdf2e3b4eeec6e5975d1cd62295150c9b13a41
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-documentai_v1beta2
2
2
 
3
+ ### v0.59.0 (2023-03-26)
4
+
5
+ * Regenerated from discovery document revision 20230310
6
+
3
7
  ### v0.58.0 (2023-03-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20230302
@@ -6302,6 +6302,44 @@ module Google
6302
6302
  end
6303
6303
  end
6304
6304
 
6305
+ # The long running operation metadata for the ImportProcessorVersion method.
6306
+ class GoogleCloudDocumentaiV1beta3ImportProcessorVersionMetadata
6307
+ include Google::Apis::Core::Hashable
6308
+
6309
+ # The common metadata for long running operations.
6310
+ # Corresponds to the JSON property `commonMetadata`
6311
+ # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata]
6312
+ attr_accessor :common_metadata
6313
+
6314
+ def initialize(**args)
6315
+ update!(**args)
6316
+ end
6317
+
6318
+ # Update properties of this object
6319
+ def update!(**args)
6320
+ @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
6321
+ end
6322
+ end
6323
+
6324
+ # The response message for the ImportProcessorVersion method.
6325
+ class GoogleCloudDocumentaiV1beta3ImportProcessorVersionResponse
6326
+ include Google::Apis::Core::Hashable
6327
+
6328
+ # The destination processor version name.
6329
+ # Corresponds to the JSON property `processorVersion`
6330
+ # @return [String]
6331
+ attr_accessor :processor_version
6332
+
6333
+ def initialize(**args)
6334
+ update!(**args)
6335
+ end
6336
+
6337
+ # Update properties of this object
6338
+ def update!(**args)
6339
+ @processor_version = args[:processor_version] if args.key?(:processor_version)
6340
+ end
6341
+ end
6342
+
6305
6343
  # The long running operation metadata for review document method.
6306
6344
  class GoogleCloudDocumentaiV1beta3ReviewDocumentOperationMetadata
6307
6345
  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.58.0"
19
+ GEM_VERSION = "0.59.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 = "20230302"
25
+ REVISION = "20230310"
26
26
  end
27
27
  end
28
28
  end
@@ -1186,6 +1186,18 @@ module Google
1186
1186
  include Google::Apis::Core::JsonObjectSupport
1187
1187
  end
1188
1188
 
1189
+ class GoogleCloudDocumentaiV1beta3ImportProcessorVersionMetadata
1190
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1191
+
1192
+ include Google::Apis::Core::JsonObjectSupport
1193
+ end
1194
+
1195
+ class GoogleCloudDocumentaiV1beta3ImportProcessorVersionResponse
1196
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1197
+
1198
+ include Google::Apis::Core::JsonObjectSupport
1199
+ end
1200
+
1189
1201
  class GoogleCloudDocumentaiV1beta3ReviewDocumentOperationMetadata
1190
1202
  class Representation < Google::Apis::Core::JsonRepresentation; end
1191
1203
 
@@ -3241,6 +3253,21 @@ module Google
3241
3253
  end
3242
3254
  end
3243
3255
 
3256
+ class GoogleCloudDocumentaiV1beta3ImportProcessorVersionMetadata
3257
+ # @private
3258
+ class Representation < Google::Apis::Core::JsonRepresentation
3259
+ property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata::Representation
3260
+
3261
+ end
3262
+ end
3263
+
3264
+ class GoogleCloudDocumentaiV1beta3ImportProcessorVersionResponse
3265
+ # @private
3266
+ class Representation < Google::Apis::Core::JsonRepresentation
3267
+ property :processor_version, as: 'processorVersion'
3268
+ end
3269
+ end
3270
+
3244
3271
  class GoogleCloudDocumentaiV1beta3ReviewDocumentOperationMetadata
3245
3272
  # @private
3246
3273
  class Representation < Google::Apis::Core::JsonRepresentation
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.58.0
4
+ version: 0.59.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-03-12 00:00:00.000000000 Z
11
+ date: 2023-03-26 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.58.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.59.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: []