Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -246695,6 +246695,7 @@
"/documentai:v1beta3/CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule/fieldRegex": field_regex
"/documentai:v1beta3/CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule/formValidation": form_validation
"/documentai:v1beta3/CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule/name": name
"/documentai:v1beta3/CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule/ruleId": rule_id
"/documentai:v1beta3/CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleAlignmentRule": cloud_ai_documentai_lab_hifia_tools_validation_validator_input_validation_rule_alignment_rule
"/documentai:v1beta3/CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleAlignmentRule/alignmentType": alignment_type
"/documentai:v1beta3/CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleAlignmentRule/tolerance": tolerance
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-documentai_v1beta3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-documentai_v1beta3

### v0.117.0 (2025-11-09)

* Regenerated from discovery document revision 20251030

### v0.116.0 (2025-11-02)

* Regenerated from discovery document revision 20251020
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module Apis
module DocumentaiV1beta3

# Definition of the validation rules. Those are the input to the validator logic
# and they are used to validate a document.
# and they are used to validate a document. Next ID: 3
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInput
include Google::Apis::Core::Hashable

Expand All @@ -42,7 +42,7 @@ def update!(**args)
end
end

#
# Next ID: 9
class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule
include Google::Apis::Core::Hashable

Expand Down Expand Up @@ -81,6 +81,11 @@ class CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRule
# @return [String]
attr_accessor :name

# Unique identifier of the rule. Optional.
# Corresponds to the JSON property `ruleId`
# @return [String]
attr_accessor :rule_id

def initialize(**args)
update!(**args)
end
Expand All @@ -94,6 +99,7 @@ def update!(**args)
@field_regex = args[:field_regex] if args.key?(:field_regex)
@form_validation = args[:form_validation] if args.key?(:form_validation)
@name = args[:name] if args.key?(:name)
@rule_id = args[:rule_id] if args.key?(:rule_id)
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module DocumentaiV1beta3
# Version of the google-apis-documentai_v1beta3 gem
GEM_VERSION = "0.116.0"
GEM_VERSION = "0.117.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20251020"
REVISION = "20251030"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1989,6 +1989,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :form_validation, as: 'formValidation', class: Google::Apis::DocumentaiV1beta3::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidation, decorator: Google::Apis::DocumentaiV1beta3::CloudAiDocumentaiLabHifiaToolsValidationValidatorInputValidationRuleFormValidation::Representation

property :name, as: 'name'
property :rule_id, as: 'ruleId'
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ def get_project_location(name, fields: nil, quota_user: nil, options: nil, &bloc
# @param [String] name
# The resource that owns the locations collection, if applicable.
# @param [Array<String>, String] extra_location_types
# Optional. Unless explicitly documented otherwise, don't use this unsupported
# field which is primarily intended for internal usage.
# Optional. Do not use this field. It is unsupported and is ignored unless
# explicitly documented otherwise. This is primarily for internal usage.
# @param [String] filter
# A filter to narrow down results to a preferred subset. The filtering language
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
Expand Down