Skip to main content

asns_as_set

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

Overview

Nameasns_as_set
TypeResource
Idcloudflare.radar.asns_as_set

Fields

The following fields are returned by SELECT queries:

Successful response.

NameDatatypeDescription
as_setsarray
pathsarrayPaths from the AS-SET that include the given AS to its upstreams recursively

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectasnformatRetrieves Internet Routing Registry AS-SETs that an AS is a member of.

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
asnintegerRetrieves all AS-SETs that the given AS is a member of.
formatstringFormat in which results will be returned.

SELECT examples

Retrieves Internet Routing Registry AS-SETs that an AS is a member of.

SELECT
as_sets,
paths
FROM cloudflare.radar.asns_as_set
WHERE asn = '{{ asn }}' -- required
AND format = '{{ format }}'
;