Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/documentai_v1beta3/classes.rb,
lib/google/apis/documentai_v1beta3/representations.rb,
lib/google/apis/documentai_v1beta3/representations.rb
Overview
The metadata that represents a processor version being created.
Instance Attribute Summary collapse
-
#common_metadata ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3CommonOperationMetadata
The common metadata for long running operations.
-
#test_dataset_validation ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadataDatasetValidation
The dataset validation information.
-
#training_dataset_validation ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadataDatasetValidation
The dataset validation information.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadata
constructor
A new instance of GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadata
Returns a new instance of GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadata.
11220 11221 11222 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 11220 def initialize(**args) update!(**args) end |
Instance Attribute Details
#common_metadata ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3CommonOperationMetadata
The common metadata for long running operations.
Corresponds to the JSON property commonMetadata
11206 11207 11208 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 11206 def @common_metadata end |
#test_dataset_validation ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadataDatasetValidation
The dataset validation information. This includes any and all errors with
documents and the dataset.
Corresponds to the JSON property testDatasetValidation
11212 11213 11214 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 11212 def test_dataset_validation @test_dataset_validation end |
#training_dataset_validation ⇒ Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadataDatasetValidation
The dataset validation information. This includes any and all errors with
documents and the dataset.
Corresponds to the JSON property trainingDatasetValidation
11218 11219 11220 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 11218 def training_dataset_validation @training_dataset_validation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11225 11226 11227 11228 11229 |
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 11225 def update!(**args) @common_metadata = args[:common_metadata] if args.key?(:common_metadata) @test_dataset_validation = args[:test_dataset_validation] if args.key?(:test_dataset_validation) @training_dataset_validation = args[:training_dataset_validation] if args.key?(:training_dataset_validation) end |