import { APIResource } from "../../../resource.js"; import * as Core from "../../../core.js"; export declare class Limits extends APIResource { /** * Retrieves current DLP usage limits and quotas for the account, including maximum * allowed counts and current usage for custom entries, dataset cells, and document * fingerprints. * * @example * ```ts * const limits = await client.zeroTrust.dlp.limits.list({ * account_id: 'account_id', * }); * ``` */ list(params: LimitListParams, options?: Core.RequestOptions): Core.APIPromise; } export interface LimitListResponse { /** * Maximum number of custom regex entries allowed for the account. */ max_custom_regex_entries: number; /** * Maximum number of dataset cells allowed for the account, across all EDM and CWL * datasets. */ max_dataset_cells: number; /** * Maximum number of document fingerprints allowed for the account. */ max_document_fingerprints: number; /** * Number of custom regex entries currently configured for the account. */ used_custom_regex_entries: number; /** * Number of dataset cells currently configured for the account, across all EDM and * CWL datasets. Document fingerprints do not count towards this limit. */ used_dataset_cells: number; /** * Number of document fingerprints currently configured for the account. */ used_document_fingerprints: number; } export interface LimitListParams { account_id: string; } export declare namespace Limits { export { type LimitListResponse as LimitListResponse, type LimitListParams as LimitListParams }; } //# sourceMappingURL=limits.d.ts.map