Class: Google::Cloud::AIPlatform::V1::WriteFeatureValuesPayload
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::WriteFeatureValuesPayload
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/featurestore_online_service.rb
Overview
Contains Feature values to be written for a specific entity.
Defined Under Namespace
Classes: FeatureValuesEntry
Instance Attribute Summary collapse
-
#entity_id ⇒ ::String
Required.
-
#feature_values ⇒ ::Google::Protobuf::Map{::String => ::Google::Cloud::AIPlatform::V1::FeatureValue}
Required.
Instance Attribute Details
#entity_id ⇒ ::String
Returns Required. The ID of the entity.
53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'proto_docs/google/cloud/aiplatform/v1/featurestore_online_service.rb', line 53 class WriteFeatureValuesPayload include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::AIPlatform::V1::FeatureValue] class FeatureValuesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#feature_values ⇒ ::Google::Protobuf::Map{::String => ::Google::Cloud::AIPlatform::V1::FeatureValue}
Returns Required. Feature values to be written, mapping from Feature ID to value.
Up to 100,000 feature_values
entries may be written across all payloads.
The feature generation time, aligned by days, must be no older than five
years (1825 days) and no later than one year (366 days) in the future.
53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'proto_docs/google/cloud/aiplatform/v1/featurestore_online_service.rb', line 53 class WriteFeatureValuesPayload include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::AIPlatform::V1::FeatureValue] class FeatureValuesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |