Package org.openstack4j.model.sahara
Interface Instance
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
SaharaInstance
public interface Instance extends ModelEntity
An Openstack Sahara Instance- Author:
- ekasit.kijsipongse@nectec.or.th
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DategetCreatedAt()StringgetId()StringgetInstanceId()StringgetInternalIp()StringgetManagementIp()StringgetName()DategetUpdatedAt()List<String>getVolumes()TODO: how volumes are presented?
-
-
-
Method Detail
-
getName
String getName()
- Returns:
- the name of the instance
-
getCreatedAt
Date getCreatedAt()
- Returns:
- the created date of the instance
-
getUpdatedAt
Date getUpdatedAt()
- Returns:
- the updated date of the instance
-
getInstanceId
String getInstanceId()
- Returns:
- the NOVA instance identifier
-
getManagementIp
String getManagementIp()
- Returns:
- the management IP of the instance
-
getVolumes
List<String> getVolumes()
TODO: how volumes are presented?- Returns:
- the volumes of the instance
-
getInternalIp
String getInternalIp()
- Returns:
- the internal IP of the instance
-
getId
String getId()
- Returns:
- the Sahara instance identifier
-
-