Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FetchFeatureValuesRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FetchFeatureValuesRequest
- 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
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::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey
Lookup key for a feature view.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1FetchFeatureValuesRequest
constructor
A new instance of GoogleCloudAiplatformV1FetchFeatureValuesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1FetchFeatureValuesRequest
Returns a new instance of GoogleCloudAiplatformV1FetchFeatureValuesRequest.
7614 7615 7616 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 7614 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
7607 7608 7609 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 7607 def data_format @data_format end |
#data_key ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureViewDataKey
Lookup key for a feature view.
Corresponds to the JSON property dataKey
7612 7613 7614 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 7612 def data_key @data_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7619 7620 7621 7622 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 7619 def update!(**args) @data_format = args[:data_format] if args.key?(:data_format) @data_key = args[:data_key] if args.key?(:data_key) end |