UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

21 lines 810 B
import * as Core from 'cloudflare/core'; import { APIResource } from 'cloudflare/resource'; import * as RecommendationsAPI from 'cloudflare/resources/ssl/recommendations'; export declare class Recommendations extends APIResource { /** * Retrieve the SSL/TLS Recommender's recommendation for a zone. */ get(zoneIdentifier: string, options?: Core.RequestOptions): Core.APIPromise<RecommendationGetResponse | null>; } export interface RecommendationGetResponse { /** * Identifier of a recommedation result. */ id?: string; modified_on?: string; value?: 'flexible' | 'full' | 'strict'; } export declare namespace Recommendations { export import RecommendationGetResponse = RecommendationsAPI.RecommendationGetResponse; } //# sourceMappingURL=recommendations.d.ts.map