1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. SensitiveTypesExport
Oracle Cloud Infrastructure v2.29.0 published on Wednesday, Apr 9, 2025 by Pulumi

oci.DataSafe.SensitiveTypesExport

Explore with Pulumi AI

This resource provides the Sensitive Types Export resource in Oracle Cloud Infrastructure Data Safe service.

Generates a downloadable file corresponding to the specified list of sensitive types. It’s a prerequisite for the DownloadSensitiveTypesExport operation. Use this endpoint to generate a sensitive Types Export file and then use DownloadSensitiveTypesExport to download the generated file.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testSensitiveTypesExport = new oci.datasafe.SensitiveTypesExport("test_sensitive_types_export", {
    compartmentId: compartmentId,
    definedTags: {
        "Operations.CostCenter": "42",
    },
    description: sensitiveTypesExportDescription,
    displayName: sensitiveTypesExportDisplayName,
    freeformTags: {
        Department: "Finance",
    },
    isIncludeAllSensitiveTypes: sensitiveTypesExportIsIncludeAllSensitiveTypes,
    sensitiveTypeIdsForExports: sensitiveTypesExportSensitiveTypeIdsForExport,
});
Copy
import pulumi
import pulumi_oci as oci

test_sensitive_types_export = oci.data_safe.SensitiveTypesExport("test_sensitive_types_export",
    compartment_id=compartment_id,
    defined_tags={
        "Operations.CostCenter": "42",
    },
    description=sensitive_types_export_description,
    display_name=sensitive_types_export_display_name,
    freeform_tags={
        "Department": "Finance",
    },
    is_include_all_sensitive_types=sensitive_types_export_is_include_all_sensitive_types,
    sensitive_type_ids_for_exports=sensitive_types_export_sensitive_type_ids_for_export)
