import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to look up a DLP IDM profile (lite) by ID or template name. */ export declare function getDlpIdmProfileLite(args?: GetDlpIdmProfileLiteArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDlpIdmProfileLiteArgs { /** * If true, only return active profiles. */ activeOnly?: boolean; /** * The ID of the DLP IDM profile to look up. */ profileId?: number; /** * The template name of the DLP IDM profile to look up. */ templateName?: string; } export interface GetDlpIdmProfileLiteResult { /** * The client VM associated with the profile. */ readonly clientVm?: outputs.IdNameExtensionsOutput; /** * The user who last modified the profile. */ readonly lastModifiedBy?: outputs.IdNameExtensionsOutput; /** * The last modification time (epoch). */ readonly lastModifiedTime: number; /** * The number of documents in the profile. */ readonly numDocuments: number; /** * The ID of the DLP IDM profile. */ readonly profileId: number; /** * The template name of the DLP IDM profile. */ readonly templateName: string; } /** * Use this data source to look up a DLP IDM profile (lite) by ID or template name. */ export declare function getDlpIdmProfileLiteOutput(args?: GetDlpIdmProfileLiteOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetDlpIdmProfileLiteOutputArgs { /** * If true, only return active profiles. */ activeOnly?: pulumi.Input; /** * The ID of the DLP IDM profile to look up. */ profileId?: pulumi.Input; /** * The template name of the DLP IDM profile to look up. */ templateName?: pulumi.Input; } //# sourceMappingURL=getDlpIdmProfileLite.d.ts.map