1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. SensitiveType
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.DataSafe.SensitiveType

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    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("testSensitiveType", {
        compartmentId: _var.compartment_id,
        entityType: _var.sensitive_type_entity_type,
        commentPattern: _var.sensitive_type_comment_pattern,
        dataPattern: _var.sensitive_type_data_pattern,
        defaultMaskingFormatId: oci_data_safe_default_masking_format.test_default_masking_format.id,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        description: _var.sensitive_type_description,
        displayName: _var.sensitive_type_display_name,
        freeformTags: {
            Department: "Finance",
        },
        namePattern: _var.sensitive_type_name_pattern,
        parentCategoryId: oci_marketplace_category.test_category.id,
        searchType: _var.sensitive_type_search_type,
        shortName: _var.sensitive_type_short_name,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_sensitive_type = oci.data_safe.SensitiveType("testSensitiveType",
        compartment_id=var["compartment_id"],
        entity_type=var["sensitive_type_entity_type"],
        comment_pattern=var["sensitive_type_comment_pattern"],
        data_pattern=var["sensitive_type_data_pattern"],
        default_masking_format_id=oci_data_safe_default_masking_format["test_default_masking_format"]["id"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        description=var["sensitive_type_description"],
        display_name=var["sensitive_type_display_name"],
        freeform_tags={
            "Department": "Finance",
        },
        name_pattern=var["sensitive_type_name_pattern"],
        parent_category_id=oci_marketplace_category["test_category"]["id"],
        search_type=var["sensitive_type_search_type"],
        short_name=var["sensitive_type_short_name"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DataSafe"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DataSafe.NewSensitiveType(ctx, "testSensitiveType", &DataSafe.SensitiveTypeArgs{
    			CompartmentId:          pulumi.Any(_var.Compartment_id),
    			EntityType:             pulumi.Any(_var.Sensitive_type_entity_type),
    			CommentPattern:         pulumi.Any(_var.Sensitive_type_comment_pattern),
    			DataPattern:            pulumi.Any(_var.Sensitive_type_data_pattern),
    			DefaultMaskingFormatId: pulumi.Any(oci_data_safe_default_masking_format.Test_default_masking_format.Id),
    			DefinedTags: pulumi.Map{
    				"Operations.CostCenter": pulumi.Any("42"),
    			},
    			Description: pulumi.Any(_var.Sensitive_type_description),
    			DisplayName: pulumi.Any(_var.Sensitive_type_display_name),
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("Finance"),
    			},
    			NamePattern:      pulumi.Any(_var.Sensitive_type_name_pattern),
    			ParentCategoryId: pulumi.Any(oci_marketplace_category.Test_category.Id),
    			SearchType:       pulumi.Any(_var.Sensitive_type_search_type),
    			ShortName:        pulumi.Any(_var.Sensitive_type_short_name),
    		})
    		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("testSensitiveType", new()
        {
            CompartmentId = @var.Compartment_id,
            EntityType = @var.Sensitive_type_entity_type,
            CommentPattern = @var.Sensitive_type_comment_pattern,
            DataPattern = @var.Sensitive_type_data_pattern,
            DefaultMaskingFormatId = oci_data_safe_default_masking_format.Test_default_masking_format.Id,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            Description = @var.Sensitive_type_description,
            DisplayName = @var.Sensitive_type_display_name,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            NamePattern = @var.Sensitive_type_name_pattern,
            ParentCategoryId = oci_marketplace_category.Test_category.Id,
            SearchType = @var.Sensitive_type_search_type,
            ShortName = @var.Sensitive_type_short_name,
        });
    
    });
    
    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(var_.compartment_id())
                .entityType(var_.sensitive_type_entity_type())
                .commentPattern(var_.sensitive_type_comment_pattern())
                .dataPattern(var_.sensitive_type_data_pattern())
                .defaultMaskingFormatId(oci_data_safe_default_masking_format.test_default_masking_format().id())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .description(var_.sensitive_type_description())
                .displayName(var_.sensitive_type_display_name())
                .freeformTags(Map.of("Department", "Finance"))
                .namePattern(var_.sensitive_type_name_pattern())
                .parentCategoryId(oci_marketplace_category.test_category().id())
                .searchType(var_.sensitive_type_search_type())
                .shortName(var_.sensitive_type_short_name())
                .build());
    
        }
    }
    
    resources:
      testSensitiveType:
        type: oci:DataSafe:SensitiveType
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          entityType: ${var.sensitive_type_entity_type}
          #Optional
          commentPattern: ${var.sensitive_type_comment_pattern}
          dataPattern: ${var.sensitive_type_data_pattern}
          defaultMaskingFormatId: ${oci_data_safe_default_masking_format.test_default_masking_format.id}
          definedTags:
            Operations.CostCenter: '42'
          description: ${var.sensitive_type_description}
          displayName: ${var.sensitive_type_display_name}
          freeformTags:
            Department: Finance
          namePattern: ${var.sensitive_type_name_pattern}
          parentCategoryId: ${oci_marketplace_category.test_category.id}
          searchType: ${var.sensitive_type_search_type}
          shortName: ${var.sensitive_type_short_name}
    

    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, Any]] = None,
                      description: Optional[str] = None,
                      comment_pattern: Optional[str] = None,
                      data_pattern: Optional[str] = None,
                      freeform_tags: Optional[Mapping[str, Any]] = 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.

    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", "any" },
        },
        Description = "string",
        CommentPattern = "string",
        DataPattern = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
        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.Map{
    		"string": pulumi.Any("any"),
    	},
    	Description:    pulumi.String("string"),
    	CommentPattern: pulumi.String("string"),
    	DataPattern:    pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	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", "any"))
        .description("string")
        .commentPattern("string")
        .dataPattern("string")
        .freeformTags(Map.of("string", "any"))
        .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": "any",
        },
        description="string",
        comment_pattern="string",
        data_pattern="string",
        freeform_tags={
            "string": "any",
        },
        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: "any",
        },
        description: "string",
        commentPattern: "string",
        dataPattern: "string",
        freeformTags: {
            string: "any",
        },
        namePattern: "string",
        parentCategoryId: "string",
        searchType: "string",
        shortName: "string",
    });
    
    type: oci:DataSafe:SensitiveType
    properties:
        commentPattern: string
        compartmentId: string
        dataPattern: string
        defaultMaskingFormatId: string
        definedTags:
            string: any
        description: string
        displayName: string
        entityType: string
        freeformTags:
            string: any
        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:

    CompartmentId string
    (Updatable) The OCID of the compartment where the sensitive type should be created.
    EntityType 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.
    CommentPattern string
    (Updatable) A regular expression to be used by data discovery for matching column comments.
    DataPattern string
    (Updatable) A regular expression to be used by data discovery for matching column data values.
    DefaultMaskingFormatId string
    (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
    DefinedTags Dictionary<string, object>
    (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.
    DisplayName string
    (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
    FreeformTags Dictionary<string, object>
    (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"}
    NamePattern string
    (Updatable) A regular expression to be used by data discovery for matching column names.
    ParentCategoryId string
    (Updatable) The OCID of the parent sensitive category.
    SearchType string
    (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
    ShortName 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

    CompartmentId string
    (Updatable) The OCID of the compartment where the sensitive type should be created.
    EntityType 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.
    CommentPattern string
    (Updatable) A regular expression to be used by data discovery for matching column comments.
    DataPattern string
    (Updatable) A regular expression to be used by data discovery for matching column data values.
    DefaultMaskingFormatId string
    (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
    DefinedTags map[string]interface{}
    (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.
    DisplayName string
    (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
    FreeformTags map[string]interface{}
    (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"}
    NamePattern string
    (Updatable) A regular expression to be used by data discovery for matching column names.
    ParentCategoryId string
    (Updatable) The OCID of the parent sensitive category.
    SearchType string
    (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
    ShortName 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

    compartmentId String
    (Updatable) The OCID of the compartment where the sensitive type should be created.
    entityType 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.
    commentPattern String
    (Updatable) A regular expression to be used by data discovery for matching column comments.
    dataPattern String
    (Updatable) A regular expression to be used by data discovery for matching column data values.
    defaultMaskingFormatId String
    (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
    definedTags Map<String,Object>
    (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.
    displayName String
    (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
    freeformTags Map<String,Object>
    (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"}
    namePattern String
    (Updatable) A regular expression to be used by data discovery for matching column names.
    parentCategoryId String
    (Updatable) The OCID of the parent sensitive category.
    searchType String
    (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
    shortName 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

    compartmentId string
    (Updatable) The OCID of the compartment where the sensitive type should be created.
    entityType 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.
    commentPattern string
    (Updatable) A regular expression to be used by data discovery for matching column comments.
    dataPattern string
    (Updatable) A regular expression to be used by data discovery for matching column data values.
    defaultMaskingFormatId string
    (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
    definedTags {[key: string]: any}
    (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.
    displayName string
    (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
    freeformTags {[key: string]: any}
    (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"}
    namePattern string
    (Updatable) A regular expression to be used by data discovery for matching column names.
    parentCategoryId string
    (Updatable) The OCID of the parent sensitive category.
    searchType string
    (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
    shortName 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_format_id str
    (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
    defined_tags Mapping[str, Any]
    (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.
    freeform_tags Mapping[str, Any]
    (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_id str
    (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

    compartmentId String
    (Updatable) The OCID of the compartment where the sensitive type should be created.
    entityType 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.
    commentPattern String
    (Updatable) A regular expression to be used by data discovery for matching column comments.
    dataPattern String
    (Updatable) A regular expression to be used by data discovery for matching column data values.
    defaultMaskingFormatId String
    (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
    definedTags Map<Any>
    (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.
    displayName String
    (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
    freeformTags Map<Any>
    (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"}
    namePattern String
    (Updatable) A regular expression to be used by data discovery for matching column names.
    parentCategoryId String
    (Updatable) The OCID of the parent sensitive category.
    searchType String
    (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
    shortName 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.
    IsCommon 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.
    SystemTags Dictionary<string, object>
    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"}
    TimeCreated string
    The date and time the sensitive type was created, in the format defined by RFC3339.
    TimeUpdated 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.
    IsCommon 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.
    SystemTags map[string]interface{}
    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"}
    TimeCreated string
    The date and time the sensitive type was created, in the format defined by RFC3339.
    TimeUpdated 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.
    isCommon 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.
    systemTags Map<String,Object>
    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"}
    timeCreated String
    The date and time the sensitive type was created, in the format defined by RFC3339.
    timeUpdated 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.
    isCommon 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.
    systemTags {[key: string]: any}
    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"}
    timeCreated string
    The date and time the sensitive type was created, in the format defined by RFC3339.
    timeUpdated 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.
    system_tags Mapping[str, Any]
    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.
    isCommon 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.
    systemTags Map<Any>
    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"}
    timeCreated String
    The date and time the sensitive type was created, in the format defined by RFC3339.
    timeUpdated 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, Any]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            entity_type: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = 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, Any]] = 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.
    The following state arguments are supported:
    CommentPattern string
    (Updatable) A regular expression to be used by data discovery for matching column comments.
    CompartmentId string
    (Updatable) The OCID of the compartment where the sensitive type should be created.
    DataPattern string
    (Updatable) A regular expression to be used by data discovery for matching column data values.
    DefaultMaskingFormatId string
    (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
    DefinedTags Dictionary<string, object>
    (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.
    DisplayName string
    (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
    EntityType 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.
    FreeformTags Dictionary<string, object>
    (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"}
    IsCommon 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.
    NamePattern string
    (Updatable) A regular expression to be used by data discovery for matching column names.
    ParentCategoryId string
    (Updatable) The OCID of the parent sensitive category.
    SearchType string
    (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
    ShortName 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.
    SystemTags Dictionary<string, object>
    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"}
    TimeCreated string
    The date and time the sensitive type was created, in the format defined by RFC3339.
    TimeUpdated string
    The date and time the sensitive type was last updated, in the format defined by RFC3339.
    CommentPattern string
    (Updatable) A regular expression to be used by data discovery for matching column comments.
    CompartmentId string
    (Updatable) The OCID of the compartment where the sensitive type should be created.
    DataPattern string
    (Updatable) A regular expression to be used by data discovery for matching column data values.
    DefaultMaskingFormatId string
    (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
    DefinedTags map[string]interface{}
    (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.
    DisplayName string
    (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
    EntityType 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.
    FreeformTags map[string]interface{}
    (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"}
    IsCommon 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.
    NamePattern string
    (Updatable) A regular expression to be used by data discovery for matching column names.
    ParentCategoryId string
    (Updatable) The OCID of the parent sensitive category.
    SearchType string
    (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
    ShortName 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.
    SystemTags map[string]interface{}
    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"}
    TimeCreated string
    The date and time the sensitive type was created, in the format defined by RFC3339.
    TimeUpdated string
    The date and time the sensitive type was last updated, in the format defined by RFC3339.
    commentPattern String
    (Updatable) A regular expression to be used by data discovery for matching column comments.
    compartmentId String
    (Updatable) The OCID of the compartment where the sensitive type should be created.
    dataPattern String
    (Updatable) A regular expression to be used by data discovery for matching column data values.
    defaultMaskingFormatId String
    (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
    definedTags Map<String,Object>
    (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.
    displayName String
    (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
    entityType 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.
    freeformTags Map<String,Object>
    (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"}
    isCommon 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.
    namePattern String
    (Updatable) A regular expression to be used by data discovery for matching column names.
    parentCategoryId String
    (Updatable) The OCID of the parent sensitive category.
    searchType String
    (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
    shortName 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.
    systemTags Map<String,Object>
    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"}
    timeCreated String
    The date and time the sensitive type was created, in the format defined by RFC3339.
    timeUpdated String
    The date and time the sensitive type was last updated, in the format defined by RFC3339.
    commentPattern string
    (Updatable) A regular expression to be used by data discovery for matching column comments.
    compartmentId string
    (Updatable) The OCID of the compartment where the sensitive type should be created.
    dataPattern string
    (Updatable) A regular expression to be used by data discovery for matching column data values.
    defaultMaskingFormatId string
    (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
    definedTags {[key: string]: any}
    (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.
    displayName string
    (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
    entityType 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.
    freeformTags {[key: string]: any}
    (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"}
    isCommon 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.
    namePattern string
    (Updatable) A regular expression to be used by data discovery for matching column names.
    parentCategoryId string
    (Updatable) The OCID of the parent sensitive category.
    searchType string
    (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
    shortName 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.
    systemTags {[key: string]: any}
    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"}
    timeCreated string
    The date and time the sensitive type was created, in the format defined by RFC3339.
    timeUpdated 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_format_id str
    (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
    defined_tags Mapping[str, Any]
    (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.
    freeform_tags Mapping[str, Any]
    (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_id str
    (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.
    system_tags Mapping[str, Any]
    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.
    commentPattern String
    (Updatable) A regular expression to be used by data discovery for matching column comments.
    compartmentId String
    (Updatable) The OCID of the compartment where the sensitive type should be created.
    dataPattern String
    (Updatable) A regular expression to be used by data discovery for matching column data values.
    defaultMaskingFormatId String
    (Updatable) The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type.
    definedTags Map<Any>
    (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.
    displayName String
    (Updatable) The display name of the sensitive type. The name does not have to be unique, and it's changeable.
    entityType 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.
    freeformTags Map<Any>
    (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"}
    isCommon 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.
    namePattern String
    (Updatable) A regular expression to be used by data discovery for matching column names.
    parentCategoryId String
    (Updatable) The OCID of the parent sensitive category.
    searchType String
    (Updatable) The search type indicating how the column name, comment and data patterns should be used by data discovery. Learn more.
    shortName 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.
    systemTags Map<Any>
    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"}
    timeCreated String
    The date and time the sensitive type was created, in the format defined by RFC3339.
    timeUpdated 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.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi