UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

64 lines 2.18 kB
import { APIResource } from 'cloudflare/resource'; import * as ConfigsAPI from 'cloudflare/resources/hyperdrive/configs'; import { SinglePage } from 'cloudflare/pagination'; export declare class HyperdriveResource extends APIResource { configs: ConfigsAPI.Configs; } export declare class HyperdrivesSinglePage extends SinglePage<Hyperdrive> { } export interface Configuration { /** * The name of your origin database. */ database: string; /** * The host (hostname or IP) of your origin database. */ host: string; /** * The port (default: 5432 for Postgres) of your origin database. */ port: number; /** * Specifies the URL scheme used to connect to your origin database. */ scheme: 'postgres' | 'postgresql' | 'mysql'; /** * The user of your origin database. */ user: string; } export interface Hyperdrive { caching?: Hyperdrive.Caching; name?: string; origin?: Configuration; } export declare namespace Hyperdrive { interface Caching { /** * When set to true, disables the caching of SQL responses. (Default: false) */ disabled?: boolean; /** * When present, specifies max duration for which items should persist in the * cache. (Default: 60) */ max_age?: number; /** * When present, indicates the number of seconds cache may serve the response after * it becomes stale. (Default: 15) */ stale_while_revalidate?: number; } } export declare namespace HyperdriveResource { export import Configs = ConfigsAPI.Configs; export import ConfigDeleteResponse = ConfigsAPI.ConfigDeleteResponse; export import ConfigCreateParams = ConfigsAPI.ConfigCreateParams; export import ConfigUpdateParams = ConfigsAPI.ConfigUpdateParams; export import ConfigListParams = ConfigsAPI.ConfigListParams; export import ConfigDeleteParams = ConfigsAPI.ConfigDeleteParams; export import ConfigEditParams = ConfigsAPI.ConfigEditParams; export import ConfigGetParams = ConfigsAPI.ConfigGetParams; } //# sourceMappingURL=hyperdrive.d.ts.map