Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FetchFeatureValuesRequest

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

Request message for FeatureOnlineStoreService.FetchFeatureValues. All the features under the requested feature view will be returned.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1FetchFeatureValuesRequest

Returns a new instance of GoogleCloudAiplatformV1FetchFeatureValuesRequest.



7234
7235
7236
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 7234

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

Instance Attribute Details

#formatString

Specify response data format. If not set, KeyValue format will be used. Corresponds to the JSON property format

Returns:

  • (String)


7226
7227
7228
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 7226

def format
  @format
end

#idString

Simple ID. The whole string will be used as is to identify Entity to fetch feature values for. Corresponds to the JSON property id

Returns:

  • (String)


7232
7233
7234
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 7232

def id
  @id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7239
7240
7241
7242
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 7239

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