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

org.openstack4j.api.heat.StackService Maven / Gradle / Ivy

package org.openstack4j.api.heat;

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

import org.openstack4j.model.common.ActionResponse;
import org.openstack4j.model.heat.Stack;
import org.openstack4j.model.heat.StackCreate;
import org.openstack4j.model.heat.StackUpdate;

/**
 * This interface defines all methods for the manipulation of stacks
 * 
 * @author Matthias Reisser
 * 
 */
public interface StackService {
	/**
	 * POST /v1/{tenant_id}/stacks
* * Creates a new {@link Stack} out of a {@link StackCreate} object * * @param newStack * {@link StackCreate} object out of which stack is to be created * @return new {@link Stack} as returned from the server */ Stack create(StackCreate newStack); /** * Updates an existing Stack * * @param stackName the stack name * @param stackId the specific stack identifier * @param stackUpdate the stack update options * @return the action response */ ActionResponse update(String stackName, String stackId, StackUpdate stackUpdate); /** * POST /v1/{tenant_id}/stacks * Creates a new {@link StackCreate} Object and returns a new {@link Stack} as sent from the * server. * * @param name * Name of Stack * @param template * Template in Json-Format or YAML format * @param parameters * Map of parameters * @param disableRollback boolean to enable or disable rollback * @param timeOutMins timeout in minutes * @return new {@link Stack} as returned from the server */ Stack create(String name, String template, Map parameters, boolean disableRollback, Long timeOutMins); /** * returns details of a {@link Stack}. * @param stackName * Name of {@link Stack} * @return {@link Stack} */ Stack getStackByName(String name); /** * Gets a list of currently existing {@link Stack}s. * * @return the list of {@link Stack}s */ List list(); /** * returns details of a {@link Stack}. * * @param stackName * Name of {@link Stack} * @param stackId * Id of {@link Stack} * @return */ Stack getDetails(String stackName, String stackId); /** * Deletes the specified {@link Stack} from the server. * * @param stackName * Name of {@link Stack} * @param stackId * Id of {@link Stack} * @return the action response */ ActionResponse delete(String stackName, String stackId); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy