Databricks SDK for JavaScript
    Preparing search index...
    interface AiGatewayRateLimit {
        calls?: bigint;
        key?: string;
        principal?: string;
        renewalPeriod?: string;
        tokens?: bigint;
    }
    Index

    Properties

    calls?: bigint

    Used to specify how many calls are allowed for a key within the renewal_period.

    key?: string

    Key field for a rate limit. Currently, 'user', 'user_group, 'service_principal', and 'endpoint' are supported, with 'endpoint' being the default if not specified.

    principal?: string

    Principal field for a user, user group, or service principal to apply rate limiting to. Accepts a user email, group name, or service principal application ID.

    renewalPeriod?: string

    Renewal period field for a rate limit. Currently, only 'minute' is supported.

    tokens?: bigint

    Used to specify how many tokens are allowed for a key within the renewal_period.