validate
Creates, updates, deletes, gets or lists a validate resource.
Overview
| Name | validate |
| Type | Resource |
| Id | cloudflare.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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
ip_address_management_prefixes_validate_prefix | insert | prefix_id, account_id | Triggers 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
prefix_id | string | The IP prefix ID. |
INSERT examples
- ip_address_management_prefixes_validate_prefix
- Manifest
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
;
# Description fields are for documentation purposes
- name: validate
props:
- name: prefix_id
value: "{{ prefix_id }}"
description: Required parameter for the validate resource.
- name: account_id
value: "{{ account_id }}"
description: Required parameter for the validate resource.