Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 581 Bytes

File metadata and controls

24 lines (16 loc) · 581 Bytes

DlpReportStatus

The status of the policy/report. Only ACTIVE status will be picked for scans.

Example Usage

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

DlpReportStatus value = DlpReportStatus.ACTIVE;

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

Values

Name Value
ACTIVE ACTIVE
INACTIVE INACTIVE
CANCELLED CANCELLED
NONE NONE