Parameters
uuid.UUID
The id of the collection
[]proto.Message
The datapoints to delete from the collection
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
var datapoints []*v1.Sentinel1Sar
// assuming the slice is filled with datapoints
numDeleted, err := client.Datapoints.Delete(ctx,
collectionID,
datapoints,
)
var datapoints []*v1.Sentinel1Sar
// assuming the slice is filled with datapoints
numDeleted, err := client.Datapoints.Delete(ctx,
collectionID,
datapoints,
)
func (datapointClient) Delete(
ctx context.Context,
collectionID uuid.UUID,
datapoints any,
) (int64, error)
var datapoints []*v1.Sentinel1Sar
// assuming the slice is filled with datapoints
numDeleted, err := client.Datapoints.Delete(ctx,
collectionID,
datapoints,
)
Was this page helpful?