uuid
Creates, updates, deletes, gets or lists a uuid resource.
Overview
| Name | uuid |
| Type | Resource |
| Id | cloudflare.dcv_delegation.uuid |
Fields
The following fields are returned by SELECT queries:
- list
Retrieve the DCV Delegation unique identifier response.
| Name | Datatype | Description |
|---|---|---|
uuid | string | The DCV Delegation unique identifier. (example: abc123def456ghi7) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | zone_id | Retrieve the account and zone specific unique identifier used as part of the CNAME target for DCV Delegation. |
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 |
|---|---|---|
zone_id | string | The Cloudflare zone ID. |
SELECT examples
- list
Retrieve the account and zone specific unique identifier used as part of the CNAME target for DCV Delegation.
SELECT
uuid
FROM cloudflare.dcv_delegation.uuid
WHERE zone_id = '{{ zone_id }}' -- required
;