Skip to main content

requests_quota

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

Overview

Namerequests_quota
TypeResource
Idcloudflare.cloudforce_one.requests_quota

Fields

The following fields are returned by SELECT queries:

Get request quota response.

NameDatatypeDescription
anniversary_datestring (date-time)Anniversary date is when annual quota limit is refreshed. (example: 2022-04-01T05:20:00Z)
quarter_anniversary_datestring (date-time)Quarter anniversary date is when quota limit is refreshed each quarter. (example: 2022-04-01T05:20:00Z)
quotaintegerTokens for the quarter.
remainingintegerTokens remaining for the quarter.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idRetrieves quota usage for Cloudforce One standard requests.

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 quota usage for Cloudforce One standard requests.

SELECT
anniversary_date,
quarter_anniversary_date,
quota,
remaining
FROM cloudflare.cloudforce_one.requests_quota
WHERE account_id = '{{ account_id }}' -- required
;