Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi
oci.DataSafe.getSensitiveDataModelReferentialRelations
Explore with Pulumi AI
This data source provides the list of Sensitive Data Model Referential Relations in Oracle Cloud Infrastructure Data Safe service.
Gets a list of referential relations present in the specified sensitive data model based on the specified query parameters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSensitiveDataModelReferentialRelations = oci.DataSafe.getSensitiveDataModelReferentialRelations({
sensitiveDataModelId: testSensitiveDataModel.id,
columnNames: sensitiveDataModelReferentialRelationColumnName,
isSensitive: sensitiveDataModelReferentialRelationIsSensitive,
objects: sensitiveDataModelReferentialRelationObject,
relationTypes: sensitiveDataModelReferentialRelationRelationType,
schemaNames: sensitiveDataModelReferentialRelationSchemaName,
});
import pulumi
import pulumi_oci as oci
test_sensitive_data_model_referential_relations = oci.DataSafe.get_sensitive_data_model_referential_relations(sensitive_data_model_id=test_sensitive_data_model["id"],
column_names=sensitive_data_model_referential_relation_column_name,
is_sensitive=sensitive_data_model_referential_relation_is_sensitive,
objects=sensitive_data_model_referential_relation_object,
relation_types=sensitive_data_model_referential_relation_relation_type,
schema_names=sensitive_data_model_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.GetSensitiveDataModelReferentialRelations(ctx, &datasafe.GetSensitiveDataModelReferentialRelationsArgs{
SensitiveDataModelId: testSensitiveDataModel.Id,
ColumnNames: sensitiveDataModelReferentialRelationColumnName,
IsSensitive: pulumi.BoolRef(sensitiveDataModelReferentialRelationIsSensitive),
Objects: sensitiveDataModelReferentialRelationObject,
RelationTypes: sensitiveDataModelReferentialRelationRelationType,
SchemaNames: sensitiveDataModelReferentialRelationSchemaName,
}, 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 testSensitiveDataModelReferentialRelations = Oci.DataSafe.GetSensitiveDataModelReferentialRelations.Invoke(new()
{
SensitiveDataModelId = testSensitiveDataModel.Id,
ColumnNames = sensitiveDataModelReferentialRelationColumnName,
IsSensitive = sensitiveDataModelReferentialRelationIsSensitive,
Objects = sensitiveDataModelReferentialRelationObject,
RelationTypes = sensitiveDataModelReferentialRelationRelationType,
SchemaNames = sensitiveDataModelReferentialRelationSchemaName,
});
});
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.GetSensitiveDataModelReferentialRelationsArgs;
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 testSensitiveDataModelReferentialRelations = DataSafeFunctions.getSensitiveDataModelReferentialRelations(GetSensitiveDataModelReferentialRelationsArgs.builder()
.sensitiveDataModelId(testSensitiveDataModel.id())
.columnNames(sensitiveDataModelReferentialRelationColumnName)
.isSensitive(sensitiveDataModelReferentialRelationIsSensitive)
.objects(sensitiveDataModelReferentialRelationObject)
.relationTypes(sensitiveDataModelReferentialRelationRelationType)
.schemaNames(sensitiveDataModelReferentialRelationSchemaName)
.build());
}
}
variables:
testSensitiveDataModelReferentialRelations:
fn::invoke:
function: oci:DataSafe:getSensitiveDataModelReferentialRelations
arguments:
sensitiveDataModelId: ${testSensitiveDataModel.id}
columnNames: ${sensitiveDataModelReferentialRelationColumnName}
isSensitive: ${sensitiveDataModelReferentialRelationIsSensitive}
objects: ${sensitiveDataModelReferentialRelationObject}
relationTypes: ${sensitiveDataModelReferentialRelationRelationType}
schemaNames: ${sensitiveDataModelReferentialRelationSchemaName}
Using getSensitiveDataModelReferentialRelations
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 getSensitiveDataModelReferentialRelations(args: GetSensitiveDataModelReferentialRelationsArgs, opts?: InvokeOptions): Promise<GetSensitiveDataModelReferentialRelationsResult>
function getSensitiveDataModelReferentialRelationsOutput(args: GetSensitiveDataModelReferentialRelationsOutputArgs, opts?: InvokeOptions): Output<GetSensitiveDataModelReferentialRelationsResult>
def get_sensitive_data_model_referential_relations(column_names: Optional[Sequence[str]] = None,
filters: Optional[Sequence[_datasafe.GetSensitiveDataModelReferentialRelationsFilter]] = None,
is_sensitive: Optional[bool] = None,
objects: Optional[Sequence[str]] = None,
relation_types: Optional[Sequence[str]] = None,
schema_names: Optional[Sequence[str]] = None,
sensitive_data_model_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSensitiveDataModelReferentialRelationsResult
def get_sensitive_data_model_referential_relations_output(column_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetSensitiveDataModelReferentialRelationsFilterArgs]]]] = None,
is_sensitive: Optional[pulumi.Input[bool]] = 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,
sensitive_data_model_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSensitiveDataModelReferentialRelationsResult]
func GetSensitiveDataModelReferentialRelations(ctx *Context, args *GetSensitiveDataModelReferentialRelationsArgs, opts ...InvokeOption) (*GetSensitiveDataModelReferentialRelationsResult, error)
func GetSensitiveDataModelReferentialRelationsOutput(ctx *Context, args *GetSensitiveDataModelReferentialRelationsOutputArgs, opts ...InvokeOption) GetSensitiveDataModelReferentialRelationsResultOutput
> Note: This function is named GetSensitiveDataModelReferentialRelations
in the Go SDK.
public static class GetSensitiveDataModelReferentialRelations
{
public static Task<GetSensitiveDataModelReferentialRelationsResult> InvokeAsync(GetSensitiveDataModelReferentialRelationsArgs args, InvokeOptions? opts = null)
public static Output<GetSensitiveDataModelReferentialRelationsResult> Invoke(GetSensitiveDataModelReferentialRelationsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSensitiveDataModelReferentialRelationsResult> getSensitiveDataModelReferentialRelations(GetSensitiveDataModelReferentialRelationsArgs args, InvokeOptions options)
public static Output<GetSensitiveDataModelReferentialRelationsResult> getSensitiveDataModelReferentialRelations(GetSensitiveDataModelReferentialRelationsArgs args, InvokeOptions options)
fn::invoke:
function: oci:DataSafe/getSensitiveDataModelReferentialRelations:getSensitiveDataModelReferentialRelations
arguments:
# arguments dictionary
The following arguments are supported:
- Sensitive
Data stringModel Id - The OCID of the sensitive data model.
- Column
Names List<string> - A filter to return only a specific column based on column name.
- Filters
List<Get
Sensitive Data Model Referential Relations Filter> - Is
Sensitive bool - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- Objects List<string>
- A filter to return only items related to a specific object name.
- Relation
Types List<string> - A filter to return sensitive columns based on their relationship with their parent columns. If set to NONE, it returns the sensitive 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.
- Sensitive
Data stringModel Id - The OCID of the sensitive data model.
- Column
Names []string - A filter to return only a specific column based on column name.
- Filters
[]Get
Sensitive Data Model Referential Relations Filter - Is
Sensitive bool - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- Objects []string
- A filter to return only items related to a specific object name.
- Relation
Types []string - A filter to return sensitive columns based on their relationship with their parent columns. If set to NONE, it returns the sensitive 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.
- sensitive
Data StringModel Id - The OCID of the sensitive data model.
- column
Names List<String> - A filter to return only a specific column based on column name.
- filters
List<Get
Sensitive Data Model Referential Relations Filter> - is
Sensitive Boolean - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- objects List<String>
- A filter to return only items related to a specific object name.
- relation
Types List<String> - A filter to return sensitive columns based on their relationship with their parent columns. If set to NONE, it returns the sensitive 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.
- sensitive
Data stringModel Id - The OCID of the sensitive data model.
- column
Names string[] - A filter to return only a specific column based on column name.
- filters
Get
Sensitive Data Model Referential Relations Filter[] - is
Sensitive boolean - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- objects string[]
- A filter to return only items related to a specific object name.
- relation
Types string[] - A filter to return sensitive columns based on their relationship with their parent columns. If set to NONE, it returns the sensitive 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.
- sensitive_
data_ strmodel_ id - The OCID of the sensitive data model.
- column_
names Sequence[str] - A filter to return only a specific column based on column name.
- filters
Sequence[datasafe.
Get Sensitive Data Model Referential Relations Filter] - is_
sensitive bool - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- objects Sequence[str]
- A filter to return only items related to a specific object name.
- relation_
types Sequence[str] - A filter to return sensitive columns based on their relationship with their parent columns. If set to NONE, it returns the sensitive 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.
- sensitive
Data StringModel Id - The OCID of the sensitive data model.
- column
Names List<String> - A filter to return only a specific column based on column name.
- filters List<Property Map>
- is
Sensitive Boolean - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- objects List<String>
- A filter to return only items related to a specific object name.
- relation
Types List<String> - A filter to return sensitive columns based on their relationship with their parent columns. If set to NONE, it returns the sensitive 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.
getSensitiveDataModelReferentialRelations Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Referential
Relation List<GetCollections Sensitive Data Model Referential Relations Referential Relation Collection> - The list of referential_relation_collection.
- Sensitive
Data stringModel Id - The OCID of the sensitive data model that contains the sensitive column.
- Column
Names List<string> - Filters
List<Get
Sensitive Data Model Referential Relations Filter> - Is
Sensitive bool - Determines if the columns present in the referential relation is present in the sensitive data model
- Objects List<string>
- The database object that contains the columns.
- Relation
Types List<string> - The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a 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 schema name.
- Id string
- The provider-assigned unique ID for this managed resource.
- Referential
Relation []GetCollections Sensitive Data Model Referential Relations Referential Relation Collection - The list of referential_relation_collection.
- Sensitive
Data stringModel Id - The OCID of the sensitive data model that contains the sensitive column.
- Column
Names []string - Filters
[]Get
Sensitive Data Model Referential Relations Filter - Is
Sensitive bool - Determines if the columns present in the referential relation is present in the sensitive data model
- Objects []string
- The database object that contains the columns.
- Relation
Types []string - The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a 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 schema name.
- id String
- The provider-assigned unique ID for this managed resource.
- referential
Relation List<GetCollections Sensitive Data Model Referential Relations Referential Relation Collection> - The list of referential_relation_collection.
- sensitive
Data StringModel Id - The OCID of the sensitive data model that contains the sensitive column.
- column
Names List<String> - filters
List<Get
Sensitive Data Model Referential Relations Filter> - is
Sensitive Boolean - Determines if the columns present in the referential relation is present in the sensitive data model
- objects List<String>
- The database object that contains the columns.
- relation
Types List<String> - The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a 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 schema name.
- id string
- The provider-assigned unique ID for this managed resource.
- referential
Relation GetCollections Sensitive Data Model Referential Relations Referential Relation Collection[] - The list of referential_relation_collection.
- sensitive
Data stringModel Id - The OCID of the sensitive data model that contains the sensitive column.
- column
Names string[] - filters
Get
Sensitive Data Model Referential Relations Filter[] - is
Sensitive boolean - Determines if the columns present in the referential relation is present in the sensitive data model
- objects string[]
- The database object that contains the columns.
- relation
Types string[] - The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a 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 schema name.
- id str
- The provider-assigned unique ID for this managed resource.
- referential_
relation_ Sequence[datasafe.collections Get Sensitive Data Model Referential Relations Referential Relation Collection] - The list of referential_relation_collection.
- sensitive_
data_ strmodel_ id - The OCID of the sensitive data model that contains the sensitive column.
- column_
names Sequence[str] - filters
Sequence[datasafe.
Get Sensitive Data Model Referential Relations Filter] - is_
sensitive bool - Determines if the columns present in the referential relation is present in the sensitive data model
- objects Sequence[str]
- The database object that contains the columns.
- relation_
types Sequence[str] - The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a 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 schema name.
- id String
- The provider-assigned unique ID for this managed resource.
- referential
Relation List<Property Map>Collections - The list of referential_relation_collection.
- sensitive
Data StringModel Id - The OCID of the sensitive data model that contains the sensitive column.
- column
Names List<String> - filters List<Property Map>
- is
Sensitive Boolean - Determines if the columns present in the referential relation is present in the sensitive data model
- objects List<String>
- The database object that contains the columns.
- relation
Types List<String> - The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a 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 schema name.
Supporting Types
GetSensitiveDataModelReferentialRelationsFilter
GetSensitiveDataModelReferentialRelationsReferentialRelationCollection
GetSensitiveDataModelReferentialRelationsReferentialRelationCollectionItem
- Child
Get
Sensitive Data Model Referential Relations Referential Relation Collection Item Child - columnsInfo object has details of column group with schema details.
- Is
Sensitive bool - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- Key string
- The unique key that identifies the referential relation. It's numeric and unique within a sensitive data model.
- Parent
Get
Sensitive Data Model Referential Relations Referential Relation Collection Item Parent - columnsInfo object has details of column group with schema details.
- Relation
Type string - A filter to return sensitive columns based on their relationship with their parent columns. If set to NONE, it returns the sensitive 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.
- Sensitive
Data stringModel Id - The OCID of the sensitive data model.
- State string
- The current state of the referential relation.
- Child
Get
Sensitive Data Model Referential Relations Referential Relation Collection Item Child - columnsInfo object has details of column group with schema details.
- Is
Sensitive bool - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- Key string
- The unique key that identifies the referential relation. It's numeric and unique within a sensitive data model.
- Parent
Get
Sensitive Data Model Referential Relations Referential Relation Collection Item Parent - columnsInfo object has details of column group with schema details.
- Relation
Type string - A filter to return sensitive columns based on their relationship with their parent columns. If set to NONE, it returns the sensitive 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.
- Sensitive
Data stringModel Id - The OCID of the sensitive data model.
- State string
- The current state of the referential relation.
- child
Get
Sensitive Data Model Referential Relations Referential Relation Collection Item Child - columnsInfo object has details of column group with schema details.
- is
Sensitive Boolean - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- key String
- The unique key that identifies the referential relation. It's numeric and unique within a sensitive data model.
- parent
Get
Sensitive Data Model Referential Relations Referential Relation Collection Item Parent - columnsInfo object has details of column group with schema details.
- relation
Type String - A filter to return sensitive columns based on their relationship with their parent columns. If set to NONE, it returns the sensitive 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.
- sensitive
Data StringModel Id - The OCID of the sensitive data model.
- state String
- The current state of the referential relation.
- child
Get
Sensitive Data Model Referential Relations Referential Relation Collection Item Child - columnsInfo object has details of column group with schema details.
- is
Sensitive boolean - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- key string
- The unique key that identifies the referential relation. It's numeric and unique within a sensitive data model.
- parent
Get
Sensitive Data Model Referential Relations Referential Relation Collection Item Parent - columnsInfo object has details of column group with schema details.
- relation
Type string - A filter to return sensitive columns based on their relationship with their parent columns. If set to NONE, it returns the sensitive 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.
- sensitive
Data stringModel Id - The OCID of the sensitive data model.
- state string
- The current state of the referential relation.
- child
datasafe.
Get Sensitive Data Model Referential Relations Referential Relation Collection Item Child - columnsInfo object has details of column group with schema details.
- is_
sensitive bool - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- key str
- The unique key that identifies the referential relation. It's numeric and unique within a sensitive data model.
- parent
datasafe.
Get Sensitive Data Model Referential Relations Referential Relation Collection Item Parent - columnsInfo object has details of column group with schema details.
- relation_
type str - A filter to return sensitive columns based on their relationship with their parent columns. If set to NONE, it returns the sensitive 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.
- sensitive_
data_ strmodel_ id - The OCID of the sensitive data model.
- state str
- The current state of the referential relation.
- child Property Map
- columnsInfo object has details of column group with schema details.
- is
Sensitive Boolean - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- key String
- The unique key that identifies the referential relation. It's numeric and unique within a sensitive data model.
- parent Property Map
- columnsInfo object has details of column group with schema details.
- relation
Type String - A filter to return sensitive columns based on their relationship with their parent columns. If set to NONE, it returns the sensitive 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.
- sensitive
Data StringModel Id - The OCID of the sensitive data model.
- state String
- The current state of the referential relation.
GetSensitiveDataModelReferentialRelationsReferentialRelationCollectionItemChild
- App
Name string - The application name.
- Column
Groups List<string> - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- 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 sensitive column.
- Schema
Name string - A filter to return only items related to specific schema name.
- Sensitive
Type List<string>Ids - Sensitive type ocids of each column groups. Order needs to be maintained with the parent column group. For the DB defined referential relations identified during SDM creation, we cannot add sensitive types. Instead use the sensitiveColumn POST API to mark the columns sensitive.
- App
Name string - The application name.
- Column
Groups []string - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- 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 sensitive column.
- Schema
Name string - A filter to return only items related to specific schema name.
- Sensitive
Type []stringIds - Sensitive type ocids of each column groups. Order needs to be maintained with the parent column group. For the DB defined referential relations identified during SDM creation, we cannot add sensitive types. Instead use the sensitiveColumn POST API to mark the columns sensitive.
- app
Name String - The application name.
- column
Groups List<String> - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- 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 sensitive column.
- schema
Name String - A filter to return only items related to specific schema name.
- sensitive
Type List<String>Ids - Sensitive type ocids of each column groups. Order needs to be maintained with the parent column group. For the DB defined referential relations identified during SDM creation, we cannot add sensitive types. Instead use the sensitiveColumn POST API to mark the columns sensitive.
- app
Name string - The application name.
- column
Groups string[] - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- 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 sensitive column.
- schema
Name string - A filter to return only items related to specific schema name.
- sensitive
Type string[]Ids - Sensitive type ocids of each column groups. Order needs to be maintained with the parent column group. For the DB defined referential relations identified during SDM creation, we cannot add sensitive types. Instead use the sensitiveColumn POST API to mark the columns sensitive.
- app_
name str - The application name.
- column_
groups Sequence[str] - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- 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 sensitive column.
- schema_
name str - A filter to return only items related to specific schema name.
- sensitive_
type_ Sequence[str]ids - Sensitive type ocids of each column groups. Order needs to be maintained with the parent column group. For the DB defined referential relations identified during SDM creation, we cannot add sensitive types. Instead use the sensitiveColumn POST API to mark the columns sensitive.
- app
Name String - The application name.
- column
Groups List<String> - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- 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 sensitive column.
- schema
Name String - A filter to return only items related to specific schema name.
- sensitive
Type List<String>Ids - Sensitive type ocids of each column groups. Order needs to be maintained with the parent column group. For the DB defined referential relations identified during SDM creation, we cannot add sensitive types. Instead use the sensitiveColumn POST API to mark the columns sensitive.
GetSensitiveDataModelReferentialRelationsReferentialRelationCollectionItemParent
- App
Name string - The application name.
- Column
Groups List<string> - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- 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 sensitive column.
- Schema
Name string - A filter to return only items related to specific schema name.
- Sensitive
Type List<string>Ids - Sensitive type ocids of each column groups. Order needs to be maintained with the parent column group. For the DB defined referential relations identified during SDM creation, we cannot add sensitive types. Instead use the sensitiveColumn POST API to mark the columns sensitive.
- App
Name string - The application name.
- Column
Groups []string - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- 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 sensitive column.
- Schema
Name string - A filter to return only items related to specific schema name.
- Sensitive
Type []stringIds - Sensitive type ocids of each column groups. Order needs to be maintained with the parent column group. For the DB defined referential relations identified during SDM creation, we cannot add sensitive types. Instead use the sensitiveColumn POST API to mark the columns sensitive.
- app
Name String - The application name.
- column
Groups List<String> - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- 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 sensitive column.
- schema
Name String - A filter to return only items related to specific schema name.
- sensitive
Type List<String>Ids - Sensitive type ocids of each column groups. Order needs to be maintained with the parent column group. For the DB defined referential relations identified during SDM creation, we cannot add sensitive types. Instead use the sensitiveColumn POST API to mark the columns sensitive.
- app
Name string - The application name.
- column
Groups string[] - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- 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 sensitive column.
- schema
Name string - A filter to return only items related to specific schema name.
- sensitive
Type string[]Ids - Sensitive type ocids of each column groups. Order needs to be maintained with the parent column group. For the DB defined referential relations identified during SDM creation, we cannot add sensitive types. Instead use the sensitiveColumn POST API to mark the columns sensitive.
- app_
name str - The application name.
- column_
groups Sequence[str] - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- 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 sensitive column.
- schema_
name str - A filter to return only items related to specific schema name.
- sensitive_
type_ Sequence[str]ids - Sensitive type ocids of each column groups. Order needs to be maintained with the parent column group. For the DB defined referential relations identified during SDM creation, we cannot add sensitive types. Instead use the sensitiveColumn POST API to mark the columns sensitive.
- app
Name String - The application name.
- column
Groups List<String> - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- 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 sensitive column.
- schema
Name String - A filter to return only items related to specific schema name.
- sensitive
Type List<String>Ids - Sensitive type ocids of each column groups. Order needs to be maintained with the parent column group. For the DB defined referential relations identified during SDM creation, we cannot add sensitive types. Instead use the sensitiveColumn POST API to mark the columns sensitive.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.