oci.DataSafe.MaskingReportManagement
Explore with Pulumi AI
This resource provides Masking Report Management resource in Oracle Cloud Infrastructure Data Safe service.
Gets the details of the specified masking report.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testMaskingReportManagement = new oci.datasafe.MaskingReportManagement("test_masking_report_management", {
    targetId: testTargetDatabase.id,
    maskingPolicyId: testMaskingPolicy.id,
});
import pulumi
import pulumi_oci as oci
test_masking_report_management = oci.data_safe.MaskingReportManagement("test_masking_report_management",
    target_id=test_target_database["id"],
    masking_policy_id=test_masking_policy["id"])
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.NewMaskingReportManagement(ctx, "test_masking_report_management", &datasafe.MaskingReportManagementArgs{
			TargetId:        pulumi.Any(testTargetDatabase.Id),
			MaskingPolicyId: pulumi.Any(testMaskingPolicy.Id),
		})
		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 testMaskingReportManagement = new Oci.DataSafe.MaskingReportManagement("test_masking_report_management", new()
    {
        TargetId = testTargetDatabase.Id,
        MaskingPolicyId = testMaskingPolicy.Id,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.MaskingReportManagement;
import com.pulumi.oci.DataSafe.MaskingReportManagementArgs;
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) {
        var testMaskingReportManagement = new MaskingReportManagement("testMaskingReportManagement", MaskingReportManagementArgs.builder()
            .targetId(testTargetDatabase.id())
            .maskingPolicyId(testMaskingPolicy.id())
            .build());
    }
}
resources:
  testMaskingReportManagement:
    type: oci:DataSafe:MaskingReportManagement
    name: test_masking_report_management
    properties:
      targetId: ${testTargetDatabase.id}
      maskingPolicyId: ${testMaskingPolicy.id}
Create MaskingReportManagement Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MaskingReportManagement(name: string, args?: MaskingReportManagementArgs, opts?: CustomResourceOptions);@overload
def MaskingReportManagement(resource_name: str,
                            args: Optional[MaskingReportManagementArgs] = None,
                            opts: Optional[ResourceOptions] = None)
@overload
def MaskingReportManagement(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            compartment_id: Optional[str] = None,
                            masking_policy_id: Optional[str] = None,
                            target_id: Optional[str] = None)func NewMaskingReportManagement(ctx *Context, name string, args *MaskingReportManagementArgs, opts ...ResourceOption) (*MaskingReportManagement, error)public MaskingReportManagement(string name, MaskingReportManagementArgs? args = null, CustomResourceOptions? opts = null)
public MaskingReportManagement(String name, MaskingReportManagementArgs args)
public MaskingReportManagement(String name, MaskingReportManagementArgs args, CustomResourceOptions options)
type: oci:DataSafe:MaskingReportManagement
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args MaskingReportManagementArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args MaskingReportManagementArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args MaskingReportManagementArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MaskingReportManagementArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MaskingReportManagementArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var maskingReportManagementResource = new Oci.DataSafe.MaskingReportManagement("maskingReportManagementResource", new()
{
    CompartmentId = "string",
    MaskingPolicyId = "string",
    TargetId = "string",
});
example, err := datasafe.NewMaskingReportManagement(ctx, "maskingReportManagementResource", &datasafe.MaskingReportManagementArgs{
	CompartmentId:   pulumi.String("string"),
	MaskingPolicyId: pulumi.String("string"),
	TargetId:        pulumi.String("string"),
})
var maskingReportManagementResource = new MaskingReportManagement("maskingReportManagementResource", MaskingReportManagementArgs.builder()
    .compartmentId("string")
    .maskingPolicyId("string")
    .targetId("string")
    .build());
masking_report_management_resource = oci.data_safe.MaskingReportManagement("maskingReportManagementResource",
    compartment_id="string",
    masking_policy_id="string",
    target_id="string")
