1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getSdmMaskingPolicyDifferences
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.DataSafe.getSdmMaskingPolicyDifferences

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    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: _var.compartment_id,
        compartmentIdInSubtree: _var.sdm_masking_policy_difference_compartment_id_in_subtree,
        differenceAccessLevel: _var.sdm_masking_policy_difference_difference_access_level,
        displayName: _var.sdm_masking_policy_difference_display_name,
        maskingPolicyId: oci_data_safe_masking_policy.test_masking_policy.id,
        sensitiveDataModelId: oci_data_safe_sensitive_data_model.test_sensitive_data_model.id,
        state: _var.sdm_masking_policy_difference_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_sdm_masking_policy_differences = oci.DataSafe.get_sdm_masking_policy_differences(compartment_id=var["compartment_id"],
        compartment_id_in_subtree=var["sdm_masking_policy_difference_compartment_id_in_subtree"],
        difference_access_level=var["sdm_masking_policy_difference_difference_access_level"],
        display_name=var["sdm_masking_policy_difference_display_name"],
        masking_policy_id=oci_data_safe_masking_policy["test_masking_policy"]["id"],
        sensitive_data_model_id=oci_data_safe_sensitive_data_model["test_sensitive_data_model"]["id"],
        state=var["sdm_masking_policy_difference_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/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:          _var.Compartment_id,
    			CompartmentIdInSubtree: pulumi.BoolRef(_var.Sdm_masking_policy_difference_compartment_id_in_subtree),
    			DifferenceAccessLevel:  pulumi.StringRef(_var.Sdm_masking_policy_difference_difference_access_level),
    			DisplayName:            pulumi.StringRef(_var.Sdm_masking_policy_difference_display_name),
    			MaskingPolicyId:        pulumi.StringRef(oci_data_safe_masking_policy.Test_masking_policy.Id),
    			SensitiveDataModelId:   pulumi.StringRef(oci_data_safe_sensitive_data_model.Test_sensitive_data_model.Id),
    			State:                  pulumi.StringRef(_var.Sdm_masking_policy_difference_state),
    		}, 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 = @var.Compartment_id,
            CompartmentIdInSubtree = @var.Sdm_masking_policy_difference_compartment_id_in_subtree,
            DifferenceAccessLevel = @var.Sdm_masking_policy_difference_difference_access_level,
            DisplayName = @var.Sdm_masking_policy_difference_display_name,
            MaskingPolicyId = oci_data_safe_masking_policy.Test_masking_policy.Id,
            SensitiveDataModelId = oci_data_safe_sensitive_data_model.Test_sensitive_data_model.Id,
            State = @var.Sdm_masking_policy_difference_state,
        });
    
    });
    
    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(var_.compartment_id())
                .compartmentIdInSubtree(var_.sdm_masking_policy_difference_compartment_id_in_subtree())
                .differenceAccessLevel(var_.sdm_masking_policy_difference_difference_access_level())
                .displayName(var_.sdm_masking_policy_difference_display_name())
                .maskingPolicyId(oci_data_safe_masking_policy.test_masking_policy().id())
                .sensitiveDataModelId(oci_data_safe_sensitive_data_model.test_sensitive_data_model().id())
                .state(var_.sdm_masking_policy_difference_state())
                .build());
    
        }
    }
    
    variables:
      testSdmMaskingPolicyDifferences:
        fn::invoke:
          Function: oci:DataSafe:getSdmMaskingPolicyDifferences
          Arguments:
            compartmentId: ${var.compartment_id}
            compartmentIdInSubtree: ${var.sdm_masking_policy_difference_compartment_id_in_subtree}
            differenceAccessLevel: ${var.sdm_masking_policy_difference_difference_access_level}
            displayName: ${var.sdm_masking_policy_difference_display_name}
            maskingPolicyId: ${oci_data_safe_masking_policy.test_masking_policy.id}
            sensitiveDataModelId: ${oci_data_safe_sensitive_data_model.test_sensitive_data_model.id}
            state: ${var.sdm_masking_policy_difference_state}
    

    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[_datasafe.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[_datasafe.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)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DataSafe/getSdmMaskingPolicyDifferences:getSdmMaskingPolicyDifferences
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    CompartmentIdInSubtree bool
    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.
    DifferenceAccessLevel string
    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<GetSdmMaskingPolicyDifferencesFilter>
    MaskingPolicyId string
    A filter to return only the resources that match the specified masking policy OCID.
    SensitiveDataModelId string
    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.
    CompartmentIdInSubtree bool
    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.
    DifferenceAccessLevel string
    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 []GetSdmMaskingPolicyDifferencesFilter
    MaskingPolicyId string
    A filter to return only the resources that match the specified masking policy OCID.
    SensitiveDataModelId string
    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.
    compartmentIdInSubtree Boolean
    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.
    differenceAccessLevel String
    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<GetSdmMaskingPolicyDifferencesFilter>
    maskingPolicyId String
    A filter to return only the resources that match the specified masking policy OCID.
    sensitiveDataModelId String
    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.
    compartmentIdInSubtree boolean
    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.
    differenceAccessLevel string
    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 GetSdmMaskingPolicyDifferencesFilter[]
    maskingPolicyId string
    A filter to return only the resources that match the specified masking policy OCID.
    sensitiveDataModelId string
    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_in_subtree bool
    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_level str
    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[datasafe.GetSdmMaskingPolicyDifferencesFilter]
    masking_policy_id str
    A filter to return only the resources that match the specified masking policy OCID.
    sensitive_data_model_id str
    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.
    compartmentIdInSubtree Boolean
    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.
    differenceAccessLevel String
    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>
    maskingPolicyId String
    A filter to return only the resources that match the specified masking policy OCID.
    sensitiveDataModelId String
    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.
    SdmMaskingPolicyDifferenceCollections List<GetSdmMaskingPolicyDifferencesSdmMaskingPolicyDifferenceCollection>
    The list of sdm_masking_policy_difference_collection.
    CompartmentIdInSubtree bool
    DifferenceAccessLevel string
    DisplayName string
    The display name of the SDM masking policy difference.
    Filters List<GetSdmMaskingPolicyDifferencesFilter>
    MaskingPolicyId string
    The OCID of the masking policy associated with the SDM masking policy difference.
    SensitiveDataModelId string
    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.
    SdmMaskingPolicyDifferenceCollections []GetSdmMaskingPolicyDifferencesSdmMaskingPolicyDifferenceCollection
    The list of sdm_masking_policy_difference_collection.
    CompartmentIdInSubtree bool
    DifferenceAccessLevel string
    DisplayName string
    The display name of the SDM masking policy difference.
    Filters []GetSdmMaskingPolicyDifferencesFilter
    MaskingPolicyId string
    The OCID of the masking policy associated with the SDM masking policy difference.
    SensitiveDataModelId string
    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.
    sdmMaskingPolicyDifferenceCollections List<GetSdmMaskingPolicyDifferencesSdmMaskingPolicyDifferenceCollection>
    The list of sdm_masking_policy_difference_collection.
    compartmentIdInSubtree Boolean
    differenceAccessLevel String
    displayName String
    The display name of the SDM masking policy difference.
    filters List<GetSdmMaskingPolicyDifferencesFilter>
    maskingPolicyId String
    The OCID of the masking policy associated with the SDM masking policy difference.
    sensitiveDataModelId String
    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.
    sdmMaskingPolicyDifferenceCollections GetSdmMaskingPolicyDifferencesSdmMaskingPolicyDifferenceCollection[]
    The list of sdm_masking_policy_difference_collection.
    compartmentIdInSubtree boolean
    differenceAccessLevel string
    displayName string
    The display name of the SDM masking policy difference.
    filters GetSdmMaskingPolicyDifferencesFilter[]
    maskingPolicyId string
    The OCID of the masking policy associated with the SDM masking policy difference.
    sensitiveDataModelId string
    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_policy_difference_collections Sequence[datasafe.GetSdmMaskingPolicyDifferencesSdmMaskingPolicyDifferenceCollection]
    The list of sdm_masking_policy_difference_collection.
    compartment_id_in_subtree bool
    difference_access_level str
    display_name str
    The display name of the SDM masking policy difference.
    filters Sequence[datasafe.GetSdmMaskingPolicyDifferencesFilter]
    masking_policy_id str
    The OCID of the masking policy associated with the SDM masking policy difference.
    sensitive_data_model_id str
    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.
    sdmMaskingPolicyDifferenceCollections List<Property Map>
    The list of sdm_masking_policy_difference_collection.
    compartmentIdInSubtree Boolean
    differenceAccessLevel String
    displayName String
    The display name of the SDM masking policy difference.
    filters List<Property Map>
    maskingPolicyId String
    The OCID of the masking policy associated with the SDM masking policy difference.
    sensitiveDataModelId String
    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

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetSdmMaskingPolicyDifferencesSdmMaskingPolicyDifferenceCollection

    GetSdmMaskingPolicyDifferencesSdmMaskingPolicyDifferenceCollectionItem

    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    DefinedTags Dictionary<string, object>
    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.
    FreeformTags Dictionary<string, object>
    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.
    MaskingPolicyId string
    A filter to return only the resources that match the specified masking policy OCID.
    SensitiveDataModelId string
    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.
    SystemTags Dictionary<string, object>
    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.
    TimeCreationStarted string
    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.
    DefinedTags map[string]interface{}
    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.
    FreeformTags map[string]interface{}
    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.
    MaskingPolicyId string
    A filter to return only the resources that match the specified masking policy OCID.
    SensitiveDataModelId string
    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.
    SystemTags map[string]interface{}
    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.
    TimeCreationStarted string
    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.
    definedTags Map<String,Object>
    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.
    freeformTags Map<String,Object>
    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.
    maskingPolicyId String
    A filter to return only the resources that match the specified masking policy OCID.
    sensitiveDataModelId String
    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.
    systemTags Map<String,Object>
    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.
    timeCreationStarted String
    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.
    definedTags {[key: string]: any}
    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.
    freeformTags {[key: string]: any}
    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.
    maskingPolicyId string
    A filter to return only the resources that match the specified masking policy OCID.
    sensitiveDataModelId string
    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.
    systemTags {[key: string]: any}
    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.
    timeCreationStarted string
    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.
    defined_tags Mapping[str, Any]
    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.
    freeform_tags Mapping[str, Any]
    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_id str
    A filter to return only the resources that match the specified masking policy OCID.
    sensitive_data_model_id str
    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.
    system_tags Mapping[str, Any]
    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_started str
    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.
    definedTags Map<Any>
    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.
    freeformTags Map<Any>
    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.
    maskingPolicyId String
    A filter to return only the resources that match the specified masking policy OCID.
    sensitiveDataModelId String
    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.
    systemTags Map<Any>
    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.
    timeCreationStarted String
    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 oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi