Skip to main content

limits

Creates, updates, deletes, gets or lists a limits resource.

Overview

Namelimits
TypeResource
Idcloudflare.zero_trust.limits

Fields

The following fields are returned by SELECT queries:

Limits retrieved successfully.

NameDatatypeDescription
max_custom_regex_entriesinteger (int64)Maximum number of custom regex entries allowed for the account.
max_dataset_cellsinteger (int64)Maximum number of dataset cells allowed for the account, across all EDM and CWL datasets.
max_document_fingerprintsinteger (int64)Maximum number of document fingerprints allowed for the account.
used_custom_regex_entriesinteger (int64)Number of custom regex entries currently configured for the account.
used_dataset_cellsinteger (int64)Number of dataset cells currently configured for the account, across all EDM and CWL datasets. Document fingerprints do not count towards this limit.
used_document_fingerprintsinteger (int64)Number of document fingerprints currently configured for the account.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idRetrieves current DLP usage limits and quotas for the account, including maximum allowed counts and current usage for custom entries, dataset cells, and document fingerprints.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.

SELECT examples

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.

SELECT
max_custom_regex_entries,
max_dataset_cells,
max_document_fingerprints,
used_custom_regex_entries,
used_dataset_cells,
used_document_fingerprints
FROM cloudflare.zero_trust.limits
WHERE account_id = '{{ account_id }}' -- required
;