Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 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[_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:
- Compartment
Id string - 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 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).
- Display
Name string - A filter to return only resources that match the specified display name.
- Filters
List<Get
Sdm Masking Policy Differences Filter> - Masking
Policy stringId - A filter to return only the resources that match the specified masking policy OCID.
- Sensitive
Data 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 string - 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 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).
- Display
Name string - A filter to return only resources that match the specified display name.
- Filters
[]Get
Sdm Masking Policy Differences Filter - Masking
Policy stringId - A filter to return only the resources that match the specified masking policy OCID.
- Sensitive
Data 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 String - A filter to return only resources that match the specified compartment OCID.
- compartment
Id 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.
- difference
Access 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).
- display
Name String - A filter to return only resources that match the specified display name.
- filters
List<Get
Sdm Masking Policy Differences Filter> - masking
Policy StringId - A filter to return only the resources that match the specified masking policy OCID.
- sensitive
Data 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 string - A filter to return only resources that match the specified compartment OCID.
- compartment
Id 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.
- difference
Access 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).
- display
Name string - A filter to return only resources that match the specified display name.
- filters
Get
Sdm Masking Policy Differences Filter[] - masking
Policy stringId - A filter to return only the resources that match the specified masking policy OCID.
- sensitive
Data 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[datasafe.
Get Sdm 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.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- compartment
Id 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.
- difference
Access 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).
- display
Name String - A filter to return only resources that match the specified display name.
- filters List<Property Map>
- masking
Policy StringId - A filter to return only the resources that match the specified masking policy OCID.
- sensitive
Data 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:
- Compartment
Id 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.
- Sdm
Masking List<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 stringLevel - Display
Name string - The display name of the SDM masking policy difference.
- Filters
List<Get
Sdm Masking Policy Differences Filter> - Masking
Policy stringId - The OCID of the masking policy associated with the SDM masking policy difference.
- Sensitive
Data 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 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.
- Sdm
Masking []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 stringLevel - Display
Name string - The display name of the SDM masking policy difference.
- Filters
[]Get
Sdm Masking Policy Differences Filter - Masking
Policy stringId - The OCID of the masking policy associated with the SDM masking policy difference.
- Sensitive
Data 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 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.
- sdm
Masking List<GetPolicy Difference Collections Sdm Masking Policy Differences Sdm Masking Policy Difference Collection> - The list of sdm_masking_policy_difference_collection.
- compartment
Id BooleanIn Subtree - difference
Access StringLevel - display
Name String - The display name of the SDM masking policy difference.
- filters
List<Get
Sdm Masking Policy Differences Filter> - masking
Policy StringId - The OCID of the masking policy associated with the SDM masking policy difference.
- sensitive
Data 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 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.
- sdm
Masking GetPolicy Difference Collections Sdm Masking Policy Differences Sdm Masking Policy Difference Collection[] - The list of sdm_masking_policy_difference_collection.
- compartment
Id booleanIn Subtree - difference
Access stringLevel - display
Name string - The display name of the SDM masking policy difference.
- filters
Get
Sdm Masking Policy Differences Filter[] - masking
Policy stringId - The OCID of the masking policy associated with the SDM masking policy difference.
- sensitive
Data 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[datasafe.policy_ difference_ collections Get 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[datasafe.
Get Sdm 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.
- compartment
Id 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.
- sdm
Masking List<Property Map>Policy Difference Collections - The list of sdm_masking_policy_difference_collection.
- compartment
Id BooleanIn Subtree - difference
Access StringLevel - display
Name String - The display name of the SDM masking policy difference.
- filters List<Property Map>
- masking
Policy StringId - The OCID of the masking policy associated with the SDM masking policy difference.
- sensitive
Data 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
- Compartment
Id 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"}
- Difference
Type 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.
- Display
Name 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.
- Masking
Policy stringId - A filter to return only the resources that match the specified masking policy OCID.
- Sensitive
Data 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"}
- Time
Created string - The date and time the SDM masking policy difference was created, in the format defined by RFC3339.
- Time
Creation stringStarted - The date and time the SDM masking policy difference creation started, in the format defined by RFC3339.
- Compartment
Id 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"}
- Difference
Type 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.
- Display
Name 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.
- Masking
Policy stringId - A filter to return only the resources that match the specified masking policy OCID.
- Sensitive
Data 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"}
- Time
Created string - The date and time the SDM masking policy difference was created, in the format defined by RFC3339.
- Time
Creation stringStarted - The date and time the SDM masking policy difference creation started, in the format defined by RFC3339.
- compartment
Id 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"}
- difference
Type 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.
- display
Name 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.
- masking
Policy StringId - A filter to return only the resources that match the specified masking policy OCID.
- sensitive
Data 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"}
- time
Created String - The date and time the SDM masking policy difference was created, in the format defined by RFC3339.
- time
Creation StringStarted - The date and time the SDM masking policy difference creation started, in the format defined by RFC3339.
- compartment
Id 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"}
- difference
Type 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.
- display
Name 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.
- masking
Policy stringId - A filter to return only the resources that match the specified masking policy OCID.
- sensitive
Data 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"}
- time
Created string - The date and time the SDM masking policy difference was created, in the format defined by RFC3339.
- time
Creation 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.
- compartment
Id 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"}
- difference
Type 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.
- display
Name 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.
- masking
Policy StringId - A filter to return only the resources that match the specified masking policy OCID.
- sensitive
Data 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"}
- time
Created String - The date and time the SDM masking policy difference was created, in the format defined by RFC3339.
- time
Creation 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
oci
Terraform Provider.