import { APIResource } from "../../../../resource.js"; import * as Core from "../../../../core.js"; import * as CustomAPI from "./custom.js"; export declare class Predefined extends APIResource { /** * This is similar to `update_predefined` but only returns entries that are * enabled. This is needed for our terraform API Updates a DLP predefined profile. * Only supports enabling/disabling entries. * * @example * ```ts * const predefinedProfile = * await client.zeroTrust.dlp.profiles.predefined.update( * '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', * { account_id: 'account_id' }, * ); * ``` */ update(profileId: string, params: PredefinedUpdateParams, options?: Core.RequestOptions): Core.APIPromise; /** * This is a no-op as predefined profiles can't be deleted but is needed for our * generated terraform API. * * @example * ```ts * const predefined = * await client.zeroTrust.dlp.profiles.predefined.delete( * '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', * { account_id: 'account_id' }, * ); * ``` */ delete(profileId: string, params: PredefinedDeleteParams, options?: Core.RequestOptions): Core.APIPromise; /** * This is similar to `get_predefined` but only returns entries that are enabled. * This is needed for our terraform API Fetches a predefined DLP profile by id. * * @example * ```ts * const predefinedProfile = * await client.zeroTrust.dlp.profiles.predefined.get( * '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', * { account_id: 'account_id' }, * ); * ``` */ get(profileId: string, params: PredefinedGetParams, options?: Core.RequestOptions): Core.APIPromise; } export interface PredefinedProfile { /** * The id of the predefined profile (uuid). */ id: string; allowed_match_count: number; confidence_threshold: string | null; /** * Entries to enable for this predefined profile. Any entries not provided will be * disabled. */ enabled_entries: Array; /** * @deprecated This field has been deprecated for `enabled_entries`. */ entries: Array; /** * The name of the predefined profile. */ name: string; ai_context_enabled?: boolean; ocr_enabled?: boolean; /** * Whether this profile can be accessed by anyone. */ open_access?: boolean; } export declare namespace PredefinedProfile { interface CustomEntry { id: string; created_at: string; /** * @deprecated */ enabled: boolean; name: string; pattern: CustomAPI.Pattern; type: 'custom'; updated_at: string; description?: string | null; /** * @deprecated */ profile_id?: string | null; } interface CustomPromptTopicEntry { id: string; created_at: string; /** * @deprecated */ enabled: boolean; name: string; type: 'custom_prompt_topic'; updated_at: string; } interface PredefinedEntry { id: string; confidence: PredefinedEntry.Confidence; enabled: boolean; name: string; type: 'predefined'; /** * @deprecated */ profile_id?: string | null; /** * A Predefined AI prompt classification topic entry. */ variant?: PredefinedEntry.UnionMember0 | PredefinedEntry.UnionMember1; } namespace PredefinedEntry { interface Confidence { /** * Indicates whether this entry has AI remote service validation. */ ai_context_available: boolean; /** * Indicates whether this entry has any form of validation that is not an AI remote * service. */ available: boolean; } /** * A Predefined AI prompt classification topic entry. */ interface UnionMember0 { topic_type: 'Intent' | 'Content'; type: 'PromptTopic'; /** * A customer-facing explanation of what this predefined AI prompt topic * represents. */ description?: string | null; } /** * A general predefined entry. */ interface UnionMember1 { type: 'General'; /** * A customer-facing explanation of what this predefined entry represents. */ description?: string | null; } } interface IntegrationEntry { id: string; created_at: string; enabled: boolean; name: string; type: 'integration'; updated_at: string; profile_id?: string | null; } interface ExactDataEntry { id: string; /** * 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 */ case_sensitive: boolean; created_at: string; enabled: boolean; name: string; secret: boolean; type: 'exact_data'; updated_at: string; } interface DocumentFingerprintEntry { id: string; created_at: string; enabled: boolean; name: string; type: 'document_fingerprint'; updated_at: string; } interface WordListEntry { id: string; created_at: string; enabled: boolean; name: string; type: 'word_list'; updated_at: string; word_list: unknown; profile_id?: string | null; } } export type PredefinedDeleteResponse = unknown; export interface PredefinedUpdateParams { /** * Path param */ account_id: string; /** * Body param */ ai_context_enabled?: boolean; /** * Body param */ allowed_match_count?: number | null; /** * Body param */ confidence_threshold?: string | null; /** * Body param */ enabled_entries?: Array | null; /** * @deprecated Body param */ entries?: Array; /** * Body param */ ocr_enabled?: boolean; } export declare namespace PredefinedUpdateParams { interface Entry { id: string; enabled: boolean; } } export interface PredefinedDeleteParams { account_id: string; } export interface PredefinedGetParams { account_id: string; } export declare namespace Predefined { export { type PredefinedProfile as PredefinedProfile, type PredefinedDeleteResponse as PredefinedDeleteResponse, type PredefinedUpdateParams as PredefinedUpdateParams, type PredefinedDeleteParams as PredefinedDeleteParams, type PredefinedGetParams as PredefinedGetParams, }; } //# sourceMappingURL=predefined.d.ts.map