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

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

package org.openstack4j.model.compute;

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

import org.openstack4j.model.ModelEntity;

/**
 * An OpenStack ServerGroup which is a group that the server in it must be Located on different hosts
 * 
 * @author Octopus Zhang
 */
public interface ServerGroup extends ModelEntity {

	/**
	 * @return the id of this group
	 */
	String getId();
	
	/**
	 * @return the name of this group
	 */
	String getName();
	
	/**
	 * @return the servers in this group
	 */
	List getMembers();
	
	/**
	 * @return the metadata of this group
	 */
	Map getMetadata();
	
	/**
	 * @return the polices of this group
	 */
	List getPolicies();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy