Package org.openstack4j.model.manila
Interface RateLimit
-
- All Known Implementing Classes:
ManilaRateLimit
public interface RateLimitRate limits control the frequency at which users can issue specific API requests. Administrators use rate limiting to configure limits on the type and number of API calls that can be made in a specific time interval.- Author:
- Daniel Gonzalez Nothnagel
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceRateLimit.Limitstatic classRateLimit.TimeIntervalUnit
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<? extends RateLimit.Limit>getLimit()StringgetRegex()StringgetUri()
-
-
-
Method Detail
-
getUri
String getUri()
- Returns:
- a human-readable URI of a rate limit
-
getRegex
String getRegex()
- Returns:
- an API regular expression
-
getLimit
List<? extends RateLimit.Limit> getLimit()
- Returns:
- the limit object of this rate limit
-
-