Package version:

Soft-deletion state

interface SoftDeletion {
    destroyed: boolean;
    eradicationTimestamp?: string;
}

Properties

destroyed: boolean

If false, the resource is active; if true, the resource has been destroyed; resources can be soft-deleted by setting destroyed to true, and recovered by setting it to false

eradicationTimestamp?: string

Date at which the resource will be eradicated and impossible to recover, as an RFC 3339 timestamp; invalid if destroyed is false;