Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReadFeatureValuesResponseHeader
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReadFeatureValuesResponseHeader
- 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 header with metadata for the requested ReadFeatureValuesRequest. entity_type and Features.
Instance Attribute Summary collapse
-
#entity_type ⇒ String
The resource name of the EntityType from the ReadFeatureValuesRequest.
-
#feature_descriptors ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReadFeatureValuesResponseFeatureDescriptor>
List of Feature metadata corresponding to each piece of ReadFeatureValuesResponse.EntityView.data.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReadFeatureValuesResponseHeader
constructor
A new instance of GoogleCloudAiplatformV1beta1ReadFeatureValuesResponseHeader.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReadFeatureValuesResponseHeader
Returns a new instance of GoogleCloudAiplatformV1beta1ReadFeatureValuesResponseHeader.
23170 23171 23172 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23170 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_type ⇒ String
The resource name of the EntityType from the ReadFeatureValuesRequest. Value
format: projects/
project/locations/
location/featurestores/
featurestore/
entityTypes/
entityType`.
Corresponds to the JSON property
entityType`
23162 23163 23164 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23162 def entity_type @entity_type end |
#feature_descriptors ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReadFeatureValuesResponseFeatureDescriptor>
List of Feature metadata corresponding to each piece of
ReadFeatureValuesResponse.EntityView.data.
Corresponds to the JSON property featureDescriptors
23168 23169 23170 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23168 def feature_descriptors @feature_descriptors end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23175 23176 23177 23178 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23175 def update!(**args) @entity_type = args[:entity_type] if args.key?(:entity_type) @feature_descriptors = args[:feature_descriptors] if args.key?(:feature_descriptors) end |