import { APIResource } from "../../../../resource.js"; import * as Core from "../../../../core.js"; import * as CustomAPI from "../profiles/custom.js"; import { SinglePage } from "../../../../pagination.js"; export declare class Integration extends APIResource { /** * Integration entries can't be created, this will update an existing integration * entry This is needed for our generated terraform API * * @example * ```ts * const integration = * await client.zeroTrust.dlp.entries.integration.create({ * account_id: 'account_id', * enabled: true, * entry_id: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', * }); * ``` */ create(params: IntegrationCreateParams, options?: Core.RequestOptions): Core.APIPromise; /** * Updates a DLP entry. * * @example * ```ts * const integration = * await client.zeroTrust.dlp.entries.integration.update( * '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', * { account_id: 'account_id', enabled: true }, * ); * ``` */ update(entryId: string, params: IntegrationUpdateParams, options?: Core.RequestOptions): Core.APIPromise; /** * Lists all DLP entries in an account. * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const integrationListResponse of client.zeroTrust.dlp.entries.integration.list( * { account_id: 'account_id' }, * )) { * // ... * } * ``` */ list(params: IntegrationListParams, options?: Core.RequestOptions): Core.PagePromise; /** * This is a no-op as integration entires can't be deleted but is needed for our * generated terraform API * * @example * ```ts * const integration = * await client.zeroTrust.dlp.entries.integration.delete( * '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', * { account_id: 'account_id' }, * ); * ``` */ delete(entryId: string, params: IntegrationDeleteParams, options?: Core.RequestOptions): Core.APIPromise; /** * Fetches a DLP entry by ID. * * @example * ```ts * const integration = * await client.zeroTrust.dlp.entries.integration.get( * '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', * { account_id: 'account_id' }, * ); * ``` */ get(entryId: string, params: IntegrationGetParams, options?: Core.RequestOptions): Core.APIPromise; } export declare class IntegrationListResponsesSinglePage extends SinglePage { } export interface IntegrationCreateResponse { id: string; created_at: string; enabled: boolean; name: string; updated_at: string; profile_id?: string | null; } export interface IntegrationUpdateResponse { id: string; created_at: string; enabled: boolean; name: string; updated_at: string; profile_id?: string | null; } export type IntegrationListResponse = IntegrationListResponse.CustomEntry | IntegrationListResponse.PredefinedEntry | IntegrationListResponse.IntegrationEntry | IntegrationListResponse.ExactDataEntry | IntegrationListResponse.DocumentFingerprintEntry | IntegrationListResponse.WordListEntry; export declare namespace IntegrationListResponse { interface CustomEntry { id: string; created_at: string; enabled: boolean; name: string; pattern: CustomAPI.Pattern; type: 'custom'; updated_at: string; profile_id?: string | null; } interface PredefinedEntry { id: string; confidence: PredefinedEntry.Confidence; enabled: boolean; name: string; type: 'predefined'; profile_id?: string | null; variant?: PredefinedEntry.Variant; } 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; } interface Variant { topic_type: 'Intent' | 'Content'; type: 'PromptTopic'; 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 IntegrationDeleteResponse = unknown; export type IntegrationGetResponse = IntegrationGetResponse.CustomEntry | IntegrationGetResponse.PredefinedEntry | IntegrationGetResponse.IntegrationEntry | IntegrationGetResponse.ExactDataEntry | IntegrationGetResponse.DocumentFingerprintEntry | IntegrationGetResponse.WordListEntry; export declare namespace IntegrationGetResponse { interface CustomEntry { id: string; created_at: string; enabled: boolean; name: string; pattern: CustomAPI.Pattern; type: 'custom'; updated_at: string; profile_id?: string | null; } interface PredefinedEntry { id: string; confidence: PredefinedEntry.Confidence; enabled: boolean; name: string; type: 'predefined'; profile_id?: string | null; variant?: PredefinedEntry.Variant; } 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; } interface Variant { topic_type: 'Intent' | 'Content'; type: 'PromptTopic'; 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 interface IntegrationCreateParams { /** * Path param: */ account_id: string; /** * Body param: */ enabled: boolean; /** * Body param: */ entry_id: string; /** * Body param: This field is not actually used as the owning profile for a * predefined entry is already set to a predefined profile */ profile_id?: string | null; } export interface IntegrationUpdateParams { /** * Path param: */ account_id: string; /** * Body param: */ enabled: boolean; } export interface IntegrationListParams { account_id: string; } export interface IntegrationDeleteParams { account_id: string; } export interface IntegrationGetParams { account_id: string; } export declare namespace Integration { export { type IntegrationCreateResponse as IntegrationCreateResponse, type IntegrationUpdateResponse as IntegrationUpdateResponse, type IntegrationListResponse as IntegrationListResponse, type IntegrationDeleteResponse as IntegrationDeleteResponse, type IntegrationGetResponse as IntegrationGetResponse, IntegrationListResponsesSinglePage as IntegrationListResponsesSinglePage, type IntegrationCreateParams as IntegrationCreateParams, type IntegrationUpdateParams as IntegrationUpdateParams, type IntegrationListParams as IntegrationListParams, type IntegrationDeleteParams as IntegrationDeleteParams, type IntegrationGetParams as IntegrationGetParams, }; } //# sourceMappingURL=integration.d.ts.map