UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

70 lines 2.71 kB
import * as Core from 'cloudflare/core'; import { APIResource } from 'cloudflare/resource'; import * as NetworksAPI from 'cloudflare/resources/zero-trust/networks/routes/networks'; import * as RoutesAPI from 'cloudflare/resources/zero-trust/networks/routes/routes'; export declare class Networks extends APIResource { /** * Routes a private network through a Cloudflare Tunnel. The CIDR in * `ip_network_encoded` must be written in URL-encoded format. */ create(ipNetworkEncoded: string, params: NetworkCreateParams, options?: Core.RequestOptions): Core.APIPromise<RoutesAPI.Route>; /** * Deletes a private network route from an account. The CIDR in * `ip_network_encoded` must be written in URL-encoded format. If no * virtual_network_id is provided it will delete the route from the default vnet. * If no tun_type is provided it will fetch the type from the tunnel_id or if that * is missing it will assume Cloudflare Tunnel as default. If tunnel_id is provided * it will delete the route from that tunnel, otherwise it will delete the route * based on the vnet and tun_type. */ delete(ipNetworkEncoded: string, params: NetworkDeleteParams, options?: Core.RequestOptions): Core.APIPromise<RoutesAPI.Route>; /** * Updates an existing private network route in an account. The CIDR in * `ip_network_encoded` must be written in URL-encoded format. */ edit(ipNetworkEncoded: string, params: NetworkEditParams, options?: Core.RequestOptions): Core.APIPromise<RoutesAPI.Route>; } export interface NetworkCreateParams { /** * Path param: Cloudflare account ID */ account_id: string; /** * Body param: Optional remark describing the route. */ comment?: string; /** * Body param: UUID of the virtual network. */ virtual_network_id?: string; } export interface NetworkDeleteParams { /** * Path param: Cloudflare account ID */ account_id: string; /** * Query param: The type of tunnel. */ tun_type?: 'cfd_tunnel' | 'warp_connector' | 'ip_sec' | 'gre' | 'cni'; /** * Query param: UUID of the tunnel. */ tunnel_id?: string; /** * Query param: UUID of the virtual network. */ virtual_network_id?: string; } export interface NetworkEditParams { /** * Cloudflare account ID */ account_id: string; } export declare namespace Networks { export import NetworkCreateParams = NetworksAPI.NetworkCreateParams; export import NetworkDeleteParams = NetworksAPI.NetworkDeleteParams; export import NetworkEditParams = NetworksAPI.NetworkEditParams; } //# sourceMappingURL=networks.d.ts.map