Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 572 Bytes

File metadata and controls

25 lines (17 loc) · 572 Bytes

DlpFrequency

Interval between scans. DAILY is deprecated.

Example Usage

import com.glean.api_client.glean_api_client.models.components.DlpFrequency;

DlpFrequency value = DlpFrequency.ONCE;

// Open enum: use .of() to create instances from custom string values
DlpFrequency custom = DlpFrequency.of("custom_value");

Values

Name Value
ONCE ONCE
DAILY DAILY
WEEKLY WEEKLY
CONTINUOUS CONTINUOUS
NONE NONE