// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from 'cloudflare/core'; import { APIResource } from 'cloudflare/resource'; import * as ChallengeTTLAPI from 'cloudflare/resources/zones/settings/challenge-ttl'; export class ChallengeTTL extends APIResource { /** * Specify how long a visitor is allowed access to your site after successfully * completing a challenge (such as a CAPTCHA). After the TTL has expired the * visitor will have to complete a new challenge. We recommend a 15 - 45 minute * setting and will attempt to honor any setting above 45 minutes. * (https://support.cloudflare.com/hc/en-us/articles/200170136). */ edit( params: ChallengeTTLEditParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id, ...body } = params; return ( this._client.patch(`/zones/${zone_id}/settings/challenge_ttl`, { body, ...options, }) as Core.APIPromise<{ result: ZoneSettingChallengeTTL }> )._thenUnwrap((obj) => obj.result); } /** * Specify how long a visitor is allowed access to your site after successfully * completing a challenge (such as a CAPTCHA). After the TTL has expired the * visitor will have to complete a new challenge. We recommend a 15 - 45 minute * setting and will attempt to honor any setting above 45 minutes. * (https://support.cloudflare.com/hc/en-us/articles/200170136). */ get( params: ChallengeTTLGetParams, options?: Core.RequestOptions, ): Core.APIPromise { const { zone_id } = params; return ( this._client.get(`/zones/${zone_id}/settings/challenge_ttl`, options) as Core.APIPromise<{ result: ZoneSettingChallengeTTL; }> )._thenUnwrap((obj) => obj.result); } } /** * Specify how long a visitor is allowed access to your site after successfully * completing a challenge (such as a CAPTCHA). After the TTL has expired the * visitor will have to complete a new challenge. We recommend a 15 - 45 minute * setting and will attempt to honor any setting above 45 minutes. * (https://support.cloudflare.com/hc/en-us/articles/200170136). */ export interface ZoneSettingChallengeTTL { /** * ID of the zone setting. */ id: 'challenge_ttl'; /** * Current value of the zone setting. */ value: | 300 | 900 | 1800 | 2700 | 3600 | 7200 | 10800 | 14400 | 28800 | 57600 | 86400 | 604800 | 2592000 | 31536000; /** * Whether or not this setting can be modified for this zone (based on your * Cloudflare plan level). */ editable?: true | false; /** * last time this setting was modified. */ modified_on?: string | null; } export interface ChallengeTTLEditParams { /** * Path param: Identifier */ zone_id: string; /** * Body param: Value of the zone setting. */ value: | 300 | 900 | 1800 | 2700 | 3600 | 7200 | 10800 | 14400 | 28800 | 57600 | 86400 | 604800 | 2592000 | 31536000; } export interface ChallengeTTLGetParams { /** * Identifier */ zone_id: string; } export namespace ChallengeTTL { export import ZoneSettingChallengeTTL = ChallengeTTLAPI.ZoneSettingChallengeTTL; export import ChallengeTTLEditParams = ChallengeTTLAPI.ChallengeTTLEditParams; export import ChallengeTTLGetParams = ChallengeTTLAPI.ChallengeTTLGetParams; }