Skip to main content

global_warp_override

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

Overview

Nameglobal_warp_override
TypeResource
Idcloudflare.zero_trust.global_warp_override

Fields

The following fields are returned by SELECT queries:

Fetch Global WARP override state response.

NameDatatypeDescription
disconnectbooleanDisconnects all devices on the account using Global WARP override.
timestampstring (date-time)When the Global WARP override state was updated. (example: 1970-01-01T00:00:00.000Z)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idFetch the Global WARP override state.
createinsertaccount_id, disconnectSets the Global WARP override state.

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

Fetch the Global WARP override state.

SELECT
disconnect,
timestamp
FROM cloudflare.zero_trust.global_warp_override
WHERE account_id = '{{ account_id }}' -- required
;

INSERT examples

Sets the Global WARP override state.

INSERT INTO cloudflare.zero_trust.global_warp_override (
disconnect,
justification,
account_id
)
SELECT
{{ disconnect }} /* required */,
'{{ justification }}',
'{{ account_id }}'
RETURNING
errors,
messages,
result,
success
;