google-apis-documentai_v1beta3 0.31.0 → 0.32.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: 4ee41e8acfe80eacd1cafd5425c4eb79a41448f30c1f892f45c6ed03ea4258c2
4
- data.tar.gz: 6a4f35190c4495a4dcdc963e83d4899ad668efc1ced592f5c5e6d6e88bddde8e
3
+ metadata.gz: 67ebc6f151b9404d2a3e7d006f589837d7a462950090b65c5e98f6cb9fa14304
4
+ data.tar.gz: 5cdc9a47634d9a70ca3264e1508408575f8bfde27b6cdf1d5c6129c66f867ec2
5
5
  SHA512:
6
- metadata.gz: 8f260df20b0af5840ab0ef2dc0748163e9011672910c9d8327bf4893f9d89bdacd0f1f90f2bef99d0f8ce1bcf950964434bdcfb9c9c0c00057e53125c8ec010a
7
- data.tar.gz: 817e7362a344c7e3350364676f02750c56d1c6d3fce175257101b954f7549be1086f01f8ff18ddb2178e3c403d3c35bb042b8ce24f78323a4bc9d5802bad45f8
6
+ metadata.gz: 2e9187a38a88556c347b17a27e445105018f42f2af7378557843f7705a3485d8f29c982f63aa30ab4517288c14f9db58b6146df499a5391972cb1e1316d4175d
7
+ data.tar.gz: 1a94120522ef3f8828e16ebb1920cad716f54a630ad6be2dd0bbd6f00a784ca5d443c342fc4e28155cda17eefd00216ede6b8454fd6eb74fda79ef5dec60e7fa
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-documentai_v1beta3
2
2
 
3
+ ### v0.32.0 (2022-02-01)
4
+
5
+ * Regenerated from discovery document revision 20220129
6
+
3
7
  ### v0.31.0 (2022-01-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20220114
@@ -1219,6 +1219,68 @@ module Google
1219
1219
  end
1220
1220
  end
1221
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::DocumentaiV1beta3::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
+
1222
1284
  # Response to an batch document processing request. This is returned in the LRO
1223
1285
  # Operation after the operation is complete.
1224
1286
  class GoogleCloudDocumentaiV1beta1BatchProcessDocumentsResponse
@@ -1481,14 +1543,8 @@ module Google
1481
1543
  attr_accessor :boolean_value
1482
1544
  alias_method :boolean_value?, :boolean_value
1483
1545
 
1484
- # Represents a whole or partial calendar date, such as a birthday. The time of
1485
- # day and time zone are either specified elsewhere or are insignificant. The
1486
- # date is relative to the Gregorian Calendar. This can represent one of the
1487
- # following: * A full date, with non-zero year, month, and day values * A month
1488
- # and day value, with a zero year, such as an anniversary * A year on its own,
1489
- # with zero month and day values * A year and month value, with a zero day, such
1490
- # as a credit card expiration date Related types are google.type.TimeOfDay and `
1491
- # google.protobuf.Timestamp`.
1546
+ # Date value. Includes year, month, day. See also: https://github.com/googleapis/
1547
+ # googleapis/blob/master/google/type/date.proto
1492
1548
  # Corresponds to the JSON property `dateValue`
1493
1549
  # @return [Google::Apis::DocumentaiV1beta3::GoogleTypeDate]
1494
1550
  attr_accessor :date_value
@@ -3208,14 +3264,8 @@ module Google
3208
3264
  attr_accessor :boolean_value
3209
3265
  alias_method :boolean_value?, :boolean_value
3210
3266
 
3211
- # Represents a whole or partial calendar date, such as a birthday. The time of
3212
- # day and time zone are either specified elsewhere or are insignificant. The
3213
- # date is relative to the Gregorian Calendar. This can represent one of the
3214
- # following: * A full date, with non-zero year, month, and day values * A month
3215
- # and day value, with a zero year, such as an anniversary * A year on its own,
3216
- # with zero month and day values * A year and month value, with a zero day, such
3217
- # as a credit card expiration date Related types are google.type.TimeOfDay and `
3218
- # google.protobuf.Timestamp`.
3267
+ # Date value. Includes year, month, day. See also: https://github.com/googleapis/
3268
+ # googleapis/blob/master/google/type/date.proto
3219
3269
  # Corresponds to the JSON property `dateValue`
3220
3270
  # @return [Google::Apis::DocumentaiV1beta3::GoogleTypeDate]
3221
3271
  attr_accessor :date_value
@@ -5357,14 +5407,8 @@ module Google
5357
5407
  attr_accessor :boolean_value
5358
5408
  alias_method :boolean_value?, :boolean_value
5359
5409
 
5360
- # Represents a whole or partial calendar date, such as a birthday. The time of
5361
- # day and time zone are either specified elsewhere or are insignificant. The
5362
- # date is relative to the Gregorian Calendar. This can represent one of the
5363
- # following: * A full date, with non-zero year, month, and day values * A month
5364
- # and day value, with a zero year, such as an anniversary * A year on its own,
5365
- # with zero month and day values * A year and month value, with a zero day, such
5366
- # as a credit card expiration date Related types are google.type.TimeOfDay and `
5367
- # google.protobuf.Timestamp`.
5410
+ # Date value. Includes year, month, day. See also: https://github.com/googleapis/
5411
+ # googleapis/blob/master/google/type/date.proto
5368
5412
  # Corresponds to the JSON property `dateValue`
5369
5413
  # @return [Google::Apis::DocumentaiV1beta3::GoogleTypeDate]
5370
5414
  attr_accessor :date_value
@@ -7706,14 +7750,7 @@ module Google
7706
7750
  end
7707
7751
  end
7708
7752
 
7709
- # Represents a whole or partial calendar date, such as a birthday. The time of
7710
- # day and time zone are either specified elsewhere or are insignificant. The
7711
- # date is relative to the Gregorian Calendar. This can represent one of the
7712
- # following: * A full date, with non-zero year, month, and day values * A month
7713
- # and day value, with a zero year, such as an anniversary * A year on its own,
7714
- # with zero month and day values * A year and month value, with a zero day, such
7715
- # as a credit card expiration date Related types are google.type.TimeOfDay and `
7716
- # google.protobuf.Timestamp`.
7753
+ #
7717
7754
  class GoogleTypeDate
7718
7755
  include Google::Apis::Core::Hashable
7719
7756
 
@@ -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.31.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220114"
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
 
@@ -1852,6 +1864,25 @@ module Google
1852
1864
  end
1853
1865
  end
1854
1866
 
1867
+ class GoogleCloudDocumentaiV1alpha1AnalyzeHitlDataMetadata
1868
+ # @private
1869
+ class Representation < Google::Apis::Core::JsonRepresentation
1870
+ property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1alpha1CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1alpha1CommonOperationMetadata::Representation
1871
+
1872
+ end
1873
+ end
1874
+
1875
+ class GoogleCloudDocumentaiV1alpha1CommonOperationMetadata
1876
+ # @private
1877
+ class Representation < Google::Apis::Core::JsonRepresentation
1878
+ property :create_time, as: 'createTime'
1879
+ property :resource, as: 'resource'
1880
+ property :state, as: 'state'
1881
+ property :state_message, as: 'stateMessage'
1882
+ property :update_time, as: 'updateTime'
1883
+ end
1884
+ end
1885
+
1855
1886
  class GoogleCloudDocumentaiV1beta1BatchProcessDocumentsResponse
1856
1887
  # @private
1857
1888
  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.31.0
4
+ version: 0.32.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-01-24 00:00:00.000000000 Z
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_v1beta3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.32.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: []