Skip to main content

evaluation_types

Creates, updates, deletes, gets or lists an evaluation_types resource.

Overview

Nameevaluation_types
TypeResource
Idcloudflare.ai_gateway.evaluation_types

Fields

The following fields are returned by SELECT queries:

Returns a list of Evaluators

NameDatatypeDescription
idstring
namestring
created_atstring (date-time)
descriptionstring
enableboolean
mandatoryboolean
modified_atstring (date-time)
typestring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idpage, per_page, order_by, order_by_direction

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.
order_bystring
order_by_directionstring
pageinteger
per_pageinteger

SELECT examples

Returns a list of Evaluators

SELECT
id,
name,
created_at,
description,
enable,
mandatory,
modified_at,
type
FROM cloudflare.ai_gateway.evaluation_types
WHERE account_id = '{{ account_id }}' -- required
AND page = '{{ page }}'
AND per_page = '{{ per_page }}'
AND order_by = '{{ order_by }}'
AND order_by_direction = '{{ order_by_direction }}'
;