Package version:

Interface SoftDeleteColumnDeletionDetectionPolicy

Defines a data deletion detection policy that implements a soft-deletion strategy. It determines whether an item should be deleted based on the value of a designated 'soft delete' column.

interface SoftDeleteColumnDeletionDetectionPolicy {
    odatatype: "#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy";
    softDeleteColumnName?: string;
    softDeleteMarkerValue?: string;
}

Hierarchy (view full)

Properties

odatatype

Polymorphic discriminator, which specifies the different types this object can be

softDeleteColumnName?: string

The name of the column to use for soft-deletion detection.

softDeleteMarkerValue?: string

The marker value that identifies an item as deleted.