Skip to main content

internet_services_categories

Creates, updates, deletes, gets or lists an internet_services_categories resource.

Overview

Nameinternet_services_categories
TypeResource
Idcloudflare.radar.internet_services_categories

Fields

The following fields are returned by SELECT queries:

Successful response.

NameDatatypeDescription
namestring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlimit, name, date, formatRetrieves 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.

NameDatatypeDescription
datearrayFilters results by the specified array of dates.
formatstringFormat in which results will be returned.
limitintegerLimits the number of objects returned in the response.
namearrayArray of names used to label the series in the response.

SELECT examples

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 }}'
;