google-apis-documentai_v1 0.36.0 → 0.37.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: '0991b9d49ab32d447089ee8257a327e3e414c242e1558a326bedc17b092ede72'
4
- data.tar.gz: 95914d6fedf40152aa35049f76da2250dbae9ef9e12de0d6a47967ed31847d86
3
+ metadata.gz: b169ad06927eeece80da8f752fddcc1b9c4acd132261413eb978e4bbbc60784a
4
+ data.tar.gz: 415bb98ebc7ad7b61c4f29c8f8bac832b9a3347eae64f341238b81f411351d8f
5
5
  SHA512:
6
- metadata.gz: da24ed6780582653d2aaf324503e7d1a6d15e1d9a5449f527d4185eabc30fd4789c3c411b95bc1f35cd10a54bbd2be278048d42d7b95a72223a7094127258502
7
- data.tar.gz: f7d6a7a2496ddeb08c5efee2643faccf0c19af4d1b22a42bdc65d98e450b1890d250a8ff16e9024a9d2a28d45ed4bc5a750488262f9f0be9879dfe97a4611a5e
6
+ metadata.gz: 0c3a3d736b1197d9c7f365b376248ad5661b5f70dd13e613b79781df116b78def2e056fc593792f2e0bb97fc972899481c454be9b0bafac1cda9aab28907d851
7
+ data.tar.gz: e3c7e587c4c0301fbd4e4c3feb4f42ae155dc468ea7428ac1f6748abb6fcd629c76256cb30096885917cc93c9c5e2f77a3d9aa63a535ba24fbaa9d5d6aa88f21
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-documentai_v1
2
2
 
3
+ ### v0.37.0 (2022-05-10)
4
+
5
+ * Regenerated from discovery document revision 20220505
6
+
3
7
  ### v0.36.0 (2022-04-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20220421
@@ -1738,8 +1738,8 @@ module Google
1738
1738
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageToken>]
1739
1739
  attr_accessor :tokens
1740
1740
 
1741
- # Transformation matrices that were applied to the original document image to
1742
- # produce Page.image.
1741
+ # Transformation matrices (both already applied and not) to the original
1742
+ # document image to produce Page.image.
1743
1743
  # Corresponds to the JSON property `transforms`
1744
1744
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageMatrix>]
1745
1745
  attr_accessor :transforms
@@ -2114,6 +2114,14 @@ module Google
2114
2114
  class GoogleCloudDocumentaiV1DocumentPageMatrix
2115
2115
  include Google::Apis::Core::Hashable
2116
2116
 
2117
+ # Has the transformation already been applied to the current Document? Needed to
2118
+ # disambiguate pre-processing transformations already applied vs transformations
2119
+ # added at annotation time by HITL operators.
2120
+ # Corresponds to the JSON property `applied`
2121
+ # @return [Boolean]
2122
+ attr_accessor :applied
2123
+ alias_method :applied?, :applied
2124
+
2117
2125
  # Number of columns in the matrix.
2118
2126
  # Corresponds to the JSON property `cols`
2119
2127
  # @return [Fixnum]
@@ -2144,6 +2152,7 @@ module Google
2144
2152
 
2145
2153
  # Update properties of this object
2146
2154
  def update!(**args)
2155
+ @applied = args[:applied] if args.key?(:applied)
2147
2156
  @cols = args[:cols] if args.key?(:cols)
2148
2157
  @data = args[:data] if args.key?(:data)
2149
2158
  @rows = args[:rows] if args.key?(:rows)
@@ -4109,8 +4118,8 @@ module Google
4109
4118
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageToken>]
4110
4119
  attr_accessor :tokens
4111
4120
 
4112
- # Transformation matrices that were applied to the original document image to
4113
- # produce Page.image.
4121
+ # Transformation matrices (both already applied and not) to the original
4122
+ # document image to produce Page.image.
4114
4123
  # Corresponds to the JSON property `transforms`
4115
4124
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageMatrix>]
4116
4125
  attr_accessor :transforms
@@ -4485,6 +4494,14 @@ module Google
4485
4494
  class GoogleCloudDocumentaiV1beta1DocumentPageMatrix
4486
4495
  include Google::Apis::Core::Hashable
4487
4496
 
