Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FetchFeatureValuesResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FetchFeatureValuesResponse
- 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 FeatureOnlineStoreService.FetchFeatureValues
Instance Attribute Summary collapse
-
#data_key ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureViewDataKey
Lookup key for a feature view.
-
#key_values ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FetchFeatureValuesResponseFeatureNameValuePairList
Response structure in the format of key (feature name) and (feature) value pair.
-
#proto_struct ⇒ Hash<String,Object>
Feature values in proto Struct format.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FetchFeatureValuesResponse
constructor
A new instance of GoogleCloudAiplatformV1beta1FetchFeatureValuesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FetchFeatureValuesResponse
Returns a new instance of GoogleCloudAiplatformV1beta1FetchFeatureValuesResponse.
10160 10161 10162 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 10160 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_key ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureViewDataKey
Lookup key for a feature view.
Corresponds to the JSON property dataKey
10147 10148 10149 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 10147 def data_key @data_key end |
#key_values ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FetchFeatureValuesResponseFeatureNameValuePairList
Response structure in the format of key (feature name) and (feature) value
pair.
Corresponds to the JSON property keyValues
10153 10154 10155 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 10153 def key_values @key_values end |
#proto_struct ⇒ Hash<String,Object>
Feature values in proto Struct format.
Corresponds to the JSON property protoStruct
10158 10159 10160 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 10158 def proto_struct @proto_struct end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10165 10166 10167 10168 10169 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 10165 def update!(**args) @data_key = args[:data_key] if args.key?(:data_key) @key_values = args[:key_values] if args.key?(:key_values) @proto_struct = args[:proto_struct] if args.key?(:proto_struct) end |