Skip to main content

logpush_ownership

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

Overview

Namelogpush_ownership
TypeResource
Idcloudflare.logpush.logpush_ownership

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
create_by_accountinsertaccount_id, destination_confGets a new ownership challenge sent to your destination.
create_by_zoneinsertzone_id, destination_confGets a new ownership challenge sent to your destination.

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.
zone_idstringThe Cloudflare zone ID.

INSERT examples

Gets a new ownership challenge sent to your destination.

INSERT INTO cloudflare.logpush.logpush_ownership (
destination_conf,
account_id
)
SELECT
'{{ destination_conf }}' /* required */,
'{{ account_id }}'
RETURNING
errors,
messages,
result,
success
;