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.
6945 6946 6947 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 6945 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
6931 6932 6933 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 6931 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
6937 6938 6939 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 6937 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
6943 6944 6945 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 6943 def training_dataset_validation @training_dataset_validation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6950 6951 6952 6953 6954 |
# File 'lib/google/apis/documentai_v1beta2/classes.rb', line 6950 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 |