import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Masking Policy Health Report resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified masking policy health report. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMaskingPolicyHealthReport = oci.datasafe.getMaskingPolicyHealthReport({ * maskingPolicyHealthReportId: testMaskingPolicyHealthReportOciDataSafeMaskingPolicyHealthReport.id, * }); * ``` */ export declare function getMaskingPolicyHealthReport(args: GetMaskingPolicyHealthReportArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMaskingPolicyHealthReport. */ export interface GetMaskingPolicyHealthReportArgs { /** * The OCID of the masking health report. */ maskingPolicyHealthReportId: string; } /** * A collection of values returned by getMaskingPolicyHealthReport. */ export interface GetMaskingPolicyHealthReportResult { /** * The OCID of the compartment that contains the health report. */ readonly compartmentId: 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; }; /** * The description of the masking health report. */ readonly description: string; /** * The display name of the health report. */ readonly displayName: string; /** * The count of errors in the masking health report. */ readonly errorCount: 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 provider-assigned unique ID for this managed resource. */ readonly id: string; readonly maskingPolicyHealthReportId: string; /** * The OCID of the masking policy. */ readonly maskingPolicyId: string; /** * The current state of the health report. */ readonly state: string; /** * The OCID of the target database for which this report was created. */ readonly targetId: string; /** * The date and time the report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeCreated: string; /** * The date and time the report was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339) */ readonly timeUpdated: string; /** * The count of warnings in the masking health report. */ readonly warningCount: string; } /** * This data source provides details about a specific Masking Policy Health Report resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified masking policy health report. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMaskingPolicyHealthReport = oci.datasafe.getMaskingPolicyHealthReport({ * maskingPolicyHealthReportId: testMaskingPolicyHealthReportOciDataSafeMaskingPolicyHealthReport.id, * }); * ``` */ export declare function getMaskingPolicyHealthReportOutput(args: GetMaskingPolicyHealthReportOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMaskingPolicyHealthReport. */ export interface GetMaskingPolicyHealthReportOutputArgs { /** * The OCID of the masking health report. */ maskingPolicyHealthReportId: pulumi.Input; } //# sourceMappingURL=getMaskingPolicyHealthReport.d.ts.map