import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to look up a DLP ICAP server by ID or name. */ export declare function getDlpIcapServer(args?: GetDlpIcapServerArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDlpIcapServerArgs { /** * The name of the DLP ICAP server to look up. */ name?: string; /** * The ID of the DLP ICAP server to look up. */ resourceId?: number; } export interface GetDlpIcapServerResult { /** * The name of the DLP ICAP server. */ readonly name: string; /** * The ID of the DLP ICAP server. */ readonly resourceId: number; /** * The status of the DLP ICAP server. */ readonly status: string; /** * The URL of the DLP ICAP server. */ readonly url: string; } /** * Use this data source to look up a DLP ICAP server by ID or name. */ export declare function getDlpIcapServerOutput(args?: GetDlpIcapServerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetDlpIcapServerOutputArgs { /** * The name of the DLP ICAP server to look up. */ name?: pulumi.Input; /** * The ID of the DLP ICAP server to look up. */ resourceId?: pulumi.Input; } //# sourceMappingURL=getDlpIcapServer.d.ts.map