Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ImportFeatureValuesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ImportFeatureValuesResponse

Returns a new instance of GoogleCloudAiplatformV1beta1ImportFeatureValuesResponse.



8761
8762
8763
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8761

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#imported_entity_countFixnum

Number of entities that have been imported by the operation. Corresponds to the JSON property importedEntityCount

Returns:

  • (Fixnum)


8741
8742
8743
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8741

def imported_entity_count
  @imported_entity_count
end

#imported_feature_value_countFixnum

Number of Feature values that have been imported by the operation. Corresponds to the JSON property importedFeatureValueCount

Returns:

  • (Fixnum)


8746
8747
8748
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8746

def imported_feature_value_count
  @imported_feature_value_count
end

#invalid_row_countFixnum

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

Returns:

  • (Fixnum)


8753
8754
8755
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8753

def invalid_row_count
  @invalid_row_count
end

#timestamp_outside_retention_rows_countFixnum

The number rows that weren't ingested due to having feature timestamps outside the retention boundary. Corresponds to the JSON property timestampOutsideRetentionRowsCount

Returns:

  • (Fixnum)


8759
8760
8761
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8759

def timestamp_outside_retention_rows_count
  @timestamp_outside_retention_rows_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8766
8767
8768
8769
8770
8771
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8766

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