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
2 changes: 2 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -238733,6 +238733,7 @@
"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow/cells": cells
"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow/cells/cell": cell
"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock": google_cloud_documentai_v1beta3_document_document_layout_document_layout_block_layout_text_block
"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock/annotations": annotations
"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock/blocks": blocks
"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock/blocks/block": block
"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock/text": text
Expand Down Expand Up @@ -239244,6 +239245,7 @@
"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3ProcessResponse/humanReviewOperation": human_review_operation
"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3ProcessResponse/humanReviewStatus": human_review_status
"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3Processor": google_cloud_documentai_v1beta3_processor
"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3Processor/activeSchemaVersion": active_schema_version
"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3Processor/createTime": create_time
"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3Processor/defaultProcessorVersion": default_processor_version
"/documentai:v1beta3/GoogleCloudDocumentaiV1beta3Processor/displayName": display_name
Expand Down
4 changes: 2 additions & 2 deletions generated/google-apis-documentai_v1beta3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Release history for google-apis-documentai_v1beta3

### v0.111.0 (2025-09-14)
### v0.111.0 (2025-09-21)

* Regenerated from discovery document revision 20250908
* Regenerated from discovery document revision 20250914

### v0.110.0 (2025-08-24)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3720,6 +3720,11 @@ def update!(**args)
class GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock
include Google::Apis::Core::Hashable

# Represents the annotation of a block or a chunk.
# Corresponds to the JSON property `annotations`
# @return [Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentAnnotations]
attr_accessor :annotations

# A text block could further have child blocks. Repeated blocks support further
# hierarchies and nested blocks.
# Corresponds to the JSON property `blocks`
Expand All @@ -3744,6 +3749,7 @@ def initialize(**args)

# Update properties of this object
def update!(**args)
@annotations = args[:annotations] if args.key?(:annotations)
@blocks = args[:blocks] if args.key?(:blocks)
@text = args[:text] if args.key?(:text)
@type = args[:type] if args.key?(:type)
Expand Down Expand Up @@ -6688,8 +6694,7 @@ class GoogleCloudDocumentaiV1beta3ImportProcessorVersionRequest
attr_accessor :external_processor_version_source

# The source processor version to import from. The source processor version and
# destination processor need to be in the same environment and region. Note that
# ProcessorVersions with `model_type` `MODEL_TYPE_LLM` are not supported.
# destination processor need to be in the same environment and region.
# Corresponds to the JSON property `processorVersionSource`
# @return [String]
attr_accessor :processor_version_source
Expand Down Expand Up @@ -7403,6 +7408,13 @@ def update!(**args)
class GoogleCloudDocumentaiV1beta3Processor
include Google::Apis::Core::Hashable

# Optional. SchemaVersion used by the Processor. It is the same as Processor's
# DatasetSchema.schema_version Format is `projects/`project`/locations/`location`
# /schemas/`schema`/schemaVersions/`schema_version`
# Corresponds to the JSON property `activeSchemaVersion`
# @return [String]
attr_accessor :active_schema_version

# Output only. The time the processor was created.
# Corresponds to the JSON property `createTime`
# @return [String]
Expand Down Expand Up @@ -7470,6 +7482,7 @@ def initialize(**args)

# Update properties of this object
def update!(**args)
@active_schema_version = args[:active_schema_version] if args.key?(:active_schema_version)
@create_time = args[:create_time] if args.key?(:create_time)
@default_processor_version = args[:default_processor_version] if args.key?(:default_processor_version)
@display_name = args[:display_name] if args.key?(:display_name)
Expand Down Expand Up @@ -8236,7 +8249,7 @@ def update!(**args)
class GoogleCloudDocumentaiV1beta3TrainProcessorVersionRequestCustomDocumentExtractionOptions
include Google::Apis::Core::Hashable

# Training method to use for CDE training.
# Optional. Training method to use for CDE training.
# Corresponds to the JSON property `trainingMethod`
# @return [String]
attr_accessor :training_method
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module DocumentaiV1beta3
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20250908"
REVISION = "20250914"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -2975,6 +2975,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
class GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlockLayoutTextBlock
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :annotations, as: 'annotations', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentAnnotations, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentAnnotations::Representation

collection :blocks, as: 'blocks', class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlock, decorator: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3DocumentDocumentLayoutDocumentLayoutBlock::Representation

property :text, as: 'text'
Expand Down Expand Up @@ -4015,6 +4017,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
class GoogleCloudDocumentaiV1beta3Processor
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :active_schema_version, as: 'activeSchemaVersion'
property :create_time, as: 'createTime'
property :default_processor_version, as: 'defaultProcessorVersion'
property :display_name, as: 'displayName'
Expand Down
Loading