Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReadFeatureValuesResponseHeader

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Overview

Response header with metadata for the requested ReadFeatureValuesRequest. entity_type and Features.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1ReadFeatureValuesResponseHeader

Returns a new instance of GoogleCloudAiplatformV1ReadFeatureValuesResponseHeader.



14972
14973
14974
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14972

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

Instance Attribute Details

#entity_typeString

The resource name of the EntityType from the ReadFeatureValuesRequest. Value format: projects/project/locations/location/featurestores/featurestore/ entityTypes/entityType`. Corresponds to the JSON propertyentityType`

Returns:

  • (String)


14964
14965
14966
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14964

def entity_type
  @entity_type
end

#feature_descriptorsArray<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReadFeatureValuesResponseFeatureDescriptor>

List of Feature metadata corresponding to each piece of ReadFeatureValuesResponse.EntityView.data. Corresponds to the JSON property featureDescriptors



14970
14971
14972
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14970

def feature_descriptors
  @feature_descriptors
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



14977
14978
14979
14980
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14977

def update!(**args)
  @entity_type = args[:entity_type] if args.key?(:entity_type)
  @feature_descriptors = args[:feature_descriptors] if args.key?(:feature_descriptors)
end