UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

66 lines 2.48 kB
import * as Core from 'cloudflare/core'; import { APIResource } from 'cloudflare/resource'; import * as WebsocketAPI from 'cloudflare/resources/zones/settings/websocket'; export declare class WebsocketResource extends APIResource { /** * Changes Websockets setting. For more information about Websockets, please refer * to * [Using Cloudflare with WebSockets](https://support.cloudflare.com/hc/en-us/articles/200169466-Using-Cloudflare-with-WebSockets). */ edit(params: WebsocketEditParams, options?: Core.RequestOptions): Core.APIPromise<Websocket>; /** * Gets Websockets setting. For more information about Websockets, please refer to * [Using Cloudflare with WebSockets](https://support.cloudflare.com/hc/en-us/articles/200169466-Using-Cloudflare-with-WebSockets). */ get(params: WebsocketGetParams, options?: Core.RequestOptions): Core.APIPromise<Websocket>; } /** * WebSockets are open connections sustained between the client and the origin * server. Inside a WebSockets connection, the client and the origin can pass data * back and forth without having to reestablish sessions. This makes exchanging * data within a WebSockets connection fast. WebSockets are often used for * real-time applications such as live chat and gaming. For more information refer * to * [Can I use Cloudflare with Websockets](https://support.cloudflare.com/hc/en-us/articles/200169466-Can-I-use-Cloudflare-with-WebSockets-). */ export interface Websocket { /** * ID of the zone setting. */ id: 'websockets'; /** * Current value of the zone setting. */ value: 'off' | 'on'; /** * 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 WebsocketEditParams { /** * Path param: Identifier */ zone_id: string; /** * Body param: Value of the zone setting. */ value: 'off' | 'on'; } export interface WebsocketGetParams { /** * Identifier */ zone_id: string; } export declare namespace WebsocketResource { export import Websocket = WebsocketAPI.Websocket; export import WebsocketEditParams = WebsocketAPI.WebsocketEditParams; export import WebsocketGetParams = WebsocketAPI.WebsocketGetParams; } //# sourceMappingURL=websocket.d.ts.map