internet_services_categories
Creates, updates, deletes, gets or lists an internet_services_categories resource.
Overview
| Name | internet_services_categories |
| Type | Resource |
| Id | cloudflare.radar.internet_services_categories |
Fields
The following fields are returned by SELECT queries:
- list
Successful response.
| Name | Datatype | Description |
|---|---|---|
name | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | limit, name, date, format | Retrieves the list of Internet services categories. |
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 |
|---|---|---|
date | array | Filters results by the specified array of dates. |
format | string | Format in which results will be returned. |
limit | integer | Limits the number of objects returned in the response. |
name | array | Array of names used to label the series in the response. |
SELECT examples
- list
Retrieves the list of Internet services categories.
SELECT
name
FROM cloudflare.radar.internet_services_categories
WHERE limit = '{{ limit }}'
AND name = '{{ name }}'
AND date = '{{ date }}'
AND format = '{{ format }}'
;