cloudflare
Version:
The official TypeScript library for the Cloudflare API
152 lines (131 loc) • 3.94 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import * as Core from "../../../core";
import { APIResource } from "../../../resource";
import * as ConfigsAPI from "./configs";
import * as FullAPI from "./full";
export class Configs extends APIResource {
full: FullAPI.Full = new FullAPI.Full(this._client);
/**
* Create a new network monitoring configuration.
*/
create(params: ConfigCreateParams, options?: Core.RequestOptions): Core.APIPromise<Configuration> {
const { account_id, body } = params;
return (
this._client.post(`/accounts/${account_id}/mnm/config`, { body: body, ...options }) as Core.APIPromise<{
result: Configuration;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Update an existing network monitoring configuration, requires the entire
* configuration to be updated at once.
*/
update(params: ConfigUpdateParams, options?: Core.RequestOptions): Core.APIPromise<Configuration> {
const { account_id, body } = params;
return (
this._client.put(`/accounts/${account_id}/mnm/config`, { body: body, ...options }) as Core.APIPromise<{
result: Configuration;
}>
)._thenUnwrap((obj) => obj.result);
}
/**
* Delete an existing network monitoring configuration.
*/
delete(params: ConfigDeleteParams, options?: Core.RequestOptions): Core.APIPromise<Configuration> {
const { account_id, body } = params;
return (
this._client.delete(`/accounts/${account_id}/mnm/config`, {
body: body,
...options,
}) as Core.APIPromise<{ result: Configuration }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Update fields in an existing network monitoring configuration.
*/
edit(params: ConfigEditParams, options?: Core.RequestOptions): Core.APIPromise<Configuration> {
const { account_id, body } = params;
return (
this._client.patch(`/accounts/${account_id}/mnm/config`, {
body: body,
...options,
}) as Core.APIPromise<{ result: Configuration }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Lists default sampling and router IPs for account.
*/
get(params: ConfigGetParams, options?: Core.RequestOptions): Core.APIPromise<Configuration> {
const { account_id } = params;
return (
this._client.get(`/accounts/${account_id}/mnm/config`, options) as Core.APIPromise<{
result: Configuration;
}>
)._thenUnwrap((obj) => obj.result);
}
}
export interface Configuration {
/**
* Fallback sampling rate of flow messages being sent in packets per second. This
* should match the packet sampling rate configured on the router.
*/
default_sampling: number;
/**
* The account name.
*/
name: string;
router_ips: Array<string>;
}
export interface ConfigCreateParams {
/**
* Path param:
*/
account_id: string;
/**
* Body param:
*/
body: unknown;
}
export interface ConfigUpdateParams {
/**
* Path param:
*/
account_id: string;
/**
* Body param:
*/
body: unknown;
}
export interface ConfigDeleteParams {
/**
* Path param:
*/
account_id: string;
/**
* Body param:
*/
body: unknown;
}
export interface ConfigEditParams {
/**
* Path param:
*/
account_id: string;
/**
* Body param:
*/
body: unknown;
}
export interface ConfigGetParams {
account_id: string;
}
export namespace Configs {
export import Configuration = ConfigsAPI.Configuration;
export import ConfigCreateParams = ConfigsAPI.ConfigCreateParams;
export import ConfigUpdateParams = ConfigsAPI.ConfigUpdateParams;
export import ConfigDeleteParams = ConfigsAPI.ConfigDeleteParams;
export import ConfigEditParams = ConfigsAPI.ConfigEditParams;
export import ConfigGetParams = ConfigsAPI.ConfigGetParams;
export import Full = FullAPI.Full;
export import FullGetParams = FullAPI.FullGetParams;
}