Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReadFeatureValuesRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReadFeatureValuesRequest
- 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 FeaturestoreOnlineServingService.ReadFeatureValues.
Instance Attribute Summary collapse
-
#entity_id ⇒ String
Required.
-
#feature_selector ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureSelector
Selector for Features of an EntityType.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReadFeatureValuesRequest
constructor
A new instance of GoogleCloudAiplatformV1beta1ReadFeatureValuesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReadFeatureValuesRequest
Returns a new instance of GoogleCloudAiplatformV1beta1ReadFeatureValuesRequest.
23042 23043 23044 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23042 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_id ⇒ String
Required. ID for a specific entity. For example, for a machine learning model
predicting user clicks on a website, an entity ID could be user_123
.
Corresponds to the JSON property entityId
23035 23036 23037 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23035 def entity_id @entity_id end |
#feature_selector ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureSelector
Selector for Features of an EntityType.
Corresponds to the JSON property featureSelector
23040 23041 23042 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23040 def feature_selector @feature_selector end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
23047 23048 23049 23050 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 23047 def update!(**args) @entity_id = args[:entity_id] if args.key?(:entity_id) @feature_selector = args[:feature_selector] if args.key?(:feature_selector) end |