@Retention(value=RUNTIME)
@Target(value=TYPE)
public @interface ApiFrontendLimits
Modifier and Type | Optional Element and Description |
---|---|
ApiFrontendLimitRule[] |
rules
Sets custom rules for unregistered traffic to your API.
|
int |
unregisteredDaily
Sets the maximum number of requests per day for unregistered access to your
API.
|
int |
unregisteredQps
Sets the maximum number of queries per second across all unregistered
access to your API.
|
int |
unregisteredUserQps
Sets the number of queries per second an unregistered user can make
against your API.
|
public abstract int unregisteredUserQps
public abstract int unregisteredQps
public abstract int unregisteredDaily
public abstract ApiFrontendLimitRule[] rules
ApiFrontendLimitRule
for details.