google-apis-documentai_v1 0.80.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: fbd5ac2d652d216c3c36f28595d73a56164b7c9c615442e831011f2a715d9b18
4
- data.tar.gz: 0b1f4b02dc88b1d56e472c251e54638c03fc97ab839faf7510b988ba7ecac3a4
3
+ metadata.gz: 0c42ba77191f56a11b10e25dbee40b0693801a935bc059c49fa567db35dddf12
4
+ data.tar.gz: c302cd036a49ef1d94ba78c4408eace9d92958fdf02250758f28a0b046edff3d
5
5
  SHA512:
6
- metadata.gz: f0e6391f93f4bd855f62178651480ec902a6791fa85b061db3bdd56f5dc9d8f1b71c8274c1739749e3acbbed4f9cbffe1083a112b37744085719c596180593c5
7
- data.tar.gz: 5cc7f74e3a3ea24bbb45a59b459d4d989cb2cb34cb08aa6e11b8ff8e1a08083f041c2aa3905963e498599621c3fb60485749139fb35b7be37b642b7f443869b0
6
+ metadata.gz: b925076ee2c5a3b26cb23874ee8aa87b7bdbe79ff5a93791e09d99400cd95134d2ab29cab5a883425815cc43f2b620b4cec5efebb018c4241d626f98566b2948
7
+ data.tar.gz: 9430a2680c32324ff3492e656b0c670b8acd774f33d3f92768db57b00510a0cac757d8bf3c1aa28f554ba456ee4b8bd204f3111d24bc33e19d61d048063b80d8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
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
+
8
+ ### v0.81.0 (2024-02-23)
9
+
10
+ * Unspecified changes
11
+
3
12
  ### v0.80.0 (2024-02-04)
4
13
 
5
14
  * Regenerated from discovery document revision 20240126
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/document-ai/docs/) may prov
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
88
- Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.5 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
88
+ Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
90
90
  ## License
91
91
 
@@ -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.80.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.80.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-04 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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.12.0
19
+ version: 0.14.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.12.0
29
+ version: 0.14.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.80.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: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Document AI API V1