import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to look up a DLP IDM profile by ID or name. */ export declare function getDlpIdmProfile(args?: GetDlpIdmProfileArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDlpIdmProfileArgs { /** * The ID of the DLP IDM profile to look up. */ profileId?: number; /** * The name of the DLP IDM profile to look up. */ profileName?: string; } export interface GetDlpIdmProfileResult { /** * The host for the IDM profile. */ readonly host: string; /** * The last modification time (epoch). */ readonly lastModifiedTime: number; /** * The number of documents in the profile. */ readonly numDocuments: number; /** * The port for the IDM profile. */ readonly port: number; /** * The description of the DLP IDM profile. */ readonly profileDesc: string; /** * The directory path of the profile. */ readonly profileDirPath: string; /** * The ID of the DLP IDM profile. */ readonly profileId: number; /** * The name of the DLP IDM profile. */ readonly profileName: string; /** * The type of the DLP IDM profile. */ readonly profileType: string; /** * The schedule day for the profile. */ readonly scheduleDay: number; /** * The schedule days of the month. */ readonly scheduleDayOfMonth: string[]; /** * The schedule days of the week. */ readonly scheduleDayOfWeek: string[]; /** * Whether the schedule is disabled. */ readonly scheduleDisabled: boolean; /** * The schedule time for the profile. */ readonly scheduleTime: number; /** * The schedule type for the profile. */ readonly scheduleType: string; /** * The upload status of the profile. */ readonly uploadStatus: string; /** * The username associated with the profile. */ readonly userName: string; /** * The version of the profile. */ readonly version: number; /** * The volume of documents in the profile. */ readonly volumeOfDocuments: number; } /** * Use this data source to look up a DLP IDM profile by ID or name. */ export declare function getDlpIdmProfileOutput(args?: GetDlpIdmProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetDlpIdmProfileOutputArgs { /** * The ID of the DLP IDM profile to look up. */ profileId?: pulumi.Input; /** * The name of the DLP IDM profile to look up. */ profileName?: pulumi.Input; } //# sourceMappingURL=getDlpIdmProfile.d.ts.map