Interface BlockLimits.Absolute
-
- All Known Implementing Classes:
CinderBlockLimits.CinderAbsoluteLimit
- Enclosing interface:
- BlockLimits
public static interface BlockLimits.Absolute
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetMaxTotalBackupGigabytes()intgetMaxTotalBackups()intgetMaxTotalSnapshots()intgetMaxTotalVolumeGigabytes()intgetMaxTotalVolumes()intgetTotalBackupGigabytesUsed()intgetTotalBackupsUsed()intgetTotalGigabytesUsed()intgetTotalSnapshotsUsed()intgetTotalVolumesUsed()
-
-
-
Method Detail
-
getTotalSnapshotsUsed
int getTotalSnapshotsUsed()
- Returns:
- the total snapshots used
-
getMaxTotalBackups
int getMaxTotalBackups()
- Returns:
- the maximum total backups
-
getMaxTotalVolumeGigabytes
int getMaxTotalVolumeGigabytes()
- Returns:
- the max total volume in GB
-
getMaxTotalSnapshots
int getMaxTotalSnapshots()
- Returns:
- the max total number of snapshots
-
getMaxTotalBackupGigabytes
int getMaxTotalBackupGigabytes()
- Returns:
- the max total backup in GB
-
getTotalBackupGigabytesUsed
int getTotalBackupGigabytesUsed()
- Returns:
- the total backup GB used
-
getMaxTotalVolumes
int getMaxTotalVolumes()
- Returns:
- the max total volumes
-
getTotalVolumesUsed
int getTotalVolumesUsed()
- Returns:
- the total volumes used
-
getTotalBackupsUsed
int getTotalBackupsUsed()
- Returns:
- total backups used
-
getTotalGigabytesUsed
int getTotalGigabytesUsed()
- Returns:
- total GB used
-
-