Skip to main content

aegis

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

Overview

Nameaegis
TypeResource
Idcloudflare.zones.aegis

Fields

The following fields are returned by SELECT queries:

Get aegis setting response.

NameDatatypeDescription
idstringThe identifier of the caching setting. (aegis)
editablebooleanWhether the setting is editable.
modified_onstring (date-time)Last time this setting was modified.
valueobjectValue of the zone setting.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectzone_idAegis provides dedicated egress IPs (from Cloudflare to your origin) for your layer 7 WAF and CDN services. The egress IPs are reserved exclusively for your account so that you can increase your origin security by only allowing traffic from a small list of IP addresses.
zone_cache_settings_change_aegis_settingupdatezone_id, valueAegis provides dedicated egress IPs (from Cloudflare to your origin) for your layer 7 WAF and CDN services. The egress IPs are reserved exclusively for your account so that you can increase your origin security by only allowing traffic from a small list of IP addresses.

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
zone_idstringThe Cloudflare zone ID.

SELECT examples

Aegis provides dedicated egress IPs (from Cloudflare to your origin) for your layer 7 WAF and CDN services. The egress IPs are reserved exclusively for your account so that you can increase your origin security by only allowing traffic from a small list of IP addresses.

SELECT
id,
editable,
modified_on,
value
FROM cloudflare.zones.aegis
WHERE zone_id = '{{ zone_id }}' -- required
;

UPDATE examples

Aegis provides dedicated egress IPs (from Cloudflare to your origin) for your layer 7 WAF and CDN services. The egress IPs are reserved exclusively for your account so that you can increase your origin security by only allowing traffic from a small list of IP addresses.

UPDATE cloudflare.zones.aegis
SET
value = '{{ value }}'
WHERE
zone_id = '{{ zone_id }}' --required
AND value = '{{ value }}' --required
RETURNING
errors,
messages,
result,
success;