Class: Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/documentai_v1beta2/classes.rb,
lib/google/apis/documentai_v1beta2/representations.rb,
lib/google/apis/documentai_v1beta2/representations.rb
Overview
The metadata that represents a processor version being created.
Instance Attribute Summary collapse
-
#common_metadata ⇒ Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata
The common metadata for long running operations.
-
#test_dataset_validation ⇒ Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadataDatasetValidation
The dataset validation information.
-
#training_dataset_validation ⇒ Google::Apis::DocumentaiV1beta2::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.
8346 8347 8348 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 8346 def initialize(**args) update!(**args) end |
Instance Attribute Details
#common_metadata ⇒ Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3CommonOperationMetadata
The common metadata for long running operations.
Corresponds to the JSON property commonMetadata
8332 8333 8334 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 8332 def @common_metadata end |
#test_dataset_validation ⇒ Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadataDatasetValidation
The dataset validation information. This includes any and all errors with
documents and the dataset.
Corresponds to the JSON property testDatasetValidation
8338 8339 8340 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 8338 def test_dataset_validation @test_dataset_validation end |
#training_dataset_validation ⇒ Google::Apis::DocumentaiV1beta2::GoogleCloudDocumentaiV1beta3TrainProcessorVersionMetadataDatasetValidation
The dataset validation information. This includes any and all errors with
documents and the dataset.
Corresponds to the JSON property trainingDatasetValidation
8344 8345 8346 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 8344 def training_dataset_validation @training_dataset_validation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8351 8352 8353 8354 8355 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 8351 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 |