UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

97 lines (84 loc) 2.42 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 ConfigAPI from "./config"; export class Config extends APIResource { /** * Updates CMB config. */ create(params: ConfigCreateParams, options?: Core.RequestOptions): Core.APIPromise<CmbConfig | null> { const { account_id, ...body } = params; return ( this._client.post(`/accounts/${account_id}/logs/control/cmb/config`, { body, ...options, }) as Core.APIPromise<{ result: CmbConfig | null }> )._thenUnwrap((obj) => obj.result); } /** * Deletes CMB config. */ delete( params: ConfigDeleteParams, options?: Core.RequestOptions, ): Core.APIPromise<ConfigDeleteResponse | null> { const { account_id, body } = params; return ( this._client.delete(`/accounts/${account_id}/logs/control/cmb/config`, { body: body, ...options, }) as Core.APIPromise<{ result: ConfigDeleteResponse | null }> )._thenUnwrap((obj) => obj.result); } /** * Gets CMB config. */ get(params: ConfigGetParams, options?: Core.RequestOptions): Core.APIPromise<CmbConfig | null> { const { account_id } = params; return ( this._client.get(`/accounts/${account_id}/logs/control/cmb/config`, options) as Core.APIPromise<{ result: CmbConfig | null; }> )._thenUnwrap((obj) => obj.result); } } export interface CmbConfig { /** * Comma-separated list of regions. */ regions?: string; } export type ConfigDeleteResponse = unknown; export interface ConfigCreateParams { /** * Path param: Identifier */ account_id: string; /** * Body param: Comma-separated list of regions. */ regions?: string; } export interface ConfigDeleteParams { /** * Path param: Identifier */ account_id: string; /** * Body param: */ body: unknown; } export interface ConfigGetParams { /** * Identifier */ account_id: string; } export namespace Config { export import CmbConfig = ConfigAPI.CmbConfig; export import ConfigDeleteResponse = ConfigAPI.ConfigDeleteResponse; export import ConfigCreateParams = ConfigAPI.ConfigCreateParams; export import ConfigDeleteParams = ConfigAPI.ConfigDeleteParams; export import ConfigGetParams = ConfigAPI.ConfigGetParams; }