Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 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 Model Id This property is required. string - The OCID of the sensitive data model.
- Column
Names List<string> - A filter to return only a specific column based on column name.
- Filters
Changes to this property will trigger replacement.
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 Model Id This property is required. string - The OCID of the sensitive data model.
- Column
Names []string - A filter to return only a specific column based on column name.
- Filters
Changes to this property will trigger replacement.
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 Model Id This property is required. String - The OCID of the sensitive data model.
- column
Names List<String> - A filter to return only a specific column based on column name.
- filters
Changes to this property will trigger replacement.
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 Model Id This property is required. string - The OCID of the sensitive data model.
- column
Names string[] - A filter to return only a specific column based on column name.
- filters
Changes to this property will trigger replacement.
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_ model_ id This property is required. str - The OCID of the sensitive data model.
- column_
names Sequence[str] - A filter to return only a specific column based on column name.
- filters
Changes to this property will trigger replacement.
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 Model Id This property is required. String - The OCID of the sensitive data model.
- column
Names List<String> - A filter to return only a specific column based on column name.
- filters
Changes to this property will trigger replacement.
- 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
- Items
This property is required. List<GetSensitive Data Model Referential Relations Referential Relation Collection Item>
- Items
This property is required. []GetSensitive Data Model Referential Relations Referential Relation Collection Item
- items
This property is required. List<GetSensitive Data Model Referential Relations Referential Relation Collection Item>
- items
This property is required. GetSensitive Data Model Referential Relations Referential Relation Collection Item[]
- items
This property is required. Sequence[datasafe.Get Sensitive Data Model Referential Relations Referential Relation Collection Item]
- items
This property is required. List<Property Map>
GetSensitiveDataModelReferentialRelationsReferentialRelationCollectionItem
- Child
This property is required. GetSensitive Data Model Referential Relations Referential Relation Collection Item Child - columnsInfo object has details of column group with schema details.
- Is
Sensitive This property is required. bool - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- Key
This property is required. string - The unique key that identifies the referential relation. It's numeric and unique within a sensitive data model.
- Parent
This property is required. GetSensitive Data Model Referential Relations Referential Relation Collection Item Parent - columnsInfo object has details of column group with schema details.
- Relation
Type This property is required. 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 Model Id This property is required. string - The OCID of the sensitive data model.
- State
This property is required. string - The current state of the referential relation.
- Child
This property is required. GetSensitive Data Model Referential Relations Referential Relation Collection Item Child - columnsInfo object has details of column group with schema details.
- Is
Sensitive This property is required. bool - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- Key
This property is required. string - The unique key that identifies the referential relation. It's numeric and unique within a sensitive data model.
- Parent
This property is required. GetSensitive Data Model Referential Relations Referential Relation Collection Item Parent - columnsInfo object has details of column group with schema details.
- Relation
Type This property is required. 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 Model Id This property is required. string - The OCID of the sensitive data model.
- State
This property is required. string - The current state of the referential relation.
- child
This property is required. GetSensitive Data Model Referential Relations Referential Relation Collection Item Child - columnsInfo object has details of column group with schema details.
- is
Sensitive This property is required. Boolean - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- key
This property is required. String - The unique key that identifies the referential relation. It's numeric and unique within a sensitive data model.
- parent
This property is required. GetSensitive Data Model Referential Relations Referential Relation Collection Item Parent - columnsInfo object has details of column group with schema details.
- relation
Type This property is required. 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 Model Id This property is required. String - The OCID of the sensitive data model.
- state
This property is required. String - The current state of the referential relation.
- child
This property is required. GetSensitive Data Model Referential Relations Referential Relation Collection Item Child - columnsInfo object has details of column group with schema details.
- is
Sensitive This property is required. boolean - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- key
This property is required. string - The unique key that identifies the referential relation. It's numeric and unique within a sensitive data model.
- parent
This property is required. GetSensitive Data Model Referential Relations Referential Relation Collection Item Parent - columnsInfo object has details of column group with schema details.
- relation
Type This property is required. 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 Model Id This property is required. string - The OCID of the sensitive data model.
- state
This property is required. string - The current state of the referential relation.
- child
This property is required. datasafe.Get Sensitive Data Model Referential Relations Referential Relation Collection Item Child - columnsInfo object has details of column group with schema details.
- is_
sensitive This property is required. bool - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- key
This property is required. str - The unique key that identifies the referential relation. It's numeric and unique within a sensitive data model.
- parent
This property is required. datasafe.Get Sensitive Data Model Referential Relations Referential Relation Collection Item Parent - columnsInfo object has details of column group with schema details.
- relation_
type This property is required. 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_ model_ id This property is required. str - The OCID of the sensitive data model.
- state
This property is required. str - The current state of the referential relation.
- child
This property is required. Property Map - columnsInfo object has details of column group with schema details.
- is
Sensitive This property is required. Boolean - Returns referential relations containing sensitive columns when true. Returns referential relations containing non sensitive columns when false.
- key
This property is required. String - The unique key that identifies the referential relation. It's numeric and unique within a sensitive data model.
- parent
This property is required. Property Map - columnsInfo object has details of column group with schema details.
- relation
Type This property is required. 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 Model Id This property is required. String - The OCID of the sensitive data model.
- state
This property is required. String - The current state of the referential relation.
GetSensitiveDataModelReferentialRelationsReferentialRelationCollectionItemChild
- App
Name This property is required. string - The application name.
- Column
Groups This property is required. List<string> - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- Object
This property is required. string - A filter to return only items related to a specific object name.
- Object
Type This property is required. string - The type of the database object that contains the sensitive column.
- Schema
Name This property is required. string - A filter to return only items related to specific schema name.
- Sensitive
Type Ids This property is required. List<string> - 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 This property is required. string - The application name.
- Column
Groups This property is required. []string - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- Object
This property is required. string - A filter to return only items related to a specific object name.
- Object
Type This property is required. string - The type of the database object that contains the sensitive column.
- Schema
Name This property is required. string - A filter to return only items related to specific schema name.
- Sensitive
Type Ids This property is required. []string - 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 This property is required. String - The application name.
- column
Groups This property is required. List<String> - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- object
This property is required. String - A filter to return only items related to a specific object name.
- object
Type This property is required. String - The type of the database object that contains the sensitive column.
- schema
Name This property is required. String - A filter to return only items related to specific schema name.
- sensitive
Type Ids This property is required. List<String> - 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 This property is required. string - The application name.
- column
Groups This property is required. string[] - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- object
This property is required. string - A filter to return only items related to a specific object name.
- object
Type This property is required. string - The type of the database object that contains the sensitive column.
- schema
Name This property is required. string - A filter to return only items related to specific schema name.
- sensitive
Type Ids This property is required. string[] - 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 This property is required. str - The application name.
- column_
groups This property is required. Sequence[str] - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- object
This property is required. str - A filter to return only items related to a specific object name.
- object_
type This property is required. str - The type of the database object that contains the sensitive column.
- schema_
name This property is required. str - A filter to return only items related to specific schema name.
- sensitive_
type_ ids This property is required. Sequence[str] - 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 This property is required. String - The application name.
- column
Groups This property is required. List<String> - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- object
This property is required. String - A filter to return only items related to a specific object name.
- object
Type This property is required. String - The type of the database object that contains the sensitive column.
- schema
Name This property is required. String - A filter to return only items related to specific schema name.
- sensitive
Type Ids This property is required. List<String> - 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 This property is required. string - The application name.
- Column
Groups This property is required. List<string> - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- Object
This property is required. string - A filter to return only items related to a specific object name.
- Object
Type This property is required. string - The type of the database object that contains the sensitive column.
- Schema
Name This property is required. string - A filter to return only items related to specific schema name.
- Sensitive
Type Ids This property is required. List<string> - 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 This property is required. string - The application name.
- Column
Groups This property is required. []string - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- Object
This property is required. string - A filter to return only items related to a specific object name.
- Object
Type This property is required. string - The type of the database object that contains the sensitive column.
- Schema
Name This property is required. string - A filter to return only items related to specific schema name.
- Sensitive
Type Ids This property is required. []string - 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 This property is required. String - The application name.
- column
Groups This property is required. List<String> - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- object
This property is required. String - A filter to return only items related to a specific object name.
- object
Type This property is required. String - The type of the database object that contains the sensitive column.
- schema
Name This property is required. String - A filter to return only items related to specific schema name.
- sensitive
Type Ids This property is required. List<String> - 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 This property is required. string - The application name.
- column
Groups This property is required. string[] - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- object
This property is required. string - A filter to return only items related to a specific object name.
- object
Type This property is required. string - The type of the database object that contains the sensitive column.
- schema
Name This property is required. string - A filter to return only items related to specific schema name.
- sensitive
Type Ids This property is required. string[] - 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 This property is required. str - The application name.
- column_
groups This property is required. Sequence[str] - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- object
This property is required. str - A filter to return only items related to a specific object name.
- object_
type This property is required. str - The type of the database object that contains the sensitive column.
- schema_
name This property is required. str - A filter to return only items related to specific schema name.
- sensitive_
type_ ids This property is required. Sequence[str] - 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 This property is required. String - The application name.
- column
Groups This property is required. List<String> - Group of columns in referential relation. Order needs to be maintained in the elements of the parent/child array listing.
- object
This property is required. String - A filter to return only items related to a specific object name.
- object
Type This property is required. String - The type of the database object that contains the sensitive column.
- schema
Name This property is required. String - A filter to return only items related to specific schema name.
- sensitive
Type Ids This property is required. List<String> - 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.