UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

96 lines (84 loc) 3.07 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 ResponseBufferingAPI from "./response-buffering"; export class ResponseBufferingResource extends APIResource { /** * Enables or disables buffering of responses from the proxied server. Cloudflare * may buffer the whole payload to deliver it at once to the client versus allowing * it to be delivered in chunks. By default, the proxied server streams directly * and is not buffered by Cloudflare. This is limited to Enterprise Zones. */ edit( params: ResponseBufferingEditParams, options?: Core.RequestOptions, ): Core.APIPromise<ResponseBuffering> { const { zone_id, ...body } = params; return ( this._client.patch(`/zones/${zone_id}/settings/response_buffering`, { body, ...options, }) as Core.APIPromise<{ result: ResponseBuffering }> )._thenUnwrap((obj) => obj.result); } /** * Enables or disables buffering of responses from the proxied server. Cloudflare * may buffer the whole payload to deliver it at once to the client versus allowing * it to be delivered in chunks. By default, the proxied server streams directly * and is not buffered by Cloudflare. This is limited to Enterprise Zones. */ get(params: ResponseBufferingGetParams, options?: Core.RequestOptions): Core.APIPromise<ResponseBuffering> { const { zone_id } = params; return ( this._client.get(`/zones/${zone_id}/settings/response_buffering`, options) as Core.APIPromise<{ result: ResponseBuffering; }> )._thenUnwrap((obj) => obj.result); } } /** * Enables or disables buffering of responses from the proxied server. Cloudflare * may buffer the whole payload to deliver it at once to the client versus allowing * it to be delivered in chunks. By default, the proxied server streams directly * and is not buffered by Cloudflare. This is limited to Enterprise Zones. */ export interface ResponseBuffering { /** * ID of the zone setting. */ id: 'response_buffering'; /** * Current value of the zone setting. */ value: 'on' | 'off'; /** * 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 ResponseBufferingEditParams { /** * Path param: Identifier */ zone_id: string; /** * Body param: Value of the zone setting. */ value: 'on' | 'off'; } export interface ResponseBufferingGetParams { /** * Identifier */ zone_id: string; } export namespace ResponseBufferingResource { export import ResponseBuffering = ResponseBufferingAPI.ResponseBuffering; export import ResponseBufferingEditParams = ResponseBufferingAPI.ResponseBufferingEditParams; export import ResponseBufferingGetParams = ResponseBufferingAPI.ResponseBufferingGetParams; }