// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../../../resource'; import * as Core from '../../../../core'; export class Connectors extends APIResource { /** * Fetches connector and connection details for a WARP Connector Tunnel. * * @example * ```ts * const connector = * await client.zeroTrust.tunnels.warpConnector.connectors.get( * 'f70ff985-a4ef-4643-bbbc-4a0ed4fc8415', * '1bedc50d-42b3-473c-b108-ff3d10c0d925', * { account_id: '699d98642c564d2e855e9661899b7252' }, * ); * ``` */ get( tunnelId: string, connectorId: string, params: ConnectorGetParams, options?: Core.RequestOptions, ): Core.APIPromise { const { account_id } = params; return ( this._client.get( `/accounts/${account_id}/warp_connector/${tunnelId}/connectors/${connectorId}`, options, ) as Core.APIPromise<{ result: ConnectorGetResponse }> )._thenUnwrap((obj) => obj.result); } } /** * A WARP Connector client that maintains a connection to a Cloudflare data center. */ export interface ConnectorGetResponse { /** * UUID of the Cloudflare Tunnel connector. */ id?: string; /** * The cloudflared OS architecture used to establish this connection. */ arch?: string; /** * The WARP Connector Tunnel connections between your origin and Cloudflare's edge. */ conns?: Array; /** * Features enabled for the Cloudflare Tunnel. */ features?: Array; /** * The HA status of a WARP Connector client. */ ha_status?: 'offline' | 'passive' | 'active'; /** * Timestamp of when the tunnel connection was started. */ run_at?: string; /** * The cloudflared version used to establish this connection. */ version?: string; } export namespace ConnectorGetResponse { export interface Conn { /** * UUID of the Cloudflare Tunnel connection. */ id?: string; /** * UUID of the Cloudflare Tunnel connector. */ client_id?: string; /** * The cloudflared version used to establish this connection. */ client_version?: string; /** * The Cloudflare data center used for this connection. */ colo_name?: string; /** * Timestamp of when the connection was established. */ opened_at?: string; /** * The public IP address of the host running WARP Connector. */ origin_ip?: string; } } export interface ConnectorGetParams { /** * Cloudflare account ID */ account_id: string; } export declare namespace Connectors { export { type ConnectorGetResponse as ConnectorGetResponse, type ConnectorGetParams as ConnectorGetParams }; }