Class VolumeQuota
- java.lang.Object
-
- org.jclouds.openstack.cinder.v1.domain.VolumeQuota
-
public class VolumeQuota extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
VolumeQuota.Builder<T extends VolumeQuota.Builder<T>>
-
Constructor Summary
Constructors Modifier Constructor Description protected
VolumeQuota(String id, int volumes, int gigabytes, int snapshots)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static VolumeQuota.Builder<?>
builder()
boolean
equals(Object obj)
int
getGigabytes()
The limit of the total size of all volumes for the tenantString
getId()
The id of the tenant this set of limits applies toint
getSnapshots()
The limit of the number of snapshots that can be used by the tenantint
getVolumes()
The limit of the number of volumes that can be created for the tenantint
hashCode()
protected com.google.common.base.MoreObjects.ToStringHelper
string()
VolumeQuota.Builder<?>
toBuilder()
String
toString()
-
-
-
Constructor Detail
-
VolumeQuota
protected VolumeQuota(String id, int volumes, int gigabytes, int snapshots)
-
-
Method Detail
-
getId
public String getId()
The id of the tenant this set of limits applies to
-
getVolumes
public int getVolumes()
The limit of the number of volumes that can be created for the tenant
-
getGigabytes
public int getGigabytes()
The limit of the total size of all volumes for the tenant
-
getSnapshots
public int getSnapshots()
The limit of the number of snapshots that can be used by the tenant
-
string
protected com.google.common.base.MoreObjects.ToStringHelper string()
-
builder
public static VolumeQuota.Builder<?> builder()
-
toBuilder
public VolumeQuota.Builder<?> toBuilder()
-
-