google-apis-documentai_v1beta2 0.25.0 → 0.26.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: c3766aba62077eb0b3f764386dd66ea35ee5ac719cd6149da76593349b295a8b
4
- data.tar.gz: 382bc1d81971495ca4d1b3558bc8369ab95728cf58479aedf9eb9c2294ae8945
3
+ metadata.gz: 5a7d09032e418f8b02bbfd214a25363a67824bb29e06452a270576aba9e42654
4
+ data.tar.gz: ac49576c3429dfece5f582b2099a75407cbc613434809739337f12c3b51e40ef
5
5
  SHA512:
6
- metadata.gz: 16f6bfd39f327dd3cf04a389d8e6e0070f582f43873e5d297909894efb95e43c112f900e37cd00a60e07a4f1478517bfe37e7a8ba5309b3cd8e77ffe54688350
7
- data.tar.gz: 9e5d1b4ab80bcbcd98f4bc54722de4f0ec093e280b2326639533e580378771a8f244bdec0e31cbc676014b6bfaf469ca0bc14e581026f9ca4f20ab012300d755
6
+ metadata.gz: 7fd2929d6a0c57889346ea3ae221d38aed50db26f2d94f239f1c9006a51910d1751513dd2958ce0b18a3f191d8622e97cb4c765da16cf2cb21bee95496756564
7
+ data.tar.gz: 0b009b5f697c6564d941bdfac183ce18403be21ff1df82a25781ad1124e85a4d3514be8352d6798f8cebfbb48ec11ce5a396187476e2ff3a67aea477792e9cd9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-documentai_v1beta2
2
2
 
3
+ ### v0.26.0 (2022-01-20)
4
+
5
+ * Regenerated from discovery document revision 20220114
6
+ * Regenerated using generator version 0.4.1
7
+
3
8
  ### v0.25.0 (2021-12-16)
4
9
 
5
10
  * Regenerated from discovery document revision 20211214
@@ -1120,6 +1120,11 @@ module Google
1120
1120
  # @return [Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1CommonOperationMetadata]
1121
1121
  attr_accessor :common_metadata
1122
1122
 
1123
+ # The Crowd Compute question ID.
1124
+ # Corresponds to the JSON property `questionId`
1125
+ # @return [String]
1126
+ attr_accessor :question_id
1127
+
1123
1128
  def initialize(**args)
1124
1129
  update!(**args)
1125
1130
  end
@@ -1127,6 +1132,7 @@ module Google
1127
1132
  # Update properties of this object
1128
1133
  def update!(**args)
1129
1134
  @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
1135
+ @question_id = args[:question_id] if args.key?(:question_id)
1130
1136
  end
1131
1137
  end
1132
1138
 
@@ -5340,6 +5346,11 @@ module Google
5340
5346
  # @return [String]
5341
5347
  attr_accessor :create_time
5342
5348
 
5349
+ # The Crowd Compute question ID.
5350
+ # Corresponds to the JSON property `questionId`
5351
+ # @return [String]
5352
+ attr_accessor :question_id
5353
+
5343
5354
  # Used only when Operation.done is false.
5344
5355
  # Corresponds to the JSON property `state`
5345
5356
  # @return [String]
@@ -5364,6 +5375,7 @@ module Google
5364
5375
  def update!(**args)
5365
5376
  @common_metadata = args[:common_metadata] if args.key?(:common_metadata)
5366
5377
  @create_time = args[:create_time] if args.key?(:create_time)
5378
+ @question_id = args[:question_id] if args.key?(:question_id)
5367
5379
  @state = args[:state] if args.key?(:state)
5368
5380
  @state_message = args[:state_message] if args.key?(:state_message)
5369
5381
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -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.25.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211214"
25
+ REVISION = "20220114"
26
26
  end
27
27
  end
28
28
  end
@@ -1489,6 +1489,7 @@ module Google
1489
1489
  class Representation < Google::Apis::Core::JsonRepresentation
1490
1490
  property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1CommonOperationMetadata::Representation
1491
1491
 
1492
+ property :question_id, as: 'questionId'
1492
1493
  end
1493
1494
  end
1494
1495
 
@@ -2720,6 +2721,7 @@ module Google
2720
2721
  property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata::Representation
2721
2722
 
2722
2723
  property :create_time, as: 'createTime'
2724
+ property :question_id, as: 'questionId'
2723
2725
  property :state, as: 'state'
2724
2726
  property :state_message, as: 'stateMessage'
2725
2727
  property :update_time, as: 'updateTime'
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.25.0
4
+ version: 0.26.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-10 00:00:00.000000000 Z
11
+ date: 2022-01-24 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.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta2/v0.26.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Document AI API V1beta2