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 exampleZeroTrustDlpIntegrationEntry = new cloudflare.ZeroTrustDlpIntegrationEntry("example_zero_trust_dlp_integration_entry", { * accountId: "account_id", * enabled: true, * entryId: "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", * profileId: "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e", * }); * ``` * * ## Import * * ```sh * $ pulumi import cloudflare:index/zeroTrustDlpIntegrationEntry:ZeroTrustDlpIntegrationEntry example '/' * ``` */ export declare class ZeroTrustDlpIntegrationEntry extends pulumi.CustomResource { /** * Get an existing ZeroTrustDlpIntegrationEntry 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?: ZeroTrustDlpIntegrationEntryState, opts?: pulumi.CustomResourceOptions): ZeroTrustDlpIntegrationEntry; /** * Returns true if the given object is an instance of ZeroTrustDlpIntegrationEntry. 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 ZeroTrustDlpIntegrationEntry; 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 entryId: pulumi.Output; readonly name: pulumi.Output; readonly pattern: pulumi.Output; /** * This field is not actually used as the owning profile for a predefined entry is already set * to a predefined profile */ readonly profileId: pulumi.Output; readonly secret: pulumi.Output; /** * Available values: "custom", "predefined", "integration", "exact*data", "document*fingerprint", "wordList". */ readonly type: pulumi.Output; readonly updatedAt: pulumi.Output; readonly variant: pulumi.Output; readonly wordList: pulumi.Output; /** * Create a ZeroTrustDlpIntegrationEntry 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: ZeroTrustDlpIntegrationEntryArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ZeroTrustDlpIntegrationEntry resources. */ export interface ZeroTrustDlpIntegrationEntryState { 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; entryId?: pulumi.Input; name?: pulumi.Input; pattern?: pulumi.Input; /** * This field is not actually used as the owning profile for a predefined entry is already set * to a predefined profile */ profileId?: pulumi.Input; secret?: pulumi.Input; /** * Available values: "custom", "predefined", "integration", "exact*data", "document*fingerprint", "wordList". */ type?: pulumi.Input; updatedAt?: pulumi.Input; variant?: pulumi.Input; wordList?: pulumi.Input; } /** * The set of arguments for constructing a ZeroTrustDlpIntegrationEntry resource. */ export interface ZeroTrustDlpIntegrationEntryArgs { accountId: pulumi.Input; enabled: pulumi.Input; entryId: pulumi.Input; /** * This field is not actually used as the owning profile for a predefined entry is already set * to a predefined profile */ profileId?: pulumi.Input; }