1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. SensitiveTypeGroup
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.DataSafe.SensitiveTypeGroup

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

    This resource provides the Sensitive Type Group resource in Oracle Cloud Infrastructure Data Safe service.

    Creates a new sensitive type group.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSensitiveTypeGroup = new oci.datasafe.SensitiveTypeGroup("test_sensitive_type_group", {
        compartmentId: compartmentId,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        description: sensitiveTypeGroupDescription,
        displayName: sensitiveTypeGroupDisplayName,
        freeformTags: {
            Department: "Finance",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_sensitive_type_group = oci.data_safe.SensitiveTypeGroup("test_sensitive_type_group",
        compartment_id=compartment_id,
        defined_tags={
            "Operations.CostCenter": "42",
        },
        description=sensitive_type_group_description,
        display_name=sensitive_type_group_display_name,
        freeform_tags={
            "Department": "Finance",
        })
    
    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.NewSensitiveTypeGroup(ctx, "test_sensitive_type_group", &datasafe.SensitiveTypeGroupArgs{
    			CompartmentId: pulumi.Any(compartmentId),
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			Description: pulumi.Any(sensitiveTypeGroupDescription),
    			DisplayName: pulumi.Any(sensitiveTypeGroupDisplayName),
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    		})
    		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 testSensitiveTypeGroup = new Oci.DataSafe.SensitiveTypeGroup("test_sensitive_type_group", new()
        {
            CompartmentId = compartmentId,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            Description = sensitiveTypeGroupDescription,
            DisplayName = sensitiveTypeGroupDisplayName,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataSafe.SensitiveTypeGroup;
    import com.pulumi.oci.DataSafe.SensitiveTypeGroupArgs;
    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 testSensitiveTypeGroup = new SensitiveTypeGroup("testSensitiveTypeGroup", SensitiveTypeGroupArgs.builder()
                .compartmentId(compartmentId)
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .description(sensitiveTypeGroupDescription)
                .displayName(sensitiveTypeGroupDisplayName)
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    resources:
      testSensitiveTypeGroup:
        type: oci:DataSafe:SensitiveTypeGroup
        name: test_sensitive_type_group
        properties:
          compartmentId: ${compartmentId}
          definedTags:
            Operations.CostCenter: '42'
          description: ${sensitiveTypeGroupDescription}
          displayName: ${sensitiveTypeGroupDisplayName}
          freeformTags:
            Department: Finance
    

    Create SensitiveTypeGroup Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SensitiveTypeGroup(name: string, args: SensitiveTypeGroupArgs, opts?: CustomResourceOptions);
    @overload
    def SensitiveTypeGroup(resource_name: str,
                           args: SensitiveTypeGroupArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def SensitiveTypeGroup(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           compartment_id: Optional[str] = None,
                           defined_tags: Optional[Mapping[str, str]] = None,
                           description: Optional[str] = None,
                           display_name: Optional[str] = None,
                           freeform_tags: Optional[Mapping[str, str]] = None)
    func NewSensitiveTypeGroup(ctx *Context, name string, args SensitiveTypeGroupArgs, opts ...ResourceOption) (*SensitiveTypeGroup, error)
    public SensitiveTypeGroup(string name, SensitiveTypeGroupArgs args, CustomResourceOptions? opts = null)
    public SensitiveTypeGroup(String name, SensitiveTypeGroupArgs args)
    public SensitiveTypeGroup(String name, SensitiveTypeGroupArgs args, CustomResourceOptions options)
    
    type: oci:DataSafe:SensitiveTypeGroup
    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 SensitiveTypeGroupArgs
    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 SensitiveTypeGroupArgs
    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 SensitiveTypeGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SensitiveTypeGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SensitiveTypeGroupArgs
    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 sensitiveTypeGroupResource = new Oci.DataSafe.SensitiveTypeGroup("sensitiveTypeGroupResource", new()
    {
        CompartmentId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        Description = "string",
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := DataSafe.NewSensitiveTypeGroup(ctx, "sensitiveTypeGroupResource", &DataSafe.SensitiveTypeGroupArgs{
    	CompartmentId: pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var sensitiveTypeGroupResource = new SensitiveTypeGroup("sensitiveTypeGroupResource", SensitiveTypeGroupArgs.builder()
        .compartmentId("string")
        .definedTags(Map.of("string", "string"))
        .description("string")
        .displayName("string")
        .freeformTags(Map.of("string", "string"))
        .build());
    
    sensitive_type_group_resource = oci.data_safe.SensitiveTypeGroup("sensitiveTypeGroupResource",
        compartment_id="string",
        defined_tags={
            "string": "string",
        },
        description="string",
        display_name="string",
        freeform_tags={
            "string": "string",
        })
    
    const sensitiveTypeGroupResource = new oci.datasafe.SensitiveTypeGroup("sensitiveTypeGroupResource", {
        compartmentId: "string",
        definedTags: {
            string: "string",
        },
        description: "string",
        displayName: "string",
        freeformTags: {
            string: "string",
        },
    });
    
    type: oci:DataSafe:SensitiveTypeGroup
    properties:
        compartmentId: string
        definedTags:
            string: string
        description: string
        displayName: string
        freeformTags:
            string: string
    

    SensitiveTypeGroup Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SensitiveTypeGroup resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment where the sensitive type group should be created.
    DefinedTags 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 group.
    DisplayName string
    (Updatable) The display name of the sensitive type group. The name does not have to be unique.
    FreeformTags 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"}

    ** 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 group should be created.
    DefinedTags 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 group.
    DisplayName string
    (Updatable) The display name of the sensitive type group. The name does not have to be unique.
    FreeformTags 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"}

    ** 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 group should be created.
    definedTags 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 group.
    displayName String
    (Updatable) The display name of the sensitive type group. The name does not have to be unique.
    freeformTags 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"}

    ** 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 group should be created.
    definedTags {[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 group.
    displayName string
    (Updatable) The display name of the sensitive type group. The name does not have to be unique.
    freeformTags {[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"}

    ** 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 group should be created.
    defined_tags 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 group.
    display_name str
    (Updatable) The display name of the sensitive type group. The name does not have to be unique.
    freeform_tags 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"}

    ** 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 group should be created.
    definedTags 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 group.
    displayName String
    (Updatable) The display name of the sensitive type group. The name does not have to be unique.
    freeformTags 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"}

    ** 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 SensitiveTypeGroup resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    SensitiveTypeCount int
    The number of sensitive types in the specified sensitive type group.
    State string
    The current state of the sensitive type group.
    SystemTags 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"}
    TimeCreated string
    The date and time the sensitive type group was created, in the format defined by RFC3339.
    TimeUpdated string
    The date and time the sensitive type group was last updated, in the format defined by RFC3339.
    Id string
    The provider-assigned unique ID for this managed resource.
    SensitiveTypeCount int
    The number of sensitive types in the specified sensitive type group.
    State string
    The current state of the sensitive type group.
    SystemTags 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"}
    TimeCreated string
    The date and time the sensitive type group was created, in the format defined by RFC3339.
    TimeUpdated string
    The date and time the sensitive type group was last updated, in the format defined by RFC3339.
    id String
    The provider-assigned unique ID for this managed resource.
    sensitiveTypeCount Integer
    The number of sensitive types in the specified sensitive type group.
    state String
    The current state of the sensitive type group.
    systemTags 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"}
    timeCreated String
    The date and time the sensitive type group was created, in the format defined by RFC3339.
    timeUpdated String
    The date and time the sensitive type group was last updated, in the format defined by RFC3339.
    id string
    The provider-assigned unique ID for this managed resource.
    sensitiveTypeCount number
    The number of sensitive types in the specified sensitive type group.
    state string
    The current state of the sensitive type group.
    systemTags {[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"}
    timeCreated string
    The date and time the sensitive type group was created, in the format defined by RFC3339.
    timeUpdated string
    The date and time the sensitive type group was last updated, in the format defined by RFC3339.
    id str
    The provider-assigned unique ID for this managed resource.
    sensitive_type_count int
    The number of sensitive types in the specified sensitive type group.
    state str
    The current state of the sensitive type group.
    system_tags 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 group was created, in the format defined by RFC3339.
    time_updated str
    The date and time the sensitive type group was last updated, in the format defined by RFC3339.
    id String
    The provider-assigned unique ID for this managed resource.
    sensitiveTypeCount Number
    The number of sensitive types in the specified sensitive type group.
    state String
    The current state of the sensitive type group.
    systemTags 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"}
    timeCreated String
    The date and time the sensitive type group was created, in the format defined by RFC3339.
    timeUpdated String
    The date and time the sensitive type group was last updated, in the format defined by RFC3339.

    Look up Existing SensitiveTypeGroup Resource

    Get an existing SensitiveTypeGroup 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?: SensitiveTypeGroupState, opts?: CustomResourceOptions): SensitiveTypeGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            sensitive_type_count: Optional[int] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> SensitiveTypeGroup
    func GetSensitiveTypeGroup(ctx *Context, name string, id IDInput, state *SensitiveTypeGroupState, opts ...ResourceOption) (*SensitiveTypeGroup, error)
    public static SensitiveTypeGroup Get(string name, Input<string> id, SensitiveTypeGroupState? state, CustomResourceOptions? opts = null)
    public static SensitiveTypeGroup get(String name, Output<String> id, SensitiveTypeGroupState state, CustomResourceOptions options)
    resources:  _:    type: oci:DataSafe:SensitiveTypeGroup    get:      id: ${id}
    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:
    CompartmentId string
    (Updatable) The OCID of the compartment where the sensitive type group should be created.
    DefinedTags 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 group.
    DisplayName string
    (Updatable) The display name of the sensitive type group. The name does not have to be unique.
    FreeformTags 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"}

    ** 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

    SensitiveTypeCount int
    The number of sensitive types in the specified sensitive type group.
    State string
    The current state of the sensitive type group.
    SystemTags 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"}
    TimeCreated string
    The date and time the sensitive type group was created, in the format defined by RFC3339.
    TimeUpdated string
    The date and time the sensitive type group was last updated, in the format defined by RFC3339.
    CompartmentId string
    (Updatable) The OCID of the compartment where the sensitive type group should be created.
    DefinedTags 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 group.
    DisplayName string
    (Updatable) The display name of the sensitive type group. The name does not have to be unique.
    FreeformTags 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"}

    ** 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

    SensitiveTypeCount int
    The number of sensitive types in the specified sensitive type group.
    State string
    The current state of the sensitive type group.
    SystemTags 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"}
    TimeCreated string
    The date and time the sensitive type group was created, in the format defined by RFC3339.
    TimeUpdated string
    The date and time the sensitive type group was last updated, in the format defined by RFC3339.
    compartmentId String
    (Updatable) The OCID of the compartment where the sensitive type group should be created.
    definedTags 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 group.
    displayName String
    (Updatable) The display name of the sensitive type group. The name does not have to be unique.
    freeformTags 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"}

    ** 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

    sensitiveTypeCount Integer
    The number of sensitive types in the specified sensitive type group.
    state String
    The current state of the sensitive type group.
    systemTags 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"}
    timeCreated String
    The date and time the sensitive type group was created, in the format defined by RFC3339.
    timeUpdated String
    The date and time the sensitive type group was last updated, in the format defined by RFC3339.
    compartmentId string
    (Updatable) The OCID of the compartment where the sensitive type group should be created.
    definedTags {[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 group.
    displayName string
    (Updatable) The display name of the sensitive type group. The name does not have to be unique.
    freeformTags {[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"}

    ** 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

    sensitiveTypeCount number
    The number of sensitive types in the specified sensitive type group.
    state string
    The current state of the sensitive type group.
    systemTags {[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"}
    timeCreated string
    The date and time the sensitive type group was created, in the format defined by RFC3339.
    timeUpdated string
    The date and time the sensitive type group was last updated, in the format defined by RFC3339.
    compartment_id str
    (Updatable) The OCID of the compartment where the sensitive type group should be created.
    defined_tags 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 group.
    display_name str
    (Updatable) The display name of the sensitive type group. The name does not have to be unique.
    freeform_tags 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"}

    ** 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

    sensitive_type_count int
    The number of sensitive types in the specified sensitive type group.
    state str
    The current state of the sensitive type group.
    system_tags 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 group was created, in the format defined by RFC3339.
    time_updated str
    The date and time the sensitive type group was last updated, in the format defined by RFC3339.
    compartmentId String
    (Updatable) The OCID of the compartment where the sensitive type group should be created.
    definedTags 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 group.
    displayName String
    (Updatable) The display name of the sensitive type group. The name does not have to be unique.
    freeformTags 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"}

    ** 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

    sensitiveTypeCount Number
    The number of sensitive types in the specified sensitive type group.
    state String
    The current state of the sensitive type group.
    systemTags 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"}
    timeCreated String
    The date and time the sensitive type group was created, in the format defined by RFC3339.
    timeUpdated String
    The date and time the sensitive type group was last updated, in the format defined by RFC3339.

    Import

    SensitiveTypeGroups can be imported using the id, e.g.

    $ pulumi import oci:DataSafe/sensitiveTypeGroup:SensitiveTypeGroup test_sensitive_type_group "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 v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi