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

    Interface GatewayConfigCreateParameters

    Parameters required to create a new GatewayConfig.

    interface GatewayConfigCreateParameters {
        auth_mechanism: Runloop.GatewayConfigCreateParameters.AuthMechanism;
        endpoint: string;
        name: string;
        description?: string | null;
    }
    Index

    Properties

    How credentials should be applied to proxied requests. Specify the type ('header', 'bearer') and optional key field.

    endpoint: string

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

    name: string

    The human-readable name for the GatewayConfig. Must be unique within your account.

    description?: string | null

    Optional description for this gateway configuration.