Skip to main content

speed_api_pages

Creates, updates, deletes, gets or lists a speed_api_pages resource.

Overview

Namespeed_api_pages
TypeResource
Idcloudflare.speed.speed_api_pages

Fields

The following fields are returned by SELECT queries:

List of pages.

NameDatatypeDescription
regionobjectA test region with a label.
scheduleFrequencystringThe frequency of the test. (DAILY, WEEKLY) (example: DAILY)
testsarray
urlstringA URL. (example: example.com)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_zoneselectzone_idLists all webpages which have been tested.

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
zone_idstringThe Cloudflare zone ID.

SELECT examples

Lists all webpages which have been tested.

SELECT
region,
scheduleFrequency,
tests,
url
FROM cloudflare.speed.speed_api_pages
WHERE zone_id = '{{ zone_id }}' -- required
;