Class HeatStackUpdate
- java.lang.Object
-
- org.openstack4j.openstack.heat.domain.HeatStackUpdate
-
- All Implemented Interfaces:
Serializable,Buildable<StackUpdateBuilder>,BaseStackCreateUpdate,StackUpdate,ModelEntity
public class HeatStackUpdate extends Object implements StackUpdate
Model Entity used for updating a Stack- Author:
- Jeremy Unruh
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHeatStackUpdate.HeatStackUpdateConcreteBuilder-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Constructor Summary
Constructors Constructor Description HeatStackUpdate()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StackUpdateBuilderbuilder()StringgetEnvironment()Map<String,String>getFiles()Map<String,String>getParameters()Returns the parameters which are used for creation of the stackStringgetTags()StringgetTempateURL()StringgetTemplate()Returns the Heat template if it was stored in JSON format or YAML formatStackUpdateBuildertoBuilder()
-
-
-
Method Detail
-
builder
public static StackUpdateBuilder builder()
-
getParameters
public Map<String,String> getParameters()
Description copied from interface:BaseStackCreateUpdateReturns the parameters which are used for creation of the stack- Specified by:
getParametersin interfaceBaseStackCreateUpdate- Returns:
- Map of parameters. This map is
nullif no parameter has been set. Returns empty if no parameter has been set.
-
getTemplate
public String getTemplate()
Description copied from interface:BaseStackCreateUpdateReturns the Heat template if it was stored in JSON format or YAML format- Specified by:
getTemplatein interfaceBaseStackCreateUpdate- Returns:
- the JSON or YAML formatted template out of which the stack is to be
created. Returns
nullif no JSON formatted template has been set.
-
getTempateURL
public String getTempateURL()
-
getEnvironment
public String getEnvironment()
-
getTags
public String getTags()
-
toBuilder
public StackUpdateBuilder toBuilder()
- Specified by:
toBuilderin interfaceBuildable<StackUpdateBuilder>
-
-