4497
+ # Has the transformation already been applied to the current Document? Needed to
4498
+ # disambiguate pre-processing transformations already applied vs transformations
4499
+ # added at annotation time by HITL operators.
4500
+ # Corresponds to the JSON property `applied`
4501
+ # @return [Boolean]
4502
+ attr_accessor :applied
4503
+ alias_method :applied?, :applied
4504
+
4488
4505
  # Number of columns in the matrix.
4489
4506
  # Corresponds to the JSON property `cols`
4490
4507
  # @return [Fixnum]
@@ -4515,6 +4532,7 @@ module Google
4515
4532
 
4516
4533
  # Update properties of this object
4517
4534
  def update!(**args)
4535
+ @applied = args[:applied] if args.key?(:applied)
4518
4536
  @cols = args[:cols] if args.key?(:cols)
4519
4537
  @data = args[:data] if args.key?(:data)
4520
4538
  @rows = args[:rows] if args.key?(:rows)
@@ -5914,8 +5932,8 @@ module Google
5914
5932
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageToken>]
5915
5933
  attr_accessor :tokens
5916
5934
 
5917
- # Transformation matrices that were applied to the original document image to
5918
- # produce Page.image.
5935
+ # Transformation matrices (both already applied and not) to the original
5936
+ # document image to produce Page.image.
5919
5937
  # Corresponds to the JSON property `transforms`
5920
5938
  # @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentPageMatrix>]
5921
5939
  attr_accessor :transforms
@@ -6290,6 +6308,14 @@ module Google
6290
6308
  class GoogleCloudDocumentaiV1beta2DocumentPageMatrix
6291
6309
  include Google::Apis::Core::Hashable
6292
6310
 
6311
+ # Has the transformation already been applied to the current Document? Needed to
6312
+ # disambiguate pre-processing transformations already applied vs transformations
6313
+ # added at annotation time by HITL operators.
6314
+ # Corresponds to the JSON property `applied`
6315
+ # @return [Boolean]
6316
+ attr_accessor :applied
6317
+ alias_method :applied?, :applied
6318
+
6293
6319
  # Number of columns in the matrix.
6294
6320
  # Corresponds to the JSON property `cols`
6295
6321
  # @return [Fixnum]
@@ -6320,6 +6346,7 @@ module Google
6320
6346
 
6321
6347
  # Update properties of this object
6322
6348
  def update!(**args)
6349
+ @applied = args[:applied] if args.key?(:applied)
6323
6350
  @cols = args[:cols] if args.key?(:cols)
6324
6351
  @data = args[:data] if args.key?(:data)
6325
6352
  @rows = args[:rows] if args.key?(:rows)
@@ -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.36.0"
19
+ GEM_VERSION = "0.37.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 = "20220421"
25
+ REVISION = "20220505"
26
26
  end
27
27
  end
28
28
  end
@@ -2160,6 +2160,7 @@ module Google
2160
2160
  class GoogleCloudDocumentaiV1DocumentPageMatrix
2161
2161
  # @private
2162
2162
  class Representation < Google::Apis::Core::JsonRepresentation
2163
+ property :applied, as: 'applied'
2163
2164
  property :cols, as: 'cols'
2164
2165
  property :data, :base64 => true, as: 'data'
2165
2166
  property :rows, as: 'rows'
@@ -2859,6 +2860,7 @@ module Google
2859
2860
  class GoogleCloudDocumentaiV1beta1DocumentPageMatrix
2860
2861
  # @private
2861
2862
  class Representation < Google::Apis::Core::JsonRepresentation
2863
+ property :applied, as: 'applied'
2862
2864
  property :cols, as: 'cols'
2863
2865
  property :data, :base64 => true, as: 'data'
2864
2866
  property :rows, as: 'rows'
@@ -3371,6 +3373,7 @@ module Google
3371
3373
  class GoogleCloudDocumentaiV1beta2DocumentPageMatrix
3372
3374
  # @private
3373
3375
  class Representation < Google::Apis::Core::JsonRepresentation
3376
+ property :applied, as: 'applied'
3374
3377
  property :cols, as: 'cols'
3375
3378
  property :data, :base64 => true, as: 'data'
3376
3379
  property :rows, as: 'rows'
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.36.0
4
+ version: 0.37.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-05-02 00:00:00.000000000 Z
11
+ date: 2022-05-16 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.36.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.37.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: []