Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportFeatureValuesOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportFeatureValuesOperationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Details of operations that perform import Feature values.
Instance Attribute Summary collapse
-
#blocking_operation_ids ⇒ Array<Fixnum>
List of ImportFeatureValues operations running under a single EntityType that are blocking this operation.
-
#generic_metadata ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata
Generic Metadata shared by all operations.
-
#imported_entity_count ⇒ Fixnum
Number of entities that have been imported by the operation.
-
#imported_feature_value_count ⇒ Fixnum
Number of Feature values that have been imported by the operation.
-
#invalid_row_count ⇒ Fixnum
The number of rows in input source that weren't imported due to either * Not having any featureValues.
-
#source_uris ⇒ Array<String>
The source URI from where Feature values are imported.
-
#timestamp_outside_retention_rows_count ⇒ Fixnum
The number rows that weren't ingested due to having timestamps outside the retention boundary.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ImportFeatureValuesOperationMetadata
constructor
A new instance of GoogleCloudAiplatformV1beta1ImportFeatureValuesOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ImportFeatureValuesOperationMetadata
Returns a new instance of GoogleCloudAiplatformV1beta1ImportFeatureValuesOperationMetadata.
8604 8605 8606 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8604 def initialize(**args) update!(**args) end |
Instance Attribute Details
#blocking_operation_ids ⇒ Array<Fixnum>
List of ImportFeatureValues operations running under a single EntityType that
are blocking this operation.
Corresponds to the JSON property blockingOperationIds
8569 8570 8571 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8569 def blocking_operation_ids @blocking_operation_ids end |
#generic_metadata ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata
Generic Metadata shared by all operations.
Corresponds to the JSON property genericMetadata
8574 8575 8576 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8574 def @generic_metadata end |
#imported_entity_count ⇒ Fixnum
Number of entities that have been imported by the operation.
Corresponds to the JSON property importedEntityCount
8579 8580 8581 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8579 def imported_entity_count @imported_entity_count end |
#imported_feature_value_count ⇒ Fixnum
Number of Feature values that have been imported by the operation.
Corresponds to the JSON property importedFeatureValueCount
8584 8585 8586 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8584 def imported_feature_value_count @imported_feature_value_count end |
#invalid_row_count ⇒ Fixnum
The number of rows in input source that weren't imported due to either * Not having any featureValues. * Having a null entityId. * Having a null timestamp.
- Not being parsable (applicable for CSV sources).
Corresponds to the JSON property
invalidRowCount
8591 8592 8593 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8591 def invalid_row_count @invalid_row_count end |
#source_uris ⇒ Array<String>
The source URI from where Feature values are imported.
Corresponds to the JSON property sourceUris
8596 8597 8598 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8596 def source_uris @source_uris end |
#timestamp_outside_retention_rows_count ⇒ Fixnum
The number rows that weren't ingested due to having timestamps outside the
retention boundary.
Corresponds to the JSON property timestampOutsideRetentionRowsCount
8602 8603 8604 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8602 def @timestamp_outside_retention_rows_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8609 8610 8611 8612 8613 8614 8615 8616 8617 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8609 def update!(**args) @blocking_operation_ids = args[:blocking_operation_ids] if args.key?(:blocking_operation_ids) @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata) @imported_entity_count = args[:imported_entity_count] if args.key?(:imported_entity_count) @imported_feature_value_count = args[:imported_feature_value_count] if args.key?(:imported_feature_value_count) @invalid_row_count = args[:invalid_row_count] if args.key?(:invalid_row_count) @source_uris = args[:source_uris] if args.key?(:source_uris) @timestamp_outside_retention_rows_count = args[:timestamp_outside_retention_rows_count] if args.key?(:timestamp_outside_retention_rows_count) end |