All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openstack4j.model.manila.AbsoluteLimit Maven / Gradle / Ivy

package org.openstack4j.model.manila;

/**
 * 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 */ public interface AbsoluteLimit { /** * @return the total number of share gigabytes that are allowed in a project */ int getMaxTotalShareGigabytes(); /** * @return the total maximum number of snapshot gigabytes that are allowed in a project */ int getMaxTotalSnapshotGigabytes(); /** * @return the total maximum number of shares that are allowed in a project */ int getMaxTotalShares(); /** * @return the total maximum number of share snapshots that are allowed in a project */ int getMaxTotalShareSnapshots(); /** * @return the total maximum number of share-networks that are allowed in a project */ int getMaxTotalShareNetworks(); /** * @return the total number of created shares in a project */ int getTotalSharesUsed(); /** * @return the total number of created share snapshots in a project */ int getTotalShareSnapshotsUsed(); /** * @return the total number if created share-networks in a project */ int getTotalShareNetworksUsed(); /** * @return the total number if gigabytes used in aproject by shares */ int getTotalShareGigabytesUsed(); /** * @return the total number of gigabytes used in a project by snapshots */ int getTotalSnapshotGigabytesUsed(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy