Skip to Content

Variable ResourceExhaustedKindConst

ResourceExhaustedKind: {
    RATE_LIMIT: "rate_limit";
    QUOTA: "quota";
    UNKNOWN: "unknown";
} = ...

Which allowance ran out.

Type Declaration

  • ReadonlyRATE_LIMIT: "rate_limit"

    A short-window limit. Backing off and retrying is the remedy.

  • ReadonlyQUOTA: "quota"

    A longer-window allowance. Retrying will not help.

  • ReadonlyUNKNOWN: "unknown"

    The message did not say which. Treat it as a rate limit.