Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportFeatureValuesResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportFeatureValuesResponse
- 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
Response message for FeaturestoreService.ImportFeatureValues.
Instance Attribute Summary collapse
-
#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.
-
#timestamp_outside_retention_rows_count ⇒ Fixnum
The number rows that weren't ingested due to having feature timestamps outside the retention boundary.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ImportFeatureValuesResponse
constructor
A new instance of GoogleCloudAiplatformV1beta1ImportFeatureValuesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ImportFeatureValuesResponse
Returns a new instance of GoogleCloudAiplatformV1beta1ImportFeatureValuesResponse.
8619 8620 8621 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8619 def initialize(**args) update!(**args) end |
Instance Attribute Details
#imported_entity_count ⇒ Fixnum
Number of entities that have been imported by the operation.
Corresponds to the JSON property importedEntityCount
8599 8600 8601 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8599 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
8604 8605 8606 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8604 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
8611 8612 8613 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8611 def invalid_row_count @invalid_row_count end |
#timestamp_outside_retention_rows_count ⇒ Fixnum
The number rows that weren't ingested due to having feature timestamps outside
the retention boundary.
Corresponds to the JSON property timestampOutsideRetentionRowsCount
8617 8618 8619 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8617 def @timestamp_outside_retention_rows_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8624 8625 8626 8627 8628 8629 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8624 def update!(**args) @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) @timestamp_outside_retention_rows_count = args[:timestamp_outside_retention_rows_count] if args.key?(:timestamp_outside_retention_rows_count) end |