Skip to main content

recommendations

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

Overview

Namerecommendations
TypeResource
Idcloudflare.ssl.recommendations

Fields

The following fields are returned by SELECT queries:

SSL/TLS Recommendation response.

NameDatatypeDescription
idstring (example: ssl_automatic_mode)
editablebooleanWhether this setting can be updated or not.
modified_onstring (date-time)Last time this setting was modified. (example: 2014-01-01T05:20:00.12345Z)
next_scheduled_scanstring (date-time)Next time this zone will be scanned by the Automatic SSL/TLS. (example: 2014-01-01T05:20:00.12345Z)
valuestringCurrent setting of the automatic SSL/TLS. (auto, custom) (example: auto)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectzone_idRetrieve the SSL/TLS Recommender's recommendation for a zone.

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 SSL/TLS Recommender's recommendation for a zone.

SELECT
id,
editable,
modified_on,
next_scheduled_scan,
value
FROM cloudflare.ssl.recommendations
WHERE zone_id = '{{ zone_id }}' -- required
;