recommendations
Creates, updates, deletes, gets or lists a recommendations resource.
Overview
| Name | recommendations |
| Type | Resource |
| Id | cloudflare.ssl.recommendations |
Fields
The following fields are returned by SELECT queries:
- list
SSL/TLS Recommendation response.
| Name | Datatype | Description |
|---|---|---|
id | string | (example: ssl_automatic_mode) |
editable | boolean | Whether this setting can be updated or not. |
modified_on | string (date-time) | Last time this setting was modified. (example: 2014-01-01T05:20:00.12345Z) |
next_scheduled_scan | string (date-time) | Next time this zone will be scanned by the Automatic SSL/TLS. (example: 2014-01-01T05:20:00.12345Z) |
value | string | Current setting of the automatic SSL/TLS. (auto, custom) (example: auto) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | zone_id | Retrieve 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.
| Name | Datatype | Description |
|---|---|---|
zone_id | string | The Cloudflare zone ID. |
SELECT examples
- list
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
;