fleet_status_over_time
Creates, updates, deletes, gets or lists a fleet_status_over_time resource.
Overview
| Name | fleet_status_over_time |
| Type | Resource |
| Id | cloudflare.zero_trust.fleet_status_over_time |
Fields
The following fields are returned by SELECT queries:
- list
List DEX devices response
| Name | Datatype | Description |
|---|---|---|
deviceStats | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | to, from, colo, device_id | List details for devices using WARP, up to 7 days |
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. |
colo | string | Cloudflare colo |
device_id | string | Device-specific ID, given as UUID v4 |
from | string | Time range beginning in ISO format |
to | string | Time range end in ISO format |
SELECT examples
- list
List details for devices using WARP, up to 7 days
SELECT
deviceStats
FROM cloudflare.zero_trust.fleet_status_over_time
WHERE account_id = '{{ account_id }}' -- required
AND to = '{{ to }}'
AND from = '{{ from }}'
AND colo = '{{ colo }}'
AND device_id = '{{ device_id }}'
;