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

com.huawei.openstack4j.model.map.reduce.builder.NodeGroupTemplateBuilder Maven / Gradle / Ivy

/*******************************************************************************
 * 	Copyright 2016 ContainX and OpenStack4j                                          
 * 	                                                                                 
 * 	Licensed under the Apache License, Version 2.0 (the "License"); you may not      
 * 	use this file except in compliance with the License. You may obtain a copy of    
 * 	the License at                                                                   
 * 	                                                                                 
 * 	    http://www.apache.org/licenses/LICENSE-2.0                                   
 * 	                                                                                 
 * 	Unless required by applicable law or agreed to in writing, software              
 * 	distributed under the License is distributed on an "AS IS" BASIS, WITHOUT        
 * 	WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the         
 * 	License for the specific language governing permissions and limitations under    
 * 	the License.                                                                     
 *******************************************************************************/
package com.huawei.openstack4j.model.map.reduce.builder;

import com.huawei.openstack4j.common.Buildable.Builder;
import com.huawei.openstack4j.model.map.reduce.NodeGroupTemplate;
import com.huawei.openstack4j.model.map.reduce.ServiceConfig;

/**
 * Builder interface used for {@link NodeGroupTemplate} object.
 * 
 * @author Ekasit Kijsipongse
 */
public interface NodeGroupTemplateBuilder extends Builder {

        //
        // Define setter apis for user to create a new node group template
        //
        
	/**
	 * See {@link NodeGroupTemplate#getName()}
	 * 
	 * @param name the name of the node group template
	 * @return NodeGroupTemplateBuilder
	 */
	NodeGroupTemplateBuilder name(String name);
	
	/**
	 * See {@link NodeGroupTemplate#getDescription()}
	 * 
	 * @param description the description of the node group template
	 * @return NodeGroupTemplateBuilder
	 */
	NodeGroupTemplateBuilder description(String description);

	/**
	 * See {@link NodeGroupTemplate#getHadoopVersion()}
	 * 
	 * @param hadoopVersion the version of hadoop
	 * @return NodeGroupTemplateBuilder
	 */
	NodeGroupTemplateBuilder hadoopVersion(String hadoopVersion);

	/**
	 * See {@link NodeGroupTemplate#getPluginName()}
	 * 
	 * @param pluginName the name of the MapReduce plugin
	 * @return NodeGroupTemplateBuilder
	 */
	NodeGroupTemplateBuilder pluginName(String pluginName);

        /**
         * See {@link NodeGroupTemplate#getFloatingNetworkId()}
         * 
         * @param  networkId the id of floating IP Pool
         * @return NodeGroupTemplateBuilder
         */
        NodeGroupTemplateBuilder floatingIpPool(String networkId);

        /**
         * See {@link NodeGroupTemplate#getFlavorId()}
         * 
         * @param flavorId the id of flavor
         * @return NodeGroupTemplateBuilder
         */
        NodeGroupTemplateBuilder flavor(String flavorId);

         /**
          * Set the security group.
          *
          * @param isAutoSecurityGroup true or false
          * @return this builder
          */
        NodeGroupTemplateBuilder setAutoSecurityGroup(boolean isAutoSecurityGroup);

         /**
          * Add the security group.
          *
          * @param id the id
          * @return this builder
          */
        NodeGroupTemplateBuilder addSecurityGroup(String id);

         /**
          * Add a node process
          *
          * @param name the name
          * @return this builder
          */
        NodeGroupTemplateBuilder addNodeProcess(String name);

         /**
          * Add a service config
          *
          * @param name the service name
          * @param config the config
          * @return this builder
          */
        NodeGroupTemplateBuilder addServiceConfig(String name, ServiceConfig config);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy