Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest
- 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
Request message for FeatureOnlineStoreService.FetchFeatureValues. All the features under the requested feature view will be returned.
Instance Attribute Summary collapse
-
#data_format ⇒ String
Optional.
-
#data_key ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureViewDataKey
Lookup key for a feature view.
-
#format ⇒ String
Specify response data format.
-
#id ⇒ String
Simple ID.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest
constructor
A new instance of GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest
Returns a new instance of GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest.
9293 9294 9295 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9293 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_format ⇒ String
Optional. Response data format. If not set, FeatureViewDataFormat.KEY_VALUE
will be used.
Corresponds to the JSON property dataFormat
9274 9275 9276 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9274 def data_format @data_format end |
#data_key ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureViewDataKey
Lookup key for a feature view.
Corresponds to the JSON property dataKey
9279 9280 9281 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9279 def data_key @data_key end |
#format ⇒ String
Specify response data format. If not set, KeyValue format will be used.
Deprecated. Use FetchFeatureValuesRequest.data_format.
Corresponds to the JSON property format
9285 9286 9287 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9285 def format @format end |
#id ⇒ String
Simple ID. The whole string will be used as is to identify Entity to fetch
feature values for.
Corresponds to the JSON property id
9291 9292 9293 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9291 def id @id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9298 9299 9300 9301 9302 9303 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9298 def update!(**args) @data_format = args[:data_format] if args.key?(:data_format) @data_key = args[:data_key] if args.key?(:data_key) @format = args[:format] if args.key?(:format) @id = args[:id] if args.key?(:id) end |