Package org.openstack4j.model.manila
Interface QuotaSet
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
ManilaQuotaSet
public interface QuotaSet extends ModelEntity
Set of quotas for shares.- Author:
- Daniel Gonzalez Nothnagel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegergetGigabytes()StringgetId()IntegergetShareNetworks()IntegergetShares()IntegergetSnapshotGigabytes()IntegergetSnapshots()
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- the UUID of the tenant for which you manage quotas
-
getGigabytes
Integer getGigabytes()
- Returns:
- the number of gigabytes allowed for each tenant
-
getSnapshots
Integer getSnapshots()
- Returns:
- the number of snapshots allowed for each tenant
-
getShares
Integer getShares()
- Returns:
- the number of shares allowed for each tenant
-
getSnapshotGigabytes
Integer getSnapshotGigabytes()
- Returns:
- the number of gigabytes for the snapshots allowed for each tenant
-
getShareNetworks
Integer getShareNetworks()
- Returns:
- the number of share networks allowed for each tenant
-
-