@runloop/api-client - v1.4.0
    Preparing search index...

    Interface Tunnel

    V2 tunnel information if a tunnel was created at launch time or via the createTunnel API.

    interface Tunnel {
        auth_mode: "public_" | "authenticated";
        create_time_ms: number;
        tunnel_key: string;
        auth_token?: string | null;
    }
    Index

    Properties

    auth_mode: "public_" | "authenticated"

    The authentication mode for the tunnel.

    create_time_ms: number

    Creation time of the tunnel (Unix timestamp milliseconds).

    tunnel_key: string

    The encrypted tunnel key used to construct the tunnel URL. URL format: https://{port}-{tunnel_key}.tunnel.runloop.{domain}

    auth_token?: string | null

    Bearer token for tunnel authentication. Only present when auth_mode is 'authenticated'.