Skip to main content

uuid

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

Overview

Nameuuid
TypeResource
Idcloudflare.dcv_delegation.uuid

Fields

The following fields are returned by SELECT queries:

Retrieve the DCV Delegation unique identifier response.

NameDatatypeDescription
uuidstringThe DCV Delegation unique identifier. (example: abc123def456ghi7)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectzone_idRetrieve 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.

NameDatatypeDescription
zone_idstringThe Cloudflare zone ID.

SELECT examples

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
;