Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.DataSafe.getSdmMaskingPolicyDifferences
Explore with Pulumi AI
This data source provides the list of Sdm Masking Policy Differences in Oracle Cloud Infrastructure Data Safe service.
Gets a list of SDM and masking policy difference resources based on the specified query parameters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSdmMaskingPolicyDifferences = oci.DataSafe.getSdmMaskingPolicyDifferences({
    compartmentId: compartmentId,
    compartmentIdInSubtree: sdmMaskingPolicyDifferenceCompartmentIdInSubtree,
    differenceAccessLevel: sdmMaskingPolicyDifferenceDifferenceAccessLevel,
    displayName: sdmMaskingPolicyDifferenceDisplayName,
    maskingPolicyId: testMaskingPolicy.id,
    sensitiveDataModelId: testSensitiveDataModel.id,
    state: sdmMaskingPolicyDifferenceState,
});
import pulumi
import pulumi_oci as oci
test_sdm_masking_policy_differences = oci.DataSafe.get_sdm_masking_policy_differences(compartment_id=compartment_id,
    compartment_id_in_subtree=sdm_masking_policy_difference_compartment_id_in_subtree,
    difference_access_level=sdm_masking_policy_difference_difference_access_level,
    display_name=sdm_masking_policy_difference_display_name,
    masking_policy_id=test_masking_policy["id"],
    sensitive_data_model_id=test_sensitive_data_model["id"],
    state=sdm_masking_policy_difference_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datasafe"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datasafe.GetSdmMaskingPolicyDifferences(ctx, &datasafe.GetSdmMaskingPolicyDifferencesArgs{
			CompartmentId:          compartmentId,
			CompartmentIdInSubtree: pulumi.BoolRef(sdmMaskingPolicyDifferenceCompartmentIdInSubtree),
			DifferenceAccessLevel:  pulumi.StringRef(sdmMaskingPolicyDifferenceDifferenceAccessLevel),
			DisplayName:            pulumi.StringRef(sdmMaskingPolicyDifferenceDisplayName),
			MaskingPolicyId:        pulumi.StringRef(testMaskingPolicy.Id),
			SensitiveDataModelId:   pulumi.StringRef(testSensitiveDataModel.Id),
			State:                  pulumi.StringRef(sdmMaskingPolicyDifferenceState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testSdmMaskingPolicyDifferences = Oci.DataSafe.GetSdmMaskingPolicyDifferences.Invoke(new()
    {
        CompartmentId = compartmentId,
        CompartmentIdInSubtree = sdmMaskingPolicyDifferenceCompartmentIdInSubtree,
        DifferenceAccessLevel = sdmMaskingPolicyDifferenceDifferenceAccessLevel,
        DisplayName = sdmMaskingPolicyDifferenceDisplayName,
        MaskingPolicyId = testMaskingPolicy.Id,
        SensitiveDataModelId = testSensitiveDataModel.Id,
        State = sdmMaskingPolicyDifferenceState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.DataSafeFunctions;
import com.pulumi.oci.DataSafe.inputs.GetSdmMaskingPolicyDifferencesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testSdmMaskingPolicyDifferences = DataSafeFunctions.getSdmMaskingPolicyDifferences(GetSdmMaskingPolicyDifferencesArgs.builder()
            .compartmentId(compartmentId)
            .compartmentIdInSubtree(sdmMaskingPolicyDifferenceCompartmentIdInSubtree)
            .differenceAccessLevel(sdmMaskingPolicyDifferenceDifferenceAccessLevel)
            .displayName(sdmMaskingPolicyDifferenceDisplayName)
            .maskingPolicyId(testMaskingPolicy.id())
            .sensitiveDataModelId(testSensitiveDataModel.id())
            .state(sdmMaskingPolicyDifferenceState)
            .build());
    }
}
variables:
  testSdmMaskingPolicyDifferences:
    fn::invoke:
      function: oci:DataSafe:getSdmMaskingPolicyDifferences
      arguments:
        compartmentId: ${compartmentId}
        compartmentIdInSubtree: ${sdmMaskingPolicyDifferenceCompartmentIdInSubtree}
        differenceAccessLevel: ${sdmMaskingPolicyDifferenceDifferenceAccessLevel}
        displayName: ${sdmMaskingPolicyDifferenceDisplayName}
        maskingPolicyId: ${testMaskingPolicy.id}
        sensitiveDataModelId: ${testSensitiveDataModel.id}
        state: ${sdmMaskingPolicyDifferenceState}
Using getSdmMaskingPolicyDifferences
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSdmMaskingPolicyDifferences(args: GetSdmMaskingPolicyDifferencesArgs, opts?: InvokeOptions): Promise<GetSdmMaskingPolicyDifferencesResult>
function getSdmMaskingPolicyDifferencesOutput(args: GetSdmMaskingPolicyDifferencesOutputArgs, opts?: InvokeOptions): Output<GetSdmMaskingPolicyDifferencesResult>def get_sdm_masking_policy_differences(compartment_id: Optional[str] = None,
                                       compartment_id_in_subtree: Optional[bool] = None,
                                       difference_access_level: Optional[str] = None,
                                       display_name: Optional[str] = None,
                                       filters: Optional[Sequence[GetSdmMaskingPolicyDifferencesFilter]] = None,
                                       masking_policy_id: Optional[str] = None,
                                       sensitive_data_model_id: Optional[str] = None,
                                       state: Optional[str] = None,
                                       opts: Optional[InvokeOptions] = None) -> GetSdmMaskingPolicyDifferencesResult
def get_sdm_masking_policy_differences_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                       compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                                       difference_access_level: Optional[pulumi.Input[str]] = None,
                                       display_name: Optional[pulumi.Input[str]] = None,
                                       filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetSdmMaskingPolicyDifferencesFilterArgs]]]] = None,
                                       masking_policy_id: Optional[pulumi.Input[str]] = None,
                                       sensitive_data_model_id: Optional[pulumi.Input[str]] = None,
                                       state: Optional[pulumi.Input[str]] = None,
                                       opts: Optional[InvokeOptions] = None) -> Output[GetSdmMaskingPolicyDifferencesResult]func GetSdmMaskingPolicyDifferences(ctx *Context, args *GetSdmMaskingPolicyDifferencesArgs, opts ...InvokeOption) (*GetSdmMaskingPolicyDifferencesResult, error)
