import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Library Masking Format resource in Oracle Cloud Infrastructure Data Safe service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/data-safe/latest/LibraryMaskingFormat * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/datasafe * * Creates a new library masking format. A masking format can have one or more * format entries. The combined output of all the format entries is used for masking. * It provides the flexibility to define a masking format that can generate different * parts of a data value separately and then combine them to get the final data value * for masking. Note that you cannot define masking condition in a library masking format. * * ## Import * * LibraryMaskingFormats can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:DataSafe/libraryMasingFormat:LibraryMasingFormat test_library_masking_format "id" * ``` */ export declare class LibraryMasingFormat extends pulumi.CustomResource { /** * Get an existing LibraryMasingFormat resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: LibraryMasingFormatState, opts?: pulumi.CustomResourceOptions): LibraryMasingFormat; /** * Returns true if the given object is an instance of LibraryMasingFormat. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is LibraryMasingFormat; /** * (Updatable) The OCID of the compartment where the library masking format should be created. */ readonly compartmentId: pulumi.Output; /** * (Updatable) 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: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) The description of the library masking format. */ readonly description: pulumi.Output; /** * (Updatable) The display name of the library masking format. The name does not have to be unique, and it's changeable. */ readonly displayName: pulumi.Output; /** * (Updatable) An array of format entries. The combined output of all the format entries is used for masking. */ readonly formatEntries: pulumi.Output; /** * (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}` */ readonly freeformTags: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) An array of OCIDs of the sensitive types compatible with the library masking format. It helps track the sensitive types for which the library masking format is being created. * * ** 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 */ readonly sensitiveTypeIds: pulumi.Output; /** * Specifies whether the library masking format is user-defined or predefined. */ readonly source: pulumi.Output; /** * The current state of the library masking format. */ readonly state: pulumi.Output; /** * The date and time the library masking format was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339) */ readonly timeCreated: pulumi.Output; /** * The date and time the library masking format was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339) */ readonly timeUpdated: pulumi.Output; /** * Create a LibraryMasingFormat resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: LibraryMasingFormatArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering LibraryMasingFormat resources. */ export interface LibraryMasingFormatState { /** * (Updatable) The OCID of the compartment where the library masking format should be created. */ compartmentId?: pulumi.Input; /** * (Updatable) 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"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) The description of the library masking format. */ description?: pulumi.Input; /** * (Updatable) The display name of the library masking format. The name does not have to be unique, and it's changeable. */ displayName?: pulumi.Input; /** * (Updatable) An array of format entries. The combined output of all the format entries is used for masking. */ formatEntries?: pulumi.Input[] | undefined>; /** * (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) An array of OCIDs of the sensitive types compatible with the library masking format. It helps track the sensitive types for which the library masking format is being created. * * ** 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 */ sensitiveTypeIds?: pulumi.Input[] | undefined>; /** * Specifies whether the library masking format is user-defined or predefined. */ source?: pulumi.Input; /** * The current state of the library masking format. */ state?: pulumi.Input; /** * The date and time the library masking format was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339) */ timeCreated?: pulumi.Input; /** * The date and time the library masking format was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339) */ timeUpdated?: pulumi.Input; } /** * The set of arguments for constructing a LibraryMasingFormat resource. */ export interface LibraryMasingFormatArgs { /** * (Updatable) The OCID of the compartment where the library masking format should be created. */ compartmentId: pulumi.Input; /** * (Updatable) 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"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) The description of the library masking format. */ description?: pulumi.Input; /** * (Updatable) The display name of the library masking format. The name does not have to be unique, and it's changeable. */ displayName?: pulumi.Input; /** * (Updatable) An array of format entries. The combined output of all the format entries is used for masking. */ formatEntries: pulumi.Input[]>; /** * (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) An array of OCIDs of the sensitive types compatible with the library masking format. It helps track the sensitive types for which the library masking format is being created. * * ** 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 */ sensitiveTypeIds?: pulumi.Input[] | undefined>; } //# sourceMappingURL=libraryMasingFormat.d.ts.map