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

    Interface GatewayConfigView

    A GatewayConfig defines a configuration for proxying API requests through the credential gateway. It specifies the target endpoint and how credentials should be applied.

    interface GatewayConfigView {
        id: string;
        auth_mechanism: Runloop.GatewayConfigView.AuthMechanism;
        create_time_ms: number;
        endpoint: string;
        name: string;
        account_id?: string | null;
        description?: string | null;
    }
    Index

    Properties

    id: string

    The unique identifier of the GatewayConfig.

    How credentials should be applied to proxied requests.

    create_time_ms: number

    Creation time of the GatewayConfig (Unix timestamp in milliseconds).

    endpoint: string

    The target endpoint URL (e.g., 'https://api.anthropic.com').

    name: string

    The human-readable name of the GatewayConfig. Unique per account (or globally for system configs).

    account_id?: string | null

    The account ID that owns this config.

    description?: string | null

    Optional description for this gateway configuration.