import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Report Content resource in Oracle Cloud Infrastructure Data Safe service. * * Downloads the specified report in the form of .xls or .pdf. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testReportContent = oci.datasafe.getReportContent({ * reportId: testReport.id, * }); * ``` */ export declare function getReportContent(args: GetReportContentArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getReportContent. */ export interface GetReportContentArgs { /** * Unique report identifier */ reportId: string; } /** * A collection of values returned by getReportContent. */ export interface GetReportContentResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly reportId: string; } /** * This data source provides details about a specific Report Content resource in Oracle Cloud Infrastructure Data Safe service. * * Downloads the specified report in the form of .xls or .pdf. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testReportContent = oci.datasafe.getReportContent({ * reportId: testReport.id, * }); * ``` */ export declare function getReportContentOutput(args: GetReportContentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getReportContent. */ export interface GetReportContentOutputArgs { /** * Unique report identifier */ reportId: pulumi.Input; } //# sourceMappingURL=getReportContent.d.ts.map