Package org.openstack4j.model.compute
Interface Image
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
NovaImage
@Deprecated public interface Image extends ModelEntity
Deprecated.An OpenStack image is a collection of files used to create a Server. Users provide pre-built OS images by default and or custom images can be built- Author:
- Jeremy Unruh
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classImage.StatusDeprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description DategetCreated()Deprecated.StringgetId()Deprecated.List<? extends Link>getLinks()Deprecated.Map<String,Object>getMetaData()Deprecated.intgetMinDisk()Deprecated.intgetMinRam()Deprecated.StringgetName()Deprecated.intgetProgress()Deprecated.longgetSize()Deprecated.Image.StatusgetStatus()Deprecated.DategetUpdated()Deprecated.booleanisSnapshot()Deprecated.Determines if this image is a snapshot
-
-
-
Method Detail
-
getId
String getId()
Deprecated.- Returns:
- the identifier of this image
-
getName
String getName()
Deprecated.- Returns:
- the descriptive name of the image
-
getSize
long getSize()
Deprecated.- Returns:
- the size in bytes
-
getMinDisk
int getMinDisk()
Deprecated.- Returns:
- the minimum disk in bytes
-
getMinRam
int getMinRam()
Deprecated.- Returns:
- the minimum ram in bytes
-
getProgress
int getProgress()
Deprecated.- Returns:
- the progress of the image during upload or setup
-
getStatus
Image.Status getStatus()
Deprecated.- Returns:
- the status of this image
-
getCreated
Date getCreated()
Deprecated.- Returns:
- the date the image was created
-
getUpdated
Date getUpdated()
Deprecated.- Returns:
- the date the image was last updated
-
getLinks
List<? extends Link> getLinks()
Deprecated.- Returns:
- external reference links for the image
-
getMetaData
Map<String,Object> getMetaData()
Deprecated.- Returns:
- extra metadata/specs associated with the image
-
isSnapshot
boolean isSnapshot()
Deprecated.Determines if this image is a snapshot- Returns:
- true if this image is a snapshot
-
-