Skip to main content

validate

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

Overview

Namevalidate
TypeResource
Idcloudflare.addressing.validate

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
ip_address_management_prefixes_validate_prefixinsertprefix_id, account_idTriggers a new prefix validation. The checks are run asynchronously and include IRR, RPKI, and prefix ownership.

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.
prefix_idstringThe IP prefix ID.

INSERT examples

Triggers a new prefix validation. The checks are run asynchronously and include IRR, RPKI, and prefix ownership.

INSERT INTO cloudflare.addressing.validate (
prefix_id,
account_id
)
SELECT
'{{ prefix_id }}',
'{{ account_id }}'
RETURNING
errors,
messages,
result,
success
;