Class ManilaAbsoluteLimit
- java.lang.Object
-
- org.openstack4j.openstack.manila.domain.ManilaAbsoluteLimit
-
- All Implemented Interfaces:
AbsoluteLimit
public class ManilaAbsoluteLimit extends Object implements AbsoluteLimit
Absolute limits contain information about:- Total maximum share memory, in GBs.
- Number of share-networks.
- Number of share-snapshots.
- Number of shares.
- Shares and total used memory, in GBs.
- Snapshots and total used memory, in GBs.
- Author:
- Daniel Gonzalez Nothnagel
-
-
Constructor Summary
Constructors Constructor Description ManilaAbsoluteLimit()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetMaxTotalShareGigabytes()intgetMaxTotalShareNetworks()intgetMaxTotalShares()intgetMaxTotalShareSnapshots()intgetMaxTotalSnapshotGigabytes()intgetTotalShareGigabytesUsed()intgetTotalShareNetworksUsed()intgetTotalShareSnapshotsUsed()intgetTotalSharesUsed()intgetTotalSnapshotGigabytesUsed()
-
-
-
Method Detail
-
getMaxTotalShareGigabytes
public int getMaxTotalShareGigabytes()
- Specified by:
getMaxTotalShareGigabytesin interfaceAbsoluteLimit- Returns:
- the total number of share gigabytes that are allowed in a project
-
getMaxTotalSnapshotGigabytes
public int getMaxTotalSnapshotGigabytes()
- Specified by:
getMaxTotalSnapshotGigabytesin interfaceAbsoluteLimit- Returns:
- the total maximum number of snapshot gigabytes that are allowed in a project
-
getMaxTotalShares
public int getMaxTotalShares()
- Specified by:
getMaxTotalSharesin interfaceAbsoluteLimit- Returns:
- the total maximum number of shares that are allowed in a project
-
getMaxTotalShareSnapshots
public int getMaxTotalShareSnapshots()
- Specified by:
getMaxTotalShareSnapshotsin interfaceAbsoluteLimit- Returns:
- the total maximum number of share snapshots that are allowed in a project
-
getMaxTotalShareNetworks
public int getMaxTotalShareNetworks()
- Specified by:
getMaxTotalShareNetworksin interfaceAbsoluteLimit- Returns:
- the total maximum number of share-networks that are allowed in a project
-
getTotalSharesUsed
public int getTotalSharesUsed()
- Specified by:
getTotalSharesUsedin interfaceAbsoluteLimit- Returns:
- the total number of created shares in a project
-
getTotalShareSnapshotsUsed
public int getTotalShareSnapshotsUsed()
- Specified by:
getTotalShareSnapshotsUsedin interfaceAbsoluteLimit- Returns:
- the total number of created share snapshots in a project
-
getTotalShareNetworksUsed
public int getTotalShareNetworksUsed()
- Specified by:
getTotalShareNetworksUsedin interfaceAbsoluteLimit- Returns:
- the total number if created share-networks in a project
-
getTotalShareGigabytesUsed
public int getTotalShareGigabytesUsed()
- Specified by:
getTotalShareGigabytesUsedin interfaceAbsoluteLimit- Returns:
- the total number if gigabytes used in aproject by shares
-
getTotalSnapshotGigabytesUsed
public int getTotalSnapshotGigabytesUsed()
- Specified by:
getTotalSnapshotGigabytesUsedin interfaceAbsoluteLimit- Returns:
- the total number of gigabytes used in a project by snapshots
-
-