UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

84 lines (72 loc) 2.26 kB
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import * as Core from "../../../core"; import { APIResource } from "../../../resource"; import * as ProxyReadTimeoutAPI from "./proxy-read-timeout"; export class ProxyReadTimeoutResource extends APIResource { /** * Maximum time between two read operations from origin. */ edit(params: ProxyReadTimeoutEditParams, options?: Core.RequestOptions): Core.APIPromise<ProxyReadTimeout> { const { zone_id, ...body } = params; return ( this._client.patch(`/zones/${zone_id}/settings/proxy_read_timeout`, { body, ...options, }) as Core.APIPromise<{ result: ProxyReadTimeout }> )._thenUnwrap((obj) => obj.result); } /** * Maximum time between two read operations from origin. */ get(params: ProxyReadTimeoutGetParams, options?: Core.RequestOptions): Core.APIPromise<ProxyReadTimeout> { const { zone_id } = params; return ( this._client.get(`/zones/${zone_id}/settings/proxy_read_timeout`, options) as Core.APIPromise<{ result: ProxyReadTimeout; }> )._thenUnwrap((obj) => obj.result); } } /** * Maximum time between two read operations from origin. */ export interface ProxyReadTimeout { /** * ID of the zone setting. */ id: 'proxy_read_timeout'; /** * Current value of the zone setting. */ value: number; /** * 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 ProxyReadTimeoutEditParams { /** * Path param: Identifier */ zone_id: string; /** * Body param: Maximum time between two read operations from origin. */ value: ProxyReadTimeout; } export interface ProxyReadTimeoutGetParams { /** * Identifier */ zone_id: string; } export namespace ProxyReadTimeoutResource { export import ProxyReadTimeout = ProxyReadTimeoutAPI.ProxyReadTimeout; export import ProxyReadTimeoutEditParams = ProxyReadTimeoutAPI.ProxyReadTimeoutEditParams; export import ProxyReadTimeoutGetParams = ProxyReadTimeoutAPI.ProxyReadTimeoutGetParams; }