Skip to main content

regions

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

Overview

Nameregions
TypeResource
Idcloudflare.addressing.regions

Fields

The following fields are returned by SELECT queries:

List regions response

NameDatatypeDescription
keystringIdentifying key for the region (example: ca)
labelstringHuman-readable text label for the region

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idList all Regional Services regions available for use by this account.

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
account_idstringThe Cloudflare account ID.

SELECT examples

List all Regional Services regions available for use by this account.

SELECT
key,
label
FROM cloudflare.addressing.regions
WHERE account_id = '{{ account_id }}' -- required
;