1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getSensitiveTypesExports
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.DataSafe.getSensitiveTypesExports

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

This data source provides the list of Sensitive Types Exports in Oracle Cloud Infrastructure Data Safe service.

Retrieves a list of all sensitive types export in Data Safe based on the specified query parameters. The ListSensitiveTypesExports operation returns only the sensitive types export in the specified compartmentId.

Example Usage

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

const testSensitiveTypesExports = oci.DataSafe.getSensitiveTypesExports({
    compartmentId: compartmentId,
    accessLevel: sensitiveTypesExportAccessLevel,
    compartmentIdInSubtree: sensitiveTypesExportCompartmentIdInSubtree,
    displayName: sensitiveTypesExportDisplayName,
    sensitiveTypesExportId: testSensitiveTypesExport.id,
    state: sensitiveTypesExportState,
    timeCreatedGreaterThanOrEqualTo: sensitiveTypesExportTimeCreatedGreaterThanOrEqualTo,
    timeCreatedLessThan: sensitiveTypesExportTimeCreatedLessThan,
});
Copy
import pulumi
import pulumi_oci as oci

test_sensitive_types_exports = oci.DataSafe.get_sensitive_types_exports(compartment_id=compartment_id,
    access_level=sensitive_types_export_access_level,
    compartment_id_in_subtree=sensitive_types_export_compartment_id_in_subtree,
    display_name=sensitive_types_export_display_name,
    sensitive_types_export_id=test_sensitive_types_export["id"],
    state=sensitive_types_export_state,
    time_created_greater_than_or_equal_to=sensitive_types_export_time_created_greater_than_or_equal_to,
    time_created_less_than=sensitive_types_export_time_created_less_than)
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.GetSensitiveTypesExports(ctx, &datasafe.GetSensitiveTypesExportsArgs{
			CompartmentId:                   compartmentId,
			AccessLevel:                     pulumi.StringRef(sensitiveTypesExportAccessLevel),
			CompartmentIdInSubtree:          pulumi.BoolRef(sensitiveTypesExportCompartmentIdInSubtree),
			DisplayName:                     pulumi.StringRef(sensitiveTypesExportDisplayName),
			SensitiveTypesExportId:          pulumi.StringRef(testSensitiveTypesExport.Id),
			State:                           pulumi.StringRef(sensitiveTypesExportState),
			TimeCreatedGreaterThanOrEqualTo: pulumi.StringRef(sensitiveTypesExportTimeCreatedGreaterThanOrEqualTo),
			TimeCreatedLessThan:             pulumi.StringRef(sensitiveTypesExportTimeCreatedLessThan),
		}, nil)
		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 testSensitiveTypesExports = Oci.DataSafe.GetSensitiveTypesExports.Invoke(new()
    {
        CompartmentId = compartmentId,
        AccessLevel = sensitiveTypesExportAccessLevel,
        CompartmentIdInSubtree = sensitiveTypesExportCompartmentIdInSubtree,
        DisplayName = sensitiveTypesExportDisplayName,
        SensitiveTypesExportId = testSensitiveTypesExport.Id,
        State = sensitiveTypesExportState,
        TimeCreatedGreaterThanOrEqualTo = sensitiveTypesExportTimeCreatedGreaterThanOrEqualTo,
        TimeCreatedLessThan = sensitiveTypesExportTimeCreatedLessThan,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.DataSafeFunctions;
import com.pulumi.oci.DataSafe.inputs.GetSensitiveTypesExportsArgs;
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) {
        final var testSensitiveTypesExports = DataSafeFunctions.getSensitiveTypesExports(GetSensitiveTypesExportsArgs.builder()
            .compartmentId(compartmentId)
            .accessLevel(sensitiveTypesExportAccessLevel)
            .compartmentIdInSubtree(sensitiveTypesExportCompartmentIdInSubtree)
            .displayName(sensitiveTypesExportDisplayName)
            .sensitiveTypesExportId(testSensitiveTypesExport.id())
            .state(sensitiveTypesExportState)
            .timeCreatedGreaterThanOrEqualTo(sensitiveTypesExportTimeCreatedGreaterThanOrEqualTo)
            .timeCreatedLessThan(sensitiveTypesExportTimeCreatedLessThan)
            .build());

    }
}
Copy
variables:
  testSensitiveTypesExports:
    fn::invoke:
      function: oci:DataSafe:getSensitiveTypesExports
      arguments:
        compartmentId: ${compartmentId}
        accessLevel: ${sensitiveTypesExportAccessLevel}
        compartmentIdInSubtree: ${sensitiveTypesExportCompartmentIdInSubtree}
        displayName: ${sensitiveTypesExportDisplayName}
        sensitiveTypesExportId: ${testSensitiveTypesExport.id}
        state: ${sensitiveTypesExportState}
        timeCreatedGreaterThanOrEqualTo: ${sensitiveTypesExportTimeCreatedGreaterThanOrEqualTo}
        timeCreatedLessThan: ${sensitiveTypesExportTimeCreatedLessThan}
