Skip to main content

internet_services_top

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

Overview

Nameinternet_services_top
TypeResource
Idcloudflare.radar.internet_services_top

Fields

The following fields are returned by SELECT queries:

Successful response.

NameDatatypeDescription
metaobject
top_0array

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectserviceCategory, limit, name, date, formatRetrieves top Internet services based on their rank.

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.
serviceCategoryarrayFilters results by Internet service category.

SELECT examples

Retrieves top Internet services based on their rank.

SELECT
meta,
top_0
FROM cloudflare.radar.internet_services_top
WHERE serviceCategory = '{{ serviceCategory }}'
AND limit = '{{ limit }}'
AND name = '{{ name }}'
AND date = '{{ date }}'
AND format = '{{ format }}'
;