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

org.openstack4j.model.sahara.Instance Maven / Gradle / Ivy

package org.openstack4j.model.sahara;

import java.util.Date;
import java.util.List;

import org.openstack4j.model.ModelEntity;

/**
 * An Openstack Sahara Instance
 * 
 * @author [email protected]
 */
public interface Instance extends ModelEntity {

	/**
	 * @return the name of the instance
	 */
	String getName();

	/**
	 * @return the created date of the instance
	 */
	Date getCreatedAt();

	/**
	 * @return the updated date of the instance
	 */
	Date getUpdatedAt();

	/**
	 * @return the NOVA instance identifier 
	 */
	String getInstanceId();
	
	/**
	 * @return the management IP of the instance
	 */
	String getManagementIp();
	
	/**
         * TODO: how volumes are presented?
	 * @return the volumes of the instance
	 */
	List getVolumes();
	
	/**
	 * @return the internal IP of the instance
	 */
	String getInternalIp();
	
	/**
	 * @return the Sahara instance identifier 
	 */
	String getId();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy