cloudflare
Version:
The official TypeScript library for the Cloudflare API
163 lines (138 loc) • 4.2 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 ConnectionsAPI from "./connections";
export class Connections extends APIResource {
/**
* Removes connections that are in a disconnected or pending reconnect state. We
* recommend running this command after shutting down a tunnel.
*/
delete(
tunnelId: string,
params: ConnectionDeleteParams,
options?: Core.RequestOptions,
): Core.APIPromise<ConnectionDeleteResponse> {
const { account_id, body } = params;
return (
this._client.delete(`/accounts/${account_id}/tunnels/${tunnelId}/connections`, {
body: body,
...options,
}) as Core.APIPromise<{ result: ConnectionDeleteResponse }>
)._thenUnwrap((obj) => obj.result);
}
/**
* Fetches connection details for a Cloudflare Tunnel.
*/
get(
tunnelId: string,
params: ConnectionGetParams,
options?: Core.RequestOptions,
): Core.APIPromise<ConnectionGetResponse | null> {
const { account_id } = params;
return (
this._client.get(
`/accounts/${account_id}/cfd_tunnel/${tunnelId}/connections`,
options,
) as Core.APIPromise<{ result: ConnectionGetResponse | null }>
)._thenUnwrap((obj) => obj.result);
}
}
/**
* A client (typically cloudflared) that maintains connections to a Cloudflare data
* center.
*/
export interface TunnelTunnelClient {
/**
* UUID of the Cloudflare Tunnel connection.
*/
id?: string;
/**
* The cloudflared OS architecture used to establish this connection.
*/
arch?: string;
/**
* The version of the remote tunnel configuration. Used internally to sync
* cloudflared with the Zero Trust dashboard.
*/
config_version?: number;
/**
* The Cloudflare Tunnel connections between your origin and Cloudflare's edge.
*/
conns?: Array<TunnelTunnelClient.Conn>;
/**
* Features enabled for the Cloudflare Tunnel.
*/
features?: Array<string>;
/**
* Timestamp of when the tunnel connection was started.
*/
run_at?: string;
/**
* The cloudflared version used to establish this connection.
*/
version?: string;
}
export namespace TunnelTunnelClient {
export interface Conn {
/**
* UUID of the Cloudflare Tunnel connection.
*/
id?: string;
/**
* UUID of the cloudflared instance.
*/
client_id?: unknown;
/**
* The cloudflared version used to establish this connection.
*/
client_version?: string;
/**
* The Cloudflare data center used for this connection.
*/
colo_name?: string;
/**
* Cloudflare continues to track connections for several minutes after they
* disconnect. This is an optimization to improve latency and reliability of
* reconnecting. If `true`, the connection has disconnected but is still being
* tracked. If `false`, the connection is actively serving traffic.
*/
is_pending_reconnect?: boolean;
/**
* Timestamp of when the connection was established.
*/
opened_at?: string;
/**
* The public IP address of the host running cloudflared.
*/
origin_ip?: string;
/**
* UUID of the Cloudflare Tunnel connection.
*/
uuid?: string;
}
}
export type ConnectionDeleteResponse = unknown | Array<unknown> | string;
export type ConnectionGetResponse = Array<TunnelTunnelClient>;
export interface ConnectionDeleteParams {
/**
* Path param: Cloudflare account ID
*/
account_id: string;
/**
* Body param:
*/
body: unknown;
}
export interface ConnectionGetParams {
/**
* Cloudflare account ID
*/
account_id: string;
}
export namespace Connections {
export import TunnelTunnelClient = ConnectionsAPI.TunnelTunnelClient;
export import ConnectionDeleteResponse = ConnectionsAPI.ConnectionDeleteResponse;
export import ConnectionGetResponse = ConnectionsAPI.ConnectionGetResponse;
export import ConnectionDeleteParams = ConnectionsAPI.ConnectionDeleteParams;
export import ConnectionGetParams = ConnectionsAPI.ConnectionGetParams;
}