oci.DataSafe.SensitiveType
Explore with Pulumi AI
This resource provides the Sensitive Type resource in Oracle Cloud Infrastructure Data Safe service.
Creates a new sensitive type, which can be a basic sensitive type with regular expressions or a sensitive category. While sensitive types are used for data discovery, sensitive categories are used for logically grouping the related or similar sensitive types.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSensitiveType = new oci.datasafe.SensitiveType("test_sensitive_type", {
compartmentId: compartmentId,
entityType: sensitiveTypeEntityType,
commentPattern: sensitiveTypeCommentPattern,
dataPattern: sensitiveTypeDataPattern,
defaultMaskingFormatId: testDefaultMaskingFormat.id,
definedTags: {
"Operations.CostCenter": "42",
},
description: sensitiveTypeDescription,
displayName: sensitiveTypeDisplayName,
freeformTags: {
Department: "Finance",
},
namePattern: sensitiveTypeNamePattern,
parentCategoryId: testCategory.id,
searchType: sensitiveTypeSearchType,
shortName: sensitiveTypeShortName,
});
import pulumi
import pulumi_oci as oci
test_sensitive_type = oci.data_safe.SensitiveType("test_sensitive_type",
compartment_id=compartment_id,
entity_type=sensitive_type_entity_type,
comment_pattern=sensitive_type_comment_pattern,
data_pattern=sensitive_type_data_pattern,
default_masking_format_id=test_default_masking_format["id"],
defined_tags={
"Operations.CostCenter": "42",
},
description=sensitive_type_description,
display_name=sensitive_type_display_name,
freeform_tags={
"Department": "Finance",
},
name_pattern=sensitive_type_name_pattern,
parent_category_id=test_category["id"],
search_type=sensitive_type_search_type,
short_name=sensitive_type_short_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.NewSensitiveType(ctx, "test_sensitive_type", &DataSafe.SensitiveTypeArgs{
CompartmentId: pulumi.Any(compartmentId),
EntityType: pulumi.Any(sensitiveTypeEntityType),
CommentPattern: pulumi.Any(sensitiveTypeCommentPattern),
DataPattern: pulumi.Any(sensitiveTypeDataPattern),
DefaultMaskingFormatId: pulumi.Any(testDefaultMaskingFormat.Id),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
Description: pulumi.Any(sensitiveTypeDescription),
DisplayName: pulumi.Any(sensitiveTypeDisplayName),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
NamePattern: pulumi.Any(sensitiveTypeNamePattern),
ParentCategoryId: pulumi.Any(testCategory.Id),
SearchType: pulumi.Any(sensitiveTypeSearchType),
ShortName: pulumi.Any(sensitiveTypeShortName),
})
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 testSensitiveType = new Oci.DataSafe.SensitiveType("test_sensitive_type", new()
{
CompartmentId = compartmentId,
EntityType = sensitiveTypeEntityType,
CommentPattern = sensitiveTypeCommentPattern,
DataPattern = sensitiveTypeDataPattern,
DefaultMaskingFormatId = testDefaultMaskingFormat.Id,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
Description = sensitiveTypeDescription,
DisplayName = sensitiveTypeDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
NamePattern = sensitiveTypeNamePattern,
ParentCategoryId = testCategory.Id,
SearchType = sensitiveTypeSearchType,
ShortName = sensitiveTypeShortName,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.SensitiveType;
import com.pulumi.oci.DataSafe.SensitiveTypeArgs;
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) {
var testSensitiveType = new SensitiveType("testSensitiveType", SensitiveTypeArgs.builder()
.compartmentId(compartmentId)
.entityType(sensitiveTypeEntityType)
.commentPattern(sensitiveTypeCommentPattern)
.dataPattern(sensitiveTypeDataPattern)
.defaultMaskingFormatId(testDefaultMaskingFormat.id())
.definedTags(Map.of("Operations.CostCenter", "42"))
.description(sensitiveTypeDescription)
.displayName(sensitiveTypeDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.namePattern(sensitiveTypeNamePattern)
.parentCategoryId(testCategory.id())
.searchType(sensitiveTypeSearchType)
.shortName(sensitiveTypeShortName)
.build());
}
}
resources:
testSensitiveType:
type: oci:DataSafe:SensitiveType
name: test_sensitive_type
properties:
compartmentId: ${compartmentId}
entityType: ${sensitiveTypeEntityType}
commentPattern: ${sensitiveTypeCommentPattern}
dataPattern: ${sensitiveTypeDataPattern}
defaultMaskingFormatId: ${testDefaultMaskingFormat.id}
definedTags:
Operations.CostCenter: '42'
description: ${sensitiveTypeDescription}
displayName: ${sensitiveTypeDisplayName}
freeformTags:
Department: Finance
namePattern: ${sensitiveTypeNamePattern}
parentCategoryId: ${testCategory.id}
searchType: ${sensitiveTypeSearchType}
shortName: ${sensitiveTypeShortName}
Create SensitiveType Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SensitiveType(name: string, args: SensitiveTypeArgs, opts?: CustomResourceOptions);
@overload
def SensitiveType(resource_name: str,
args: SensitiveTypeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SensitiveType(resource_name: str,
opts: Optional[ResourceOptions] = None,
entity_type: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
default_masking_format_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
comment_pattern: Optional[str] = None,
data_pattern: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
name_pattern: Optional[str] = None,
parent_category_id: Optional[str] = None,
search_type: Optional[str] = None,
short_name: Optional[str] = None)
func NewSensitiveType(ctx *Context, name string, args SensitiveTypeArgs, opts ...ResourceOption) (*SensitiveType, error)
public SensitiveType(string name, SensitiveTypeArgs args, CustomResourceOptions? opts = null)
public SensitiveType(String name, SensitiveTypeArgs args)
public SensitiveType(String name, SensitiveTypeArgs args, CustomResourceOptions options)
type: oci:DataSafe:SensitiveType
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SensitiveTypeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SensitiveTypeArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SensitiveTypeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SensitiveTypeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SensitiveTypeArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var sensitiveTypeResource = new Oci.DataSafe.SensitiveType("sensitiveTypeResource", new()
{
EntityType = "string",
CompartmentId = "string",
DisplayName = "string",
DefaultMaskingFormatId = "string",
DefinedTags =
{
{ "string", "string" },
},
Description = "string",
CommentPattern = "string",
DataPattern = "string",
FreeformTags =
{
{ "string", "string" },
},
NamePattern = "string",
ParentCategoryId = "string",
SearchType = "string",
ShortName = "string",
});
example, err := DataSafe.NewSensitiveType(ctx, "sensitiveTypeResource", &DataSafe.SensitiveTypeArgs{
EntityType: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
DefaultMaskingFormatId: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
CommentPattern: pulumi.String("string"),
DataPattern: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
NamePattern: pulumi.String("string"),
ParentCategoryId: pulumi.String("string"),
SearchType: pulumi.String("string"),
ShortName: pulumi.String("string"),
})
var sensitiveTypeResource = new SensitiveType("sensitiveTypeResource", SensitiveTypeArgs.builder()
.entityType("string")
.compartmentId("string")
.displayName("string")
.defaultMaskingFormatId("string")
.definedTags(Map.of("string", "string"))
.description("string")
.commentPattern("string")
.dataPattern("string")
.freeformTags(Map.of("string", "string"))
.namePattern("string")
.parentCategoryId("string")
.searchType("string")
.shortName("string")
.build());
sensitive_type_resource = oci.data_safe.SensitiveType("sensitiveTypeResource",
entity_type="string",
compartment_id="string",
display_name="string",
default_masking_format_id="string",
defined_tags={
"string": "string",
},
description="string",
comment_pattern="string",
data_pattern="string",
freeform_tags={
"string": "string",
},
name_pattern="string",
parent_category_id="string",
search_type="string",
short_name="string")
const sensitiveTypeResource = new oci.datasafe.SensitiveType("sensitiveTypeResource", {
entityType: "string",
compartmentId: "string",
displayName: "string",
defaultMaskingFormatId: "string",
definedTags: {
string: "string",
},
description: "string",
commentPattern: "string",
dataPattern: "string",
freeformTags: {
string: "string",
},
namePattern: "string",
parentCategoryId: "string",
searchType: "string",
shortName: "string",
});
type: oci:DataSafe:SensitiveType
properties:
commentPattern: string
compartmentId: string
dataPattern: string
defaultMaskingFormatId: string
definedTags:
string: string
description: string
displayName: string
entityType: string
freeformTags:
string: string
namePattern: string
parentCategoryId: string
searchType: string
shortName: string
SensitiveType Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SensitiveType resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment where the sensitive type should be created.
- Entity
Type string - (Updatable) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.
- Comment
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column comments.
- Data
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column data values.
- Default
Masking stringFormat Id - (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) The description of the sensitive type.
- Display
Name string - (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- Name
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column names.
- Parent
Category stringId - (Updatable) The OCID of the parent sensitive category.
- Search
Type string - (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
- Short
Name string (Updatable) The short name of the sensitive type.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Compartment
Id string - (Updatable) The OCID of the compartment where the sensitive type should be created.
- Entity
Type string - (Updatable) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.
- Comment
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column comments.
- Data
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column data values.
- Default
Masking stringFormat Id - (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) The description of the sensitive type.
- Display
Name string - (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- Name
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column names.
- Parent
Category stringId - (Updatable) The OCID of the parent sensitive category.
- Search
Type string - (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
- Short
Name string (Updatable) The short name of the sensitive type.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String - (Updatable) The OCID of the compartment where the sensitive type should be created.
- entity
Type String - (Updatable) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.
- comment
Pattern String - (Updatable) A regular expression to be used by data discovery for matching column comments.
- data
Pattern String - (Updatable) A regular expression to be used by data discovery for matching column data values.
- default
Masking StringFormat Id - (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) The description of the sensitive type.
- display
Name String - (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- name
Pattern String - (Updatable) A regular expression to be used by data discovery for matching column names.
- parent
Category StringId - (Updatable) The OCID of the parent sensitive category.
- search
Type String - (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
- short
Name String (Updatable) The short name of the sensitive type.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id string - (Updatable) The OCID of the compartment where the sensitive type should be created.
- entity
Type string - (Updatable) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.
- comment
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column comments.
- data
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column data values.
- default
Masking stringFormat Id - (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description string
- (Updatable) The description of the sensitive type.
- display
Name string - (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- name
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column names.
- parent
Category stringId - (Updatable) The OCID of the parent sensitive category.
- search
Type string - (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
- short
Name string (Updatable) The short name of the sensitive type.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment_
id str - (Updatable) The OCID of the compartment where the sensitive type should be created.
- entity_
type str - (Updatable) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.
- comment_
pattern str - (Updatable) A regular expression to be used by data discovery for matching column comments.
- data_
pattern str - (Updatable) A regular expression to be used by data discovery for matching column data values.
- default_
masking_ strformat_ id - (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description str
- (Updatable) The description of the sensitive type.
- display_
name str - (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- name_
pattern str - (Updatable) A regular expression to be used by data discovery for matching column names.
- parent_
category_ strid - (Updatable) The OCID of the parent sensitive category.
- search_
type str - (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
- short_
name str (Updatable) The short name of the sensitive type.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String - (Updatable) The OCID of the compartment where the sensitive type should be created.
- entity
Type String - (Updatable) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.
- comment
Pattern String - (Updatable) A regular expression to be used by data discovery for matching column comments.
- data
Pattern String - (Updatable) A regular expression to be used by data discovery for matching column data values.
- default
Masking StringFormat Id - (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) The description of the sensitive type.
- display
Name String - (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- name
Pattern String - (Updatable) A regular expression to be used by data discovery for matching column names.
- parent
Category StringId - (Updatable) The OCID of the parent sensitive category.
- search
Type String - (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
- short
Name String (Updatable) The short name of the sensitive type.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the SensitiveType resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Common bool - Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
- Source string
- Specifies whether the sensitive type is user-defined or predefined.
- State string
- The current state of the sensitive type.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the sensitive type was created, in the format defined by RFC3339.
- Time
Updated string - The date and time the sensitive type was last updated, in the format defined by RFC3339.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Common bool - Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
- Source string
- Specifies whether the sensitive type is user-defined or predefined.
- State string
- The current state of the sensitive type.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the sensitive type was created, in the format defined by RFC3339.
- Time
Updated string - The date and time the sensitive type was last updated, in the format defined by RFC3339.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Common Boolean - Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
- source String
- Specifies whether the sensitive type is user-defined or predefined.
- state String
- The current state of the sensitive type.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the sensitive type was created, in the format defined by RFC3339.
- time
Updated String - The date and time the sensitive type was last updated, in the format defined by RFC3339.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Common boolean - Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
- source string
- Specifies whether the sensitive type is user-defined or predefined.
- state string
- The current state of the sensitive type.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time the sensitive type was created, in the format defined by RFC3339.
- time
Updated string - The date and time the sensitive type was last updated, in the format defined by RFC3339.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
common bool - Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
- source str
- Specifies whether the sensitive type is user-defined or predefined.
- state str
- The current state of the sensitive type.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The date and time the sensitive type was created, in the format defined by RFC3339.
- time_
updated str - The date and time the sensitive type was last updated, in the format defined by RFC3339.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Common Boolean - Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
- source String
- Specifies whether the sensitive type is user-defined or predefined.
- state String
- The current state of the sensitive type.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the sensitive type was created, in the format defined by RFC3339.
- time
Updated String - The date and time the sensitive type was last updated, in the format defined by RFC3339.
Look up Existing SensitiveType Resource
Get an existing SensitiveType resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SensitiveTypeState, opts?: CustomResourceOptions): SensitiveType
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
comment_pattern: Optional[str] = None,
compartment_id: Optional[str] = None,
data_pattern: Optional[str] = None,
default_masking_format_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
entity_type: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
is_common: Optional[bool] = None,
name_pattern: Optional[str] = None,
parent_category_id: Optional[str] = None,
search_type: Optional[str] = None,
short_name: Optional[str] = None,
source: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> SensitiveType
func GetSensitiveType(ctx *Context, name string, id IDInput, state *SensitiveTypeState, opts ...ResourceOption) (*SensitiveType, error)
public static SensitiveType Get(string name, Input<string> id, SensitiveTypeState? state, CustomResourceOptions? opts = null)
public static SensitiveType get(String name, Output<String> id, SensitiveTypeState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Comment
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column comments.
- Compartment
Id string - (Updatable) The OCID of the compartment where the sensitive type should be created.
- Data
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column data values.
- Default
Masking stringFormat Id - (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) The description of the sensitive type.
- Display
Name string - (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
- Entity
Type string - (Updatable) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- Is
Common bool - Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
- Name
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column names.
- Parent
Category stringId - (Updatable) The OCID of the parent sensitive category.
- Search
Type string - (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
- Short
Name string (Updatable) The short name of the sensitive type.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Source string
- Specifies whether the sensitive type is user-defined or predefined.
- State string
- The current state of the sensitive type.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the sensitive type was created, in the format defined by RFC3339.
- Time
Updated string - The date and time the sensitive type was last updated, in the format defined by RFC3339.
- Comment
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column comments.
- Compartment
Id string - (Updatable) The OCID of the compartment where the sensitive type should be created.
- Data
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column data values.
- Default
Masking stringFormat Id - (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- Description string
- (Updatable) The description of the sensitive type.
- Display
Name string - (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
- Entity
Type string - (Updatable) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- Is
Common bool - Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
- Name
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column names.
- Parent
Category stringId - (Updatable) The OCID of the parent sensitive category.
- Search
Type string - (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
- Short
Name string (Updatable) The short name of the sensitive type.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Source string
- Specifies whether the sensitive type is user-defined or predefined.
- State string
- The current state of the sensitive type.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the sensitive type was created, in the format defined by RFC3339.
- Time
Updated string - The date and time the sensitive type was last updated, in the format defined by RFC3339.
- comment
Pattern String - (Updatable) A regular expression to be used by data discovery for matching column comments.
- compartment
Id String - (Updatable) The OCID of the compartment where the sensitive type should be created.
- data
Pattern String - (Updatable) A regular expression to be used by data discovery for matching column data values.
- default
Masking StringFormat Id - (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) The description of the sensitive type.
- display
Name String - (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
- entity
Type String - (Updatable) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- is
Common Boolean - Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
- name
Pattern String - (Updatable) A regular expression to be used by data discovery for matching column names.
- parent
Category StringId - (Updatable) The OCID of the parent sensitive category.
- search
Type String - (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
- short
Name String (Updatable) The short name of the sensitive type.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- source String
- Specifies whether the sensitive type is user-defined or predefined.
- state String
- The current state of the sensitive type.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the sensitive type was created, in the format defined by RFC3339.
- time
Updated String - The date and time the sensitive type was last updated, in the format defined by RFC3339.
- comment
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column comments.
- compartment
Id string - (Updatable) The OCID of the compartment where the sensitive type should be created.
- data
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column data values.
- default
Masking stringFormat Id - (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description string
- (Updatable) The description of the sensitive type.
- display
Name string - (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
- entity
Type string - (Updatable) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- is
Common boolean - Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
- name
Pattern string - (Updatable) A regular expression to be used by data discovery for matching column names.
- parent
Category stringId - (Updatable) The OCID of the parent sensitive category.
- search
Type string - (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
- short
Name string (Updatable) The short name of the sensitive type.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- source string
- Specifies whether the sensitive type is user-defined or predefined.
- state string
- The current state of the sensitive type.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time the sensitive type was created, in the format defined by RFC3339.
- time
Updated string - The date and time the sensitive type was last updated, in the format defined by RFC3339.
- comment_
pattern str - (Updatable) A regular expression to be used by data discovery for matching column comments.
- compartment_
id str - (Updatable) The OCID of the compartment where the sensitive type should be created.
- data_
pattern str - (Updatable) A regular expression to be used by data discovery for matching column data values.
- default_
masking_ strformat_ id - (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description str
- (Updatable) The description of the sensitive type.
- display_
name str - (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
- entity_
type str - (Updatable) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- is_
common bool - Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
- name_
pattern str - (Updatable) A regular expression to be used by data discovery for matching column names.
- parent_
category_ strid - (Updatable) The OCID of the parent sensitive category.
- search_
type str - (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
- short_
name str (Updatable) The short name of the sensitive type.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- source str
- Specifies whether the sensitive type is user-defined or predefined.
- state str
- The current state of the sensitive type.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The date and time the sensitive type was created, in the format defined by RFC3339.
- time_
updated str - The date and time the sensitive type was last updated, in the format defined by RFC3339.
- comment
Pattern String - (Updatable) A regular expression to be used by data discovery for matching column comments.
- compartment
Id String - (Updatable) The OCID of the compartment where the sensitive type should be created.
- data
Pattern String - (Updatable) A regular expression to be used by data discovery for matching column data values.
- default
Masking StringFormat Id - (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description String
- (Updatable) The description of the sensitive type.
- display
Name String - (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
- entity
Type String - (Updatable) The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- is
Common Boolean - Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery.
- name
Pattern String - (Updatable) A regular expression to be used by data discovery for matching column names.
- parent
Category StringId - (Updatable) The OCID of the parent sensitive category.
- search
Type String - (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
- short
Name String (Updatable) The short name of the sensitive type.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- source String
- Specifies whether the sensitive type is user-defined or predefined.
- state String
- The current state of the sensitive type.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the sensitive type was created, in the format defined by RFC3339.
- time
Updated String - The date and time the sensitive type was last updated, in the format defined by RFC3339.
Import
SensitiveTypes can be imported using the id
, e.g.
$ pulumi import oci:DataSafe/sensitiveType:SensitiveType test_sensitive_type "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.