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

oci.DataSafe.SensitiveTypeGroupGroupedSensitiveType

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 Grouped Sensitive Type resource in Oracle Cloud Infrastructure Data Safe service.

    Patches one or more sensitive types in a sensitive type group. You can use this operation to add or remove sensitive type ids in a sensitive type group.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSensitiveTypeGroupGroupedSensitiveType = new oci.datasafe.SensitiveTypeGroupGroupedSensitiveType("test_sensitive_type_group_grouped_sensitive_type", {
        sensitiveTypeGroupId: testSensitiveTypeGroup.id,
        patchOperations: [{
            operation: sensitiveTypeGroupGroupedSensitiveTypePatchOperationsOperation,
            selection: sensitiveTypeGroupGroupedSensitiveTypePatchOperationsSelection,
            value: sensitiveTypeGroupGroupedSensitiveTypePatchOperationsValue,
        }],
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_sensitive_type_group_grouped_sensitive_type = oci.data_safe.SensitiveTypeGroupGroupedSensitiveType("test_sensitive_type_group_grouped_sensitive_type",
        sensitive_type_group_id=test_sensitive_type_group["id"],
        patch_operations=[{
            "operation": sensitive_type_group_grouped_sensitive_type_patch_operations_operation,
            "selection": sensitive_type_group_grouped_sensitive_type_patch_operations_selection,
            "value": sensitive_type_group_grouped_sensitive_type_patch_operations_value,
        }])
    
    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.NewSensitiveTypeGroupGroupedSensitiveType(ctx, "test_sensitive_type_group_grouped_sensitive_type", &datasafe.SensitiveTypeGroupGroupedSensitiveTypeArgs{
    			SensitiveTypeGroupId: pulumi.Any(testSensitiveTypeGroup.Id),
    			PatchOperations: datasafe.SensitiveTypeGroupGroupedSensitiveTypePatchOperationArray{
    				&datasafe.SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs{
    					Operation: pulumi.Any(sensitiveTypeGroupGroupedSensitiveTypePatchOperationsOperation),
    					Selection: pulumi.Any(sensitiveTypeGroupGroupedSensitiveTypePatchOperationsSelection),
    					Value:     pulumi.Any(sensitiveTypeGroupGroupedSensitiveTypePatchOperationsValue),
    				},
    			},
    		})
    		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 testSensitiveTypeGroupGroupedSensitiveType = new Oci.DataSafe.SensitiveTypeGroupGroupedSensitiveType("test_sensitive_type_group_grouped_sensitive_type", new()
        {
            SensitiveTypeGroupId = testSensitiveTypeGroup.Id,
            PatchOperations = new[]
            {
                new Oci.DataSafe.Inputs.SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs
                {
                    Operation = sensitiveTypeGroupGroupedSensitiveTypePatchOperationsOperation,
                    Selection = sensitiveTypeGroupGroupedSensitiveTypePatchOperationsSelection,
                    Value = sensitiveTypeGroupGroupedSensitiveTypePatchOperationsValue,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataSafe.SensitiveTypeGroupGroupedSensitiveType;
    import com.pulumi.oci.DataSafe.SensitiveTypeGroupGroupedSensitiveTypeArgs;
    import com.pulumi.oci.DataSafe.inputs.SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs;
    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 testSensitiveTypeGroupGroupedSensitiveType = new SensitiveTypeGroupGroupedSensitiveType("testSensitiveTypeGroupGroupedSensitiveType", SensitiveTypeGroupGroupedSensitiveTypeArgs.builder()
                .sensitiveTypeGroupId(testSensitiveTypeGroup.id())
                .patchOperations(SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs.builder()
                    .operation(sensitiveTypeGroupGroupedSensitiveTypePatchOperationsOperation)
                    .selection(sensitiveTypeGroupGroupedSensitiveTypePatchOperationsSelection)
                    .value(sensitiveTypeGroupGroupedSensitiveTypePatchOperationsValue)
                    .build())
                .build());
    
        }
    }
    
    resources:
      testSensitiveTypeGroupGroupedSensitiveType:
        type: oci:DataSafe:SensitiveTypeGroupGroupedSensitiveType
        name: test_sensitive_type_group_grouped_sensitive_type
        properties:
          sensitiveTypeGroupId: ${testSensitiveTypeGroup.id}
          patchOperations:
            - operation: ${sensitiveTypeGroupGroupedSensitiveTypePatchOperationsOperation}
              selection: ${sensitiveTypeGroupGroupedSensitiveTypePatchOperationsSelection}
              value: ${sensitiveTypeGroupGroupedSensitiveTypePatchOperationsValue}
    

    Create SensitiveTypeGroupGroupedSensitiveType Resource

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

    Constructor syntax

    new SensitiveTypeGroupGroupedSensitiveType(name: string, args: SensitiveTypeGroupGroupedSensitiveTypeArgs, opts?: CustomResourceOptions);
    @overload
    def SensitiveTypeGroupGroupedSensitiveType(resource_name: str,
                                               args: SensitiveTypeGroupGroupedSensitiveTypeArgs,
                                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def SensitiveTypeGroupGroupedSensitiveType(resource_name: str,
                                               opts: Optional[ResourceOptions] = None,
                                               sensitive_type_group_id: Optional[str] = None,
                                               patch_operations: Optional[Sequence[_datasafe.SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs]] = None)
    func NewSensitiveTypeGroupGroupedSensitiveType(ctx *Context, name string, args SensitiveTypeGroupGroupedSensitiveTypeArgs, opts ...ResourceOption) (*SensitiveTypeGroupGroupedSensitiveType, error)
    public SensitiveTypeGroupGroupedSensitiveType(string name, SensitiveTypeGroupGroupedSensitiveTypeArgs args, CustomResourceOptions? opts = null)
    public SensitiveTypeGroupGroupedSensitiveType(String name, SensitiveTypeGroupGroupedSensitiveTypeArgs args)
    public SensitiveTypeGroupGroupedSensitiveType(String name, SensitiveTypeGroupGroupedSensitiveTypeArgs args, CustomResourceOptions options)
    
    type: oci:DataSafe:SensitiveTypeGroupGroupedSensitiveType
    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 SensitiveTypeGroupGroupedSensitiveTypeArgs
    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 SensitiveTypeGroupGroupedSensitiveTypeArgs
    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 SensitiveTypeGroupGroupedSensitiveTypeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SensitiveTypeGroupGroupedSensitiveTypeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SensitiveTypeGroupGroupedSensitiveTypeArgs
    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 sensitiveTypeGroupGroupedSensitiveTypeResource = new Oci.DataSafe.SensitiveTypeGroupGroupedSensitiveType("sensitiveTypeGroupGroupedSensitiveTypeResource", new()
    {
        SensitiveTypeGroupId = "string",
        PatchOperations = new[]
        {
            new Oci.DataSafe.Inputs.SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs
            {
                Operation = "string",
                Selection = "string",
                Value = 
                {
                    { "string", "string" },
                },
            },
        },
    });
    
    example, err := DataSafe.NewSensitiveTypeGroupGroupedSensitiveType(ctx, "sensitiveTypeGroupGroupedSensitiveTypeResource", &DataSafe.SensitiveTypeGroupGroupedSensitiveTypeArgs{
    	SensitiveTypeGroupId: pulumi.String("string"),
    	PatchOperations: datasafe.SensitiveTypeGroupGroupedSensitiveTypePatchOperationArray{
    		&datasafe.SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs{
    			Operation: pulumi.String("string"),
    			Selection: pulumi.String("string"),
    			Value: pulumi.StringMap{
    				"string": pulumi.String("string"),
    			},
    		},
    	},
    })
    
    var sensitiveTypeGroupGroupedSensitiveTypeResource = new SensitiveTypeGroupGroupedSensitiveType("sensitiveTypeGroupGroupedSensitiveTypeResource", SensitiveTypeGroupGroupedSensitiveTypeArgs.builder()
        .sensitiveTypeGroupId("string")
        .patchOperations(SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs.builder()
            .operation("string")
            .selection("string")
            .value(Map.of("string", "string"))
            .build())
        .build());
    
    sensitive_type_group_grouped_sensitive_type_resource = oci.data_safe.SensitiveTypeGroupGroupedSensitiveType("sensitiveTypeGroupGroupedSensitiveTypeResource",
        sensitive_type_group_id="string",
        patch_operations=[{
            "operation": "string",
            "selection": "string",
            "value": {
                "string": "string",
            },
        }])
    
    const sensitiveTypeGroupGroupedSensitiveTypeResource = new oci.datasafe.SensitiveTypeGroupGroupedSensitiveType("sensitiveTypeGroupGroupedSensitiveTypeResource", {
        sensitiveTypeGroupId: "string",
        patchOperations: [{
            operation: "string",
            selection: "string",
            value: {
                string: "string",
            },
        }],
    });
    
    type: oci:DataSafe:SensitiveTypeGroupGroupedSensitiveType
    properties:
        patchOperations:
            - operation: string
              selection: string
              value:
                string: string
        sensitiveTypeGroupId: string
    

    SensitiveTypeGroupGroupedSensitiveType 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 SensitiveTypeGroupGroupedSensitiveType resource accepts the following input properties:

    SensitiveTypeGroupId string
    ** 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
    PatchOperations List<SensitiveTypeGroupGroupedSensitiveTypePatchOperation>
    (Updatable)
    SensitiveTypeGroupId string
    ** 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
    PatchOperations []SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs
    (Updatable)
    sensitiveTypeGroupId String
    ** 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
    patchOperations List<SensitiveTypeGroupGroupedSensitiveTypePatchOperation>
    (Updatable)
    sensitiveTypeGroupId string
    ** 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
    patchOperations SensitiveTypeGroupGroupedSensitiveTypePatchOperation[]
    (Updatable)
    sensitive_type_group_id str
    ** 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
    patch_operations Sequence[datasafe.SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs]
    (Updatable)
    sensitiveTypeGroupId String
    ** 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
    patchOperations List<Property Map>
    (Updatable)

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SensitiveTypeGroupGroupedSensitiveType resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<SensitiveTypeGroupGroupedSensitiveTypeItem>
    List of sensitive type id summary objects present in the sensitive type group.
    Id string
    The provider-assigned unique ID for this managed resource.
    Items []SensitiveTypeGroupGroupedSensitiveTypeItem
    List of sensitive type id summary objects present in the sensitive type group.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<SensitiveTypeGroupGroupedSensitiveTypeItem>
    List of sensitive type id summary objects present in the sensitive type group.
    id string
    The provider-assigned unique ID for this managed resource.
    items SensitiveTypeGroupGroupedSensitiveTypeItem[]
    List of sensitive type id summary objects present in the sensitive type group.
    id str
    The provider-assigned unique ID for this managed resource.
    items Sequence[datasafe.SensitiveTypeGroupGroupedSensitiveTypeItem]
    List of sensitive type id summary objects present in the sensitive type group.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<Property Map>
    List of sensitive type id summary objects present in the sensitive type group.

    Look up Existing SensitiveTypeGroupGroupedSensitiveType Resource

    Get an existing SensitiveTypeGroupGroupedSensitiveType 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?: SensitiveTypeGroupGroupedSensitiveTypeState, opts?: CustomResourceOptions): SensitiveTypeGroupGroupedSensitiveType
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            items: Optional[Sequence[_datasafe.SensitiveTypeGroupGroupedSensitiveTypeItemArgs]] = None,
            patch_operations: Optional[Sequence[_datasafe.SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs]] = None,
            sensitive_type_group_id: Optional[str] = None) -> SensitiveTypeGroupGroupedSensitiveType
    func GetSensitiveTypeGroupGroupedSensitiveType(ctx *Context, name string, id IDInput, state *SensitiveTypeGroupGroupedSensitiveTypeState, opts ...ResourceOption) (*SensitiveTypeGroupGroupedSensitiveType, error)
    public static SensitiveTypeGroupGroupedSensitiveType Get(string name, Input<string> id, SensitiveTypeGroupGroupedSensitiveTypeState? state, CustomResourceOptions? opts = null)
    public static SensitiveTypeGroupGroupedSensitiveType get(String name, Output<String> id, SensitiveTypeGroupGroupedSensitiveTypeState state, CustomResourceOptions options)
    resources:  _:    type: oci:DataSafe:SensitiveTypeGroupGroupedSensitiveType    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:
    Items List<SensitiveTypeGroupGroupedSensitiveTypeItem>
    List of sensitive type id summary objects present in the sensitive type group.
    PatchOperations List<SensitiveTypeGroupGroupedSensitiveTypePatchOperation>
    (Updatable)
    SensitiveTypeGroupId string
    ** 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
    Items []SensitiveTypeGroupGroupedSensitiveTypeItemArgs
    List of sensitive type id summary objects present in the sensitive type group.
    PatchOperations []SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs
    (Updatable)
    SensitiveTypeGroupId string
    ** 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
    items List<SensitiveTypeGroupGroupedSensitiveTypeItem>
    List of sensitive type id summary objects present in the sensitive type group.
    patchOperations List<SensitiveTypeGroupGroupedSensitiveTypePatchOperation>
    (Updatable)
    sensitiveTypeGroupId String
    ** 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
    items SensitiveTypeGroupGroupedSensitiveTypeItem[]
    List of sensitive type id summary objects present in the sensitive type group.
    patchOperations SensitiveTypeGroupGroupedSensitiveTypePatchOperation[]
    (Updatable)
    sensitiveTypeGroupId string
    ** 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
    items Sequence[datasafe.SensitiveTypeGroupGroupedSensitiveTypeItemArgs]
    List of sensitive type id summary objects present in the sensitive type group.
    patch_operations Sequence[datasafe.SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs]
    (Updatable)
    sensitive_type_group_id str
    ** 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
    items List<Property Map>
    List of sensitive type id summary objects present in the sensitive type group.
    patchOperations List<Property Map>
    (Updatable)
    sensitiveTypeGroupId String
    ** 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

    Supporting Types

    SensitiveTypeGroupGroupedSensitiveTypeItem, SensitiveTypeGroupGroupedSensitiveTypeItemArgs

    SensitiveTypeId string
    The OCID of the sensitive type.
    SensitiveTypeId string
    The OCID of the sensitive type.
    sensitiveTypeId String
    The OCID of the sensitive type.
    sensitiveTypeId string
    The OCID of the sensitive type.
    sensitive_type_id str
    The OCID of the sensitive type.
    sensitiveTypeId String
    The OCID of the sensitive type.

    SensitiveTypeGroupGroupedSensitiveTypePatchOperation, SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs

    Operation string
    (Updatable) The operation can be one of these values: INSERT, MERGE, REMOVE
    Selection string
    (Updatable)
    Value Dictionary<string, string>
    (Updatable)
    Operation string
    (Updatable) The operation can be one of these values: INSERT, MERGE, REMOVE
    Selection string
    (Updatable)
    Value map[string]string
    (Updatable)
    operation String
    (Updatable) The operation can be one of these values: INSERT, MERGE, REMOVE
    selection String
    (Updatable)
    value Map<String,String>
    (Updatable)
    operation string
    (Updatable) The operation can be one of these values: INSERT, MERGE, REMOVE
    selection string
    (Updatable)
    value {[key: string]: string}
    (Updatable)
    operation str
    (Updatable) The operation can be one of these values: INSERT, MERGE, REMOVE
    selection str
    (Updatable)
    value Mapping[str, str]
    (Updatable)
    operation String
    (Updatable) The operation can be one of these values: INSERT, MERGE, REMOVE
    selection String
    (Updatable)
    value Map<String>
    (Updatable)

    Import

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

    $ pulumi import oci:DataSafe/sensitiveTypeGroupGroupedSensitiveType:SensitiveTypeGroupGroupedSensitiveType test_sensitive_type_group_grouped_sensitive_type "sensitiveTypeGroups/{sensitiveTypeGroupId}/groupedSensitiveTypes"
    

    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