cloudflare
Version:
The official TypeScript library for the Cloudflare API
112 lines (100 loc) • 3.5 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 NetworksAPI from "./networks";
import * as RoutesAPI from "./routes";
export 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.TunnelRoute> {
const { account_id, ...body } = params;
return (
this._client.post(`/accounts/${account_id}/teamnet/routes/network/${ipNetworkEncoded}`, {
body,
...options,
}) as Core.APIPromise<{ result: RoutesAPI.TunnelRoute }>
)._thenUnwrap((obj) => obj.result);
}
/**
* 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.TunnelRoute> {
const { account_id, tun_type } = params;
return (
this._client.delete(`/accounts/${account_id}/teamnet/routes/network/${ipNetworkEncoded}`, {
query: { tun_type },
...options,
}) as Core.APIPromise<{ result: RoutesAPI.TunnelRoute }>
)._thenUnwrap((obj) => obj.result);
}
/**
* 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.TunnelRoute> {
const { account_id } = params;
return (
this._client.patch(
`/accounts/${account_id}/teamnet/routes/network/${ipNetworkEncoded}`,
options,
) as Core.APIPromise<{ result: RoutesAPI.TunnelRoute }>
)._thenUnwrap((obj) => obj.result);
}
}
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 Tunnel Virtual Network this route belongs to. If no
* virtual networks are configured, the route is assigned to the default virtual
* network of the account.
*/
virtual_network_id?: unknown;
}
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';
}
export interface NetworkEditParams {
/**
* Cloudflare account ID
*/
account_id: string;
}
export namespace Networks {
export import NetworkCreateParams = NetworksAPI.NetworkCreateParams;
export import NetworkDeleteParams = NetworksAPI.NetworkDeleteParams;
export import NetworkEditParams = NetworksAPI.NetworkEditParams;
}