Response message for FeaturestoreService.DeleteFeatureValues.
responseUnion type
response can be only one of the following:Response for request specifying the entities to delete
Response for request specifying time range and feature
| JSON representation |
|---|
{ // response "selectEntity": { object ( |
SelectEntity
Response message if the request uses the SelectEntity option.
The count of deleted entity rows in the offline storage. Each row corresponds to the combination of an entity id and a timestamp. One entity id can have multiple rows in the offline storage.
The count of deleted entities in the online storage. Each entity id corresponds to one entity.
| JSON representation |
|---|
{ "offlineStorageDeletedEntityRowCount": string, "onlineStorageDeletedEntityCount": string } |
SelectTimeRangeAndFeature
Response message if the request uses the SelectTimeRangeAndFeature option.
The count of the features or columns impacted. This is the same as the feature count in the request.
The count of modified entity rows in the offline storage. Each row corresponds to the combination of an entity id and a timestamp. One entity id can have multiple rows in the offline storage. Within each row, only the features specified in the request are deleted.
The count of modified entities in the online storage. Each entity id corresponds to one entity. Within each entity, only the features specified in the request are deleted.
| JSON representation |
|---|
{ "impactedFeatureCount": string, "offlineStorageModifiedEntityRowCount": string, "onlineStorageModifiedEntityCount": string } |