import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Sdm Masking Policy Difference resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified SDM Masking policy difference. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSdmMaskingPolicyDifference = oci.datasafe.getSdmMaskingPolicyDifference({ * sdmMaskingPolicyDifferenceId: testSdmMaskingPolicyDifferenceOciDataSafeSdmMaskingPolicyDifference.id, * }); * ``` */ export declare function getSdmMaskingPolicyDifference(args: GetSdmMaskingPolicyDifferenceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSdmMaskingPolicyDifference. */ export interface GetSdmMaskingPolicyDifferenceArgs { /** * The OCID of the SDM masking policy difference. */ sdmMaskingPolicyDifferenceId: string; } /** * A collection of values returned by getSdmMaskingPolicyDifference. */ export interface GetSdmMaskingPolicyDifferenceResult { /** * The OCID of the compartment that contains the Sensitive data model and masking policy difference resource. */ 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 type of the SDM masking policy difference. It defines the difference scope. NEW identifies new sensitive columns in the sensitive data model that are not in the masking policy. DELETED identifies columns that are present in the masking policy but have been deleted from the sensitive data model. MODIFIED identifies columns that are present in the sensitive data model as well as the masking policy but some of their attributes have been modified. ALL covers all the above three scenarios and reports new, deleted and modified columns. */ readonly differenceType: string; /** * The display name of the SDM masking policy difference. */ 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 Sensitive data model and masking policy difference resource. */ readonly id: string; /** * The OCID of the masking policy associated with the SDM masking policy difference. */ readonly maskingPolicyId: string; readonly sdmMaskingPolicyDifferenceId: string; /** * The OCID of the sensitive data model associated with the SDM masking policy difference. */ readonly sensitiveDataModelId: string; /** * The current state of the SDM masking policy difference. */ 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; }; /** * The date and time the SDM masking policy difference was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeCreated: string; /** * The date and time the SDM masking policy difference creation started, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeCreationStarted: string; } /** * This data source provides details about a specific Sdm Masking Policy Difference resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified SDM Masking policy difference. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSdmMaskingPolicyDifference = oci.datasafe.getSdmMaskingPolicyDifference({ * sdmMaskingPolicyDifferenceId: testSdmMaskingPolicyDifferenceOciDataSafeSdmMaskingPolicyDifference.id, * }); * ``` */ export declare function getSdmMaskingPolicyDifferenceOutput(args: GetSdmMaskingPolicyDifferenceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSdmMaskingPolicyDifference. */ export interface GetSdmMaskingPolicyDifferenceOutputArgs { /** * The OCID of the SDM masking policy difference. */ sdmMaskingPolicyDifferenceId: pulumi.Input; } //# sourceMappingURL=getSdmMaskingPolicyDifference.d.ts.map