Package org.openstack4j.model.compute
Interface RateLimit.LimitEntry
-
- All Known Implementing Classes:
NovaRateLimit.NovaLimitEntry
- Enclosing interface:
- RateLimit
public static interface RateLimit.LimitEntry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetAvailable()DategetNextAvailable()intgetRemaining()StringgetUnit()intgetValue()StringgetVerb()
-
-
-
Method Detail
-
getNextAvailable
Date getNextAvailable()
- Returns:
- the nextAvailable date/time
-
getUnit
String getUnit()
- Returns:
- the unit of time for limiting
-
getVerb
String getVerb()
- Returns:
- the verb (action type)
-
getRemaining
int getRemaining()
- Returns:
- the remaining limits
-
getAvailable
int getAvailable()
- Returns:
- the available limit slots
-
getValue
int getValue()
- Returns:
- the value for the last limit
-
-