Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.DataSafe.getMaskingPolicyReferentialRelations
Explore with Pulumi AI
This data source provides the list of Masking Policy Referential Relations in Oracle Cloud Infrastructure Data Safe service.
Gets a list of referential relations present in the specified masking policy based on the specified query parameters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testMaskingPolicyReferentialRelations = oci.DataSafe.getMaskingPolicyReferentialRelations({
    maskingPolicyId: testMaskingPolicy.id,
    columnNames: maskingPolicyReferentialRelationColumnName,
    objects: maskingPolicyReferentialRelationObject,
    relationTypes: maskingPolicyReferentialRelationRelationType,
    schemaNames: maskingPolicyReferentialRelationSchemaName,
});
import pulumi
import pulumi_oci as oci
test_masking_policy_referential_relations = oci.DataSafe.get_masking_policy_referential_relations(masking_policy_id=test_masking_policy["id"],
    column_names=masking_policy_referential_relation_column_name,
    objects=masking_policy_referential_relation_object,
    relation_types=masking_policy_referential_relation_relation_type,
    schema_names=masking_policy_referential_relation_schema_name)
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.GetMaskingPolicyReferentialRelations(ctx, &datasafe.GetMaskingPolicyReferentialRelationsArgs{
			MaskingPolicyId: testMaskingPolicy.Id,
			ColumnNames:     maskingPolicyReferentialRelationColumnName,
			Objects:         maskingPolicyReferentialRelationObject,
			RelationTypes:   maskingPolicyReferentialRelationRelationType,
			SchemaNames:     maskingPolicyReferentialRelationSchemaName,
		}, 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 testMaskingPolicyReferentialRelations = Oci.DataSafe.GetMaskingPolicyReferentialRelations.Invoke(new()
    {
        MaskingPolicyId = testMaskingPolicy.Id,
        ColumnNames = maskingPolicyReferentialRelationColumnName,
        Objects = maskingPolicyReferentialRelationObject,
        RelationTypes = maskingPolicyReferentialRelationRelationType,
        SchemaNames = maskingPolicyReferentialRelationSchemaName,
    });
});
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.GetMaskingPolicyReferentialRelationsArgs;
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 testMaskingPolicyReferentialRelations = DataSafeFunctions.getMaskingPolicyReferentialRelations(GetMaskingPolicyReferentialRelationsArgs.builder()
            .maskingPolicyId(testMaskingPolicy.id())
            .columnNames(maskingPolicyReferentialRelationColumnName)
            .objects(maskingPolicyReferentialRelationObject)
            .relationTypes(maskingPolicyReferentialRelationRelationType)
            .schemaNames(maskingPolicyReferentialRelationSchemaName)
            .build());
    }
}
variables:
  testMaskingPolicyReferentialRelations:
    fn::invoke:
      function: oci:DataSafe:getMaskingPolicyReferentialRelations
      arguments:
        maskingPolicyId: ${testMaskingPolicy.id}
        columnNames: ${maskingPolicyReferentialRelationColumnName}
        objects: ${maskingPolicyReferentialRelationObject}
        relationTypes: ${maskingPolicyReferentialRelationRelationType}
        schemaNames: ${maskingPolicyReferentialRelationSchemaName}
Using getMaskingPolicyReferentialRelations
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 getMaskingPolicyReferentialRelations(args: GetMaskingPolicyReferentialRelationsArgs, opts?: InvokeOptions): Promise<GetMaskingPolicyReferentialRelationsResult>
function getMaskingPolicyReferentialRelationsOutput(args: GetMaskingPolicyReferentialRelationsOutputArgs, opts?: InvokeOptions): Output<GetMaskingPolicyReferentialRelationsResult>def get_masking_policy_referential_relations(column_names: Optional[Sequence[str]] = None,
                                             filters: Optional[Sequence[GetMaskingPolicyReferentialRelationsFilter]] = None,
                                             masking_policy_id: Optional[str] = None,
                                             objects: Optional[Sequence[str]] = None,
                                             relation_types: Optional[Sequence[str]] = None,
                                             schema_names: Optional[Sequence[str]] = None,
                                             opts: Optional[InvokeOptions] = None) -> GetMaskingPolicyReferentialRelationsResult
