google-apis-documentai_v1 0.100.0 → 0.102.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: d401e4a2d5ccc9de7b938b3d794d799d7b4e487ad4fce9ac4607186c0cb1aa69
|
4
|
+
data.tar.gz: ca90daddcd8e7e2c11e753a99424e441a5cdbbbc913e54d195c13cdd2ff22082
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae77aec26e194095c58fb521b21af1eb5d4df616775f787e2b4698b369bb739d8b4220047611be9035d19df150cda6efb74095e388b09b5b3f445ac546563ca5
|
7
|
+
data.tar.gz: 732abc5acf6e64c248cf2ff044449dd626f73006169a60b69bccf1cccb4ef1a51cccd827d67a4f470e87baaaee9691c891f4499d70235be585db986cb74a98bb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-documentai_v1
|
2
2
|
|
3
|
+
### v0.102.0 (2025-08-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250820
|
6
|
+
|
7
|
+
### v0.101.0 (2025-08-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250811
|
10
|
+
|
3
11
|
### v0.100.0 (2025-07-27)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250716
|
@@ -22,6 +22,239 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module DocumentaiV1
|
24
24
|
|
25
|
+
# Definition of the validation rules. Those are the input to the validator logic
|
26
|
+
# and they are used to validate a document.
|
27
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInput
|
28
|
+
include Google::Apis::Core::Hashable
|
29
|
+
|
30
|
+
#
|
31
|
+
# Corresponds to the JSON property `validationRules`
|
32
|
+
# @return [Array<Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule>]
|
33
|
+
attr_accessor :validation_rules
|
34
|
+
|
35
|
+
def initialize(**args)
|
36
|
+
update!(**args)
|
37
|
+
end
|
38
|
+
|
39
|
+
# Update properties of this object
|
40
|
+
def update!(**args)
|
41
|
+
@validation_rules = args[:validation_rules] if args.key?(:validation_rules)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
#
|
46
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule
|
47
|
+
include Google::Apis::Core::Hashable
|
48
|
+
|
49
|
+
# Description of the validation rule. This has no use but for documentation
|
50
|
+
# Corresponds to the JSON property `description`
|
51
|
+
# @return [String]
|
52
|
+
attr_accessor :description
|
53
|
+
|
54
|
+
#
|
55
|
+
# Corresponds to the JSON property `fieldOccurrences`
|
56
|
+
# @return [Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFieldOccurrences]
|
57
|
+
attr_accessor :field_occurrences
|
58
|
+
|
59
|
+
#
|
60
|
+
# Corresponds to the JSON property `fieldRegex`
|
61
|
+
# @return [Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFieldRegex]
|
62
|
+
attr_accessor :field_regex
|
63
|
+
|
64
|
+
#
|
65
|
+
# Corresponds to the JSON property `formValidation`
|
66
|
+
# @return [Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidation]
|
67
|
+
attr_accessor :form_validation
|
68
|
+
|
69
|
+
# Name of the validation rule.
|
70
|
+
# Corresponds to the JSON property `name`
|
71
|
+
# @return [String]
|
72
|
+
attr_accessor :name
|
73
|
+
|
74
|
+
def initialize(**args)
|
75
|
+
update!(**args)
|
76
|
+
end
|
77
|
+
|
78
|
+
# Update properties of this object
|
79
|
+
def update!(**args)
|
80
|
+
@description = args[:description] if args.key?(:description)
|
81
|
+
@field_occurrences = args[:field_occurrences] if args.key?(:field_occurrences)
|
82
|
+
@field_regex = args[:field_regex] if args.key?(:field_regex)
|
83
|
+
@form_validation = args[:form_validation] if args.key?(:form_validation)
|
84
|
+
@name = args[:name] if args.key?(:name)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
# The constant value used in the validation rules.
|
89
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleConstant
|
90
|
+
include Google::Apis::Core::Hashable
|
91
|
+
|
92
|
+
#
|
93
|
+
# Corresponds to the JSON property `floatValue`
|
94
|
+
# @return [Float]
|
95
|
+
attr_accessor :float_value
|
96
|
+
|
97
|
+
def initialize(**args)
|
98
|
+
update!(**args)
|
99
|
+
end
|
100
|
+
|
101
|
+
# Update properties of this object
|
102
|
+
def update!(**args)
|
103
|
+
@float_value = args[:float_value] if args.key?(:float_value)
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
#
|
108
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleField
|
109
|
+
include Google::Apis::Core::Hashable
|
110
|
+
|
111
|
+
# The constant value used in the validation rules.
|
112
|
+
# Corresponds to the JSON property `defaultValue`
|
113
|
+
# @return [Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleConstant]
|
114
|
+
attr_accessor :default_value
|
115
|
+
|
116
|
+
# The field name to validate. This can be a simple field name or a nested field
|
117
|
+
# one using the ':' (meant as an aggregator) or '*' (meant as foreach) operators.
|
118
|
+
# Corresponds to the JSON property `fieldName`
|
119
|
+
# @return [String]
|
120
|
+
attr_accessor :field_name
|
121
|
+
|
122
|
+
def initialize(**args)
|
123
|
+
update!(**args)
|
124
|
+
end
|
125
|
+
|
126
|
+
# Update properties of this object
|
127
|
+
def update!(**args)
|
128
|
+
@default_value = args[:default_value] if args.key?(:default_value)
|
129
|
+
@field_name = args[:field_name] if args.key?(:field_name)
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
#
|
134
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFieldOccurrences
|
135
|
+
include Google::Apis::Core::Hashable
|
136
|
+
|
137
|
+
#
|
138
|
+
# Corresponds to the JSON property `field`
|
139
|
+
# @return [Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleField]
|
140
|
+
attr_accessor :field
|
141
|
+
|
142
|
+
#
|
143
|
+
# Corresponds to the JSON property `maxOccurrences`
|
144
|
+
# @return [Fixnum]
|
145
|
+
attr_accessor :max_occurrences
|
146
|
+
|
147
|
+
# Min and max occurrences of the field. If not set, there is limit set. The
|
148
|
+
# defined interval is a closed-closed interval, i.e. [min, max].
|
149
|
+
# Corresponds to the JSON property `minOccurrences`
|
150
|
+
# @return [Fixnum]
|
151
|
+
attr_accessor :min_occurrences
|
152
|
+
|
153
|
+
def initialize(**args)
|
154
|
+
update!(**args)
|
155
|
+
end
|
156
|
+
|
157
|
+
# Update properties of this object
|
158
|
+
def update!(**args)
|
159
|
+
@field = args[:field] if args.key?(:field)
|
160
|
+
@max_occurrences = args[:max_occurrences] if args.key?(:max_occurrences)
|
161
|
+
@min_occurrences = args[:min_occurrences] if args.key?(:min_occurrences)
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
#
|
166
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFieldRegex
|
167
|
+
include Google::Apis::Core::Hashable
|
168
|
+
|
169
|
+
#
|
170
|
+
# Corresponds to the JSON property `field`
|
171
|
+
# @return [Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleField]
|
172
|
+
attr_accessor :field
|
173
|
+
|
174
|
+
# Python regex to validate the field values.
|
175
|
+
# Corresponds to the JSON property `pattern`
|
176
|
+
# @return [String]
|
177
|
+
attr_accessor :pattern
|
178
|
+
|
179
|
+
def initialize(**args)
|
180
|
+
update!(**args)
|
181
|
+
end
|
182
|
+
|
183
|
+
# Update properties of this object
|
184
|
+
def update!(**args)
|
185
|
+
@field = args[:field] if args.key?(:field)
|
186
|
+
@pattern = args[:pattern] if args.key?(:pattern)
|
187
|
+
end
|
188
|
+
end
|
189
|
+
|
190
|
+
#
|
191
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidation
|
192
|
+
include Google::Apis::Core::Hashable
|
193
|
+
|
194
|
+
#
|
195
|
+
# Corresponds to the JSON property `leftOperand`
|
196
|
+
# @return [Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidationOperation]
|
197
|
+
attr_accessor :left_operand
|
198
|
+
|
199
|
+
#
|
200
|
+
# Corresponds to the JSON property `rightOperand`
|
201
|
+
# @return [Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidationOperation]
|
202
|
+
attr_accessor :right_operand
|
203
|
+
|
204
|
+
# The relational operator to be applied to the operands.
|
205
|
+
# Corresponds to the JSON property `validationOperator`
|
206
|
+
# @return [String]
|
207
|
+
attr_accessor :validation_operator
|
208
|
+
|
209
|
+
def initialize(**args)
|
210
|
+
update!(**args)
|
211
|
+
end
|
212
|
+
|
213
|
+
# Update properties of this object
|
214
|
+
def update!(**args)
|
215
|
+
@left_operand = args[:left_operand] if args.key?(:left_operand)
|
216
|
+
@right_operand = args[:right_operand] if args.key?(:right_operand)
|
217
|
+
@validation_operator = args[:validation_operator] if args.key?(:validation_operator)
|
218
|
+
end
|
219
|
+
end
|
220
|
+
|
221
|
+
#
|
222
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidationOperation
|
223
|
+
include Google::Apis::Core::Hashable
|
224
|
+
|
225
|
+
# A list of constants to be used as operands.
|
226
|
+
# Corresponds to the JSON property `constants`
|
227
|
+
# @return [Array<Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleConstant>]
|
228
|
+
attr_accessor :constants
|
229
|
+
|
230
|
+
# A list of fields to be used as operands.
|
231
|
+
# Corresponds to the JSON property `fields`
|
232
|
+
# @return [Array<Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleField>]
|
233
|
+
attr_accessor :fields
|
234
|
+
|
235
|
+
# The operation type to be applied to all the operands.
|
236
|
+
# Corresponds to the JSON property `operationType`
|
237
|
+
# @return [String]
|
238
|
+
attr_accessor :operation_type
|
239
|
+
|
240
|
+
# A list of recursive operations to be used as operands.
|
241
|
+
# Corresponds to the JSON property `operations`
|
242
|
+
# @return [Array<Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidationOperation>]
|
243
|
+
attr_accessor :operations
|
244
|
+
|
245
|
+
def initialize(**args)
|
246
|
+
update!(**args)
|
247
|
+
end
|
248
|
+
|
249
|
+
# Update properties of this object
|
250
|
+
def update!(**args)
|
251
|
+
@constants = args[:constants] if args.key?(:constants)
|
252
|
+
@fields = args[:fields] if args.key?(:fields)
|
253
|
+
@operation_type = args[:operation_type] if args.key?(:operation_type)
|
254
|
+
@operations = args[:operations] if args.key?(:operations)
|
255
|
+
end
|
256
|
+
end
|
257
|
+
|
25
258
|
# Metadata of the auto-labeling documents operation.
|
26
259
|
class GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadata
|
27
260
|
include Google::Apis::Core::Hashable
|
@@ -2369,6 +2602,11 @@ module Google
|
|
2369
2602
|
# @return [String]
|
2370
2603
|
attr_accessor :mention_text
|
2371
2604
|
|
2605
|
+
# Optional. Specifies how the entity's value is obtained.
|
2606
|
+
# Corresponds to the JSON property `method`
|
2607
|
+
# @return [String]
|
2608
|
+
attr_accessor :method_prop
|
2609
|
+
|
2372
2610
|
# Parsed and normalized entity value.
|
2373
2611
|
# Corresponds to the JSON property `normalizedValue`
|
2374
2612
|
# @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentEntityNormalizedValue]
|
@@ -2419,6 +2657,7 @@ module Google
|
|
2419
2657
|
@id = args[:id] if args.key?(:id)
|
2420
2658
|
@mention_id = args[:mention_id] if args.key?(:mention_id)
|
2421
2659
|
@mention_text = args[:mention_text] if args.key?(:mention_text)
|
2660
|
+
@method_prop = args[:method_prop] if args.key?(:method_prop)
|
2422
2661
|
@normalized_value = args[:normalized_value] if args.key?(:normalized_value)
|
2423
2662
|
@page_anchor = args[:page_anchor] if args.key?(:page_anchor)
|
2424
2663
|
@properties = args[:properties] if args.key?(:properties)
|
@@ -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.102.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250820"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,54 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module DocumentaiV1
|
24
24
|
|
25
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInput
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
31
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
37
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleConstant
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
43
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleField
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
49
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFieldOccurrences
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
55
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFieldRegex
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
61
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidation
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
+
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
65
|
+
end
|
66
|
+
|
67
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidationOperation
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
25
73
|
class GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadata
|
26
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
75
|
|
@@ -1504,6 +1552,87 @@ module Google
|
|
1504
1552
|
include Google::Apis::Core::JsonObjectSupport
|
1505
1553
|
end
|
1506
1554
|
|
1555
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInput
|
1556
|
+
# @private
|
1557
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1558
|
+
collection :validation_rules, as: 'validationRules', class: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule, decorator: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule::Representation
|
1559
|
+
|
1560
|
+
end
|
1561
|
+
end
|
1562
|
+
|
1563
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule
|
1564
|
+
# @private
|
1565
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1566
|
+
property :description, as: 'description'
|
1567
|
+
property :field_occurrences, as: 'fieldOccurrences', class: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFieldOccurrences, decorator: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFieldOccurrences::Representation
|
1568
|
+
|
1569
|
+
property :field_regex, as: 'fieldRegex', class: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFieldRegex, decorator: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFieldRegex::Representation
|
1570
|
+
|
1571
|
+
property :form_validation, as: 'formValidation', class: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidation, decorator: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidation::Representation
|
1572
|
+
|
1573
|
+
property :name, as: 'name'
|
1574
|
+
end
|
1575
|
+
end
|
1576
|
+
|
1577
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleConstant
|
1578
|
+
# @private
|
1579
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1580
|
+
property :float_value, as: 'floatValue'
|
1581
|
+
end
|
1582
|
+
end
|
1583
|
+
|
1584
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleField
|
1585
|
+
# @private
|
1586
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1587
|
+
property :default_value, as: 'defaultValue', class: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleConstant, decorator: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleConstant::Representation
|
1588
|
+
|
1589
|
+
property :field_name, as: 'fieldName'
|
1590
|
+
end
|
1591
|
+
end
|
1592
|
+
|
1593
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFieldOccurrences
|
1594
|
+
# @private
|
1595
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1596
|
+
property :field, as: 'field', class: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleField, decorator: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleField::Representation
|
1597
|
+
|
1598
|
+
property :max_occurrences, as: 'maxOccurrences'
|
1599
|
+
property :min_occurrences, as: 'minOccurrences'
|
1600
|
+
end
|
1601
|
+
end
|
1602
|
+
|
1603
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFieldRegex
|
1604
|
+
# @private
|
1605
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1606
|
+
property :field, as: 'field', class: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleField, decorator: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleField::Representation
|
1607
|
+
|
1608
|
+
property :pattern, as: 'pattern'
|
1609
|
+
end
|
1610
|
+
end
|
1611
|
+
|
1612
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidation
|
1613
|
+
# @private
|
1614
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1615
|
+
property :left_operand, as: 'leftOperand', class: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidationOperation, decorator: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidationOperation::Representation
|
1616
|
+
|
1617
|
+
property :right_operand, as: 'rightOperand', class: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidationOperation, decorator: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidationOperation::Representation
|
1618
|
+
|
1619
|
+
property :validation_operator, as: 'validationOperator'
|
1620
|
+
end
|
1621
|
+
end
|
1622
|
+
|
1623
|
+
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidationOperation
|
1624
|
+
# @private
|
1625
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1626
|
+
collection :constants, as: 'constants', class: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleConstant, decorator: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleConstant::Representation
|
1627
|
+
|
1628
|
+
collection :fields, as: 'fields', class: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleField, decorator: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleField::Representation
|
1629
|
+
|
1630
|
+
property :operation_type, as: 'operationType'
|
1631
|
+
collection :operations, as: 'operations', class: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidationOperation, decorator: Google::Apis::DocumentaiV1::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidationOperation::Representation
|
1632
|
+
|
1633
|
+
end
|
1634
|
+
end
|
1635
|
+
|
1507
1636
|
class GoogleCloudDocumentaiUiv1beta3AutoLabelDocumentsMetadata
|
1508
1637
|
# @private
|
1509
1638
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2320,6 +2449,7 @@ module Google
|
|
2320
2449
|
property :id, as: 'id'
|
2321
2450
|
property :mention_id, as: 'mentionId'
|
2322
2451
|
property :mention_text, as: 'mentionText'
|
2452
|
+
property :method_prop, as: 'method'
|
2323
2453
|
property :normalized_value, as: 'normalizedValue', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentEntityNormalizedValue, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentEntityNormalizedValue::Representation
|
2324
2454
|
|
2325
2455
|
property :page_anchor, as: 'pageAnchor', class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageAnchor, decorator: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1DocumentPageAnchor::Representation
|
@@ -152,8 +152,8 @@ module Google
|
|
152
152
|
# @param [String] name
|
153
153
|
# The resource that owns the locations collection, if applicable.
|
154
154
|
# @param [Array<String>, String] extra_location_types
|
155
|
-
# Optional.
|
156
|
-
#
|
155
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
156
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
157
157
|
# @param [String] filter
|
158
158
|
# A filter to narrow down results to a preferred subset. The filtering language
|
159
159
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.102.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-documentai_v1/v0.102.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-documentai_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|