Package com.woorea.openstack.heat.model
Class CreateStackParam
- java.lang.Object
-
- com.woorea.openstack.heat.model.CreateStackParam
-
public class CreateStackParam extends Object
-
-
Constructor Summary
Constructors Constructor Description CreateStackParam()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEnvironment()Map<String,String>getParameters()StringgetStackName()StringgetTemplate()StringgetTemplateUrl()intgetTimeoutMinutes()voidsetEnvironment(String environment)A JSON environment for the stack.voidsetParameters(Map<String,String> parameters)voidsetStackName(String stackName)voidsetTemplate(String template)A JSON template to instantiate.voidsetTemplateUrl(String templateUrl)The URL of the template to instantiate.voidsetTimeoutMinutes(int timeoutMinutes)StringtoString()
-
-
-
Method Detail
-
getStackName
public String getStackName()
-
setStackName
public void setStackName(String stackName)
-
getTemplateUrl
public String getTemplateUrl()
-
setTemplateUrl
public void setTemplateUrl(String templateUrl)
The URL of the template to instantiate. This value is ignored if the template is supplied inline.- Parameters:
templateUrl- a template url.
-
getTemplate
public String getTemplate()
-
setTemplate
public void setTemplate(String template)
A JSON template to instantiate. This value takes precedence over the template URL if both are supplied.- Parameters:
template- a template json.
-
getTimeoutMinutes
public int getTimeoutMinutes()
-
setTimeoutMinutes
public void setTimeoutMinutes(int timeoutMinutes)
-
getEnvironment
public String getEnvironment()
-
setEnvironment
public void setEnvironment(String environment)
A JSON environment for the stack.- Parameters:
environment- a environment.
-
-