Package org.openstack4j.model.heat
Interface AdoptStackData
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
HeatAdoptStackData
public interface AdoptStackData extends ModelEntity
This interface describesadopt_stack_dataelement. It is used for stack adoption and as a return value for stack abandoning. All getters map to the possible return values ofDelete /v1/{tenant_id}/stacks/{stack_name}/{stack_id}/abandon- Author:
- Ales Kemr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAction()Returns stack action, e.g.StringgetId()Returns the id of the stackStringgetName()Returns the name of the stackMap<String,Map<String,Object>>getResources()Returns map of existing resources, to be adopted into the stackStringgetStatus()Returns the status of the stackMap<String,Object>getTemplate()Returns stack template as a map
-
-
-
Method Detail
-
getAction
String getAction()
Returns stack action, e.g. CREATE- Returns:
- stack action
-
getId
String getId()
Returns the id of the stack- Returns:
- the id of the stack
-
getName
String getName()
Returns the name of the stack- Returns:
- the name of the stack
-
getStatus
String getStatus()
Returns the status of the stack- Returns:
- the status of the stack
-
getTemplate
Map<String,Object> getTemplate()
Returns stack template as a map- Returns:
- stack template as a map
-
-