const maskingReportManagementResource = new oci.datasafe.MaskingReportManagement("maskingReportManagementResource", {
    compartmentId: "string",
    maskingPolicyId: "string",
    targetId: "string",
});
type: oci:DataSafe:MaskingReportManagement
properties:
    compartmentId: string
    maskingPolicyId: string
    targetId: string
MaskingReportManagement Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MaskingReportManagement resource accepts the following input properties:
- CompartmentId string
- The OCID of the compartment that contains the masking report.
- MaskingPolicy stringId 
- The OCID of the masking policy.
- TargetId string
- The OCID of the target database masked.
- CompartmentId string
- The OCID of the compartment that contains the masking report.
- MaskingPolicy stringId 
- The OCID of the masking policy.
- TargetId string
- The OCID of the target database masked.
- compartmentId String
- The OCID of the compartment that contains the masking report.
- maskingPolicy StringId 
- The OCID of the masking policy.
- targetId String
- The OCID of the target database masked.
- compartmentId string
- The OCID of the compartment that contains the masking report.
- maskingPolicy stringId 
- The OCID of the masking policy.
- targetId string
- The OCID of the target database masked.
- compartment_id str
- The OCID of the compartment that contains the masking report.
- masking_policy_ strid 
- The OCID of the masking policy.
- target_id str
- The OCID of the target database masked.
- compartmentId String
- The OCID of the compartment that contains the masking report.
- maskingPolicy StringId 
- The OCID of the masking policy.
- targetId String
- The OCID of the target database masked.
Outputs
All input properties are implicitly available as output properties. Additionally, the MaskingReportManagement resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- IsDrop boolTemp Tables Enabled 
- Indicates if the temporary tables created during the masking operation were dropped after masking.
- IsRedo boolLogging Enabled 
- Indicates if redo logging was enabled during the masking operation.
- IsRefresh boolStats Enabled 
- Indicates if statistics gathering was enabled during the masking operation.
- MaskingWork stringRequest Id 
- The OCID of the masking work request that resulted in this masking report.
- ParallelDegree string
- Indicates if parallel execution was enabled during the masking operation.
- Recompile string
- Indicates how invalid objects were recompiled post the masking operation.
- State string
- The current state of the masking report.
- TimeCreated string
- The date and time the masking report was created, in the format defined by RFC3339.
- TimeMasking stringFinished 
- The date and time data masking finished, in the format defined by RFC3339
- TimeMasking stringStarted 
- The date and time data masking started, in the format defined by RFC3339
- TotalMasked stringColumns 
- The total number of masked columns.
- TotalMasked stringObjects 
- The total number of unique objects (tables and editioning views) that contain the masked columns.
- TotalMasked stringSchemas 
- The total number of unique schemas that contain the masked columns.
- TotalMasked stringSensitive Types 
- The total number of unique sensitive types associated with the masked columns.
- TotalMasked stringValues 
- The total number of masked values.
- Id string
- The provider-assigned unique ID for this managed resource.
- IsDrop boolTemp Tables Enabled 
- Indicates if the temporary tables created during the masking operation were dropped after masking.
- IsRedo boolLogging Enabled 
- Indicates if redo logging was enabled during the masking operation.
- IsRefresh boolStats Enabled 
- Indicates if statistics gathering was enabled during the masking operation.
- MaskingWork stringRequest Id 
- The OCID of the masking work request that resulted in this masking report.
- ParallelDegree string
- Indicates if parallel execution was enabled during the masking operation.
- Recompile string
- Indicates how invalid objects were recompiled post the masking operation.
- State string
- The current state of the masking report.
- TimeCreated string
- The date and time the masking report was created, in the format defined by RFC3339.
- TimeMasking stringFinished 
- The date and time data masking finished, in the format defined by RFC3339
- TimeMasking stringStarted 
- The date and time data masking started, in the format defined by RFC3339
- TotalMasked stringColumns 
- The total number of masked columns.
- TotalMasked stringObjects 
- The total number of unique objects (tables and editioning views) that contain the masked columns.
- TotalMasked stringSchemas 
- The total number of unique schemas that contain the masked columns.
- TotalMasked stringSensitive Types 
- The total number of unique sensitive types associated with the masked columns.
- TotalMasked stringValues 
- The total number of masked values.
- id String
- The provider-assigned unique ID for this managed resource.
- isDrop BooleanTemp Tables Enabled 
- Indicates if the temporary tables created during the masking operation were dropped after masking.
- isRedo BooleanLogging Enabled 
- Indicates if redo logging was enabled during the masking operation.
- isRefresh BooleanStats Enabled 
- Indicates if statistics gathering was enabled during the masking operation.
- maskingWork StringRequest Id 
- The OCID of the masking work request that resulted in this masking report.
- parallelDegree String
- Indicates if parallel execution was enabled during the masking operation.
- recompile String
- Indicates how invalid objects were recompiled post the masking operation.
- state String
- The current state of the masking report.
- timeCreated String
- The date and time the masking report was created, in the format defined by RFC3339.
- timeMasking StringFinished 
- The date and time data masking finished, in the format defined by RFC3339
- timeMasking StringStarted 
- The date and time data masking started, in the format defined by RFC3339
- totalMasked StringColumns 
- The total number of masked columns.
- totalMasked StringObjects 
- The total number of unique objects (tables and editioning views) that contain the masked columns.
- totalMasked StringSchemas 
- The total number of unique schemas that contain the masked columns.
- totalMasked StringSensitive Types 
- The total number of unique sensitive types associated with the masked columns.
- totalMasked StringValues 
- The total number of masked values.
- id string
- The provider-assigned unique ID for this managed resource.
- isDrop booleanTemp Tables Enabled 
- Indicates if the temporary tables created during the masking operation were dropped after masking.
- isRedo booleanLogging Enabled 
- Indicates if redo logging was enabled during the masking operation.
- isRefresh booleanStats Enabled 
- Indicates if statistics gathering was enabled during the masking operation.
- maskingWork stringRequest Id 
- The OCID of the masking work request that resulted in this masking report.
- parallelDegree string
- Indicates if parallel execution was enabled during the masking operation.
- recompile string
- Indicates how invalid objects were recompiled post the masking operation.
- state string
- The current state of the masking report.
- timeCreated string
- The date and time the masking report was created, in the format defined by RFC3339.
- timeMasking stringFinished 
- The date and time data masking finished, in the format defined by RFC3339
- timeMasking stringStarted 
- The date and time data masking started, in the format defined by RFC3339
- totalMasked stringColumns 
- The total number of masked columns.
- totalMasked stringObjects 
- The total number of unique objects (tables and editioning views) that contain the masked columns.
- totalMasked stringSchemas 
- The total number of unique schemas that contain the masked columns.
- totalMasked stringSensitive Types 
- The total number of unique sensitive types associated with the masked columns.
- totalMasked stringValues 
- The total number of masked values.
- id str
- The provider-assigned unique ID for this managed resource.
- is_drop_ booltemp_ tables_ enabled 
- Indicates if the temporary tables created during the masking operation were dropped after masking.
- is_redo_ boollogging_ enabled 
- Indicates if redo logging was enabled during the masking operation.
- is_refresh_ boolstats_ enabled 
- Indicates if statistics gathering was enabled during the masking operation.
- masking_work_ strrequest_ id 
- The OCID of the masking work request that resulted in this masking report.
- parallel_degree str
- Indicates if parallel execution was enabled during the masking operation.
- recompile str
- Indicates how invalid objects were recompiled post the masking operation.
- state str
- The current state of the masking report.
- time_created str
- The date and time the masking report was created, in the format defined by RFC3339.
- time_masking_ strfinished 
- The date and time data masking finished, in the format defined by RFC3339
- time_masking_ strstarted 
- The date and time data masking started, in the format defined by RFC3339
- total_masked_ strcolumns 
- The total number of masked columns.
- total_masked_ strobjects 
- The total number of unique objects (tables and editioning views) that contain the masked columns.
- total_masked_ strschemas 
- The total number of unique schemas that contain the masked columns.
- total_masked_ strsensitive_ types 
- The total number of unique sensitive types associated with the masked columns.
- total_masked_ strvalues 
- The total number of masked values.
- id String
- The provider-assigned unique ID for this managed resource.
- isDrop BooleanTemp Tables Enabled 
- Indicates if the temporary tables created during the masking operation were dropped after masking.
- isRedo BooleanLogging Enabled 
- Indicates if redo logging was enabled during the masking operation.
- isRefresh BooleanStats Enabled 
- Indicates if statistics gathering was enabled during the masking operation.
- maskingWork StringRequest Id 
- The OCID of the masking work request that resulted in this masking report.
- parallelDegree String
- Indicates if parallel execution was enabled during the masking operation.
- recompile String
- Indicates how invalid objects were recompiled post the masking operation.
- state String
- The current state of the masking report.
- timeCreated String
- The date and time the masking report was created, in the format defined by RFC3339.
- timeMasking StringFinished 
- The date and time data masking finished, in the format defined by RFC3339
- timeMasking StringStarted 
- The date and time data masking started, in the format defined by RFC3339
- totalMasked StringColumns 
- The total number of masked columns.
- totalMasked StringObjects 
- The total number of unique objects (tables and editioning views) that contain the masked columns.
- totalMasked StringSchemas 
- The total number of unique schemas that contain the masked columns.
- totalMasked StringSensitive Types 
- The total number of unique sensitive types associated with the masked columns.
- totalMasked StringValues 
- The total number of masked values.
Look up Existing MaskingReportManagement Resource
Get an existing MaskingReportManagement resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: MaskingReportManagementState, opts?: CustomResourceOptions): MaskingReportManagement@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        is_drop_temp_tables_enabled: Optional[bool] = None,
        is_redo_logging_enabled: Optional[bool] = None,
        is_refresh_stats_enabled: Optional[bool] = None,
        masking_policy_id: Optional[str] = None,
        masking_work_request_id: Optional[str] = None,
        parallel_degree: Optional[str] = None,
        recompile: Optional[str] = None,
        state: Optional[str] = None,
        target_id: Optional[str] = None,
        time_created: Optional[str] = None,
        time_masking_finished: Optional[str] = None,
        time_masking_started: Optional[str] = None,
        total_masked_columns: Optional[str] = None,
        total_masked_objects: Optional[str] = None,
        total_masked_schemas: Optional[str] = None,
        total_masked_sensitive_types: Optional[str] = None,
        total_masked_values: Optional[str] = None) -> MaskingReportManagementfunc GetMaskingReportManagement(ctx *Context, name string, id IDInput, state *MaskingReportManagementState, opts ...ResourceOption) (*MaskingReportManagement, error)public static MaskingReportManagement Get(string name, Input<string> id, MaskingReportManagementState? state, CustomResourceOptions? opts = null)public static MaskingReportManagement get(String name, Output<String> id, MaskingReportManagementState state, CustomResourceOptions options)resources:  _:    type: oci:DataSafe:MaskingReportManagement    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- CompartmentId string
