limits
Creates, updates, deletes, gets or lists a limits resource.
Overview
| Name | limits |
| Type | Resource |
| Id | cloudflare.zero_trust.limits |
Fields
The following fields are returned by SELECT queries:
- list
Limits retrieved successfully.
| Name | Datatype | Description |
|---|---|---|
max_custom_regex_entries | integer (int64) | Maximum number of custom regex entries allowed for the account. |
max_dataset_cells | integer (int64) | Maximum number of dataset cells allowed for the account, across all EDM and CWL datasets. |
max_document_fingerprints | integer (int64) | Maximum number of document fingerprints allowed for the account. |
used_custom_regex_entries | integer (int64) | Number of custom regex entries currently configured for the account. |
used_dataset_cells | integer (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_fingerprints | integer (int64) | Number of document fingerprints currently configured for the account. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
SELECT examples
- list
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
;