DeleteFeatureValuesResponse

Response message for FeaturestoreService.DeleteFeatureValues.

Fields
response Union type
Response based on which delete option is specified in the request response can be only one of the following:
selectEntity object (SelectEntity)

Response for request specifying the entities to delete

selectTimeRangeAndFeature object (SelectTimeRangeAndFeature)

Response for request specifying time range and feature

JSON representation
{

  // response
  "selectEntity": {
    object (SelectEntity)
  },
  "selectTimeRangeAndFeature": {
    object (SelectTimeRangeAndFeature)
  }
  // Union type
}

SelectEntity

Response message if the request uses the SelectEntity option.

Fields
offlineStorageDeletedEntityRowCount string (int64 format)

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.

onlineStorageDeletedEntityCount string (int64 format)

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.

Fields
impactedFeatureCount string (int64 format)

The count of the features or columns impacted. This is the same as the feature count in the request.

offlineStorageModifiedEntityRowCount string (int64 format)

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.

onlineStorageModifiedEntityCount string (int64 format)

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
}