Copy

Using getSensitiveTypesExports

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getSensitiveTypesExports(args: GetSensitiveTypesExportsArgs, opts?: InvokeOptions): Promise<GetSensitiveTypesExportsResult>
function getSensitiveTypesExportsOutput(args: GetSensitiveTypesExportsOutputArgs, opts?: InvokeOptions): Output<GetSensitiveTypesExportsResult>
Copy
def get_sensitive_types_exports(access_level: Optional[str] = None,
                                compartment_id: Optional[str] = None,
                                compartment_id_in_subtree: Optional[bool] = None,
                                display_name: Optional[str] = None,
                                filters: Optional[Sequence[_datasafe.GetSensitiveTypesExportsFilter]] = None,
                                sensitive_types_export_id: Optional[str] = None,
                                state: Optional[str] = None,
                                time_created_greater_than_or_equal_to: Optional[str] = None,
                                time_created_less_than: Optional[str] = None,
                                opts: Optional[InvokeOptions] = None) -> GetSensitiveTypesExportsResult
def get_sensitive_types_exports_output(access_level: Optional[pulumi.Input[str]] = None,
                                compartment_id: Optional[pulumi.Input[str]] = None,
                                compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                                display_name: Optional[pulumi.Input[str]] = None,
                                filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetSensitiveTypesExportsFilterArgs]]]] = None,
                                sensitive_types_export_id: Optional[pulumi.Input[str]] = None,
                                state: Optional[pulumi.Input[str]] = None,
                                time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                                time_created_less_than: Optional[pulumi.Input[str]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetSensitiveTypesExportsResult]
Copy
func GetSensitiveTypesExports(ctx *Context, args *GetSensitiveTypesExportsArgs, opts ...InvokeOption) (*GetSensitiveTypesExportsResult, error)
func GetSensitiveTypesExportsOutput(ctx *Context, args *GetSensitiveTypesExportsOutputArgs, opts ...InvokeOption) GetSensitiveTypesExportsResultOutput
Copy

> Note: This function is named GetSensitiveTypesExports in the Go SDK.

