google-apis-documentai_v1 0.81.0 → 0.82.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: f044d13491b35508da46e04fb15082f6fad4b16a8aa95343a36f96fb6cdf17ae
4
- data.tar.gz: abd0b84252577a7142d47acc2c01ace832cfb3e60b069c67ced717f194fa8511
3
+ metadata.gz: 0c42ba77191f56a11b10e25dbee40b0693801a935bc059c49fa567db35dddf12
4
+ data.tar.gz: c302cd036a49ef1d94ba78c4408eace9d92958fdf02250758f28a0b046edff3d
5
5
  SHA512:
6
- metadata.gz: 54f2efedf87aa717e331b2bd6fbc0f33164e326cf7680e34026b3d93df309d545931522a2e4cd701006bee9c5d560df517b415e0ae3987cb1bcc18a048c9dce4
7
- data.tar.gz: 51ffa9f195163851500883bb257786eed515918aa5c25fd7ca8a5cd787bdc846637422888f6ca98d8660ba035cdaeb378b061a7b00c785f9c44f76e8a438dcc8
6
+ metadata.gz: b925076ee2c5a3b26cb23874ee8aa87b7bdbe79ff5a93791e09d99400cd95134d2ab29cab5a883425815cc43f2b620b4cec5efebb018c4241d626f98566b2948
7
+ data.tar.gz: 9430a2680c32324ff3492e656b0c670b8acd774f33d3f92768db57b00510a0cac757d8bf3c1aa28f554ba456ee4b8bd204f3111d24bc33e19d61d048063b80d8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-documentai_v1
2
2
 
3
+ ### v0.82.0 (2024-03-03)
4
+
5
+ * Regenerated from discovery document revision 20240223
6
+ * Regenerated using generator version 0.14.0
7
+
3
8
  ### v0.81.0 (2024-02-23)
4
9
 
5
10
  * Unspecified changes
@@ -3520,6 +3520,11 @@ module Google
3520
3520
  class GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty
3521
3521
  include Google::Apis::Core::Hashable
3522
3522
 
3523
+ # User defined name for the property.
3524
+ # Corresponds to the JSON property `displayName`
3525
+ # @return [String]
3526
+ attr_accessor :display_name
3527
+
3523
3528
  # The name of the property. Follows the same guidelines as the EntityType name.
3524
3529
  # Corresponds to the JSON property `name`
3525
3530
  # @return [String]
@@ -3543,6 +3548,7 @@ module Google
3543
3548
 
3544
3549
  # Update properties of this object
3545
3550
  def update!(**args)
3551
+ @display_name = args[:display_name] if args.key?(:display_name)
3546
3552
  @name = args[:name] if args.key?(:name)
3547
3553
  @occurrence_type = args[:occurrence_type] if args.key?(:occurrence_type)
3548
3554
  @value_type = args[:value_type] if args.key?(:value_type)
@@ -4690,6 +4696,11 @@ module Google
4690
4696
  # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1OcrConfig]
4691
4697
  attr_accessor :ocr_config
4692
4698
 
4699
+ # The schema defines the output of the processed document by a processor.
4700
+ # Corresponds to the JSON property `schemaOverride`
4701
+ # @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchema]
4702
+ attr_accessor :schema_override
4703
+
4693
4704
  def initialize(**args)
4694
4705
  update!(**args)
4695
4706
  end
@@ -4700,6 +4711,7 @@ module Google
4700
4711
  @from_start = args[:from_start] if args.key?(:from_start)
4701
4712
  @individual_page_selector = args[:individual_page_selector] if args.key?(:individual_page_selector)
4702
4713
  @ocr_config = args[:ocr_config] if args.key?(:ocr_config)
4714
+ @schema_override = args[:schema_override] if args.key?(:schema_override)
4703
4715
  end
4704
4716
  end
4705
4717
 
@@ -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.81.0"
19
+ GEM_VERSION = "0.82.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.1"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240126"
25
+ REVISION = "20240223"
26
26
  end
27
27
  end
28
28
  end
@@ -3077,6 +3077,7 @@ module Google
3077
3077
  class GoogleCloudDocumentaiV1DocumentSchemaEntityTypeProperty
3078
3078
  # @private
3079
3079
  class Representation < Google::Apis::Core::JsonRepresentation
3080
+ property :display_name, as: 'displayName'
3080
3081
  property :name, as: 'name'
3081
3082
  property :occurrence_type, as: 'occurrenceType'
3082
3083
  property :value_type, as: 'valueType'
@@ -3403,6 +3404,8 @@ module Google
3403
3404
 
3404
3405
  property :ocr_config, as: 'ocrConfig', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1OcrConfig, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1OcrConfig::Representation
3405
3406
 
3407
+ property :schema_override, as: 'schemaOverride', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchema, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentSchema::Representation
3408
+
3406
3409
  end
3407
3410
  end
3408
3411
 
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.81.0
4
+ version: 0.82.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: 2024-02-25 00:00:00.000000000 Z
11
+ date: 2024-03-03 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.81.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.82.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: []