Skip to main content

logs

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

Overview

Namelogs
TypeResource
Idcloudflare.radar.logs

Fields

The following fields are returned by SELECT queries:

Successful response.

NameDatatypeDescription
certificateLogobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlog_slugformatRetrieves the requested certificate log information.
listselectlimit, offset, formatRetrieves a list of certificate logs.

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
log_slugstringCertificate log slug.
formatstringFormat in which results will be returned.
limitintegerLimits the number of objects returned in the response.
offsetintegerSkips the specified number of objects before fetching the results.

SELECT examples

Retrieves the requested certificate log information.

SELECT
certificateLog
FROM cloudflare.radar.logs
WHERE log_slug = '{{ log_slug }}' -- required
AND format = '{{ format }}'
;