oci.DataSafe.getSensitiveColumnAnalytics
Explore with Pulumi AI
This data source provides the list of Sensitive Column Analytics in Oracle Cloud Infrastructure Data Safe service.
Gets consolidated sensitive columns analytics data based on the specified query parameters.
When you perform the ListSensitiveColumnAnalytics operation, if the parameter compartmentIdInSubtree is set to “true,” and if the parameter accessLevel is set to ACCESSIBLE, then the operation returns compartments in which the requestor has INSPECT permissions on at least one resource, directly or indirectly (in subcompartments). If the operation is performed at the root compartment and the requestor does not have access to at least one subcompartment of the compartment specified by compartmentId, then “Not Authorized” is returned.
To use ListSensitiveColumnAnalytics to get a full list of all compartments and subcompartments in the tenancy from the root compartment, set the parameter compartmentIdInSubtree to true and accessLevel to ACCESSIBLE.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSensitiveColumnAnalytics = oci.DataSafe.getSensitiveColumnAnalytics({
compartmentId: compartmentId,
accessLevel: sensitiveColumnAnalyticAccessLevel,
columnNames: sensitiveColumnAnalyticColumnName,
compartmentIdInSubtree: sensitiveColumnAnalyticCompartmentIdInSubtree,
groupBies: sensitiveColumnAnalyticGroupBy,
objects: sensitiveColumnAnalyticObject,
schemaNames: sensitiveColumnAnalyticSchemaName,
sensitiveDataModelId: testSensitiveDataModel.id,
sensitiveTypeGroupId: testSensitiveTypeGroup.id,
sensitiveTypeIds: testSensitiveType.id,
targetId: testTarget.id,
});
import pulumi
import pulumi_oci as oci
test_sensitive_column_analytics = oci.DataSafe.get_sensitive_column_analytics(compartment_id=compartment_id,
access_level=sensitive_column_analytic_access_level,
column_names=sensitive_column_analytic_column_name,
compartment_id_in_subtree=sensitive_column_analytic_compartment_id_in_subtree,
group_bies=sensitive_column_analytic_group_by,
objects=sensitive_column_analytic_object,
schema_names=sensitive_column_analytic_schema_name,
sensitive_data_model_id=test_sensitive_data_model["id"],
sensitive_type_group_id=test_sensitive_type_group["id"],
sensitive_type_ids=test_sensitive_type["id"],
target_id=test_target["id"])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datasafe"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datasafe.GetSensitiveColumnAnalytics(ctx, &datasafe.GetSensitiveColumnAnalyticsArgs{
CompartmentId: compartmentId,
AccessLevel: pulumi.StringRef(sensitiveColumnAnalyticAccessLevel),
ColumnNames: sensitiveColumnAnalyticColumnName,
CompartmentIdInSubtree: pulumi.BoolRef(sensitiveColumnAnalyticCompartmentIdInSubtree),
GroupBies: sensitiveColumnAnalyticGroupBy,
Objects: sensitiveColumnAnalyticObject,
SchemaNames: sensitiveColumnAnalyticSchemaName,
SensitiveDataModelId: pulumi.StringRef(testSensitiveDataModel.Id),
SensitiveTypeGroupId: pulumi.StringRef(testSensitiveTypeGroup.Id),
SensitiveTypeIds: testSensitiveType.Id,
TargetId: pulumi.StringRef(testTarget.Id),
}, 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 testSensitiveColumnAnalytics = Oci.DataSafe.GetSensitiveColumnAnalytics.Invoke(new()
{
CompartmentId = compartmentId,
AccessLevel = sensitiveColumnAnalyticAccessLevel,
ColumnNames = sensitiveColumnAnalyticColumnName,
CompartmentIdInSubtree = sensitiveColumnAnalyticCompartmentIdInSubtree,
GroupBies = sensitiveColumnAnalyticGroupBy,
Objects = sensitiveColumnAnalyticObject,
SchemaNames = sensitiveColumnAnalyticSchemaName,
SensitiveDataModelId = testSensitiveDataModel.Id,
SensitiveTypeGroupId = testSensitiveTypeGroup.Id,
SensitiveTypeIds = testSensitiveType.Id,
TargetId = testTarget.Id,
});
});
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.GetSensitiveColumnAnalyticsArgs;
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 testSensitiveColumnAnalytics = DataSafeFunctions.getSensitiveColumnAnalytics(GetSensitiveColumnAnalyticsArgs.builder()
.compartmentId(compartmentId)
.accessLevel(sensitiveColumnAnalyticAccessLevel)
.columnNames(sensitiveColumnAnalyticColumnName)
.compartmentIdInSubtree(sensitiveColumnAnalyticCompartmentIdInSubtree)
.groupBies(sensitiveColumnAnalyticGroupBy)
.objects(sensitiveColumnAnalyticObject)
.schemaNames(sensitiveColumnAnalyticSchemaName)
.sensitiveDataModelId(testSensitiveDataModel.id())
.sensitiveTypeGroupId(testSensitiveTypeGroup.id())
.sensitiveTypeIds(testSensitiveType.id())
.targetId(testTarget.id())
.build());
}
}
variables:
testSensitiveColumnAnalytics:
fn::invoke:
function: oci:DataSafe:getSensitiveColumnAnalytics
arguments:
compartmentId: ${compartmentId}
accessLevel: ${sensitiveColumnAnalyticAccessLevel}
columnNames: ${sensitiveColumnAnalyticColumnName}
compartmentIdInSubtree: ${sensitiveColumnAnalyticCompartmentIdInSubtree}
groupBies: ${sensitiveColumnAnalyticGroupBy}
objects: ${sensitiveColumnAnalyticObject}
schemaNames: ${sensitiveColumnAnalyticSchemaName}
sensitiveDataModelId: ${testSensitiveDataModel.id}
sensitiveTypeGroupId: ${testSensitiveTypeGroup.id}
sensitiveTypeIds: ${testSensitiveType.id}
targetId: ${testTarget.id}
Using getSensitiveColumnAnalytics
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 getSensitiveColumnAnalytics(args: GetSensitiveColumnAnalyticsArgs, opts?: InvokeOptions): Promise<GetSensitiveColumnAnalyticsResult>
function getSensitiveColumnAnalyticsOutput(args: GetSensitiveColumnAnalyticsOutputArgs, opts?: InvokeOptions): Output<GetSensitiveColumnAnalyticsResult>
def get_sensitive_column_analytics(access_level: Optional[str] = None,
column_names: Optional[Sequence[str]] = None,
compartment_id: Optional[str] = None,
compartment_id_in_subtree: Optional[bool] = None,
filters: Optional[Sequence[_datasafe.GetSensitiveColumnAnalyticsFilter]] = None,
group_bies: Optional[Sequence[str]] = None,
objects: Optional[Sequence[str]] = None,
schema_names: Optional[Sequence[str]] = None,
sensitive_data_model_id: Optional[str] = None,
sensitive_type_group_id: Optional[str] = None,
sensitive_type_ids: Optional[Sequence[str]] = None,
target_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSensitiveColumnAnalyticsResult
def get_sensitive_column_analytics_output(access_level: Optional[pulumi.Input[str]] = None,
column_names: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetSensitiveColumnAnalyticsFilterArgs]]]] = None,
group_bies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
objects: 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,
sensitive_type_group_id: Optional[pulumi.Input[str]] = None,
sensitive_type_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
target_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSensitiveColumnAnalyticsResult]
func GetSensitiveColumnAnalytics(ctx *Context, args *GetSensitiveColumnAnalyticsArgs, opts ...InvokeOption) (*GetSensitiveColumnAnalyticsResult, error)
func GetSensitiveColumnAnalyticsOutput(ctx *Context, args *GetSensitiveColumnAnalyticsOutputArgs, opts ...InvokeOption) GetSensitiveColumnAnalyticsResultOutput
> Note: This function is named GetSensitiveColumnAnalytics
in the Go SDK.
public static class GetSensitiveColumnAnalytics
{
public static Task<GetSensitiveColumnAnalyticsResult> InvokeAsync(GetSensitiveColumnAnalyticsArgs args, InvokeOptions? opts = null)
public static Output<GetSensitiveColumnAnalyticsResult> Invoke(GetSensitiveColumnAnalyticsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSensitiveColumnAnalyticsResult> getSensitiveColumnAnalytics(GetSensitiveColumnAnalyticsArgs args, InvokeOptions options)
public static Output<GetSensitiveColumnAnalyticsResult> getSensitiveColumnAnalytics(GetSensitiveColumnAnalyticsArgs args, InvokeOptions options)
fn::invoke:
function: oci:DataSafe/getSensitiveColumnAnalytics:getSensitiveColumnAnalytics
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- Column
Names List<string> - A filter to return only a specific column based on column name.
- Compartment
Id boolIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- Filters
List<Get
Sensitive Column Analytics Filter> - Group
Bies List<string> - The group by parameter to summarize the sensitive columns.
- Objects List<string>
- A filter to return only items related to a specific object name.
- Schema
Names List<string> - A filter to return only items related to specific schema name.
- Sensitive
Data stringModel Id - A filter to return only the resources that match the specified sensitive data model OCID.
- Sensitive
Type stringGroup Id - An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
- Sensitive
Type List<string>Ids - A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- Column
Names []string - A filter to return only a specific column based on column name.
- Compartment
Id boolIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- Filters
[]Get
Sensitive Column Analytics Filter - Group
Bies []string - The group by parameter to summarize the sensitive columns.
- Objects []string
- A filter to return only items related to a specific object name.
- Schema
Names []string - A filter to return only items related to specific schema name.
- Sensitive
Data stringModel Id - A filter to return only the resources that match the specified sensitive data model OCID.
- Sensitive
Type stringGroup Id - An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
- Sensitive
Type []stringIds - A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
- Target
Id string - A filter to return only items related to a specific target OCID.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- access
Level String - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- column
Names List<String> - A filter to return only a specific column based on column name.
- compartment
Id BooleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- filters
List<Get
Sensitive Column Analytics Filter> - group
Bies List<String> - The group by parameter to summarize the sensitive columns.
- objects List<String>
- A filter to return only items related to a specific object name.
- schema
Names List<String> - A filter to return only items related to specific schema name.
- sensitive
Data StringModel Id - A filter to return only the resources that match the specified sensitive data model OCID.
- sensitive
Type StringGroup Id - An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
- sensitive
Type List<String>Ids - A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
- target
Id String - A filter to return only items related to a specific target OCID.
- compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- column
Names string[] - A filter to return only a specific column based on column name.
- compartment
Id booleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- filters
Get
Sensitive Column Analytics Filter[] - group
Bies string[] - The group by parameter to summarize the sensitive columns.
- objects string[]
- A filter to return only items related to a specific object name.
- schema
Names string[] - A filter to return only items related to specific schema name.
- sensitive
Data stringModel Id - A filter to return only the resources that match the specified sensitive data model OCID.
- sensitive
Type stringGroup Id - An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
- sensitive
Type string[]Ids - A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
- target
Id string - A filter to return only items related to a specific target OCID.
- compartment_
id str - A filter to return only resources that match the specified compartment OCID.
- access_
level str - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- column_
names Sequence[str] - A filter to return only a specific column based on column name.
- compartment_
id_ boolin_ subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- filters
Sequence[datasafe.
Get Sensitive Column Analytics Filter] - group_
bies Sequence[str] - The group by parameter to summarize the sensitive columns.
- objects Sequence[str]
- A filter to return only items related to a specific object name.
- schema_
names Sequence[str] - A filter to return only items related to specific schema name.
- sensitive_
data_ strmodel_ id - A filter to return only the resources that match the specified sensitive data model OCID.
- sensitive_
type_ strgroup_ id - An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
- sensitive_
type_ Sequence[str]ids - A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
- target_
id str - A filter to return only items related to a specific target OCID.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- access
Level String - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- column
Names List<String> - A filter to return only a specific column based on column name.
- compartment
Id BooleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- filters List<Property Map>
- group
Bies List<String> - The group by parameter to summarize the sensitive columns.
- objects List<String>
- A filter to return only items related to a specific object name.
- schema
Names List<String> - A filter to return only items related to specific schema name.
- sensitive
Data StringModel Id - A filter to return only the resources that match the specified sensitive data model OCID.
- sensitive
Type StringGroup Id - An optional filter to return only resources that match the specified OCID of the sensitive type group resource.
- sensitive
Type List<String>Ids - A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
- target
Id String - A filter to return only items related to a specific target OCID.
getSensitiveColumnAnalytics Result
The following output properties are available:
- Compartment
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Sensitive
Column List<GetAnalytics Collections Sensitive Column Analytics Sensitive Column Analytics Collection> - The list of sensitive_column_analytics_collection.
- Access
Level string - Column
Names List<string> - The name of the sensitive column.
- Compartment
Id boolIn Subtree - Filters
List<Get
Sensitive Column Analytics Filter> - Group
Bies List<string> - Objects List<string>
- The database object that contains the sensitive column.
- Schema
Names List<string> - The database schema that contains the sensitive column.
- Sensitive
Data stringModel Id - The OCID of the sensitive data model which contains the sensitive column.
- Sensitive
Type stringGroup Id - Sensitive
Type List<string>Ids - The OCID of the sensitive type associated with the sensitive column.
- Target
Id string - The OCID of the target database associated with the sensitive column.
- Compartment
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Sensitive
Column []GetAnalytics Collections Sensitive Column Analytics Sensitive Column Analytics Collection - The list of sensitive_column_analytics_collection.
- Access
Level string - Column
Names []string - The name of the sensitive column.
- Compartment
Id boolIn Subtree - Filters
[]Get
Sensitive Column Analytics Filter - Group
Bies []string - Objects []string
- The database object that contains the sensitive column.
- Schema
Names []string - The database schema that contains the sensitive column.
- Sensitive
Data stringModel Id - The OCID of the sensitive data model which contains the sensitive column.
- Sensitive
Type stringGroup Id - Sensitive
Type []stringIds - The OCID of the sensitive type associated with the sensitive column.
- Target
Id string - The OCID of the target database associated with the sensitive column.
- compartment
Id String - id String
- The provider-assigned unique ID for this managed resource.
- sensitive
Column List<GetAnalytics Collections Sensitive Column Analytics Sensitive Column Analytics Collection> - The list of sensitive_column_analytics_collection.
- access
Level String - column
Names List<String> - The name of the sensitive column.
- compartment
Id BooleanIn Subtree - filters
List<Get
Sensitive Column Analytics Filter> - group
Bies List<String> - objects List<String>
- The database object that contains the sensitive column.
- schema
Names List<String> - The database schema that contains the sensitive column.
- sensitive
Data StringModel Id - The OCID of the sensitive data model which contains the sensitive column.
- sensitive
Type StringGroup Id - sensitive
Type List<String>Ids - The OCID of the sensitive type associated with the sensitive column.
- target
Id String - The OCID of the target database associated with the sensitive column.
- compartment
Id string - id string
- The provider-assigned unique ID for this managed resource.
- sensitive
Column GetAnalytics Collections Sensitive Column Analytics Sensitive Column Analytics Collection[] - The list of sensitive_column_analytics_collection.
- access
Level string - column
Names string[] - The name of the sensitive column.
- compartment
Id booleanIn Subtree - filters
Get
Sensitive Column Analytics Filter[] - group
Bies string[] - objects string[]
- The database object that contains the sensitive column.
- schema
Names string[] - The database schema that contains the sensitive column.
- sensitive
Data stringModel Id - The OCID of the sensitive data model which contains the sensitive column.
- sensitive
Type stringGroup Id - sensitive
Type string[]Ids - The OCID of the sensitive type associated with the sensitive column.
- target
Id string - The OCID of the target database associated with the sensitive column.
- compartment_
id str - id str
- The provider-assigned unique ID for this managed resource.
- sensitive_
column_ Sequence[datasafe.analytics_ collections Get Sensitive Column Analytics Sensitive Column Analytics Collection] - The list of sensitive_column_analytics_collection.
- access_
level str - column_
names Sequence[str] - The name of the sensitive column.
- compartment_
id_ boolin_ subtree - filters
Sequence[datasafe.
Get Sensitive Column Analytics Filter] - group_
bies Sequence[str] - objects Sequence[str]
- The database object that contains the sensitive column.
- schema_
names Sequence[str] - The database schema that contains the sensitive column.
- sensitive_
data_ strmodel_ id - The OCID of the sensitive data model which contains the sensitive column.
- sensitive_
type_ strgroup_ id - sensitive_
type_ Sequence[str]ids - The OCID of the sensitive type associated with the sensitive column.
- target_
id str - The OCID of the target database associated with the sensitive column.
- compartment
Id String - id String
- The provider-assigned unique ID for this managed resource.
- sensitive
Column List<Property Map>Analytics Collections - The list of sensitive_column_analytics_collection.
- access
Level String - column
Names List<String> - The name of the sensitive column.
- compartment
Id BooleanIn Subtree - filters List<Property Map>
- group
Bies List<String> - objects List<String>
- The database object that contains the sensitive column.
- schema
Names List<String> - The database schema that contains the sensitive column.
- sensitive
Data StringModel Id - The OCID of the sensitive data model which contains the sensitive column.
- sensitive
Type StringGroup Id - sensitive
Type List<String>Ids - The OCID of the sensitive type associated with the sensitive column.
- target
Id String - The OCID of the target database associated with the sensitive column.
Supporting Types
GetSensitiveColumnAnalyticsFilter
GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollection
- Items
List<Get
Sensitive Column Analytics Sensitive Column Analytics Collection Item> - An array of sensitive column analytics summary objects.
- Items
[]Get
Sensitive Column Analytics Sensitive Column Analytics Collection Item - An array of sensitive column analytics summary objects.
- items
List<Get
Sensitive Column Analytics Sensitive Column Analytics Collection Item> - An array of sensitive column analytics summary objects.
- items
Get
Sensitive Column Analytics Sensitive Column Analytics Collection Item[] - An array of sensitive column analytics summary objects.
- items
Sequence[datasafe.
Get Sensitive Column Analytics Sensitive Column Analytics Collection Item] - An array of sensitive column analytics summary objects.
- items List<Property Map>
- An array of sensitive column analytics summary objects.
GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollectionItem
- Dimensions
List<Get
Sensitive Column Analytics Sensitive Column Analytics Collection Item Dimension> - The dimensions available for sensitive column analytics.
- Sensitive
Column stringAnalytic Count - The total count for the aggregation metric.
- Dimensions
[]Get
Sensitive Column Analytics Sensitive Column Analytics Collection Item Dimension - The dimensions available for sensitive column analytics.
- Sensitive
Column stringAnalytic Count - The total count for the aggregation metric.
- dimensions
List<Get
Sensitive Column Analytics Sensitive Column Analytics Collection Item Dimension> - The dimensions available for sensitive column analytics.
- sensitive
Column StringAnalytic Count - The total count for the aggregation metric.
- dimensions
Get
Sensitive Column Analytics Sensitive Column Analytics Collection Item Dimension[] - The dimensions available for sensitive column analytics.
- sensitive
Column stringAnalytic Count - The total count for the aggregation metric.
- dimensions
Sequence[datasafe.
Get Sensitive Column Analytics Sensitive Column Analytics Collection Item Dimension] - The dimensions available for sensitive column analytics.
- sensitive_
column_ stranalytic_ count - The total count for the aggregation metric.
- dimensions List<Property Map>
- The dimensions available for sensitive column analytics.
- sensitive
Column StringAnalytic Count - The total count for the aggregation metric.
GetSensitiveColumnAnalyticsSensitiveColumnAnalyticsCollectionItemDimension
- Column
Name string - A filter to return only a specific column based on column name.
- Object string
- A filter to return only items related to a specific object name.
- Schema
Name string - A filter to return only items related to specific schema name.
- Sensitive
Data stringModel Id - A filter to return only the resources that match the specified sensitive data model OCID.
- Sensitive
Type stringId - A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Column
Name string - A filter to return only a specific column based on column name.
- Object string
- A filter to return only items related to a specific object name.
- Schema
Name string - A filter to return only items related to specific schema name.
- Sensitive
Data stringModel Id - A filter to return only the resources that match the specified sensitive data model OCID.
- Sensitive
Type stringId - A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
- Target
Id string - A filter to return only items related to a specific target OCID.
- column
Name String - A filter to return only a specific column based on column name.
- object String
- A filter to return only items related to a specific object name.
- schema
Name String - A filter to return only items related to specific schema name.
- sensitive
Data StringModel Id - A filter to return only the resources that match the specified sensitive data model OCID.
- sensitive
Type StringId - A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
- target
Id String - A filter to return only items related to a specific target OCID.
- column
Name string - A filter to return only a specific column based on column name.
- object string
- A filter to return only items related to a specific object name.
- schema
Name string - A filter to return only items related to specific schema name.
- sensitive
Data stringModel Id - A filter to return only the resources that match the specified sensitive data model OCID.
- sensitive
Type stringId - A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
- target
Id string - A filter to return only items related to a specific target OCID.
- column_
name str - A filter to return only a specific column based on column name.
- object str
- A filter to return only items related to a specific object name.
- schema_
name str - A filter to return only items related to specific schema name.
- sensitive_
data_ strmodel_ id - A filter to return only the resources that match the specified sensitive data model OCID.
- sensitive_
type_ strid - A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
- target_
id str - A filter to return only items related to a specific target OCID.
- column
Name String - A filter to return only a specific column based on column name.
- object String
- A filter to return only items related to a specific object name.
- schema
Name String - A filter to return only items related to specific schema name.
- sensitive
Data StringModel Id - A filter to return only the resources that match the specified sensitive data model OCID.
- sensitive
Type StringId - A filter to return only the sensitive columns that are associated with one of the sensitive types identified by the specified OCIDs.
- target
Id String - A filter to return only items related to a specific target OCID.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.