public static class GetSensitiveTypesExports 
{
    public static Task<GetSensitiveTypesExportsResult> InvokeAsync(GetSensitiveTypesExportsArgs args, InvokeOptions? opts = null)
    public static Output<GetSensitiveTypesExportsResult> Invoke(GetSensitiveTypesExportsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetSensitiveTypesExportsResult> getSensitiveTypesExports(GetSensitiveTypesExportsArgs args, InvokeOptions options)
public static Output<GetSensitiveTypesExportsResult> getSensitiveTypesExports(GetSensitiveTypesExportsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DataSafe/getSensitiveTypesExports:getSensitiveTypesExports
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
AccessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
CompartmentIdInSubtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
DisplayName string
A filter to return only resources that match the specified display name.
Filters Changes to this property will trigger replacement. List<GetSensitiveTypesExportsFilter>
SensitiveTypesExportId string
An optional filter to return only resources that match the specified OCID of the sensitive types export resource.
State string
A filter to return only the resources that match the specified lifecycle state.
TimeCreatedGreaterThanOrEqualTo string

A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.

Example: 2016-12-19T16:39:57.600Z

TimeCreatedLessThan string

Search for resources that were created before a specific date. Specifying this parameter corresponding timeCreatedLessThan parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
AccessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
CompartmentIdInSubtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
DisplayName string
A filter to return only resources that match the specified display name.
Filters Changes to this property will trigger replacement. []GetSensitiveTypesExportsFilter
SensitiveTypesExportId string
An optional filter to return only resources that match the specified OCID of the sensitive types export resource.
State string
A filter to return only the resources that match the specified lifecycle state.
TimeCreatedGreaterThanOrEqualTo string

A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.

Example: 2016-12-19T16:39:57.600Z

TimeCreatedLessThan string

Search for resources that were created before a specific date. Specifying this parameter corresponding timeCreatedLessThan parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
accessLevel String
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree Boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
displayName String
A filter to return only resources that match the specified display name.
filters Changes to this property will trigger replacement. List<GetSensitiveTypesExportsFilter>
sensitiveTypesExportId String
An optional filter to return only resources that match the specified OCID of the sensitive types export resource.
state String
A filter to return only the resources that match the specified lifecycle state.
timeCreatedGreaterThanOrEqualTo String

A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.

Example: 2016-12-19T16:39:57.600Z

timeCreatedLessThan String

Search for resources that were created before a specific date. Specifying this parameter corresponding timeCreatedLessThan parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

compartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
accessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
displayName string
A filter to return only resources that match the specified display name.
filters Changes to this property will trigger replacement. GetSensitiveTypesExportsFilter[]
sensitiveTypesExportId string
An optional filter to return only resources that match the specified OCID of the sensitive types export resource.
state string
A filter to return only the resources that match the specified lifecycle state.
timeCreatedGreaterThanOrEqualTo string

A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.

Example: 2016-12-19T16:39:57.600Z

timeCreatedLessThan string

Search for resources that were created before a specific date. Specifying this parameter corresponding timeCreatedLessThan parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

compartment_id This property is required. str
A filter to return only resources that match the specified compartment OCID.
access_level str
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartment_id_in_subtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
display_name str
A filter to return only resources that match the specified display name.
filters Changes to this property will trigger replacement. Sequence[datasafe.GetSensitiveTypesExportsFilter]
sensitive_types_export_id str
An optional filter to return only resources that match the specified OCID of the sensitive types export resource.
state str
A filter to return only the resources that match the specified lifecycle state.
time_created_greater_than_or_equal_to str

A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.

Example: 2016-12-19T16:39:57.600Z

time_created_less_than str

Search for resources that were created before a specific date. Specifying this parameter corresponding timeCreatedLessThan parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
accessLevel String
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree Boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
displayName String
A filter to return only resources that match the specified display name.
filters Changes to this property will trigger replacement. List<Property Map>
sensitiveTypesExportId String
An optional filter to return only resources that match the specified OCID of the sensitive types export resource.
state String
A filter to return only the resources that match the specified lifecycle state.
timeCreatedGreaterThanOrEqualTo String

A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.

Example: 2016-12-19T16:39:57.600Z

timeCreatedLessThan String

Search for resources that were created before a specific date. Specifying this parameter corresponding timeCreatedLessThan parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.

Example: 2016-12-19T16:39:57.600Z

getSensitiveTypesExports Result

The following output properties are available:

CompartmentId string
The OCID of the compartment that contains the sensitive types export.
Id string
The provider-assigned unique ID for this managed resource.
SensitiveTypesExportCollections List<GetSensitiveTypesExportsSensitiveTypesExportCollection>
The list of sensitive_types_export_collection.
AccessLevel string
CompartmentIdInSubtree bool
DisplayName string
The display name of the sensitive types export.
Filters List<GetSensitiveTypesExportsFilter>
SensitiveTypesExportId string
State string
The current state of the sensitive types export.
TimeCreatedGreaterThanOrEqualTo string
TimeCreatedLessThan string
CompartmentId string
The OCID of the compartment that contains the sensitive types export.
Id string
The provider-assigned unique ID for this managed resource.
SensitiveTypesExportCollections []GetSensitiveTypesExportsSensitiveTypesExportCollection
The list of sensitive_types_export_collection.
AccessLevel string
CompartmentIdInSubtree bool
DisplayName string
The display name of the sensitive types export.
Filters []GetSensitiveTypesExportsFilter
SensitiveTypesExportId string
State string
The current state of the sensitive types export.
TimeCreatedGreaterThanOrEqualTo string
TimeCreatedLessThan string
compartmentId String
The OCID of the compartment that contains the sensitive types export.
id String
The provider-assigned unique ID for this managed resource.
sensitiveTypesExportCollections List<GetSensitiveTypesExportsSensitiveTypesExportCollection>
The list of sensitive_types_export_collection.
accessLevel String
compartmentIdInSubtree Boolean
displayName String
The display name of the sensitive types export.
filters List<GetSensitiveTypesExportsFilter>
sensitiveTypesExportId String
state String
The current state of the sensitive types export.
timeCreatedGreaterThanOrEqualTo String
timeCreatedLessThan String
compartmentId string
The OCID of the compartment that contains the sensitive types export.
id string
The provider-assigned unique ID for this managed resource.
sensitiveTypesExportCollections GetSensitiveTypesExportsSensitiveTypesExportCollection[]
The list of sensitive_types_export_collection.
accessLevel string
compartmentIdInSubtree boolean
displayName string
The display name of the sensitive types export.
filters GetSensitiveTypesExportsFilter[]
sensitiveTypesExportId string
state string
The current state of the sensitive types export.
timeCreatedGreaterThanOrEqualTo string
timeCreatedLessThan string
compartment_id str
The OCID of the compartment that contains the sensitive types export.
id str
The provider-assigned unique ID for this managed resource.
sensitive_types_export_collections Sequence[datasafe.GetSensitiveTypesExportsSensitiveTypesExportCollection]
The list of sensitive_types_export_collection.
access_level str
compartment_id_in_subtree bool
display_name str
The display name of the sensitive types export.
filters Sequence[datasafe.GetSensitiveTypesExportsFilter]
sensitive_types_export_id str
state str
The current state of the sensitive types export.
time_created_greater_than_or_equal_to str
time_created_less_than str
compartmentId String
The OCID of the compartment that contains the sensitive types export.
id String
The provider-assigned unique ID for this managed resource.
sensitiveTypesExportCollections List<Property Map>
The list of sensitive_types_export_collection.
accessLevel String
compartmentIdInSubtree Boolean
displayName String
The display name of the sensitive types export.
filters List<Property Map>
sensitiveTypesExportId String
state String
The current state of the sensitive types export.
timeCreatedGreaterThanOrEqualTo String
timeCreatedLessThan String

Supporting Types

GetSensitiveTypesExportsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

GetSensitiveTypesExportsSensitiveTypesExportCollection

items This property is required. List<Property Map>

GetSensitiveTypesExportsSensitiveTypesExportCollectionItem

CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
DefinedTags This property is required. Dictionary<string, string>
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 This property is required. string
The description of the sensitive types export.
DisplayName This property is required. string
A filter to return only resources that match the specified display name.
FreeformTags This property is required. Dictionary<string, string>
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"}
Id This property is required. string
The OCID of the sensitive types export.
IsIncludeAllSensitiveTypes This property is required. 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 exported.
SensitiveTypeIdsForExports This property is required. List<string>
The OCIDs of the sensitive types used to create sensitive types export.
State This property is required. string
A filter to return only the resources that match the specified lifecycle state.
SystemTags This property is required. 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 This property is required. string
The date and time the sensitive types export was created, in the format defined by RFC3339.
TimeUpdated This property is required. string
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
DefinedTags This property is required. map[string]string
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 This property is required. string
The description of the sensitive types export.
DisplayName This property is required. string
A filter to return only resources that match the specified display name.
FreeformTags This property is required. map[string]string
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"}
Id This property is required. string
The OCID of the sensitive types export.
IsIncludeAllSensitiveTypes This property is required. 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 exported.
SensitiveTypeIdsForExports This property is required. []string
The OCIDs of the sensitive types used to create sensitive types export.
State This property is required. string
A filter to return only the resources that match the specified lifecycle state.
SystemTags This property is required. 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 This property is required. string
The date and time the sensitive types export was created, in the format defined by RFC3339.
TimeUpdated This property is required. string
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
definedTags This property is required. Map<String,String>
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 This property is required. String
The description of the sensitive types export.
displayName This property is required. String
A filter to return only resources that match the specified display name.
freeformTags This property is required. Map<String,String>
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"}
id This property is required. String
The OCID of the sensitive types export.
isIncludeAllSensitiveTypes This property is required. 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 exported.
sensitiveTypeIdsForExports This property is required. List<String>
The OCIDs of the sensitive types used to create sensitive types export.
state This property is required. String
A filter to return only the resources that match the specified lifecycle state.
systemTags This property is required. 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 This property is required. String
The date and time the sensitive types export was created, in the format defined by RFC3339.
timeUpdated This property is required. String
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
compartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
definedTags This property is required. {[key: string]: string}
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 This property is required. string
The description of the sensitive types export.
displayName This property is required. string
A filter to return only resources that match the specified display name.
freeformTags This property is required. {[key: string]: string}
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"}
id This property is required. string
The OCID of the sensitive types export.
isIncludeAllSensitiveTypes This property is required. 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 exported.
sensitiveTypeIdsForExports This property is required. string[]
The OCIDs of the sensitive types used to create sensitive types export.
state This property is required. string
A filter to return only the resources that match the specified lifecycle state.
systemTags This property is required. {[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 This property is required. string
The date and time the sensitive types export was created, in the format defined by RFC3339.
timeUpdated This property is required. string
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
compartment_id This property is required. str
A filter to return only resources that match the specified compartment OCID.
defined_tags This property is required. Mapping[str, str]
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 This property is required. str
The description of the sensitive types export.
display_name This property is required. str
A filter to return only resources that match the specified display name.
freeform_tags This property is required. Mapping[str, str]
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"}
id This property is required. str
The OCID of the sensitive types export.
is_include_all_sensitive_types This property is required. 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 exported.
sensitive_type_ids_for_exports This property is required. Sequence[str]
The OCIDs of the sensitive types used to create sensitive types export.
state This property is required. str
A filter to return only the resources that match the specified lifecycle state.
system_tags This property is required. 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 This property is required. str
The date and time the sensitive types export was created, in the format defined by RFC3339.
time_updated This property is required. str
The date and time the sensitive types export was last updated, in the format defined by RFC3339.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
definedTags This property is required. Map<String>
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 This property is required. String
The description of the sensitive types export.
displayName This property is required. String
A filter to return only resources that match the specified display name.
freeformTags This property is required. Map<String>
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"}
id This property is required. String
The OCID of the sensitive types export.
isIncludeAllSensitiveTypes This property is required. 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 exported.
sensitiveTypeIdsForExports This property is required. List<String>
The OCIDs of the sensitive types used to create sensitive types export.
state This property is required. String
A filter to return only the resources that match the specified lifecycle state.
systemTags This property is required. 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 This property is required. String
The date and time the sensitive types export was created, in the format defined by RFC3339.
timeUpdated This property is required. String
The date and time the sensitive types export was last updated, in the format defined by RFC3339.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi