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

org.openstack4j.model.compute.HostAggregate Maven / Gradle / Ivy

package org.openstack4j.model.compute;

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

import org.openstack4j.model.ModelEntity;
/**
 * Represents the HostAggregates
 * @author liujunpeng
 *
 */
public interface HostAggregate extends ModelEntity {

	/**
	 * Availability zone of aggregate
	 * @return Availability zone
	 */
	String getAvaiablityZone();
	/**
	 * 
	 * @return created time
	 */
	Date getCreate();
	/**
	 * 
	 * @return true:deleted;false:no
	 */
	boolean isDeleted();
	/**
	 * 
	 * @return deleted time
	 */
	Date getDeletedAt();
	
	/**
	 * Host ID to add to an aggregate, which is a collection of multiple groups
	 * of hosts that share common resources like storage and network.
	 * 
	 * @return hosts list
	 */
	List getHosts();

	/**
	 * The ID associated with an aggregate
	 * 
	 * @return id
	 */
	String getId();
	/**
	 * Metadata value
	 * @return Map
	 */
	Map getMetadata();
	/**
	 * 
	 * @return name
	 */
	String getName();
	/**
	 * 
	 * @return last updated time
	 */
	Date getUpdatedAt();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy