Skip to main content

feature_views_feature_values

Creates, updates, deletes, gets or lists a feature_views_feature_values resource.

Overview

Namefeature_views_feature_values
TypeResource
Idgoogle.aiplatform.feature_views_feature_values

Fields

NameDatatypeDescription
dataKeyobjectLookup key for a feature view.
keyValuesobjectResponse structure in the format of key (feature name) and (feature) value pair.
protoStructobjectFeature values in proto Struct format.

Methods

NameAccessible byRequired ParamsDescription
fetch_feature_valuesSELECTfeatureOnlineStoresId, featureViewsId, locationsId, projectsIdFetch feature values under a FeatureView.

SELECT examples

Fetch feature values under a FeatureView.

SELECT
dataKey,
keyValues,
protoStruct
FROM google.aiplatform.feature_views_feature_values
WHERE featureOnlineStoresId = '{{ featureOnlineStoresId }}'
AND featureViewsId = '{{ featureViewsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';