fulls
Creates, updates, deletes, gets or lists a fulls resource.
Overview
| Name | fulls |
| Type | Resource |
| Id | cloudflare.magic_network_monitoring.fulls |
Fields
The following fields are returned by SELECT queries:
- list
List rules and account configuration response
| Name | Datatype | Description |
|---|---|---|
name | string | The account name. (example: cloudflare user's account) |
default_sampling | number | Fallback sampling rate of flow messages being sent in packets per second. This should match the packet sampling rate configured on the router. |
router_ips | array | |
warp_devices | array |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | Lists default sampling, router IPs, warp devices, and rules for 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
SELECT examples
- list
Lists default sampling, router IPs, warp devices, and rules for account.
SELECT
name,
default_sampling,
router_ips,
warp_devices
FROM cloudflare.magic_network_monitoring.fulls
WHERE account_id = '{{ account_id }}' -- required
;