radar_tlds
Creates, updates, deletes, gets or lists a radar_tlds resource.
Overview
| Name | radar_tlds |
| Type | Resource |
| Id | cloudflare.radar.radar_tlds |
Fields
The following fields are returned by SELECT queries:
- list
Successful response.
| Name | Datatype | Description |
|---|---|---|
manager | string | The organization that manages the TLD. |
tld | string | The actual TLD. |
type | string | The type of TLD. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | limit, offset, tldManager, tldType, tld, format | Retrieves a list of TLDs. |
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 |
|---|---|---|
format | string | Format in which results will be returned. |
limit | integer | Limits the number of objects returned in the response. |
offset | integer | Skips the specified number of objects before fetching the results. |
tld | string | Filters results by top-level domain. Specify a comma-separated list of TLDs. |
tldManager | string | Filters results by TLD manager. |
tldType | string | Filters results by TLD type. |
SELECT examples
- list
Retrieves a list of TLDs.
SELECT
manager,
tld,
type
FROM cloudflare.radar.radar_tlds
WHERE limit = '{{ limit }}'
AND offset = '{{ offset }}'
AND tldManager = '{{ tldManager }}'
AND tldType = '{{ tldType }}'
AND tld = '{{ tld }}'
AND format = '{{ format }}'
;