google-apis-documentai_v1beta3 0.79.0 → 0.81.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0fb6cda5d246a7369ef88dcf122fab5e9a9e23b2019717e9f6903d75fcfc1de9
|
4
|
+
data.tar.gz: db80bda68f0289077f620cbe1c2be6c5925487f67b2211d275a851febfbf3426
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d780e4e7f5b845b23e5f28721a10a78f38243d45595343345f159274dc5dc79a2f4224c44db081e60624a797e879fbe2e8e3541acb5eb21a767947d1048fbf6d
|
7
|
+
data.tar.gz: 05cd35dee7ae219a47aba01b0f3d395d83017e9fd63facb0e1c63a7ac0e44fb35c86329419d509b664788aa9730aaaf86136fab2d94fd5188be757283feb13c5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-documentai_v1beta3
|
2
2
|
|
3
|
+
### v0.81.0 (2023-08-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230818
|
6
|
+
|
7
|
+
### v0.80.0 (2023-08-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230804
|
10
|
+
|
3
11
|
### v0.79.0 (2023-08-03)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230721
|
@@ -257,6 +257,74 @@ module Google
|
|
257
257
|
end
|
258
258
|
end
|
259
259
|
|
260
|
+
#
|
261
|
+
class GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadata
|
262
|
+
include Google::Apis::Core::Hashable
|
263
|
+
|
264
|
+
# The common metadata for long running operations.
|
265
|
+
# Corresponds to the JSON property `commonMetadata`
|
266
|
+
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata]
|
267
|
+
attr_accessor :common_metadata
|
268
|
+
|
269
|
+
# The list of response details of each document.
|
270
|
+
# Corresponds to the JSON property `individualBatchUpdateStatuses`
|
271
|
+
# @return [Array<Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadataIndividualBatchUpdateStatus>]
|
272
|
+
attr_accessor :individual_batch_update_statuses
|
273
|
+
|
274
|
+
def initialize(**args)
|
275
|
+
update!(**args)
|
276
|
+
end
|
277
|
+
|
278
|
+
# Update properties of this object
|
279
|
+
def update!(**args)
|
280
|
+
@common_metadata = args[:common_metadata] if args.key?(:common_metadata)
|
281
|
+
@individual_batch_update_statuses = args[:individual_batch_update_statuses] if args.key?(:individual_batch_update_statuses)
|
282
|
+
end
|
283
|
+
end
|
284
|
+
|
285
|
+
# The status of each individual document in the batch update process.
|
286
|
+
class GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadataIndividualBatchUpdateStatus
|
287
|
+
include Google::Apis::Core::Hashable
|
288
|
+
|
289
|
+
# Document Identifier.
|
290
|
+
# Corresponds to the JSON property `documentId`
|
291
|
+
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentId]
|
292
|
+
attr_accessor :document_id
|
293
|
+
|
294
|
+
# The `Status` type defines a logical error model that is suitable for different
|
295
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
296
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
297
|
+
# data: error code, error message, and error details. You can find out more
|
298
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
299
|
+
# //cloud.google.com/apis/design/errors).
|
300
|
+
# Corresponds to the JSON property `status`
|
301
|
+
# @return [Google::Apis::DocumentaiV1beta3::GoogleRpcStatus]
|
302
|
+
attr_accessor :status
|
303
|
+
|
304
|
+
def initialize(**args)
|
305
|
+
update!(**args)
|
306
|
+
end
|
307
|
+
|
308
|
+
# Update properties of this object
|
309
|
+
def update!(**args)
|
310
|
+
@document_id = args[:document_id] if args.key?(:document_id)
|
311
|
+
@status = args[:status] if args.key?(:status)
|
312
|
+
end
|
313
|
+
end
|
314
|
+
|
315
|
+
# Response of the batch update documents operation.
|
316
|
+
class GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsResponse
|
317
|
+
include Google::Apis::Core::Hashable
|
318
|
+
|
319
|
+
def initialize(**args)
|
320
|
+
update!(**args)
|
321
|
+
end
|
322
|
+
|
323
|
+
# Update properties of this object
|
324
|
+
def update!(**args)
|
325
|
+
end
|
326
|
+
end
|
327
|
+
|
260
328
|
# The common metadata for long running operations.
|
261
329
|
class GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
|
262
330
|
include Google::Apis::Core::Hashable
|
@@ -9535,6 +9603,25 @@ module Google
|
|
9535
9603
|
end
|
9536
9604
|
end
|
9537
9605
|
|
9606
|
+
# Metadata for how this field value is extracted.
|
9607
|
+
class GoogleCloudDocumentaiV1beta3FieldExtractionMetadata
|
9608
|
+
include Google::Apis::Core::Hashable
|
9609
|
+
|
9610
|
+
# Metadata for document summarization.
|
9611
|
+
# Corresponds to the JSON property `summaryOptions`
|
9612
|
+
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SummaryOptions]
|
9613
|
+
attr_accessor :summary_options
|
9614
|
+
|
9615
|
+
def initialize(**args)
|
9616
|
+
update!(**args)
|
9617
|
+
end
|
9618
|
+
|
9619
|
+
# Update properties of this object
|
9620
|
+
def update!(**args)
|
9621
|
+
@summary_options = args[:summary_options] if args.key?(:summary_options)
|
9622
|
+
end
|
9623
|
+
end
|
9624
|
+
|
9538
9625
|
# Specifies a document stored on Cloud Storage.
|
9539
9626
|
class GoogleCloudDocumentaiV1beta3GcsDocument
|
9540
9627
|
include Google::Apis::Core::Hashable
|
@@ -10077,7 +10164,8 @@ module Google
|
|
10077
10164
|
# @return [Array<String>]
|
10078
10165
|
attr_accessor :advanced_ocr_options
|
10079
10166
|
|
10080
|
-
# Turn on font id model and returns font style information.
|
10167
|
+
# Turn on font id model and returns font style information. Use PremiumFeatures.
|
10168
|
+
# compute_style_info instead.
|
10081
10169
|
# Corresponds to the JSON property `computeStyleInfo`
|
10082
10170
|
# @return [Boolean]
|
10083
10171
|
attr_accessor :compute_style_info
|
@@ -10157,6 +10245,11 @@ module Google
|
|
10157
10245
|
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3OcrConfig]
|
10158
10246
|
attr_accessor :ocr_config
|
10159
10247
|
|
10248
|
+
# The schema defines the output of the processed document by a processor.
|
10249
|
+
# Corresponds to the JSON property `schemaOverride`
|
10250
|
+
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentSchema]
|
10251
|
+
attr_accessor :schema_override
|
10252
|
+
|
10160
10253
|
def initialize(**args)
|
10161
10254
|
update!(**args)
|
10162
10255
|
end
|
@@ -10164,6 +10257,7 @@ module Google
|
|
10164
10257
|
# Update properties of this object
|
10165
10258
|
def update!(**args)
|
10166
10259
|
@ocr_config = args[:ocr_config] if args.key?(:ocr_config)
|
10260
|
+
@schema_override = args[:schema_override] if args.key?(:schema_override)
|
10167
10261
|
end
|
10168
10262
|
end
|
10169
10263
|
|
@@ -10551,6 +10645,11 @@ module Google
|
|
10551
10645
|
class GoogleCloudDocumentaiV1beta3PropertyMetadata
|
10552
10646
|
include Google::Apis::Core::Hashable
|
10553
10647
|
|
10648
|
+
# Metadata for how this field value is extracted.
|
10649
|
+
# Corresponds to the JSON property `fieldExtractionMetadata`
|
10650
|
+
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3FieldExtractionMetadata]
|
10651
|
+
attr_accessor :field_extraction_metadata
|
10652
|
+
|
10554
10653
|
# Whether the property should be considered as "inactive".
|
10555
10654
|
# Corresponds to the JSON property `inactive`
|
10556
10655
|
# @return [Boolean]
|
@@ -10563,6 +10662,7 @@ module Google
|
|
10563
10662
|
|
10564
10663
|
# Update properties of this object
|
10565
10664
|
def update!(**args)
|
10665
|
+
@field_extraction_metadata = args[:field_extraction_metadata] if args.key?(:field_extraction_metadata)
|
10566
10666
|
@inactive = args[:inactive] if args.key?(:inactive)
|
10567
10667
|
end
|
10568
10668
|
end
|
@@ -10819,6 +10919,31 @@ module Google
|
|
10819
10919
|
end
|
10820
10920
|
end
|
10821
10921
|
|
10922
|
+
# Metadata for document summarization.
|
10923
|
+
class GoogleCloudDocumentaiV1beta3SummaryOptions
|
10924
|
+
include Google::Apis::Core::Hashable
|
10925
|
+
|
10926
|
+
# What format the summary should be in.
|
10927
|
+
# Corresponds to the JSON property `format`
|
10928
|
+
# @return [String]
|
10929
|
+
attr_accessor :format
|
10930
|
+
|
10931
|
+
# How long the summary should be.
|
10932
|
+
# Corresponds to the JSON property `length`
|
10933
|
+
# @return [String]
|
10934
|
+
attr_accessor :length
|
10935
|
+
|
10936
|
+
def initialize(**args)
|
10937
|
+
update!(**args)
|
10938
|
+
end
|
10939
|
+
|
10940
|
+
# Update properties of this object
|
10941
|
+
def update!(**args)
|
10942
|
+
@format = args[:format] if args.key?(:format)
|
10943
|
+
@length = args[:length] if args.key?(:length)
|
10944
|
+
end
|
10945
|
+
end
|
10946
|
+
|
10822
10947
|
# The metadata that represents a processor version being created.
|
10823
10948
|
class GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadata
|
10824
10949
|
include Google::Apis::Core::Hashable
|
@@ -11230,13 +11355,13 @@ module Google
|
|
11230
11355
|
# @return [String]
|
11231
11356
|
attr_accessor :name
|
11232
11357
|
|
11233
|
-
# The normal response of the operation
|
11234
|
-
#
|
11235
|
-
#
|
11236
|
-
#
|
11237
|
-
#
|
11238
|
-
#
|
11239
|
-
#
|
11358
|
+
# The normal, successful response of the operation. If the original method
|
11359
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
11360
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
11361
|
+
# response should be the resource. For other methods, the response should have
|
11362
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
11363
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
11364
|
+
# `TakeSnapshotResponse`.
|
11240
11365
|
# Corresponds to the JSON property `response`
|
11241
11366
|
# @return [Hash<String,Object>]
|
11242
11367
|
attr_accessor :response
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DocumentaiV1beta3
|
18
18
|
# Version of the google-apis-documentai_v1beta3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.81.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230818"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -76,6 +76,24 @@ module Google
|
|
76
76
|
include Google::Apis::Core::JsonObjectSupport
|
77
77
|
end
|
78
78
|
|
79
|
+
class GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadata
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
+
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
83
|
+
end
|
84
|
+
|
85
|
+
class GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadataIndividualBatchUpdateStatus
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
+
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
89
|
+
end
|
90
|
+
|
91
|
+
class GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsResponse
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
+
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
95
|
+
end
|
96
|
+
|
79
97
|
class GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
|
80
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
99
|
|
@@ -1630,6 +1648,12 @@ module Google
|
|
1630
1648
|
include Google::Apis::Core::JsonObjectSupport
|
1631
1649
|
end
|
1632
1650
|
|
1651
|
+
class GoogleCloudDocumentaiV1beta3FieldExtractionMetadata
|
1652
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1653
|
+
|
1654
|
+
include Google::Apis::Core::JsonObjectSupport
|
1655
|
+
end
|
1656
|
+
|
1633
1657
|
class GoogleCloudDocumentaiV1beta3GcsDocument
|
1634
1658
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1635
1659
|
|
@@ -1876,6 +1900,12 @@ module Google
|
|
1876
1900
|
include Google::Apis::Core::JsonObjectSupport
|
1877
1901
|
end
|
1878
1902
|
|
1903
|
+
class GoogleCloudDocumentaiV1beta3SummaryOptions
|
1904
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1905
|
+
|
1906
|
+
include Google::Apis::Core::JsonObjectSupport
|
1907
|
+
end
|
1908
|
+
|
1879
1909
|
class GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadata
|
1880
1910
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1881
1911
|
|
@@ -2096,6 +2126,32 @@ module Google
|
|
2096
2126
|
end
|
2097
2127
|
end
|
2098
2128
|
|
2129
|
+
class GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadata
|
2130
|
+
# @private
|
2131
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2132
|
+
property :common_metadata, as: 'commonMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata::Representation
|
2133
|
+
|
2134
|
+
collection :individual_batch_update_statuses, as: 'individualBatchUpdateStatuses', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadataIndividualBatchUpdateStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadataIndividualBatchUpdateStatus::Representation
|
2135
|
+
|
2136
|
+
end
|
2137
|
+
end
|
2138
|
+
|
2139
|
+
class GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsMetadataIndividualBatchUpdateStatus
|
2140
|
+
# @private
|
2141
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2142
|
+
property :document_id, as: 'documentId', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentId, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiUiv1beta3DocumentId::Representation
|
2143
|
+
|
2144
|
+
property :status, as: 'status', class: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus, decorator: Google::Apis::DocumentaiV1beta3::GoogleRpcStatus::Representation
|
2145
|
+
|
2146
|
+
end
|
2147
|
+
end
|
2148
|
+
|
2149
|
+
class GoogleCloudDocumentaiUiv1beta3BatchUpdateDocumentsResponse
|
2150
|
+
# @private
|
2151
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2152
|
+
end
|
2153
|
+
end
|
2154
|
+
|
2099
2155
|
class GoogleCloudDocumentaiUiv1beta3CommonOperationMetadata
|
2100
2156
|
# @private
|
2101
2157
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4818,6 +4874,14 @@ module Google
|
|
4818
4874
|
end
|
4819
4875
|
end
|
4820
4876
|
|
4877
|
+
class GoogleCloudDocumentaiV1beta3FieldExtractionMetadata
|
4878
|
+
# @private
|
4879
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4880
|
+
property :summary_options, as: 'summaryOptions', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SummaryOptions, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3SummaryOptions::Representation
|
4881
|
+
|
4882
|
+
end
|
4883
|
+
end
|
4884
|
+
|
4821
4885
|
class GoogleCloudDocumentaiV1beta3GcsDocument
|
4822
4886
|
# @private
|
4823
4887
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5024,6 +5088,8 @@ module Google
|
|
5024
5088
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5025
5089
|
property :ocr_config, as: 'ocrConfig', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3OcrConfig, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3OcrConfig::Representation
|
5026
5090
|
|
5091
|
+
property :schema_override, as: 'schemaOverride', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentSchema, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentSchema::Representation
|
5092
|
+
|
5027
5093
|
end
|
5028
5094
|
end
|
5029
5095
|
|
@@ -5131,6 +5197,8 @@ module Google
|
|
5131
5197
|
class GoogleCloudDocumentaiV1beta3PropertyMetadata
|
5132
5198
|
# @private
|
5133
5199
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5200
|
+
property :field_extraction_metadata, as: 'fieldExtractionMetadata', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3FieldExtractionMetadata, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3FieldExtractionMetadata::Representation
|
5201
|
+
|
5134
5202
|
property :inactive, as: 'inactive'
|
5135
5203
|
end
|
5136
5204
|
end
|
@@ -5210,6 +5278,14 @@ module Google
|
|
5210
5278
|
end
|
5211
5279
|
end
|
5212
5280
|
|
5281
|
+
class GoogleCloudDocumentaiV1beta3SummaryOptions
|
5282
|
+
# @private
|
5283
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5284
|
+
property :format, as: 'format'
|
5285
|
+
property :length, as: 'length'
|
5286
|
+
end
|
5287
|
+
end
|
5288
|
+
|
5213
5289
|
class GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadata
|
5214
5290
|
# @private
|
5215
5291
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-documentai_v1beta3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.81.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: 2023-08-
|
11
|
+
date: 2023-08-27 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_v1beta3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1beta3/v0.81.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1beta3
|
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.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Document AI API V1beta3
|