import * as pulumi from "@pulumi/pulumi"; /** * This resource provides Pre-masking Report Management resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified pre-masking health report. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPreMaskingReportManagement = new oci.datasafe.MaskingPolicyHealthReportManagement("test_pre_masking_report_management", { * targetId: testTargetDatabase.id, * maskingPolicyId: testMaskingPolicy.id, * }); * ``` * * ## Import * * Import is not supported for this resource. */ export declare class MaskingPolicyHealthReportManagement extends pulumi.CustomResource { /** * Get an existing MaskingPolicyHealthReportManagement resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: MaskingPolicyHealthReportManagementState, opts?: pulumi.CustomResourceOptions): MaskingPolicyHealthReportManagement; /** * Returns true if the given object is an instance of MaskingPolicyHealthReportManagement. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is MaskingPolicyHealthReportManagement; /** * The OCID of the compartment that contains the masking report. */ readonly compartmentId: pulumi.Output; readonly definedTags: pulumi.Output<{ [key: string]: string; }>; /** * Description for the pre-masking report, */ readonly description: pulumi.Output; /** * The display name of the pre-masking report, */ readonly displayName: pulumi.Output; readonly freeformTags: pulumi.Output<{ [key: string]: string; }>; /** * The OCID of the masking policy. */ readonly maskingPolicyId: pulumi.Output; /** * The current state of the pre-masking report. */ readonly state: pulumi.Output; /** * The OCID of the target database masked. */ readonly targetId: pulumi.Output; /** * The date and time the pre-masking report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339), */ readonly timeCreated: pulumi.Output; /** * The date and time the pre-masking report was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339), */ readonly timeUpdated: pulumi.Output; /** * Create a MaskingPolicyHealthReportManagement resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: MaskingPolicyHealthReportManagementArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering MaskingPolicyHealthReportManagement resources. */ export interface MaskingPolicyHealthReportManagementState { /** * The OCID of the compartment that contains the masking report. */ compartmentId?: pulumi.Input; definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Description for the pre-masking report, */ description?: pulumi.Input; /** * The display name of the pre-masking report, */ displayName?: pulumi.Input; freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The OCID of the masking policy. */ maskingPolicyId?: pulumi.Input; /** * The current state of the pre-masking report. */ state?: pulumi.Input; /** * The OCID of the target database masked. */ targetId?: pulumi.Input; /** * The date and time the pre-masking report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339), */ timeCreated?: pulumi.Input; /** * The date and time the pre-masking report was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339), */ timeUpdated?: pulumi.Input; } /** * The set of arguments for constructing a MaskingPolicyHealthReportManagement resource. */ export interface MaskingPolicyHealthReportManagementArgs { /** * The OCID of the compartment that contains the masking report. */ compartmentId?: pulumi.Input; /** * The OCID of the masking policy. */ maskingPolicyId?: pulumi.Input; /** * The OCID of the target database masked. */ targetId?: pulumi.Input; } //# sourceMappingURL=maskingPolicyHealthReportManagement.d.ts.map