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

org.openstack4j.model.storage.block.BlockQuotaSet Maven / Gradle / Ivy

package org.openstack4j.model.storage.block;

import org.openstack4j.common.Buildable;
import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.storage.block.builder.BlockQuotaSetBuilder;

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

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

    /**
     *
     * @return the Snapshots.
     */
    int getSnapshots();

    /**
     *
     * @return the Volumes
     */
    int getVolumes();

    /**
     *
     * @return the gigabytes
     */
    int getGigabytes();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy