import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Masking Policy Health Report Logs in Oracle Cloud Infrastructure Data Safe service. * * Gets a list of errors and warnings from a masking policy health check. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMaskingPolicyHealthReportLogs = oci.datasafe.getMaskingPolicyHealthReportLogs({ * maskingPolicyHealthReportId: testMaskingPolicyHealthReport.id, * messageType: maskingPolicyHealthReportLogMessageType, * }); * ``` */ export declare function getMaskingPolicyHealthReportLogs(args: GetMaskingPolicyHealthReportLogsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMaskingPolicyHealthReportLogs. */ export interface GetMaskingPolicyHealthReportLogsArgs { filters?: inputs.DataSafe.GetMaskingPolicyHealthReportLogsFilter[]; /** * The OCID of the masking health report. */ maskingPolicyHealthReportId: string; /** * A filter to return only the resources that match the specified log message type. */ messageType?: string; } /** * A collection of values returned by getMaskingPolicyHealthReportLogs. */ export interface GetMaskingPolicyHealthReportLogsResult { readonly filters?: outputs.DataSafe.GetMaskingPolicyHealthReportLogsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly maskingPolicyHealthReportId: string; /** * The list of masking_policy_health_report_log_collection. */ readonly maskingPolicyHealthReportLogCollections: outputs.DataSafe.GetMaskingPolicyHealthReportLogsMaskingPolicyHealthReportLogCollection[]; /** * The log entry type. */ readonly messageType?: string; } /** * This data source provides the list of Masking Policy Health Report Logs in Oracle Cloud Infrastructure Data Safe service. * * Gets a list of errors and warnings from a masking policy health check. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMaskingPolicyHealthReportLogs = oci.datasafe.getMaskingPolicyHealthReportLogs({ * maskingPolicyHealthReportId: testMaskingPolicyHealthReport.id, * messageType: maskingPolicyHealthReportLogMessageType, * }); * ``` */ export declare function getMaskingPolicyHealthReportLogsOutput(args: GetMaskingPolicyHealthReportLogsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMaskingPolicyHealthReportLogs. */ export interface GetMaskingPolicyHealthReportLogsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The OCID of the masking health report. */ maskingPolicyHealthReportId: pulumi.Input; /** * A filter to return only the resources that match the specified log message type. */ messageType?: pulumi.Input; } //# sourceMappingURL=getMaskingPolicyHealthReportLogs.d.ts.map