import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Sensitive Types Export resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified sensitive types export by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSensitiveTypesExport = oci.datasafe.getSensitiveTypesExport({ * sensitiveTypesExportId: testSensitiveTypesExportOciDataSafeSensitiveTypesExport.id, * }); * ``` */ export declare function getSensitiveTypesExport(args: GetSensitiveTypesExportArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSensitiveTypesExport. */ export interface GetSensitiveTypesExportArgs { /** * The OCID of the sensitive types export. */ sensitiveTypesExportId: string; } /** * A collection of values returned by getSensitiveTypesExport. */ export interface GetSensitiveTypesExportResult { /** * The OCID of the compartment that contains the sensitive types export. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * The description of the sensitive types export. */ readonly description: string; /** * The display name of the sensitive types export. */ readonly displayName: 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The OCID of the sensitive types export. */ readonly id: string; /** * 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. */ readonly isIncludeAllSensitiveTypes: boolean; /** * The OCIDs of the sensitive types used to create sensitive types export. */ readonly sensitiveTypeIdsForExports: string[]; readonly sensitiveTypesExportId: string; /** * The current state of the sensitive types export. */ readonly state: 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"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the sensitive types export was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeCreated: string; /** * The date and time the sensitive types export was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeUpdated: string; } /** * This data source provides details about a specific Sensitive Types Export resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified sensitive types export by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSensitiveTypesExport = oci.datasafe.getSensitiveTypesExport({ * sensitiveTypesExportId: testSensitiveTypesExportOciDataSafeSensitiveTypesExport.id, * }); * ``` */ export declare function getSensitiveTypesExportOutput(args: GetSensitiveTypesExportOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSensitiveTypesExport. */ export interface GetSensitiveTypesExportOutputArgs { /** * The OCID of the sensitive types export. */ sensitiveTypesExportId: pulumi.Input; } //# sourceMappingURL=getSensitiveTypesExport.d.ts.map