Struct gapi_grpc::google::cloud::aiplatform::v1beta1::ReadFeatureValuesRequest[][src]

pub struct ReadFeatureValuesRequest {
    pub entity_type: String,
    pub entity_id: String,
    pub feature_selector: Option<FeatureSelector>,
}

Request message for [FeaturestoreOnlineServingService.ReadFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreOnlineServingService.ReadFeatureValues].

Fields

entity_type: String

Required. The resource name of the EntityType for the entity being read. Value format: projects/{project}/locations/{location}/featurestores/ {featurestore}/entityTypes/{entityType}. For example, for a machine learning model predicting user clicks on a website, an EntityType ID could be “user”.

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”.

feature_selector: Option<FeatureSelector>

Required. Selector choosing Features of the target EntityType.

Trait Implementations

impl Clone for ReadFeatureValuesRequest[src]

impl Debug for ReadFeatureValuesRequest[src]

impl Default for ReadFeatureValuesRequest[src]

impl Message for ReadFeatureValuesRequest[src]

impl PartialEq<ReadFeatureValuesRequest> for ReadFeatureValuesRequest[src]

impl StructuralPartialEq for ReadFeatureValuesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ReadFeatureValuesRequest

impl Send for ReadFeatureValuesRequest

impl Sync for ReadFeatureValuesRequest

impl Unpin for ReadFeatureValuesRequest

impl UnwindSafe for ReadFeatureValuesRequest

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]