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,
});
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)
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
})
}
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,
});
});
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());
}
}
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}
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 string
- The unique name of the resource.
- args SensitiveTypesExportArgs
- 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 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 string
- The unique name of the resource.
- args SensitiveTypesExportArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SensitiveTypesExportArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
},
});
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"),
},
})
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());
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"])
const sensitiveTypesExportResource = new oci.datasafe.SensitiveTypesExport("sensitiveTypesExportResource", {
compartmentId: "string",
definedTags: {
string: "string",
},
description: "string",
displayName: "string",
freeformTags: {
string: "string",
},
isIncludeAllSensitiveTypes: false,
sensitiveTypeIdsForExports: ["string"],
});
type: oci:DataSafe:SensitiveTypesExport
properties:
compartmentId: string
definedTags:
string: string
description: string
displayName: string
freeformTags:
string: string
isIncludeAllSensitiveTypes: false
sensitiveTypeIdsForExports:
- string
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:
- Compartment
Id string - (Updatable) The OCID of the compartment where the sensitive types export should be created.
- 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.
- Display
Name string - (Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
- 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"}
- Is
Include boolAll Sensitive Types - 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 List<string>Ids For Exports 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 string - (Updatable) The OCID of the compartment where the sensitive types export should be created.
- 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.
- Display
Name string - (Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
- 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"}
- Is
Include boolAll Sensitive Types - 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 []stringIds For Exports 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 String - (Updatable) The OCID of the compartment where the sensitive types export should be created.
- 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.
- display
Name String - (Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
- 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"}
- is
Include BooleanAll Sensitive Types - 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 List<String>Ids For Exports 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 string - (Updatable) The OCID of the compartment where the sensitive types export should be created.
- {[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.
- display
Name string - (Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
- {[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"}
- is
Include booleanAll Sensitive Types - 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 string[]Ids For Exports 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 str - (Updatable) The OCID of the compartment where the sensitive types export should be created.
- 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.
- 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_ boolall_ sensitive_ types - 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_ Sequence[str]ids_ for_ exports 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 String - (Updatable) The OCID of the compartment where the sensitive types export should be created.
- 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.
- display
Name String - (Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
- 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"}
- is
Include BooleanAll Sensitive Types - 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 List<String>Ids For Exports 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.
- 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"}
- Time
Created string - The date and time the sensitive types export was created, in the format defined by RFC3339.
- Time
Updated 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.
- 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"}
- Time
Created string - The date and time the sensitive types export was created, in the format defined by RFC3339.
- Time
Updated 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.
- 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"}
- time
Created String - The date and time the sensitive types export was created, in the format defined by RFC3339.
- time
Updated 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.
- {[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"}
- time
Created string - The date and time the sensitive types export was created, in the format defined by RFC3339.
- time
Updated 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.
- 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.
- 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"}
- time
Created String - The date and time the sensitive types export was created, in the format defined by RFC3339.
- time
Updated 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
- 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.
- Compartment
Id string - (Updatable) The OCID of the compartment where the sensitive types export should be created.
- 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.
- Display
Name string - (Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
- 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"}
- Is
Include boolAll Sensitive Types - 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 List<string>Ids For Exports 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.
- 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"}
- Time
Created string - The date and time the sensitive types export was created, in the format defined by RFC3339.
- Time
Updated string - The date and time the sensitive types export was last updated, in the format defined by RFC3339.
- Compartment
Id string - (Updatable) The OCID of the compartment where the sensitive types export should be created.
- 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.
- Display
Name string - (Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
- 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"}
- Is
Include boolAll Sensitive Types - 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 []stringIds For Exports 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.
- 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"}
- Time
Created string - The date and time the sensitive types export was created, in the format defined by RFC3339.
- Time
Updated string - The date and time the sensitive types export was last updated, in the format defined by RFC3339.
- compartment
Id String - (Updatable) The OCID of the compartment where the sensitive types export should be created.
- 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.
- display
Name String - (Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
- 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"}
- is
Include BooleanAll Sensitive Types - 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 List<String>Ids For Exports 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.
- 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"}
- time
Created String - The date and time the sensitive types export was created, in the format defined by RFC3339.
- time
Updated String - The date and time the sensitive types export was last updated, in the format defined by RFC3339.
- compartment
Id string - (Updatable) The OCID of the compartment where the sensitive types export should be created.
- {[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.
- display
Name string - (Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
- {[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"}
- is
Include booleanAll Sensitive Types - 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 string[]Ids For Exports 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.
- {[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"}
- time
Created string - The date and time the sensitive types export was created, in the format defined by RFC3339.
- time
Updated 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.
- 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.
- 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_ boolall_ sensitive_ types - 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_ Sequence[str]ids_ for_ exports 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.
- 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.
- compartment
Id String - (Updatable) The OCID of the compartment where the sensitive types export should be created.
- 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.
- display
Name String - (Updatable) The display name of the sensitive types export. The name does not have to be unique, and it's changeable.
- 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"}
- is
Include BooleanAll Sensitive Types - 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 List<String>Ids For Exports 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.
- 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"}
- time
Created String - The date and time the sensitive types export was created, in the format defined by RFC3339.
- time
Updated 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"
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.