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.
28998 28999 29000 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28998 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
28991 28992 28993 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28991 def entity_ids @entity_ids end |
#feature_selector ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FeatureSelector
Selector for Features of an EntityType.
Corresponds to the JSON property featureSelector
28996 28997 28998 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28996 def feature_selector @feature_selector end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
29003 29004 29005 29006 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 29003 def update!(**args) @entity_ids = args[:entity_ids] if args.key?(:entity_ids) @feature_selector = args[:feature_selector] if args.key?(:feature_selector) end |