Package org.openstack4j.model.compute
Interface RateLimit
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
NovaRateLimit
public interface RateLimit extends ModelEntity
Rate limits are specified in terms of both a human-readable wild-card URI and a machine-processable regular expression. The human-readable limit is intended for displaying in graphical user interfaces. The machine-processable form is intended to be used directly by client applications.- Author:
- Jeremy Unruh
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceRateLimit.LimitEntry
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<? extends RateLimit.LimitEntry>getLimit()StringgetRegex()StringgetUri()
-
-
-
Method Detail
-
getRegex
String getRegex()
- Returns:
- the regular expression used for this rate limit
-
getUri
String getUri()
- Returns:
- the URI associated with the rate limit
-
getLimit
List<? extends RateLimit.LimitEntry> getLimit()
-
-