Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1StreamingReadFeatureValuesRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1StreamingReadFeatureValuesRequest
- 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 FeaturestoreOnlineServingService. StreamingFeatureValuesRead.
Instance Attribute Summary collapse
-
#entity_ids ⇒ Array<String>
Required.
-
#feature_selector ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureSelector
Selector for Features of an EntityType.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1StreamingReadFeatureValuesRequest
constructor
A new instance of GoogleCloudAiplatformV1StreamingReadFeatureValuesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1StreamingReadFeatureValuesRequest
Returns a new instance of GoogleCloudAiplatformV1StreamingReadFeatureValuesRequest.
28400 28401 28402 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28400 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_ids ⇒ Array<String>
Required. IDs of entities to read Feature values of. The maximum number of IDs
is 100. 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 entityIds
28393 28394 28395 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28393 def entity_ids @entity_ids end |
#feature_selector ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureSelector
Selector for Features of an EntityType.
Corresponds to the JSON property featureSelector
28398 28399 28400 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28398 def feature_selector @feature_selector end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
28405 28406 28407 28408 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28405 def update!(**args) @entity_ids = args[:entity_ids] if args.key?(:entity_ids) @feature_selector = args[:feature_selector] if args.key?(:feature_selector) end |