Skip to main content

policies

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

Overview

Namepolicies
TypeResource
Idcloudflare.alerting.policies

Fields

The following fields are returned by SELECT queries:

Get a Notification policy response

NameDatatypeDescription
idstringThe unique identifier of a notification policy (example: 0da2b59ef118439d8097bdfb215203c9)
namestringName of the policy. (example: SSL Notification Event Policy)
alert_intervalstringOptional specification of how often to re-alert from the same incident, not support on all alert types. (example: 30m)
alert_typestringRefers to which event will trigger a Notification dispatch. You can use the endpoint to get available alert types which then will give you a list of possible values. (abuse_report_alert, access_custom_certificate_expiration_type, advanced_ddos_attack_l4_alert, advanced_ddos_attack_l7_alert, advanced_http_alert_error, bgp_hijack_notification, billing_usage_alert, block_notification_block_removed, block_notification_new_block, block_notification_review_rejected, bot_traffic_basic_alert, brand_protection_alert, brand_protection_digest, clickhouse_alert_fw_anomaly, clickhouse_alert_fw_ent_anomaly, cloudforce_one_request_notification, cni_maintenance_notification, custom_analytics, custom_bot_detection_alert, custom_ssl_certificate_event_type, dedicated_ssl_certificate_event_type, device_connectivity_anomaly_alert, dos_attack_l4, dos_attack_l7, expiring_service_token_alert, failing_logpush_job_disabled_alert, fbm_auto_advertisement, fbm_dosd_attack, fbm_volumetric_attack, health_check_status_notification, hostname_aop_custom_certificate_expiration_type, http_alert_edge_error, http_alert_origin_error, image_notification, image_resizing_notification, incident_alert, load_balancing_health_alert, load_balancing_pool_enablement_alert, logo_match_alert, magic_tunnel_health_check_event, magic_wan_tunnel_health, maintenance_event_notification, mtls_certificate_store_certificate_expiration_type, pages_event_alert, radar_notification, real_origin_monitoring, scriptmonitor_alert_new_code_change_detections, scriptmonitor_alert_new_hosts, scriptmonitor_alert_new_malicious_hosts, scriptmonitor_alert_new_malicious_scripts, scriptmonitor_alert_new_malicious_url, scriptmonitor_alert_new_max_length_resource_url, scriptmonitor_alert_new_resources, secondary_dns_all_primaries_failing, secondary_dns_primaries_failing, secondary_dns_warning, secondary_dns_zone_successfully_updated, secondary_dns_zone_validation_warning, security_insights_alert, sentinel_alert, stream_live_notifications, synthetic_test_latency_alert, synthetic_test_low_availability_alert, traffic_anomalies_alert, tunnel_health_event, tunnel_update_event, universal_ssl_event_type, web_analytics_metrics_update, zone_aop_custom_certificate_expiration_type) (example: universal_ssl_event_type)
createdstring (date-time) (example: 2014-01-01T05:20:00.12345Z)
descriptionstringOptional description for the Notification policy. (example: Something describing the policy.)
enabledbooleanWhether or not the Notification policy is enabled.
filtersobjectOptional filters that allow you to be alerted only on a subset of events for that alert type based on some criteria. This is only available for select alert types. See alert type documentation for more details.
mechanismsobjectList of IDs that will be used when dispatching a notification. IDs for email type will be the email address.
modifiedstring (date-time) (example: 2014-01-01T05:20:00.12345Z)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectaccount_id, policy_idGet details for a single policy.
listselectaccount_idGet a list of all Notification policies.
createinsertaccount_id, name, alert_type, enabled, mechanismsCreates a new Notification policy.
updatereplaceaccount_id, policy_idUpdate a Notification policy.
deletedeleteaccount_id, policy_idDelete a Notification policy.

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.
policy_idstringThe Access policy ID.

SELECT examples

Get details for a single policy.

SELECT
id,
name,
alert_interval,
alert_type,
created,
description,
enabled,
filters,
mechanisms,
modified
FROM cloudflare.alerting.policies
WHERE account_id = '{{ account_id }}' -- required
AND policy_id = '{{ policy_id }}' -- required
;

INSERT examples

Creates a new Notification policy.

INSERT INTO cloudflare.alerting.policies (
alert_interval,
alert_type,
description,
enabled,
filters,
mechanisms,
name,
account_id
)
SELECT
'{{ alert_interval }}',
'{{ alert_type }}' /* required */,
'{{ description }}',
{{ enabled }} /* required */,
'{{ filters }}',
'{{ mechanisms }}' /* required */,
'{{ name }}' /* required */,
'{{ account_id }}'
RETURNING
errors,
messages,
result,
success
;

REPLACE examples

Update a Notification policy.

REPLACE cloudflare.alerting.policies
SET
alert_interval = '{{ alert_interval }}',
alert_type = '{{ alert_type }}',
description = '{{ description }}',
enabled = {{ enabled }},
filters = '{{ filters }}',
mechanisms = '{{ mechanisms }}',
name = '{{ name }}'
WHERE
account_id = '{{ account_id }}' --required
AND policy_id = '{{ policy_id }}' --required
RETURNING
errors,
messages,
result,
success;

DELETE examples

Delete a Notification policy.

DELETE FROM cloudflare.alerting.policies
WHERE account_id = '{{ account_id }}' --required
AND policy_id = '{{ policy_id }}' --required
;