import * as z from "zod/v3"; import { DlpConfig, DlpConfig$Outbound } from "./dlpconfig.js"; export type UpdateDlpConfigRequest = { /** * Detailed configuration of what documents and sensitive content will be scanned. */ config?: DlpConfig | undefined; /** * Only "ONCE" is supported for reports. */ frequency?: string | undefined; }; /** @internal */ export type UpdateDlpConfigRequest$Outbound = { config?: DlpConfig$Outbound | undefined; frequency?: string | undefined; }; /** @internal */ export declare const UpdateDlpConfigRequest$outboundSchema: z.ZodType; export declare function updateDlpConfigRequestToJSON(updateDlpConfigRequest: UpdateDlpConfigRequest): string; //# sourceMappingURL=updatedlpconfigrequest.d.ts.map