Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 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[_datasafe.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[_datasafe.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 dictionary
The following arguments are supported:
- Masking
Policy stringId - The OCID of the masking policy.
- Column
Names List<string> - A filter to return only a specific column based on column name.
- Filters
List<Get
Masking Policy Referential Relations Filter> - Objects List<string>
- A filter to return only items related to a specific object name.
- Relation
Types 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.
- Schema
Names List<string> - A filter to return only items related to specific schema name.
- Masking
Policy stringId - The OCID of the masking policy.
- Column
Names []string - A filter to return only a specific column based on column name.
- Filters
[]Get
Masking Policy Referential Relations Filter - Objects []string
- A filter to return only items related to a specific object name.
- Relation
Types []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.
- Schema
Names []string - A filter to return only items related to specific schema name.
- masking
Policy StringId - The OCID of the masking policy.
- column
Names List<String> - A filter to return only a specific column based on column name.
- filters
List<Get
Masking Policy Referential Relations Filter> - objects List<String>
- A filter to return only items related to a specific object name.
- relation
Types 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.
- schema
Names List<String> - A filter to return only items related to specific schema name.
- masking
Policy stringId - The OCID of the masking policy.
- column
Names string[] - A filter to return only a specific column based on column name.
- filters
Get
Masking Policy Referential Relations Filter[] - objects string[]
- A filter to return only items related to a specific object name.
- relation
Types 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.
- schema
Names 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[datasafe.
Get Masking 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.
- masking
Policy StringId - The OCID of the masking policy.
- column
Names 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.
- relation
Types 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.
- schema
Names 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.
- Masking
Policy stringId - The OCID of the masking policy that contains the column.
- Masking
Policy List<GetReferential Relation Collections Masking Policy Referential Relations Masking Policy Referential Relation Collection> - The list of masking_policy_referential_relation_collection.
- Column
Names List<string> - Filters
List<Get
Masking Policy Referential Relations Filter> - Objects List<string>
- The name of the object (table or editioning view) that contains the database column(s).
- Relation
Types 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.
- Schema
Names List<string> - The name of the schema that contains the database column(s).
- Id string
- The provider-assigned unique ID for this managed resource.
- Masking
Policy stringId - The OCID of the masking policy that contains the column.
- Masking
Policy []GetReferential Relation Collections Masking Policy Referential Relations Masking Policy Referential Relation Collection - The list of masking_policy_referential_relation_collection.
- Column
Names []string - Filters
[]Get
Masking Policy Referential Relations Filter - Objects []string
- The name of the object (table or editioning view) that contains the database column(s).
- Relation
Types []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.
- Schema
Names []string - The name of the schema that contains the database column(s).
- id String
- The provider-assigned unique ID for this managed resource.
- masking
Policy StringId - The OCID of the masking policy that contains the column.
- masking
Policy List<GetReferential Relation Collections Masking Policy Referential Relations Masking Policy Referential Relation Collection> - The list of masking_policy_referential_relation_collection.
- column
Names List<String> - filters
List<Get
Masking Policy Referential Relations Filter> - objects List<String>
- The name of the object (table or editioning view) that contains the database column(s).
- relation
Types 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.
- schema
Names List<String> - The name of the schema that contains the database column(s).
- id string
- The provider-assigned unique ID for this managed resource.
- masking
Policy stringId - The OCID of the masking policy that contains the column.
- masking
Policy GetReferential Relation Collections Masking Policy Referential Relations Masking Policy Referential Relation Collection[] - The list of masking_policy_referential_relation_collection.
- column
Names string[] - filters
Get
Masking Policy Referential Relations Filter[] - objects string[]
- The name of the object (table or editioning view) that contains the database column(s).
- relation
Types 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.
- schema
Names 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[datasafe.referential_ relation_ collections Get Masking Policy Referential Relations Masking Policy Referential Relation Collection] - The list of masking_policy_referential_relation_collection.
- column_
names Sequence[str] - filters
Sequence[datasafe.
Get Masking 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.
- masking
Policy StringId - The OCID of the masking policy that contains the column.
- masking
Policy List<Property Map>Referential Relation Collections - The list of masking_policy_referential_relation_collection.
- column
Names List<String> - filters List<Property Map>
- objects List<String>
- The name of the object (table or editioning view) that contains the database column(s).
- relation
Types 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.
- schema
Names List<String> - The name of the schema that contains the database column(s).
Supporting Types
GetMaskingPolicyReferentialRelationsFilter
GetMaskingPolicyReferentialRelationsMaskingPolicyReferentialRelationCollection
- Items
List<Get
Masking Policy Referential Relations Masking Policy Referential Relation Collection Item> - An array of referential relation summary objects.
- Items
[]Get
Masking Policy Referential Relations Masking Policy Referential Relation Collection Item - An array of referential relation summary objects.
- items
List<Get
Masking Policy Referential Relations Masking Policy Referential Relation Collection Item> - An array of referential relation summary objects.
- items
Get
Masking Policy Referential Relations Masking Policy Referential Relation Collection Item[] - An array of referential relation summary objects.
- items
Sequence[datasafe.
Get Masking 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<Get
Masking Policy Referential Relations Masking Policy Referential Relation Collection Item Child> - maskingPolicyColumnsInfo object has details of column group with schema details.
- Masking
Formats List<string> - The masking format associated with the parent column.
- Masking
Policy stringId - The OCID of the masking policy.
- Parents
List<Get
Masking Policy Referential Relations Masking Policy Referential Relation Collection Item Parent> - maskingPolicyColumnsInfo object has details of column group with schema details.
- Relation
Type 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
[]Get
Masking Policy Referential Relations Masking Policy Referential Relation Collection Item Child - maskingPolicyColumnsInfo object has details of column group with schema details.
- Masking
Formats []string - The masking format associated with the parent column.
- Masking
Policy stringId - The OCID of the masking policy.
- Parents
[]Get
Masking Policy Referential Relations Masking Policy Referential Relation Collection Item Parent - maskingPolicyColumnsInfo object has details of column group with schema details.
- Relation
Type 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<Get
Masking Policy Referential Relations Masking Policy Referential Relation Collection Item Child> - maskingPolicyColumnsInfo object has details of column group with schema details.
- masking
Formats List<String> - The masking format associated with the parent column.
- masking
Policy StringId - The OCID of the masking policy.
- parents
List<Get
Masking Policy Referential Relations Masking Policy Referential Relation Collection Item Parent> - maskingPolicyColumnsInfo object has details of column group with schema details.
- relation
Type 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
Get
Masking Policy Referential Relations Masking Policy Referential Relation Collection Item Child[] - maskingPolicyColumnsInfo object has details of column group with schema details.
- masking
Formats string[] - The masking format associated with the parent column.
- masking
Policy stringId - The OCID of the masking policy.
- parents
Get
Masking Policy Referential Relations Masking Policy Referential Relation Collection Item Parent[] - maskingPolicyColumnsInfo object has details of column group with schema details.
- relation
Type 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[datasafe.
Get Masking 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[datasafe.
Get Masking 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.
- masking
Formats List<String> - The masking format associated with the parent column.
- masking
Policy StringId - The OCID of the masking policy.
- parents List<Property Map>
- maskingPolicyColumnsInfo object has details of column group with schema details.
- relation
Type 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.
- Object
Type string - The type of the database object that contains the masking policy.
- Referential
Column List<string>Groups - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- Schema
Name 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.
- Object
Type string - The type of the database object that contains the masking policy.
- Referential
Column []stringGroups - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- Schema
Name 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.
- object
Type String - The type of the database object that contains the masking policy.
- referential
Column List<String>Groups - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- schema
Name 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.
- object
Type string - The type of the database object that contains the masking policy.
- referential
Column string[]Groups - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- schema
Name 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.
- object
Type String - The type of the database object that contains the masking policy.
- referential
Column List<String>Groups - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- schema
Name 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.
- Object
Type string - The type of the database object that contains the masking policy.
- Referential
Column List<string>Groups - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- Schema
Name 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.
- Object
Type string - The type of the database object that contains the masking policy.
- Referential
Column []stringGroups - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- Schema
Name 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.
- object
Type String - The type of the database object that contains the masking policy.
- referential
Column List<String>Groups - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- schema
Name 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.
- object
Type string - The type of the database object that contains the masking policy.
- referential
Column string[]Groups - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- schema
Name 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.
- object
Type String - The type of the database object that contains the masking policy.
- referential
Column List<String>Groups - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- schema
Name 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
oci
Terraform Provider.