Package org.openstack4j.model.compute
Interface Limits
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
NovaLimits
public interface Limits extends ModelEntity
Accounts may be pre-configured with a set of thresholds (or limits) to manage capacity and prevent abuse of the system. The system recognizes two kinds of limits: rate limits and absolute limits. Rate limits are thresholds that are reset after a certain amount of time passes. Absolute limits are fixed.- Author:
- Jeremy Unruh
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AbsoluteLimitgetAbsolute()List<? extends RateLimit>getRate()
-
-
-
Method Detail
-
getRate
List<? extends RateLimit> getRate()
- Returns:
- the rate limits (limits that are reset as X time passes)
-
getAbsolute
AbsoluteLimit getAbsolute()
- Returns:
- the absolute fixed layout limits
-
-