import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Library Masking Format resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified library masking format. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLibraryMaskingFormat = oci.datasafe.getLibraryMaskingFormat({ * libraryMaskingFormatId: testLibraryMaskingFormatOciDataSafeLibraryMaskingFormat.id, * }); * ``` */ export declare function getLibraryMaskingFormat(args: GetLibraryMaskingFormatArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLibraryMaskingFormat. */ export interface GetLibraryMaskingFormatArgs { /** * The OCID of the library masking format. */ libraryMaskingFormatId: string; } /** * A collection of values returned by getLibraryMaskingFormat. */ export interface GetLibraryMaskingFormatResult { /** * The OCID of the compartment that contains the library masking format. */ 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 format entry. */ readonly description: string; /** * The display name of the library masking format. */ readonly displayName: string; /** * An array of format entries. The combined output of all the format entries is used for masking. */ readonly formatEntries: outputs.DataSafe.GetLibraryMaskingFormatFormatEntry[]; /** * 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 library masking format. */ readonly id: string; /** * The OCID of the library masking format. */ readonly libraryMaskingFormatId: string; /** * An array of OCIDs of the sensitive types compatible with the library masking format. */ readonly sensitiveTypeIds: string[]; /** * Specifies whether the library masking format is user-defined or predefined. */ readonly source: string; /** * The current state of the library masking format. */ readonly state: string; /** * The date and time the library masking format was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339) */ readonly timeCreated: string; /** * The date and time the library masking format was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339) */ readonly timeUpdated: string; } /** * This data source provides details about a specific Library Masking Format resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified library masking format. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLibraryMaskingFormat = oci.datasafe.getLibraryMaskingFormat({ * libraryMaskingFormatId: testLibraryMaskingFormatOciDataSafeLibraryMaskingFormat.id, * }); * ``` */ export declare function getLibraryMaskingFormatOutput(args: GetLibraryMaskingFormatOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLibraryMaskingFormat. */ export interface GetLibraryMaskingFormatOutputArgs { /** * The OCID of the library masking format. */ libraryMaskingFormatId: pulumi.Input; } //# sourceMappingURL=getLibraryMaskingFormat.d.ts.map