quota
Creates, updates, deletes, gets or lists a quota resource.
Overview
| Name | quota |
| Type | Resource |
| Id | cloudflare.ssl.quota |
Fields
The following fields are returned by SELECT queries:
- list
Get Certificate Pack Quotas response
| Name | Datatype | Description |
|---|---|---|
advanced | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | zone_id | For a given zone, list certificate pack quotas. |
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 |
|---|---|---|
zone_id | string | The Cloudflare zone ID. |
SELECT examples
- list
For a given zone, list certificate pack quotas.
SELECT
advanced
FROM cloudflare.ssl.quota
WHERE zone_id = '{{ zone_id }}' -- required
;