import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as cloudflare from "@pulumi/cloudflare"; * * const exampleZeroTrustDlpEntry = new cloudflare.ZeroTrustDlpEntry("example_zero_trust_dlp_entry", { * accountId: "account_id", * enabled: true, * name: "name", * pattern: { * regex: "regex", * validation: "luhn", * }, * profileId: "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", * }); * ``` * * ## Import * * ```sh * $ pulumi import cloudflare:index/zeroTrustDlpEntry:ZeroTrustDlpEntry example '/' * ``` */ export declare class ZeroTrustDlpEntry extends pulumi.CustomResource { /** * Get an existing ZeroTrustDlpEntry 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?: ZeroTrustDlpEntryState, opts?: pulumi.CustomResourceOptions): ZeroTrustDlpEntry; /** * Returns true if the given object is an instance of ZeroTrustDlpEntry. 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 ZeroTrustDlpEntry; readonly accountId: pulumi.Output; /** * Only applies to custom word lists. * Determines if the words should be matched in a case-sensitive manner * Cannot be set to false if secret is true */ readonly caseSensitive: pulumi.Output; readonly confidence: pulumi.Output; readonly createdAt: pulumi.Output; readonly enabled: pulumi.Output; readonly name: pulumi.Output; readonly pattern: pulumi.Output; readonly profileId: pulumi.Output; readonly secret: pulumi.Output; /** * Available values: "custom", "predefined", "integration". */ readonly type: pulumi.Output; readonly updatedAt: pulumi.Output; readonly wordList: pulumi.Output; /** * Create a ZeroTrustDlpEntry 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: ZeroTrustDlpEntryArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ZeroTrustDlpEntry resources. */ export interface ZeroTrustDlpEntryState { accountId?: pulumi.Input; /** * Only applies to custom word lists. * Determines if the words should be matched in a case-sensitive manner * Cannot be set to false if secret is true */ caseSensitive?: pulumi.Input; confidence?: pulumi.Input; createdAt?: pulumi.Input; enabled?: pulumi.Input; name?: pulumi.Input; pattern?: pulumi.Input; profileId?: pulumi.Input; secret?: pulumi.Input; /** * Available values: "custom", "predefined", "integration". */ type?: pulumi.Input; updatedAt?: pulumi.Input; wordList?: pulumi.Input; } /** * The set of arguments for constructing a ZeroTrustDlpEntry resource. */ export interface ZeroTrustDlpEntryArgs { accountId: pulumi.Input; enabled: pulumi.Input; name: pulumi.Input; pattern: pulumi.Input; profileId: pulumi.Input; /** * Available values: "custom", "predefined", "integration". */ type?: pulumi.Input; }