func GetSdmMaskingPolicyDifferencesOutput(ctx *Context, args *GetSdmMaskingPolicyDifferencesOutputArgs, opts ...InvokeOption) GetSdmMaskingPolicyDifferencesResultOutput> Note: This function is named GetSdmMaskingPolicyDifferences in the Go SDK.
public static class GetSdmMaskingPolicyDifferences 
{
    public static Task<GetSdmMaskingPolicyDifferencesResult> InvokeAsync(GetSdmMaskingPolicyDifferencesArgs args, InvokeOptions? opts = null)
    public static Output<GetSdmMaskingPolicyDifferencesResult> Invoke(GetSdmMaskingPolicyDifferencesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetSdmMaskingPolicyDifferencesResult> getSdmMaskingPolicyDifferences(GetSdmMaskingPolicyDifferencesArgs args, InvokeOptions options)
public static Output<GetSdmMaskingPolicyDifferencesResult> getSdmMaskingPolicyDifferences(GetSdmMaskingPolicyDifferencesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataSafe/getSdmMaskingPolicyDifferences:getSdmMaskingPolicyDifferences
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- CompartmentId boolIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- DifferenceAccess stringLevel 
- Valid value is ACCESSIBLE. Default is ACCESSIBLE. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment).
- DisplayName string
- A filter to return only resources that match the specified display name.
- Filters
List<GetSdm Masking Policy Differences Filter> 
- MaskingPolicy stringId 
- A filter to return only the resources that match the specified masking policy OCID.
- SensitiveData stringModel Id 
- A filter to return only the resources that match the specified sensitive data model OCID.
- State string
- A filter to return only the resources that match the specified lifecycle states.
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- CompartmentId boolIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- DifferenceAccess stringLevel 
- Valid value is ACCESSIBLE. Default is ACCESSIBLE. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment).
- DisplayName string
- A filter to return only resources that match the specified display name.
- Filters
[]GetSdm Masking Policy Differences Filter 
- MaskingPolicy stringId 
- A filter to return only the resources that match the specified masking policy OCID.
- SensitiveData stringModel Id 
- A filter to return only the resources that match the specified sensitive data model OCID.
- State string
- A filter to return only the resources that match the specified lifecycle states.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- compartmentId BooleanIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- differenceAccess StringLevel 
- Valid value is ACCESSIBLE. Default is ACCESSIBLE. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment).
- displayName String
- A filter to return only resources that match the specified display name.
- filters
List<GetSdm Masking Policy Differences Filter> 
- maskingPolicy StringId 
- A filter to return only the resources that match the specified masking policy OCID.
- sensitiveData StringModel Id 
- A filter to return only the resources that match the specified sensitive data model OCID.
- state String
- A filter to return only the resources that match the specified lifecycle states.
- compartmentId string
- A filter to return only resources that match the specified compartment OCID.
- compartmentId booleanIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- differenceAccess stringLevel 
- Valid value is ACCESSIBLE. Default is ACCESSIBLE. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment).
- displayName string
- A filter to return only resources that match the specified display name.
- filters
GetSdm Masking Policy Differences Filter[] 
- maskingPolicy stringId 
- A filter to return only the resources that match the specified masking policy OCID.
- sensitiveData stringModel Id 
- A filter to return only the resources that match the specified sensitive data model OCID.
- state string
- A filter to return only the resources that match the specified lifecycle states.
- compartment_id str
- A filter to return only resources that match the specified compartment OCID.
- compartment_id_ boolin_ subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- difference_access_ strlevel 
- Valid value is ACCESSIBLE. Default is ACCESSIBLE. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment).
- display_name str
- A filter to return only resources that match the specified display name.
- filters
Sequence[GetSdm Masking Policy Differences Filter] 
- masking_policy_ strid 
- A filter to return only the resources that match the specified masking policy OCID.
- sensitive_data_ strmodel_ id 
- A filter to return only the resources that match the specified sensitive data model OCID.
- state str
- A filter to return only the resources that match the specified lifecycle states.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- compartmentId BooleanIn Subtree 
- Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- differenceAccess StringLevel 
- Valid value is ACCESSIBLE. Default is ACCESSIBLE. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment).
- displayName String
- A filter to return only resources that match the specified display name.
- filters List<Property Map>
- maskingPolicy StringId 
- A filter to return only the resources that match the specified masking policy OCID.
- sensitiveData StringModel Id 
- A filter to return only the resources that match the specified sensitive data model OCID.
- state String
- A filter to return only the resources that match the specified lifecycle states.
getSdmMaskingPolicyDifferences Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment that contains the Sensitive data model and masking policy difference resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- SdmMasking List<GetPolicy Difference Collections Sdm Masking Policy Differences Sdm Masking Policy Difference Collection> 
- The list of sdm_masking_policy_difference_collection.
- CompartmentId boolIn Subtree 
- DifferenceAccess stringLevel 
- DisplayName string
- The display name of the SDM masking policy difference.
- Filters
List<GetSdm Masking Policy Differences Filter> 
- MaskingPolicy stringId 
- The OCID of the masking policy associated with the SDM masking policy difference.
- SensitiveData stringModel Id 
- The OCID of the sensitive data model associated with the SDM masking policy difference.
- State string
- The current state of the SDM masking policy difference.
- CompartmentId string
- The OCID of the compartment that contains the Sensitive data model and masking policy difference resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- SdmMasking []GetPolicy Difference Collections Sdm Masking Policy Differences Sdm Masking Policy Difference Collection 
- The list of sdm_masking_policy_difference_collection.
- CompartmentId boolIn Subtree 
- DifferenceAccess stringLevel 
- DisplayName string
- The display name of the SDM masking policy difference.
- Filters
[]GetSdm Masking Policy Differences Filter 
- MaskingPolicy stringId 
- The OCID of the masking policy associated with the SDM masking policy difference.
- SensitiveData stringModel Id 
- The OCID of the sensitive data model associated with the SDM masking policy difference.
- State string
- The current state of the SDM masking policy difference.
- compartmentId String
- The OCID of the compartment that contains the Sensitive data model and masking policy difference resource.
- id String
- The provider-assigned unique ID for this managed resource.
- sdmMasking List<GetPolicy Difference Collections Sdm Masking Policy Differences Sdm Masking Policy Difference Collection> 
- The list of sdm_masking_policy_difference_collection.
- compartmentId BooleanIn Subtree 
- differenceAccess StringLevel 
- displayName String
- The display name of the SDM masking policy difference.
- filters
List<GetSdm Masking Policy Differences Filter> 
- maskingPolicy StringId 
- The OCID of the masking policy associated with the SDM masking policy difference.
- sensitiveData StringModel Id 
- The OCID of the sensitive data model associated with the SDM masking policy difference.
- state String
- The current state of the SDM masking policy difference.
- compartmentId string
- The OCID of the compartment that contains the Sensitive data model and masking policy difference resource.
- id string
- The provider-assigned unique ID for this managed resource.
- sdmMasking GetPolicy Difference Collections Sdm Masking Policy Differences Sdm Masking Policy Difference Collection[] 
- The list of sdm_masking_policy_difference_collection.
- compartmentId booleanIn Subtree 
- differenceAccess stringLevel 
- displayName string
- The display name of the SDM masking policy difference.
- filters
GetSdm Masking Policy Differences Filter[] 
- maskingPolicy stringId 
- The OCID of the masking policy associated with the SDM masking policy difference.
- sensitiveData stringModel Id 
- The OCID of the sensitive data model associated with the SDM masking policy difference.
- state string
- The current state of the SDM masking policy difference.
- compartment_id str
- The OCID of the compartment that contains the Sensitive data model and masking policy difference resource.
- id str
- The provider-assigned unique ID for this managed resource.
- sdm_masking_ Sequence[Getpolicy_ difference_ collections Sdm Masking Policy Differences Sdm Masking Policy Difference Collection] 
- The list of sdm_masking_policy_difference_collection.
- compartment_id_ boolin_ subtree 
- difference_access_ strlevel 
- display_name str
- The display name of the SDM masking policy difference.
- filters
Sequence[GetSdm Masking Policy Differences Filter] 
- masking_policy_ strid 
- The OCID of the masking policy associated with the SDM masking policy difference.
- sensitive_data_ strmodel_ id 
- The OCID of the sensitive data model associated with the SDM masking policy difference.
- state str
- The current state of the SDM masking policy difference.
- compartmentId String
- The OCID of the compartment that contains the Sensitive data model and masking policy difference resource.
- id String
- The provider-assigned unique ID for this managed resource.
- sdmMasking List<Property Map>Policy Difference Collections 
- The list of sdm_masking_policy_difference_collection.
- compartmentId BooleanIn Subtree 
- differenceAccess StringLevel 
- displayName String
- The display name of the SDM masking policy difference.
- filters List<Property Map>
- maskingPolicy StringId 
- The OCID of the masking policy associated with the SDM masking policy difference.
- sensitiveData StringModel Id 
- The OCID of the sensitive data model associated with the SDM masking policy difference.
- state String
- The current state of the SDM masking policy difference.
Supporting Types
GetSdmMaskingPolicyDifferencesFilter     
GetSdmMaskingPolicyDifferencesSdmMaskingPolicyDifferenceCollection         
GetSdmMaskingPolicyDifferencesSdmMaskingPolicyDifferenceCollectionItem          
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
- DifferenceType 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.
- DisplayName string
- A filter to return only resources that match the specified display name.
- Dictionary<string, 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 Example: {"Department": "Finance"}
- Id string
- The OCID of the Sensitive data model and masking policy difference resource.
- MaskingPolicy stringId 
- A filter to return only the resources that match the specified masking policy OCID.
- SensitiveData stringModel Id 
- A filter to return only the resources that match the specified sensitive data model OCID.
- State string
- A filter to return only the resources that match the specified lifecycle states.
- Dictionary<string, 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"}
- TimeCreated string
- The date and time the SDM masking policy difference was created, in the format defined by RFC3339.
- TimeCreation stringStarted 
- The date and time the SDM masking policy difference creation started, in the format defined by RFC3339.
- CompartmentId string
- A filter to return only resources that match the specified compartment OCID.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
- DifferenceType 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.
- DisplayName string
- A filter to return only resources that match the specified display name.
- map[string]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 Example: {"Department": "Finance"}
- Id string
- The OCID of the Sensitive data model and masking policy difference resource.
- MaskingPolicy stringId 
- A filter to return only the resources that match the specified masking policy OCID.
- SensitiveData stringModel Id 
- A filter to return only the resources that match the specified sensitive data model OCID.
- State string
- A filter to return only the resources that match the specified lifecycle states.
- map[string]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"}
- TimeCreated string
- The date and time the SDM masking policy difference was created, in the format defined by RFC3339.
- TimeCreation stringStarted 
- The date and time the SDM masking policy difference creation started, in the format defined by RFC3339.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
- differenceType 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.
- displayName String
- A filter to return only resources that match the specified display name.
- Map<String,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 Example: {"Department": "Finance"}
- id String
- The OCID of the Sensitive data model and masking policy difference resource.
- maskingPolicy StringId 
- A filter to return only the resources that match the specified masking policy OCID.
- sensitiveData StringModel Id 
- A filter to return only the resources that match the specified sensitive data model OCID.
- state String
- A filter to return only the resources that match the specified lifecycle states.
- Map<String,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"}
- timeCreated String
- The date and time the SDM masking policy difference was created, in the format defined by RFC3339.
- timeCreation StringStarted 
- The date and time the SDM masking policy difference creation started, in the format defined by RFC3339.
- compartmentId string
- A filter to return only resources that match the specified compartment OCID.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
- differenceType 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.
- displayName string
- A filter to return only resources that match the specified display name.
- {[key: string]: 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 Example: {"Department": "Finance"}
- id string
- The OCID of the Sensitive data model and masking policy difference resource.
- maskingPolicy stringId 
- A filter to return only the resources that match the specified masking policy OCID.
- sensitiveData stringModel Id 
- A filter to return only the resources that match the specified sensitive data model OCID.
- state string
- A filter to return only the resources that match the specified lifecycle states.
- {[key: string]: 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"}
- timeCreated string
- The date and time the SDM masking policy difference was created, in the format defined by RFC3339.
- timeCreation stringStarted 
- The date and time the SDM masking policy difference creation started, in the format defined by RFC3339.
- compartment_id str
- A filter to return only resources that match the specified compartment OCID.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
- difference_type str
- 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.
- display_name str
- A filter to return only resources that match the specified display name.
- Mapping[str, str]
- 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 Example: {"Department": "Finance"}
- id str
- The OCID of the Sensitive data model and masking policy difference resource.
- masking_policy_ strid 
- A filter to return only the resources that match the specified masking policy OCID.
- sensitive_data_ strmodel_ id 
- A filter to return only the resources that match the specified sensitive data model OCID.
- state str
- A filter to return only the resources that match the specified lifecycle states.
- Mapping[str, str]
- 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"}
- time_created str
- The date and time the SDM masking policy difference was created, in the format defined by RFC3339.
- time_creation_ strstarted 
- The date and time the SDM masking policy difference creation started, in the format defined by RFC3339.
- compartmentId String
- A filter to return only resources that match the specified compartment OCID.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
- differenceType 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.
- displayName String
- A filter to return only resources that match the specified display name.
- Map<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 Example: {"Department": "Finance"}
- id String
- The OCID of the Sensitive data model and masking policy difference resource.
- maskingPolicy StringId 
- A filter to return only the resources that match the specified masking policy OCID.
- sensitiveData StringModel Id 
- A filter to return only the resources that match the specified sensitive data model OCID.
- state String
- A filter to return only the resources that match the specified lifecycle states.
- Map<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"}
- timeCreated String
- The date and time the SDM masking policy difference was created, in the format defined by RFC3339.
- timeCreation StringStarted 
- The date and time the SDM masking policy difference creation started, in the format defined by RFC3339.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.