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

    Interface GatewayConfigUpdateParameters

    Parameters for updating an existing GatewayConfig. All fields are optional - only specified fields will be updated.

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

    Properties

    New authentication mechanism for applying credentials to proxied requests.

    description?: string | null

    New description for this gateway configuration.

    endpoint?: string | null

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

    name?: string | null

    New name for the GatewayConfig. Must be unique within your account.