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

org.openstack4j.model.sahara.NodeGroup 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.common.Buildable;
import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.sahara.builder.NodeGroupBuilder;

/**
 * A Sahara Node Group 
 * 
 * @author Ekasit Kijsipongse
 */
public interface NodeGroup extends ModelEntity, Buildable {

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

        /**
         * @return the number of instances in node groups
         */
        Integer getCount();

        /**
         * @return the id of node group template
         */
        String getNodeGroupTemplateId();

	/**
	 * @return the created date 
	 */
	Date getCreatedAt();
	
	/**
	 * @return the updated date 
	 */
	Date getUpdatedAt();
	
	/**
	 * @return the id of floating IP Pool
	 */
	String getFloatingNetworkId();
	
	/**
	 * @return the number of volumes per node
	 */
	Integer getVolumesPerNode();

	/**
	 * @return the volumes size
	 */
	Integer getVolumesSize();
	
	/**
	 * @return the volume mount prefix
	 */
	String getVolumeMountPrefix();
	
	/**
	 * @return the image identifier 
	 */
	String getImageId();
	
	/**
	 * @return the flavor identifier
	 */
	String getFlavorId();
	
        /**
         * @return the security groups
         */
        List getSecurityGroups();

	/**
	 * @return the auto security group
	 */
	Boolean isAutoSecurityGroup();
	
	/**
	 * @return node processes
	 */
	List getNodeProcesses();
	
	/**
	 * @return map of service configurations or null
	 */
	Map getServiceConfigs();

	/**
	 * @return instances in the node group
	 */
	List< ? extends Instance> getInstances();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy