import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Report resource in Oracle Cloud Infrastructure Data Safe service. * * Gets a report by identifier * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testReport = oci.datasafe.getReport({ * reportId: testReportOciDataSafeReport.id, * }); * ``` */ export declare function getReport(args: GetReportArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getReport. */ export interface GetReportArgs { /** * Unique report identifier */ reportId: string; } /** * A collection of values returned by getReport. */ export interface GetReportResult { /** * The OCID of the compartment containing the report. */ readonly compartmentId: string; /** * Specifies the name of a resource that provides data for the report. For example alerts, events. */ readonly dataSource: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * Specifies a description of the report. */ readonly description: string; /** * Name of the report. */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The OCID of the report. */ readonly id: string; /** * Details about the current state of the report in Data Safe. */ readonly lifecycleDetails: string; /** * Specifies the format of report to be .xls or .pdf or .json */ readonly mimeType: string; /** * The OCID of the next report generated. */ readonly nextReportId: string; /** * The OCID of the previous report generated. */ readonly previousReportId: string; /** * The OCID of the report definition. */ readonly reportDefinitionId: string; readonly reportId: string; /** * The current state of the audit report. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * Specifies the time at which the report was created. */ readonly timeCreated: string; /** * Specifies the date and time the report was generated. */ readonly timeGenerated: string; /** * The date and time of the report update in Data Safe. */ readonly timeUpdated: string; /** * The type of the audit report. */ readonly type: string; } /** * This data source provides details about a specific Report resource in Oracle Cloud Infrastructure Data Safe service. * * Gets a report by identifier * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testReport = oci.datasafe.getReport({ * reportId: testReportOciDataSafeReport.id, * }); * ``` */ export declare function getReportOutput(args: GetReportOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getReport. */ export interface GetReportOutputArgs { /** * Unique report identifier */ reportId: pulumi.Input; } //# sourceMappingURL=getReport.d.ts.map