import * as z from "zod/v3"; import { DlpConfig, DlpConfig$Outbound } from "./dlpconfig.js"; import { DlpFrequency } from "./dlpfrequency.js"; export type CreateDlpReportRequest = { /** * Name of the policy being created. */ name?: string | undefined; /** * Detailed configuration of what documents and sensitive content will be scanned. */ config?: DlpConfig | undefined; /** * Interval between scans. DAILY is deprecated. */ frequency?: DlpFrequency | undefined; /** * Controls whether the policy should hide documents with violations. */ autoHideDocs?: boolean | undefined; }; /** @internal */ export type CreateDlpReportRequest$Outbound = { name?: string | undefined; config?: DlpConfig$Outbound | undefined; frequency?: string | undefined; autoHideDocs?: boolean | undefined; }; /** @internal */ export declare const CreateDlpReportRequest$outboundSchema: z.ZodType; export declare function createDlpReportRequestToJSON(createDlpReportRequest: CreateDlpReportRequest): string; //# sourceMappingURL=createdlpreportrequest.d.ts.map