import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Sensitive Type resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified sensitive type. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSensitiveType = oci.datasafe.getSensitiveType({ * sensitiveTypeId: testSensitiveTypeOciDataSafeSensitiveType.id, * }); * ``` */ export declare function getSensitiveType(args: GetSensitiveTypeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSensitiveType. */ export interface GetSensitiveTypeArgs { /** * The OCID of the sensitive type. */ sensitiveTypeId: string; } /** * A collection of values returned by getSensitiveType. */ export interface GetSensitiveTypeResult { /** * A regular expression to be used by data discovery for matching column comments. */ readonly commentPattern: string; /** * The OCID of the compartment that contains the sensitive type. */ readonly compartmentId: string; /** * A regular expression to be used by data discovery for matching column data values. */ readonly dataPattern: string; /** * The OCID of the library masking format that should be used to mask the sensitive columns associated with the sensitive type. */ readonly defaultMaskingFormatId: 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 type. */ readonly description: string; /** * The display name of the sensitive type. */ readonly displayName: string; /** * The entity type. It can be either a sensitive type with regular expressions or a sensitive category used for grouping similar sensitive types. */ readonly entityType: 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 type. */ readonly id: string; /** * Specifies whether the sensitive type is common. Common sensitive types belong to library sensitive types which are frequently used to perform sensitive data discovery. */ readonly isCommon: boolean; /** * A regular expression to be used by data discovery for matching column names. */ readonly namePattern: string; /** * The OCID of the parent sensitive category. */ readonly parentCategoryId: string; /** * The search type indicating how the column name, comment and data patterns should be used by data discovery. [Learn more](https://docs.oracle.com/en/cloud/paas/data-safe/udscs/sensitive-types.html#GUID-1D1AD98E-B93F-4FF2-80AE-CB7D8A14F6CC). */ readonly searchType: string; readonly sensitiveTypeId: string; /** * The short name of the sensitive type. */ readonly shortName: string; /** * Specifies whether the sensitive type is user-defined or predefined. */ readonly source: string; /** * The current state of the sensitive type. */ 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 type was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeCreated: string; /** * The date and time the sensitive type 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 Type resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified sensitive type. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSensitiveType = oci.datasafe.getSensitiveType({ * sensitiveTypeId: testSensitiveTypeOciDataSafeSensitiveType.id, * }); * ``` */ export declare function getSensitiveTypeOutput(args: GetSensitiveTypeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSensitiveType. */ export interface GetSensitiveTypeOutputArgs { /** * The OCID of the sensitive type. */ sensitiveTypeId: pulumi.Input; } //# sourceMappingURL=getSensitiveType.d.ts.map