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

org.openstack4j.model.compute.QuotaSet Maven / Gradle / Ivy

package org.openstack4j.model.compute;

import org.openstack4j.model.ModelEntity;

/**
 * An OpenStack Quota-Set
 * 
 * @author Jeremy Unruh
 */
public interface QuotaSet extends ModelEntity {

	/**
	 * @return the identifier
	 */
	String getId();

	/**
	 * @return Metadata items permitted
	 */
	int getMetadataItems();

	/**
	 * @return Injected file maximum length
	 */
	int getInjectedFileContentBytes();

	/**
	 * @return Number of inject-able files
	 */
	int getInjectedFiles();

	/**
	 * @return the number of gigabytes allowed
	 */
	int getGigabytes();

	/**
	 * @return Quantity of instanceable RAM (MBytes)
	 */
	int getRam();

	/**
	 * @return Number of floating IP
	 */
	int getFloatingIps();

	/**
	 * @return Number of permitted instances
	 */
	int getInstances();

	/**
	 * @return Number of permitted volumes
	 */
	int getVolumes();

	/**
	 * @return Number of instanceable cores
	 */
	int getCores();

	/**
	 * @return Number of security groups permitted
	 */
	int getSecurityGroups();

	/**
	 * @return Number of rules per security group permitted
	 */
	int getSecurityGroupRules();

	/**
	 * @return Injected file path name maximum length
	 */
	int getInjectedFilePathBytes();

	/**
	 * @return  Number of keypairs
	 */
	int getKeyPairs();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy