Skip to main content

limits

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

Overview

Namelimits
TypeResource
Idcloudflare.workers.limits

Fields

The following fields are returned by SELECT queries:

Account limits retrieved successfully

NameDatatypeDescription
build_minutes_refresh_onstring (date-time)When build minutes will refresh (only for non-paid plans)
has_reached_build_minutes_limitbooleanWhether build minutes limit has been reached (only for non-paid plans)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idRetrieve 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.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.

SELECT examples

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
;