Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StreamingReadFeatureValuesRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1StreamingReadFeatureValuesRequest
- 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. StreamingFeatureValuesRead.
Instance Attribute Summary collapse
-
#entity_ids ⇒ Array<String>
Required.
-
#feature_selector ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureSelector
Selector for Features of an EntityType.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1StreamingReadFeatureValuesRequest
constructor
A new instance of GoogleCloudAiplatformV1beta1StreamingReadFeatureValuesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1StreamingReadFeatureValuesRequest
Returns a new instance of GoogleCloudAiplatformV1beta1StreamingReadFeatureValuesRequest.
32053 32054 32055 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32053 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
32046 32047 32048 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32046 def entity_ids @entity_ids end |
#feature_selector ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureSelector
Selector for Features of an EntityType.
Corresponds to the JSON property featureSelector
32051 32052 32053 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32051 def feature_selector @feature_selector end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
32058 32059 32060 32061 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32058 def update!(**args) @entity_ids = args[:entity_ids] if args.key?(:entity_ids) @feature_selector = args[:feature_selector] if args.key?(:feature_selector) end |