Class ExtMigration
- java.lang.Object
-
- org.openstack4j.openstack.compute.domain.ext.ExtMigration
-
- All Implemented Interfaces:
Serializable,Migration,ModelEntity
public class ExtMigration extends Object implements Migration
A model class implementation which enables an administrative user to fetch in-progress migrations for a region or specified cell in a region- Author:
- Jeremy Unruh
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classExtMigration.Migrations-
Nested classes/interfaces inherited from interface org.openstack4j.model.compute.ext.Migration
Migration.Status
-
-
Constructor Summary
Constructors Constructor Description ExtMigration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DategetCreatedAt()StringgetDestCompute()StringgetDestHost()StringgetDestNode()StringgetId()StringgetInstanceUuid()StringgetNewInstanceTypeId()StringgetOldInstanceTypeId()StringgetSourceCompute()StringgetSourceNode()Migration.StatusgetStatus()DategetUpdatedAt()StringtoString()
-
-
-
Method Detail
-
getInstanceUuid
public String getInstanceUuid()
- Specified by:
getInstanceUuidin interfaceMigration- Returns:
- the ID of the instance being migrated
-
getStatus
public Migration.Status getStatus()
-
getCreatedAt
public Date getCreatedAt()
- Specified by:
getCreatedAtin interfaceMigration- Returns:
- the created timestamp
-
getUpdatedAt
public Date getUpdatedAt()
- Specified by:
getUpdatedAtin interfaceMigration- Returns:
- the last updated timestamp
-
getDestCompute
public String getDestCompute()
- Specified by:
getDestComputein interfaceMigration- Returns:
- the destination compute node
-
getDestHost
public String getDestHost()
- Specified by:
getDestHostin interfaceMigration- Returns:
- the destination host
-
getDestNode
public String getDestNode()
- Specified by:
getDestNodein interfaceMigration- Returns:
- the destination node
-
getSourceCompute
public String getSourceCompute()
- Specified by:
getSourceComputein interfaceMigration- Returns:
- the source compute node
-
getSourceNode
public String getSourceNode()
- Specified by:
getSourceNodein interfaceMigration- Returns:
- the source node
-
getNewInstanceTypeId
public String getNewInstanceTypeId()
- Specified by:
getNewInstanceTypeIdin interfaceMigration- Returns:
- the ID of the new instance type
-
getOldInstanceTypeId
public String getOldInstanceTypeId()
- Specified by:
getOldInstanceTypeIdin interfaceMigration- Returns:
- the ID of the old instance type
-
-