- The OCID of the compartment that contains the masking report.
- IsDrop boolTemp Tables Enabled 
- Indicates if the temporary tables created during the masking operation were dropped after masking.
- IsRedo boolLogging Enabled 
- Indicates if redo logging was enabled during the masking operation.
- IsRefresh boolStats Enabled 
- Indicates if statistics gathering was enabled during the masking operation.
- MaskingPolicy stringId 
- The OCID of the masking policy.
- MaskingWork stringRequest Id 
- The OCID of the masking work request that resulted in this masking report.
- ParallelDegree string
- Indicates if parallel execution was enabled during the masking operation.
- Recompile string
- Indicates how invalid objects were recompiled post the masking operation.
- State string
- The current state of the masking report.
- TargetId string
- The OCID of the target database masked.
- TimeCreated string
- The date and time the masking report was created, in the format defined by RFC3339.
- TimeMasking stringFinished 
- The date and time data masking finished, in the format defined by RFC3339
- TimeMasking stringStarted 
- The date and time data masking started, in the format defined by RFC3339
- TotalMasked stringColumns 
- The total number of masked columns.
- TotalMasked stringObjects 
- The total number of unique objects (tables and editioning views) that contain the masked columns.
- TotalMasked stringSchemas 
- The total number of unique schemas that contain the masked columns.
- TotalMasked stringSensitive Types 
- The total number of unique sensitive types associated with the masked columns.
- TotalMasked stringValues 
- The total number of masked values.
- CompartmentId string
- The OCID of the compartment that contains the masking report.
- IsDrop boolTemp Tables Enabled 
- Indicates if the temporary tables created during the masking operation were dropped after masking.
- IsRedo boolLogging Enabled 
- Indicates if redo logging was enabled during the masking operation.
- IsRefresh boolStats Enabled 
- Indicates if statistics gathering was enabled during the masking operation.
- MaskingPolicy stringId 
- The OCID of the masking policy.
- MaskingWork stringRequest Id 
- The OCID of the masking work request that resulted in this masking report.
- ParallelDegree string
- Indicates if parallel execution was enabled during the masking operation.
- Recompile string
- Indicates how invalid objects were recompiled post the masking operation.
- State string
- The current state of the masking report.
- TargetId string
- The OCID of the target database masked.
- TimeCreated string
- The date and time the masking report was created, in the format defined by RFC3339.
- TimeMasking stringFinished 
- The date and time data masking finished, in the format defined by RFC3339
- TimeMasking stringStarted 
- The date and time data masking started, in the format defined by RFC3339
- TotalMasked stringColumns 
- The total number of masked columns.
- TotalMasked stringObjects 
- The total number of unique objects (tables and editioning views) that contain the masked columns.
- TotalMasked stringSchemas 
- The total number of unique schemas that contain the masked columns.
- TotalMasked stringSensitive Types 
- The total number of unique sensitive types associated with the masked columns.
- TotalMasked stringValues 
- The total number of masked values.
- compartmentId String
- The OCID of the compartment that contains the masking report.
- isDrop BooleanTemp Tables Enabled 
- Indicates if the temporary tables created during the masking operation were dropped after masking.
- isRedo BooleanLogging Enabled 
- Indicates if redo logging was enabled during the masking operation.
- isRefresh BooleanStats Enabled 
- Indicates if statistics gathering was enabled during the masking operation.
- maskingPolicy StringId 
- The OCID of the masking policy.
- maskingWork StringRequest Id 
- The OCID of the masking work request that resulted in this masking report.
- parallelDegree String
- Indicates if parallel execution was enabled during the masking operation.
- recompile String
- Indicates how invalid objects were recompiled post the masking operation.
- state String
- The current state of the masking report.
- targetId String
- The OCID of the target database masked.
- timeCreated String
- The date and time the masking report was created, in the format defined by RFC3339.
- timeMasking StringFinished 
- The date and time data masking finished, in the format defined by RFC3339
- timeMasking StringStarted 
- The date and time data masking started, in the format defined by RFC3339
- totalMasked StringColumns 
- The total number of masked columns.
- totalMasked StringObjects 
- The total number of unique objects (tables and editioning views) that contain the masked columns.
- totalMasked StringSchemas 
- The total number of unique schemas that contain the masked columns.
- totalMasked StringSensitive Types 
- The total number of unique sensitive types associated with the masked columns.
- totalMasked StringValues 
- The total number of masked values.
- compartmentId string
- The OCID of the compartment that contains the masking report.
- isDrop booleanTemp Tables Enabled 
- Indicates if the temporary tables created during the masking operation were dropped after masking.
- isRedo booleanLogging Enabled 
- Indicates if redo logging was enabled during the masking operation.
- isRefresh booleanStats Enabled 
- Indicates if statistics gathering was enabled during the masking operation.
- maskingPolicy stringId 
- The OCID of the masking policy.
- maskingWork stringRequest Id 
- The OCID of the masking work request that resulted in this masking report.
- parallelDegree string
- Indicates if parallel execution was enabled during the masking operation.
- recompile string
- Indicates how invalid objects were recompiled post the masking operation.
- state string
- The current state of the masking report.
- targetId string
- The OCID of the target database masked.
- timeCreated string
- The date and time the masking report was created, in the format defined by RFC3339.
- timeMasking stringFinished 
- The date and time data masking finished, in the format defined by RFC3339
- timeMasking stringStarted 
- The date and time data masking started, in the format defined by RFC3339
- totalMasked stringColumns 
- The total number of masked columns.
- totalMasked stringObjects 
- The total number of unique objects (tables and editioning views) that contain the masked columns.
- totalMasked stringSchemas 
- The total number of unique schemas that contain the masked columns.
- totalMasked stringSensitive Types 
- The total number of unique sensitive types associated with the masked columns.
- totalMasked stringValues 
- The total number of masked values.
- compartment_id str
- The OCID of the compartment that contains the masking report.
- is_drop_ booltemp_ tables_ enabled 
- Indicates if the temporary tables created during the masking operation were dropped after masking.
- is_redo_ boollogging_ enabled 
- Indicates if redo logging was enabled during the masking operation.
- is_refresh_ boolstats_ enabled 
- Indicates if statistics gathering was enabled during the masking operation.
- masking_policy_ strid 
- The OCID of the masking policy.
- masking_work_ strrequest_ id 
- The OCID of the masking work request that resulted in this masking report.
- parallel_degree str
- Indicates if parallel execution was enabled during the masking operation.
- recompile str
- Indicates how invalid objects were recompiled post the masking operation.
- state str
- The current state of the masking report.
- target_id str
- The OCID of the target database masked.
- time_created str
- The date and time the masking report was created, in the format defined by RFC3339.
- time_masking_ strfinished 
- The date and time data masking finished, in the format defined by RFC3339
- time_masking_ strstarted 
- The date and time data masking started, in the format defined by RFC3339
- total_masked_ strcolumns 
- The total number of masked columns.
- total_masked_ strobjects 
- The total number of unique objects (tables and editioning views) that contain the masked columns.
- total_masked_ strschemas 
- The total number of unique schemas that contain the masked columns.
- total_masked_ strsensitive_ types 
- The total number of unique sensitive types associated with the masked columns.
- total_masked_ strvalues 
- The total number of masked values.
- compartmentId String
- The OCID of the compartment that contains the masking report.
- isDrop BooleanTemp Tables Enabled 
- Indicates if the temporary tables created during the masking operation were dropped after masking.
- isRedo BooleanLogging Enabled 
- Indicates if redo logging was enabled during the masking operation.
- isRefresh BooleanStats Enabled 
- Indicates if statistics gathering was enabled during the masking operation.
- maskingPolicy StringId 
- The OCID of the masking policy.
- maskingWork StringRequest Id 
- The OCID of the masking work request that resulted in this masking report.
- parallelDegree String
- Indicates if parallel execution was enabled during the masking operation.
- recompile String
- Indicates how invalid objects were recompiled post the masking operation.
- state String
- The current state of the masking report.
- targetId String
- The OCID of the target database masked.
- timeCreated String
- The date and time the masking report was created, in the format defined by RFC3339.
- timeMasking StringFinished 
- The date and time data masking finished, in the format defined by RFC3339
- timeMasking StringStarted 
- The date and time data masking started, in the format defined by RFC3339
- totalMasked StringColumns 
- The total number of masked columns.
- totalMasked StringObjects 
- The total number of unique objects (tables and editioning views) that contain the masked columns.
- totalMasked StringSchemas 
- The total number of unique schemas that contain the masked columns.
- totalMasked StringSensitive Types 
- The total number of unique sensitive types associated with the masked columns.
- totalMasked StringValues 
- The total number of masked values.
Import
Import is not supported for this resource.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.