import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * ## Example Usage * * ## Import * * ```sh * $ pulumi import cloudflare:index/zeroTrustDlpCustomProfile:ZeroTrustDlpCustomProfile example '/' * ``` */ export declare class ZeroTrustDlpCustomProfile extends pulumi.CustomResource { /** * Get an existing ZeroTrustDlpCustomProfile 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?: ZeroTrustDlpCustomProfileState, opts?: pulumi.CustomResourceOptions): ZeroTrustDlpCustomProfile; /** * Returns true if the given object is an instance of ZeroTrustDlpCustomProfile. 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 ZeroTrustDlpCustomProfile; readonly accountId: pulumi.Output; readonly aiContextEnabled: pulumi.Output; /** * Related DLP policies will trigger when the match count exceeds the number set. */ readonly allowedMatchCount: pulumi.Output; readonly confidenceThreshold: pulumi.Output; /** * Scan the context of predefined entries to only return matches surrounded by keywords. */ readonly contextAwareness: pulumi.Output; /** * When the profile was created. */ readonly createdAt: pulumi.Output; /** * The description of the profile. */ readonly description: pulumi.Output; readonly entries: pulumi.Output; readonly name: pulumi.Output; readonly ocrEnabled: pulumi.Output; /** * Whether this profile can be accessed by anyone. */ readonly openAccess: pulumi.Output; readonly profiles: pulumi.Output; /** * Entries from other profiles (e.g. pre-defined Cloudflare profiles, or your Microsoft Information Protection profiles). */ readonly sharedEntries: pulumi.Output; /** * Available values: "custom", "predefined", "integration". */ readonly type: pulumi.Output; /** * When the profile was lasted updated. */ readonly updatedAt: pulumi.Output; /** * Create a ZeroTrustDlpCustomProfile 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: ZeroTrustDlpCustomProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ZeroTrustDlpCustomProfile resources. */ export interface ZeroTrustDlpCustomProfileState { accountId?: pulumi.Input; aiContextEnabled?: pulumi.Input; /** * Related DLP policies will trigger when the match count exceeds the number set. */ allowedMatchCount?: pulumi.Input; confidenceThreshold?: pulumi.Input; /** * Scan the context of predefined entries to only return matches surrounded by keywords. */ contextAwareness?: pulumi.Input; /** * When the profile was created. */ createdAt?: pulumi.Input; /** * The description of the profile. */ description?: pulumi.Input; entries?: pulumi.Input[]>; name?: pulumi.Input; ocrEnabled?: pulumi.Input; /** * Whether this profile can be accessed by anyone. */ openAccess?: pulumi.Input; profiles?: pulumi.Input[]>; /** * Entries from other profiles (e.g. pre-defined Cloudflare profiles, or your Microsoft Information Protection profiles). */ sharedEntries?: pulumi.Input[]>; /** * Available values: "custom", "predefined", "integration". */ type?: pulumi.Input; /** * When the profile was lasted updated. */ updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a ZeroTrustDlpCustomProfile resource. */ export interface ZeroTrustDlpCustomProfileArgs { accountId: pulumi.Input; aiContextEnabled?: pulumi.Input; /** * Related DLP policies will trigger when the match count exceeds the number set. */ allowedMatchCount?: pulumi.Input; confidenceThreshold?: pulumi.Input; /** * Scan the context of predefined entries to only return matches surrounded by keywords. */ contextAwareness?: pulumi.Input; /** * The description of the profile. */ description?: pulumi.Input; entries?: pulumi.Input[]>; name?: pulumi.Input; ocrEnabled?: pulumi.Input; profiles?: pulumi.Input[]>; /** * Entries from other profiles (e.g. pre-defined Cloudflare profiles, or your Microsoft Information Protection profiles). */ sharedEntries?: pulumi.Input[]>; }