google-apis-documentai_v1 0.32.0 → 0.33.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c91749d4825581ae5dc9a8199ac1846acd231ad910eb7fc4f4cff5bbfd3cb860
|
|
4
|
+
data.tar.gz: 243cd52ab16969dbc1211116297b3e27a2fb58745de0e977c91618b3b7c890e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8946bf13195b24831c89a7750895db5f54f6151b3ed6541d694efbab88c00031e4cd1761f73d319716daa2c0faaa1c31362f79b7c845f98c9c6b19bab5171525
|
|
7
|
+
data.tar.gz: 6fbe890abfc4943cb1f62873598f29cf79d48e4851951a2aabddb7dc47d42182047396b35b9d9078c80896914fdf57855f6b4698a6763207688d70715d4e3dc3
|
data/CHANGELOG.md
CHANGED
|
@@ -1414,7 +1414,7 @@ module Google
|
|
|
1414
1414
|
# @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentTextAnchor]
|
|
1415
1415
|
attr_accessor :text_anchor
|
|
1416
1416
|
|
|
1417
|
-
# Entity type from a schema e.g. `Address`.
|
|
1417
|
+
# Required. Entity type from a schema e.g. `Address`.
|
|
1418
1418
|
# Corresponds to the JSON property `type`
|
|
1419
1419
|
# @return [String]
|
|
1420
1420
|
attr_accessor :type
|
|
@@ -3238,6 +3238,12 @@ module Google
|
|
|
3238
3238
|
# @return [String]
|
|
3239
3239
|
attr_accessor :display_name
|
|
3240
3240
|
|
|
3241
|
+
# Denotes that this ProcessorVersion is managed by google.
|
|
3242
|
+
# Corresponds to the JSON property `googleManaged`
|
|
3243
|
+
# @return [Boolean]
|
|
3244
|
+
attr_accessor :google_managed
|
|
3245
|
+
alias_method :google_managed?, :google_managed
|
|
3246
|
+
|
|
3241
3247
|
# The KMS key name used for encryption.
|
|
3242
3248
|
# Corresponds to the JSON property `kmsKeyName`
|
|
3243
3249
|
# @return [String]
|
|
@@ -3268,6 +3274,7 @@ module Google
|
|
|
3268
3274
|
def update!(**args)
|
|
3269
3275
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
3270
3276
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
3277
|
+
@google_managed = args[:google_managed] if args.key?(:google_managed)
|
|
3271
3278
|
@kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
|
|
3272
3279
|
@kms_key_version_name = args[:kms_key_version_name] if args.key?(:kms_key_version_name)
|
|
3273
3280
|
@name = args[:name] if args.key?(:name)
|
|
@@ -3786,7 +3793,7 @@ module Google
|
|
|
3786
3793
|
# @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentTextAnchor]
|
|
3787
3794
|
attr_accessor :text_anchor
|
|
3788
3795
|
|
|
3789
|
-
# Entity type from a schema e.g. `Address`.
|
|
3796
|
+
# Required. Entity type from a schema e.g. `Address`.
|
|
3790
3797
|
# Corresponds to the JSON property `type`
|
|
3791
3798
|
# @return [String]
|
|
3792
3799
|
attr_accessor :type
|
|
@@ -5554,7 +5561,7 @@ module Google
|
|
|
5554
5561
|
# @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta2DocumentTextAnchor]
|
|
5555
5562
|
attr_accessor :text_anchor
|
|
5556
5563
|
|
|
5557
|
-
# Entity type from a schema e.g. `Address`.
|
|
5564
|
+
# Required. Entity type from a schema e.g. `Address`.
|
|
5558
5565
|
# Corresponds to the JSON property `type`
|
|
5559
5566
|
# @return [String]
|
|
5560
5567
|
attr_accessor :type
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.33.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 = "
|
|
25
|
+
REVISION = "20220326"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2467,6 +2467,7 @@ module Google
|
|
|
2467
2467
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2468
2468
|
property :create_time, as: 'createTime'
|
|
2469
2469
|
property :display_name, as: 'displayName'
|
|
2470
|
+
property :google_managed, as: 'googleManaged'
|
|
2470
2471
|
property :kms_key_name, as: 'kmsKeyName'
|
|
2471
2472
|
property :kms_key_version_name, as: 'kmsKeyVersionName'
|
|
2472
2473
|
property :name, as: 'name'
|
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.
|
|
4
|
+
version: 0.33.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-
|
|
11
|
+
date: 2022-04-04 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.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.33.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: []
|