Skip to main content

entity_types_feature_values

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

Overview

Nameentity_types_feature_values
TypeResource
Idgoogle.aiplatform.entity_types_feature_values

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
delete_feature_valuesDELETEentityTypesId, featurestoresId, locationsId, projectsIdDelete Feature values from Featurestore. The progress of the deletion is tracked by the returned operation. The deleted feature values are guaranteed to be invisible to subsequent read operations after the operation is marked as successfully done. If a delete feature values operation fails, the feature values returned from reads and exports may be inconsistent. If consistency is required, the caller must retry the same delete request again and wait till the new operation returned is marked as successfully done.

DELETE example

Deletes the specified entity_types_feature_values resource.

/*+ delete */
DELETE FROM google.aiplatform.entity_types_feature_values
WHERE entityTypesId = '{{ entityTypesId }}'
AND featurestoresId = '{{ featurestoresId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';