Copy
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.NewSensitiveTypesExport(ctx, "test_sensitive_types_export", &datasafe.SensitiveTypesExportArgs{
			CompartmentId: pulumi.Any(compartmentId),
			DefinedTags: pulumi.StringMap{
				"Operations.CostCenter": pulumi.String("42"),
			},
			Description: pulumi.Any(sensitiveTypesExportDescription),
			DisplayName: pulumi.Any(sensitiveTypesExportDisplayName),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
			IsIncludeAllSensitiveTypes: pulumi.Any(sensitiveTypesExportIsIncludeAllSensitiveTypes),
			SensitiveTypeIdsForExports: pulumi.Any(sensitiveTypesExportSensitiveTypeIdsForExport),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testSensitiveTypesExport = new Oci.DataSafe.SensitiveTypesExport("test_sensitive_types_export", new()
    {
        CompartmentId = compartmentId,
        DefinedTags = 
        {
            { "Operations.CostCenter", "42" },
        },
        Description = sensitiveTypesExportDescription,
        DisplayName = sensitiveTypesExportDisplayName,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        IsIncludeAllSensitiveTypes = sensitiveTypesExportIsIncludeAllSensitiveTypes,
        SensitiveTypeIdsForExports = sensitiveTypesExportSensitiveTypeIdsForExport,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.SensitiveTypesExport;
import com.pulumi.oci.DataSafe.SensitiveTypesExportArgs;
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 testSensitiveTypesExport = new SensitiveTypesExport("testSensitiveTypesExport", SensitiveTypesExportArgs.builder()
            .compartmentId(compartmentId)
            .definedTags(Map.of("Operations.CostCenter", "42"))
            .description(sensitiveTypesExportDescription)
            .displayName(sensitiveTypesExportDisplayName)
            .freeformTags(Map.of("Department", "Finance"))
            .isIncludeAllSensitiveTypes(sensitiveTypesExportIsIncludeAllSensitiveTypes)
            .sensitiveTypeIdsForExports(sensitiveTypesExportSensitiveTypeIdsForExport)
            .build());

    }
}
Copy
resources:
  testSensitiveTypesExport:
    type: oci:DataSafe:SensitiveTypesExport
    name: test_sensitive_types_export
    properties:
      compartmentId: ${compartmentId}
      definedTags:
        Operations.CostCenter: '42'
      description: ${sensitiveTypesExportDescription}
      displayName: ${sensitiveTypesExportDisplayName}
      freeformTags:
        Department: Finance
      isIncludeAllSensitiveTypes: ${sensitiveTypesExportIsIncludeAllSensitiveTypes}
      sensitiveTypeIdsForExports: ${sensitiveTypesExportSensitiveTypeIdsForExport}
Copy

Create SensitiveTypesExport Resource

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

Constructor syntax

new SensitiveTypesExport(name: string, args: SensitiveTypesExportArgs, opts?: CustomResourceOptions);
@overload
def SensitiveTypesExport(resource_name: str,
                         args: SensitiveTypesExportArgs,
                         opts: Optional[ResourceOptions] = None)

@overload
def SensitiveTypesExport(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,
                         is_include_all_sensitive_types: Optional[bool] = None,
                         sensitive_type_ids_for_exports: Optional[Sequence[str]] = None)
func NewSensitiveTypesExport(ctx *Context, name string, args SensitiveTypesExportArgs, opts ...ResourceOption) (*SensitiveTypesExport, error)
public SensitiveTypesExport(string name, SensitiveTypesExportArgs args, CustomResourceOptions? opts = null)
public SensitiveTypesExport(String name, SensitiveTypesExportArgs args)
public SensitiveTypesExport(String name, SensitiveTypesExportArgs args, CustomResourceOptions options)
type: oci:DataSafe:SensitiveTypesExport
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SensitiveTypesExportArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SensitiveTypesExportArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SensitiveTypesExportArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SensitiveTypesExportArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SensitiveTypesExportArgs
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 sensitiveTypesExportResource = new Oci.DataSafe.SensitiveTypesExport("sensitiveTypesExportResource", new()
{
    CompartmentId = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    DisplayName = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    IsIncludeAllSensitiveTypes = false,
    SensitiveTypeIdsForExports = new[]
    {
        "string",
    },
});
Copy
example, err := DataSafe.NewSensitiveTypesExport(ctx, "sensitiveTypesExportResource", &DataSafe.SensitiveTypesExportArgs{
	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"),
	},
	IsIncludeAllSensitiveTypes: pulumi.Bool(false),
	SensitiveTypeIdsForExports: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var sensitiveTypesExportResource = new SensitiveTypesExport("sensitiveTypesExportResource", SensitiveTypesExportArgs.builder()
    .compartmentId("string")
    .definedTags(Map.of("string", "string"))
    .description("string")
    .displayName("string")
    .freeformTags(Map.of("string", "string"))
    .isIncludeAllSensitiveTypes(false)
    .sensitiveTypeIdsForExports("string")
    .build());
Copy
sensitive_types_export_resource = oci.data_safe.SensitiveTypesExport("sensitiveTypesExportResource",
    compartment_id="string",
    defined_tags={
        "string": "string",
    },
    description="string",
    display_name="string",
    freeform_tags={
        "string": "string",
    },
    is_include_all_sensitive_types=False,
    sensitive_type_ids_for_exports=["string"])
Copy
const sensitiveTypesExportResource = new oci.datasafe.SensitiveTypesExport("sensitiveTypesExportResource", {
    compartmentId: "string",
    definedTags: {
        string: "string",
    },
    description: "string",
    displayName: "string",
    freeformTags: {
        string: "string",
    },
    isIncludeAllSensitiveTypes: false,
    sensitiveTypeIdsForExports: ["string"],
});
Copy
type: oci:DataSafe:SensitiveTypesExport
properties:
    compartmentId: string
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
    isIncludeAllSensitiveTypes: false
    sensitiveTypeIdsForExports:
        - string
Copy

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

CompartmentId This property is required. string
(Updatable) The OCID of the compartment where the sensitive types export 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 types export.
DisplayName string
(Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
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"}
IsIncludeAllSensitiveTypes Changes to this property will trigger replacement. bool
Indicates if all the existing user-defined sensitive types are used for export. If it's set to true, the sensitiveTypeIdsForExport attribute is ignored and all user-defined sensitive types are used.
SensitiveTypeIdsForExports Changes to this property will trigger replacement. List<string>

The OCIDs of the sensitive types used to create sensitive types export.

** 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 This property is required. string
(Updatable) The OCID of the compartment where the sensitive types export 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 types export.
DisplayName string
(Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
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"}
IsIncludeAllSensitiveTypes Changes to this property will trigger replacement. bool
Indicates if all the existing user-defined sensitive types are used for export. If it's set to true, the sensitiveTypeIdsForExport attribute is ignored and all user-defined sensitive types are used.
SensitiveTypeIdsForExports Changes to this property will trigger replacement. []string

The OCIDs of the sensitive types used to create sensitive types export.

** 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 This property is required. String
(Updatable) The OCID of the compartment where the sensitive types export 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 types export.
displayName String
(Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
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"}
isIncludeAllSensitiveTypes Changes to this property will trigger replacement. Boolean
Indicates if all the existing user-defined sensitive types are used for export. If it's set to true, the sensitiveTypeIdsForExport attribute is ignored and all user-defined sensitive types are used.
sensitiveTypeIdsForExports Changes to this property will trigger replacement. List<String>

The OCIDs of the sensitive types used to create sensitive types export.

** 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 This property is required. string
(Updatable) The OCID of the compartment where the sensitive types export 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 types export.
displayName string
(Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
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"}
isIncludeAllSensitiveTypes Changes to this property will trigger replacement. boolean
Indicates if all the existing user-defined sensitive types are used for export. If it's set to true, the sensitiveTypeIdsForExport attribute is ignored and all user-defined sensitive types are used.
sensitiveTypeIdsForExports Changes to this property will trigger replacement. string[]

The OCIDs of the sensitive types used to create sensitive types export.

** 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 This property is required. str
(Updatable) The OCID of the compartment where the sensitive types export 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 types export.
display_name str
(Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
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"}
is_include_all_sensitive_types Changes to this property will trigger replacement. bool
Indicates if all the existing user-defined sensitive types are used for export. If it's set to true, the sensitiveTypeIdsForExport attribute is ignored and all user-defined sensitive types are used.
sensitive_type_ids_for_exports Changes to this property will trigger replacement. Sequence[str]

The OCIDs of the sensitive types used to create sensitive types export.

** 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 This property is required. String
(Updatable) The OCID of the compartment where the sensitive types export 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 types export.
displayName String
(Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
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"}
isIncludeAllSensitiveTypes Changes to this property will trigger replacement. Boolean
Indicates if all the existing user-defined sensitive types are used for export. If it's set to true, the sensitiveTypeIdsForExport attribute is ignored and all user-defined sensitive types are used.
sensitiveTypeIdsForExports Changes to this property will trigger replacement. List<String>

The OCIDs of the sensitive types used to create sensitive types export.

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

Id string
The provider-assigned unique ID for this managed resource.
State string
The current state of the sensitive types export.
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 types export was created, in the format defined by RFC3339.
TimeUpdated string
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
Id string
The provider-assigned unique ID for this managed resource.
State string
The current state of the sensitive types export.
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 types export was created, in the format defined by RFC3339.
TimeUpdated string
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
id String
The provider-assigned unique ID for this managed resource.
state String
The current state of the sensitive types export.
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 types export was created, in the format defined by RFC3339.
timeUpdated String
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
id string
The provider-assigned unique ID for this managed resource.
state string
The current state of the sensitive types export.
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 types export was created, in the format defined by RFC3339.
timeUpdated string
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
id str
The provider-assigned unique ID for this managed resource.
state str
The current state of the sensitive types export.
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 types export was created, in the format defined by RFC3339.
time_updated str
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
id String
The provider-assigned unique ID for this managed resource.
state String
The current state of the sensitive types export.
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 types export was created, in the format defined by RFC3339.
timeUpdated String
The date and time the sensitive types export was last updated, in the format defined by RFC3339.

Look up Existing SensitiveTypesExport Resource

Get an existing SensitiveTypesExport 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?: SensitiveTypesExportState, opts?: CustomResourceOptions): SensitiveTypesExport
@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,
        is_include_all_sensitive_types: Optional[bool] = None,
        sensitive_type_ids_for_exports: Optional[Sequence[str]] = None,
        state: Optional[str] = None,
        system_tags: Optional[Mapping[str, str]] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> SensitiveTypesExport
func GetSensitiveTypesExport(ctx *Context, name string, id IDInput, state *SensitiveTypesExportState, opts ...ResourceOption) (*SensitiveTypesExport, error)
public static SensitiveTypesExport Get(string name, Input<string> id, SensitiveTypesExportState? state, CustomResourceOptions? opts = null)
public static SensitiveTypesExport get(String name, Output<String> id, SensitiveTypesExportState state, CustomResourceOptions options)
resources:  _:    type: oci:DataSafe:SensitiveTypesExport    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 types export 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 types export.
DisplayName string
(Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
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"}
IsIncludeAllSensitiveTypes Changes to this property will trigger replacement. bool
Indicates if all the existing user-defined sensitive types are used for export. If it's set to true, the sensitiveTypeIdsForExport attribute is ignored and all user-defined sensitive types are used.
SensitiveTypeIdsForExports Changes to this property will trigger replacement. List<string>

The OCIDs of the sensitive types used to create sensitive types export.

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

State string
The current state of the sensitive types export.
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 types export was created, in the format defined by RFC3339.
TimeUpdated string
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
CompartmentId string
(Updatable) The OCID of the compartment where the sensitive types export 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 types export.
DisplayName string
(Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
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"}
IsIncludeAllSensitiveTypes Changes to this property will trigger replacement. bool
Indicates if all the existing user-defined sensitive types are used for export. If it's set to true, the sensitiveTypeIdsForExport attribute is ignored and all user-defined sensitive types are used.
SensitiveTypeIdsForExports Changes to this property will trigger replacement. []string

The OCIDs of the sensitive types used to create sensitive types export.

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

State string
The current state of the sensitive types export.
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 types export was created, in the format defined by RFC3339.
TimeUpdated string
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
compartmentId String
(Updatable) The OCID of the compartment where the sensitive types export 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 types export.
displayName String
(Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
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"}
isIncludeAllSensitiveTypes Changes to this property will trigger replacement. Boolean
Indicates if all the existing user-defined sensitive types are used for export. If it's set to true, the sensitiveTypeIdsForExport attribute is ignored and all user-defined sensitive types are used.
sensitiveTypeIdsForExports Changes to this property will trigger replacement. List<String>

The OCIDs of the sensitive types used to create sensitive types export.

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

state String
The current state of the sensitive types export.
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 types export was created, in the format defined by RFC3339.
timeUpdated String
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
compartmentId string
(Updatable) The OCID of the compartment where the sensitive types export 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 types export.
displayName string
(Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
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"}
isIncludeAllSensitiveTypes Changes to this property will trigger replacement. boolean
Indicates if all the existing user-defined sensitive types are used for export. If it's set to true, the sensitiveTypeIdsForExport attribute is ignored and all user-defined sensitive types are used.
sensitiveTypeIdsForExports Changes to this property will trigger replacement. string[]

The OCIDs of the sensitive types used to create sensitive types export.

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

state string
The current state of the sensitive types export.
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 types export was created, in the format defined by RFC3339.
timeUpdated string
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
compartment_id str
(Updatable) The OCID of the compartment where the sensitive types export 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 types export.
display_name str
(Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
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"}
is_include_all_sensitive_types Changes to this property will trigger replacement. bool
Indicates if all the existing user-defined sensitive types are used for export. If it's set to true, the sensitiveTypeIdsForExport attribute is ignored and all user-defined sensitive types are used.
sensitive_type_ids_for_exports Changes to this property will trigger replacement. Sequence[str]

The OCIDs of the sensitive types used to create sensitive types export.

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

state str
The current state of the sensitive types export.
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 types export was created, in the format defined by RFC3339.
time_updated str
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
compartmentId String
(Updatable) The OCID of the compartment where the sensitive types export 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 types export.
displayName String
(Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
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"}
isIncludeAllSensitiveTypes Changes to this property will trigger replacement. Boolean
Indicates if all the existing user-defined sensitive types are used for export. If it's set to true, the sensitiveTypeIdsForExport attribute is ignored and all user-defined sensitive types are used.
sensitiveTypeIdsForExports Changes to this property will trigger replacement. List<String>

The OCIDs of the sensitive types used to create sensitive types export.

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

state String
The current state of the sensitive types export.
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 types export was created, in the format defined by RFC3339.
timeUpdated String
The date and time the sensitive types export was last updated, in the format defined by RFC3339.

Import

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

$ pulumi import oci:DataSafe/sensitiveTypesExport:SensitiveTypesExport test_sensitive_types_export "id"
Copy

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.