oci.DataSafe.SensitiveTypeGroupGroupedSensitiveType
Explore with Pulumi AI
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:
- Sensitive
Type stringGroup Id - ** 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 List<SensitiveType Group Grouped Sensitive Type Patch Operation> - (Updatable)
- Sensitive
Type stringGroup Id - ** 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 []SensitiveType Group Grouped Sensitive Type Patch Operation Args - (Updatable)
- sensitive
Type StringGroup Id - ** 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 List<SensitiveType Group Grouped Sensitive Type Patch Operation> - (Updatable)
- sensitive
Type stringGroup Id - ** 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 SensitiveType Group Grouped Sensitive Type Patch Operation[] - (Updatable)
- sensitive_
type_ strgroup_ id - ** 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.Sensitive Type Group Grouped Sensitive Type Patch Operation Args] - (Updatable)
- sensitive
Type StringGroup Id - ** 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 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<Sensitive
Type Group Grouped Sensitive Type Item> - 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
[]Sensitive
Type Group Grouped Sensitive Type Item - 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<Sensitive
Type Group Grouped Sensitive Type Item> - 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
Sensitive
Type Group Grouped Sensitive Type Item[] - 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.
Sensitive Type Group Grouped Sensitive Type Item] - 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.
- Items
List<Sensitive
Type Group Grouped Sensitive Type Item> - List of sensitive type id summary objects present in the sensitive type group.
- Patch
Operations List<SensitiveType Group Grouped Sensitive Type Patch Operation> - (Updatable)
- Sensitive
Type stringGroup Id - ** 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
[]Sensitive
Type Group Grouped Sensitive Type Item Args - List of sensitive type id summary objects present in the sensitive type group.
- Patch
Operations []SensitiveType Group Grouped Sensitive Type Patch Operation Args - (Updatable)
- Sensitive
Type stringGroup Id - ** 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<Sensitive
Type Group Grouped Sensitive Type Item> - List of sensitive type id summary objects present in the sensitive type group.
- patch
Operations List<SensitiveType Group Grouped Sensitive Type Patch Operation> - (Updatable)
- sensitive
Type StringGroup Id - ** 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
Sensitive
Type Group Grouped Sensitive Type Item[] - List of sensitive type id summary objects present in the sensitive type group.
- patch
Operations SensitiveType Group Grouped Sensitive Type Patch Operation[] - (Updatable)
- sensitive
Type stringGroup Id - ** 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.
Sensitive Type Group Grouped Sensitive Type Item Args] - List of sensitive type id summary objects present in the sensitive type group.
- patch_
operations Sequence[datasafe.Sensitive Type Group Grouped Sensitive Type Patch Operation Args] - (Updatable)
- sensitive_
type_ strgroup_ id - ** 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.
- patch
Operations List<Property Map> - (Updatable)
- sensitive
Type StringGroup Id - ** 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
- Sensitive
Type stringId - The OCID of the sensitive type.
- Sensitive
Type stringId - The OCID of the sensitive type.
- sensitive
Type StringId - The OCID of the sensitive type.
- sensitive
Type stringId - The OCID of the sensitive type.
- sensitive_
type_ strid - The OCID of the sensitive type.
- sensitive
Type StringId - The OCID of the sensitive type.
SensitiveTypeGroupGroupedSensitiveTypePatchOperation, SensitiveTypeGroupGroupedSensitiveTypePatchOperationArgs
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.