import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to look up a DLP incident receiver server by ID or name. */ export declare function getDlpIncidentReceiverServer(args?: GetDlpIncidentReceiverServerArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDlpIncidentReceiverServerArgs { /** * The name of the DLP incident receiver server to look up. */ name?: string; /** * The ID of the DLP incident receiver server to look up. */ resourceId?: number; } export interface GetDlpIncidentReceiverServerResult { /** * The flags associated with the DLP incident receiver server. */ readonly flags: number; /** * The name of the DLP incident receiver server. */ readonly name: string; /** * The ID of the DLP incident receiver server. */ readonly resourceId: number; /** * The status of the DLP incident receiver server. */ readonly status: string; /** * The URL of the DLP incident receiver server. */ readonly url: string; } /** * Use this data source to look up a DLP incident receiver server by ID or name. */ export declare function getDlpIncidentReceiverServerOutput(args?: GetDlpIncidentReceiverServerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetDlpIncidentReceiverServerOutputArgs { /** * The name of the DLP incident receiver server to look up. */ name?: pulumi.Input; /** * The ID of the DLP incident receiver server to look up. */ resourceId?: pulumi.Input; } //# sourceMappingURL=getDlpIncidentReceiverServer.d.ts.map