limits
Creates, updates, deletes, gets or lists a limits resource.
Overview
| Name | limits |
| Type | Resource |
| Id | cloudflare.workers.limits |
Fields
The following fields are returned by SELECT queries:
- list
Account limits retrieved successfully
| Name | Datatype | Description |
|---|---|---|
build_minutes_refresh_on | string (date-time) | When build minutes will refresh (only for non-paid plans) |
has_reached_build_minutes_limit | boolean | Whether build minutes limit has been reached (only for non-paid plans) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | Retrieve account limits and usage information |
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
Retrieve account limits and usage information
SELECT
build_minutes_refresh_on,
has_reached_build_minutes_limit
FROM cloudflare.workers.limits
WHERE account_id = '{{ account_id }}' -- required
;