def get_masking_policy_referential_relations_output(column_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                             filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetMaskingPolicyReferentialRelationsFilterArgs]]]] = None,
                                             masking_policy_id: Optional[pulumi.Input[str]] = None,
                                             objects: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                             relation_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                             schema_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                             opts: Optional[InvokeOptions] = None) -> Output[GetMaskingPolicyReferentialRelationsResult]func GetMaskingPolicyReferentialRelations(ctx *Context, args *GetMaskingPolicyReferentialRelationsArgs, opts ...InvokeOption) (*GetMaskingPolicyReferentialRelationsResult, error)
func GetMaskingPolicyReferentialRelationsOutput(ctx *Context, args *GetMaskingPolicyReferentialRelationsOutputArgs, opts ...InvokeOption) GetMaskingPolicyReferentialRelationsResultOutput> Note: This function is named GetMaskingPolicyReferentialRelations in the Go SDK.
public static class GetMaskingPolicyReferentialRelations 
{
    public static Task<GetMaskingPolicyReferentialRelationsResult> InvokeAsync(GetMaskingPolicyReferentialRelationsArgs args, InvokeOptions? opts = null)
    public static Output<GetMaskingPolicyReferentialRelationsResult> Invoke(GetMaskingPolicyReferentialRelationsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetMaskingPolicyReferentialRelationsResult> getMaskingPolicyReferentialRelations(GetMaskingPolicyReferentialRelationsArgs args, InvokeOptions options)
public static Output<GetMaskingPolicyReferentialRelationsResult> getMaskingPolicyReferentialRelations(GetMaskingPolicyReferentialRelationsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataSafe/getMaskingPolicyReferentialRelations:getMaskingPolicyReferentialRelations
  arguments:
    # arguments dictionaryThe following arguments are supported:
- MaskingPolicy stringId 
- The OCID of the masking policy.
- ColumnNames List<string>
- A filter to return only a specific column based on column name.
- Filters
List<GetMasking Policy Referential Relations Filter> 
- Objects List<string>
- A filter to return only items related to a specific object name.
- RelationTypes List<string>
- A filter to return columns based on their relationship with their parent columns. If set to NONE, it returns the columns that do not have any parent. The response includes the parent columns as well as the independent columns that are not in any relationship. If set to APP_DEFINED, it returns all the child columns that have application-level (non-dictionary) relationship with their parents. If set to DB_DEFINED, it returns all the child columns that have database-level (dictionary-defined) relationship with their parents.
- SchemaNames List<string>
- A filter to return only items related to specific schema name.
- MaskingPolicy stringId 
- The OCID of the masking policy.
- ColumnNames []string
- A filter to return only a specific column based on column name.
- Filters
[]GetMasking Policy Referential Relations Filter 
- Objects []string
- A filter to return only items related to a specific object name.
- RelationTypes []string
- A filter to return columns based on their relationship with their parent columns. If set to NONE, it returns the columns that do not have any parent. The response includes the parent columns as well as the independent columns that are not in any relationship. If set to APP_DEFINED, it returns all the child columns that have application-level (non-dictionary) relationship with their parents. If set to DB_DEFINED, it returns all the child columns that have database-level (dictionary-defined) relationship with their parents.
- SchemaNames []string
- A filter to return only items related to specific schema name.
- maskingPolicy StringId 
- The OCID of the masking policy.
- columnNames List<String>
- A filter to return only a specific column based on column name.
- filters
List<GetMasking Policy Referential Relations Filter> 
- objects List<String>
- A filter to return only items related to a specific object name.
- relationTypes List<String>
- A filter to return columns based on their relationship with their parent columns. If set to NONE, it returns the columns that do not have any parent. The response includes the parent columns as well as the independent columns that are not in any relationship. If set to APP_DEFINED, it returns all the child columns that have application-level (non-dictionary) relationship with their parents. If set to DB_DEFINED, it returns all the child columns that have database-level (dictionary-defined) relationship with their parents.
- schemaNames List<String>
- A filter to return only items related to specific schema name.
- maskingPolicy stringId 
- The OCID of the masking policy.
- columnNames string[]
- A filter to return only a specific column based on column name.
- filters
GetMasking Policy Referential Relations Filter[] 
- objects string[]
- A filter to return only items related to a specific object name.
- relationTypes string[]
- A filter to return columns based on their relationship with their parent columns. If set to NONE, it returns the columns that do not have any parent. The response includes the parent columns as well as the independent columns that are not in any relationship. If set to APP_DEFINED, it returns all the child columns that have application-level (non-dictionary) relationship with their parents. If set to DB_DEFINED, it returns all the child columns that have database-level (dictionary-defined) relationship with their parents.
- schemaNames string[]
- A filter to return only items related to specific schema name.
- masking_policy_ strid 
- The OCID of the masking policy.
- column_names Sequence[str]
- A filter to return only a specific column based on column name.
- filters
Sequence[GetMasking Policy Referential Relations Filter] 
- objects Sequence[str]
- A filter to return only items related to a specific object name.
- relation_types Sequence[str]
- A filter to return columns based on their relationship with their parent columns. If set to NONE, it returns the columns that do not have any parent. The response includes the parent columns as well as the independent columns that are not in any relationship. If set to APP_DEFINED, it returns all the child columns that have application-level (non-dictionary) relationship with their parents. If set to DB_DEFINED, it returns all the child columns that have database-level (dictionary-defined) relationship with their parents.
- schema_names Sequence[str]
- A filter to return only items related to specific schema name.
- maskingPolicy StringId 
- The OCID of the masking policy.
- columnNames List<String>
- A filter to return only a specific column based on column name.
- filters List<Property Map>
- objects List<String>
- A filter to return only items related to a specific object name.
- relationTypes List<String>
- A filter to return columns based on their relationship with their parent columns. If set to NONE, it returns the columns that do not have any parent. The response includes the parent columns as well as the independent columns that are not in any relationship. If set to APP_DEFINED, it returns all the child columns that have application-level (non-dictionary) relationship with their parents. If set to DB_DEFINED, it returns all the child columns that have database-level (dictionary-defined) relationship with their parents.
- schemaNames List<String>
- A filter to return only items related to specific schema name.
getMaskingPolicyReferentialRelations Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- MaskingPolicy stringId 
- The OCID of the masking policy that contains the column.
- MaskingPolicy List<GetReferential Relation Collections Masking Policy Referential Relations Masking Policy Referential Relation Collection> 
- The list of masking_policy_referential_relation_collection.
- ColumnNames List<string>
- Filters
List<GetMasking Policy Referential Relations Filter> 
- Objects List<string>
- The name of the object (table or editioning view) that contains the database column(s).
- RelationTypes List<string>
- The type of referential relationship the column has with its parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.
- SchemaNames List<string>
- The name of the schema that contains the database column(s).
- Id string
- The provider-assigned unique ID for this managed resource.
- MaskingPolicy stringId 
- The OCID of the masking policy that contains the column.
- MaskingPolicy []GetReferential Relation Collections Masking Policy Referential Relations Masking Policy Referential Relation Collection 
- The list of masking_policy_referential_relation_collection.
- ColumnNames []string
- Filters
[]GetMasking Policy Referential Relations Filter 
- Objects []string
- The name of the object (table or editioning view) that contains the database column(s).
- RelationTypes []string
- The type of referential relationship the column has with its parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.
- SchemaNames []string
- The name of the schema that contains the database column(s).
- id String
- The provider-assigned unique ID for this managed resource.
- maskingPolicy StringId 
- The OCID of the masking policy that contains the column.
- maskingPolicy List<GetReferential Relation Collections Masking Policy Referential Relations Masking Policy Referential Relation Collection> 
- The list of masking_policy_referential_relation_collection.
- columnNames List<String>
- filters
List<GetMasking Policy Referential Relations Filter> 
- objects List<String>
- The name of the object (table or editioning view) that contains the database column(s).
- relationTypes List<String>
- The type of referential relationship the column has with its parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.
- schemaNames List<String>
- The name of the schema that contains the database column(s).
- id string
- The provider-assigned unique ID for this managed resource.
- maskingPolicy stringId 
- The OCID of the masking policy that contains the column.
- maskingPolicy GetReferential Relation Collections Masking Policy Referential Relations Masking Policy Referential Relation Collection[] 
- The list of masking_policy_referential_relation_collection.
- columnNames string[]
- filters
GetMasking Policy Referential Relations Filter[] 
- objects string[]
- The name of the object (table or editioning view) that contains the database column(s).
- relationTypes string[]
- The type of referential relationship the column has with its parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.
- schemaNames string[]
- The name of the schema that contains the database column(s).
- id str
- The provider-assigned unique ID for this managed resource.
- masking_policy_ strid 
- The OCID of the masking policy that contains the column.
- masking_policy_ Sequence[Getreferential_ relation_ collections Masking Policy Referential Relations Masking Policy Referential Relation Collection] 
- The list of masking_policy_referential_relation_collection.
- column_names Sequence[str]
- filters
Sequence[GetMasking Policy Referential Relations Filter] 
- objects Sequence[str]
- The name of the object (table or editioning view) that contains the database column(s).
- relation_types Sequence[str]
- The type of referential relationship the column has with its parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.
- schema_names Sequence[str]
- The name of the schema that contains the database column(s).
- id String
- The provider-assigned unique ID for this managed resource.
- maskingPolicy StringId 
- The OCID of the masking policy that contains the column.
- maskingPolicy List<Property Map>Referential Relation Collections 
- The list of masking_policy_referential_relation_collection.
- columnNames List<String>
- filters List<Property Map>
- objects List<String>
- The name of the object (table or editioning view) that contains the database column(s).
- relationTypes List<String>
- The type of referential relationship the column has with its parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary.
- schemaNames List<String>
- The name of the schema that contains the database column(s).
Supporting Types
GetMaskingPolicyReferentialRelationsFilter     
GetMaskingPolicyReferentialRelationsMaskingPolicyReferentialRelationCollection         
- Items
List<GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item> 
- An array of referential relation summary objects.
- Items
[]GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item 
- An array of referential relation summary objects.
- items
List<GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item> 
- An array of referential relation summary objects.
- items
GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item[] 
- An array of referential relation summary objects.
- items
Sequence[GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item] 
- An array of referential relation summary objects.
- items List<Property Map>
- An array of referential relation summary objects.
GetMaskingPolicyReferentialRelationsMaskingPolicyReferentialRelationCollectionItem          
- Children
List<GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item Child> 
- maskingPolicyColumnsInfo object has details of column group with schema details.
- MaskingFormats List<string>
- The masking format associated with the parent column.
- MaskingPolicy stringId 
- The OCID of the masking policy.
- Parents
List<GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item Parent> 
- maskingPolicyColumnsInfo object has details of column group with schema details.
- RelationType string
- A filter to return columns based on their relationship with their parent columns. If set to NONE, it returns the columns that do not have any parent. The response includes the parent columns as well as the independent columns that are not in any relationship. If set to APP_DEFINED, it returns all the child columns that have application-level (non-dictionary) relationship with their parents. If set to DB_DEFINED, it returns all the child columns that have database-level (dictionary-defined) relationship with their parents.
- Children
[]GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item Child 
- maskingPolicyColumnsInfo object has details of column group with schema details.
- MaskingFormats []string
- The masking format associated with the parent column.
- MaskingPolicy stringId 
- The OCID of the masking policy.
- Parents
[]GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item Parent 
- maskingPolicyColumnsInfo object has details of column group with schema details.
- RelationType string
- A filter to return columns based on their relationship with their parent columns. If set to NONE, it returns the columns that do not have any parent. The response includes the parent columns as well as the independent columns that are not in any relationship. If set to APP_DEFINED, it returns all the child columns that have application-level (non-dictionary) relationship with their parents. If set to DB_DEFINED, it returns all the child columns that have database-level (dictionary-defined) relationship with their parents.
- children
List<GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item Child> 
- maskingPolicyColumnsInfo object has details of column group with schema details.
- maskingFormats List<String>
- The masking format associated with the parent column.
- maskingPolicy StringId 
- The OCID of the masking policy.
- parents
List<GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item Parent> 
- maskingPolicyColumnsInfo object has details of column group with schema details.
- relationType String
- A filter to return columns based on their relationship with their parent columns. If set to NONE, it returns the columns that do not have any parent. The response includes the parent columns as well as the independent columns that are not in any relationship. If set to APP_DEFINED, it returns all the child columns that have application-level (non-dictionary) relationship with their parents. If set to DB_DEFINED, it returns all the child columns that have database-level (dictionary-defined) relationship with their parents.
- children
GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item Child[] 
- maskingPolicyColumnsInfo object has details of column group with schema details.
- maskingFormats string[]
- The masking format associated with the parent column.
- maskingPolicy stringId 
- The OCID of the masking policy.
- parents
GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item Parent[] 
- maskingPolicyColumnsInfo object has details of column group with schema details.
- relationType string
- A filter to return columns based on their relationship with their parent columns. If set to NONE, it returns the columns that do not have any parent. The response includes the parent columns as well as the independent columns that are not in any relationship. If set to APP_DEFINED, it returns all the child columns that have application-level (non-dictionary) relationship with their parents. If set to DB_DEFINED, it returns all the child columns that have database-level (dictionary-defined) relationship with their parents.
- children
Sequence[GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item Child] 
- maskingPolicyColumnsInfo object has details of column group with schema details.
- masking_formats Sequence[str]
- The masking format associated with the parent column.
- masking_policy_ strid 
- The OCID of the masking policy.
- parents
Sequence[GetMasking Policy Referential Relations Masking Policy Referential Relation Collection Item Parent] 
- maskingPolicyColumnsInfo object has details of column group with schema details.
- relation_type str
- A filter to return columns based on their relationship with their parent columns. If set to NONE, it returns the columns that do not have any parent. The response includes the parent columns as well as the independent columns that are not in any relationship. If set to APP_DEFINED, it returns all the child columns that have application-level (non-dictionary) relationship with their parents. If set to DB_DEFINED, it returns all the child columns that have database-level (dictionary-defined) relationship with their parents.
- children List<Property Map>
- maskingPolicyColumnsInfo object has details of column group with schema details.
- maskingFormats List<String>
- The masking format associated with the parent column.
- maskingPolicy StringId 
- The OCID of the masking policy.
- parents List<Property Map>
- maskingPolicyColumnsInfo object has details of column group with schema details.
- relationType String
- A filter to return columns based on their relationship with their parent columns. If set to NONE, it returns the columns that do not have any parent. The response includes the parent columns as well as the independent columns that are not in any relationship. If set to APP_DEFINED, it returns all the child columns that have application-level (non-dictionary) relationship with their parents. If set to DB_DEFINED, it returns all the child columns that have database-level (dictionary-defined) relationship with their parents.
GetMaskingPolicyReferentialRelationsMaskingPolicyReferentialRelationCollectionItemChild           
- Object string
- A filter to return only items related to a specific object name.
- ObjectType string
- The type of the database object that contains the masking policy.
- ReferentialColumn List<string>Groups 
- Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- SchemaName string
- A filter to return only items related to specific schema name.
- Object string
- A filter to return only items related to a specific object name.
- ObjectType string
- The type of the database object that contains the masking policy.
- ReferentialColumn []stringGroups 
- Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- SchemaName string
- A filter to return only items related to specific schema name.
- object String
- A filter to return only items related to a specific object name.
- objectType String
- The type of the database object that contains the masking policy.
- referentialColumn List<String>Groups 
- Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- schemaName String
- A filter to return only items related to specific schema name.
- object string
- A filter to return only items related to a specific object name.
- objectType string
- The type of the database object that contains the masking policy.
- referentialColumn string[]Groups 
- Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- schemaName string
- A filter to return only items related to specific schema name.
- object str
- A filter to return only items related to a specific object name.
- object_type str
- The type of the database object that contains the masking policy.
- referential_column_ Sequence[str]groups 
- Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- schema_name str
- A filter to return only items related to specific schema name.
- object String
- A filter to return only items related to a specific object name.
- objectType String
- The type of the database object that contains the masking policy.
- referentialColumn List<String>Groups 
- Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- schemaName String
- A filter to return only items related to specific schema name.
GetMaskingPolicyReferentialRelationsMaskingPolicyReferentialRelationCollectionItemParent           
- Object string
- A filter to return only items related to a specific object name.
- ObjectType string
- The type of the database object that contains the masking policy.
- ReferentialColumn List<string>Groups 
- Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- SchemaName string
- A filter to return only items related to specific schema name.
- Object string
- A filter to return only items related to a specific object name.
- ObjectType string
- The type of the database object that contains the masking policy.
- ReferentialColumn []stringGroups 
- Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- SchemaName string
- A filter to return only items related to specific schema name.
- object String
- A filter to return only items related to a specific object name.
- objectType String
- The type of the database object that contains the masking policy.
- referentialColumn List<String>Groups 
- Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- schemaName String
- A filter to return only items related to specific schema name.
- object string
- A filter to return only items related to a specific object name.
- objectType string
- The type of the database object that contains the masking policy.
- referentialColumn string[]Groups 
- Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- schemaName string
- A filter to return only items related to specific schema name.
- object str
- A filter to return only items related to a specific object name.
- object_type str
- The type of the database object that contains the masking policy.
- referential_column_ Sequence[str]groups 
- Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- schema_name str
- A filter to return only items related to specific schema name.
- object String
- A filter to return only items related to a specific object name.
- objectType String
- The type of the database object that contains the masking policy.
- referentialColumn List<String>Groups 
- Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- schemaName String
- A filter to return only items related to specific schema name.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.