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

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

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.model.sahara;

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

import org.openstack4j.model.ModelEntity;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
 * A Sahara image
 * 
 * @author [email protected]
 */
public interface Image extends ModelEntity {

        enum Status {
            UNRECOGNIZED, ACTIVE, SAVING, QUEUED, KILLED, PENDING_DELETE, DELETED, ERROR; // Use Glance Image Status 

            @JsonCreator
            public static Status forValue(String v) {
                if (v == null) return UNRECOGNIZED;
                try {
                    return valueOf(v.toUpperCase());
                } catch (IllegalArgumentException e) {
                    return UNRECOGNIZED;
                }
            }
        }

	/**
	 * @return the status of this image
	 */
	Status getStatus();

	/**
	 * @return the username of this image
	 */
	String getUsername();

	/**
	 * @return the date the image was last updated
	 */
	Date getUpdated();
	
	/**
	 * @return the size in bytes
	 */
	long getSize();
	
	/**
	 * @return the descriptive name of the image
	 */
	String getName();
	
	/**
	 * @return the date the image was created
	 */
	Date getCreated();
	
	/**
	 * @return the tags associated with this image
	 */
	List getTags();
	
	/**
	 * @return the minimum disk in bytes
	 */
	int getMinDisk();

	/**
	 * @return the progress of the image during upload or setup
	 */
	int getProgress();
	
	/**
	 * @return the minimum ram in bytes
	 */
	int getMinRam();
	
	/**
	 * @return extra metadata/specs associated with the image
	 */
	Map getMetaData();
	
	/**
	 * @return the identifier of this image
	 */
	String getId();
	
	/**
	 * @return the description of this image
	 */
	String getDescription();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy