import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to look up a DLP cloud-to-cloud incident receiver by ID or name. */ export declare function getDlpCloudToCloudIr(args?: GetDlpCloudToCloudIrArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetDlpCloudToCloudIrArgs { /** * The name of the cloud-to-cloud incident receiver to look up. */ name?: string; /** * The ID of the cloud-to-cloud incident receiver to look up. */ resourceId?: number; } export interface GetDlpCloudToCloudIrResult { /** * The user who last modified the incident receiver. */ readonly lastModifiedBy?: outputs.LastModifiedByOutput; /** * The last tenant validation time (epoch). */ readonly lastTenantValidationTime: number; /** * The last validation message. */ readonly lastValidationMsg?: outputs.LastValidationMsgOutput; /** * The last modification time (epoch). */ readonly modifiedTime: number; /** * The name of the cloud-to-cloud incident receiver. */ readonly name: string; /** * The onboardable entity associated with the incident receiver. */ readonly onboardableEntity?: outputs.OnboardableEntityOutput; /** * The ID of the cloud-to-cloud incident receiver. */ readonly resourceId: number; /** * The status of the incident receiver. */ readonly status: string[]; } /** * Use this data source to look up a DLP cloud-to-cloud incident receiver by ID or name. */ export declare function getDlpCloudToCloudIrOutput(args?: GetDlpCloudToCloudIrOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetDlpCloudToCloudIrOutputArgs { /** * The name of the cloud-to-cloud incident receiver to look up. */ name?: pulumi.Input; /** * The ID of the cloud-to-cloud incident receiver to look up. */ resourceId?: pulumi.Input; } //# sourceMappingURL=getDlpCloudToCloudIr.d.ts.map