Class HeatResource
- java.lang.Object
-
- org.openstack4j.openstack.heat.domain.HeatResource
-
- All Implemented Interfaces:
Serializable,Resource,ModelEntity
public class HeatResource extends Object implements Resource
This is a model of a HeatResource. It uses Jackson annotations for (de)serialization into JSON format- Author:
- Octopus Zhang
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHeatResource.ResourcesAn inner class for representing lists of Heat Resource
-
Constructor Summary
Constructors Constructor Description HeatResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<? extends Link>getLinks()Returns the link of the resourceStringgetLocalReourceId()Returns the local resource id of the resourceStringgetPhysicalResourceId()Returns the local physical resource id of the resourceStringgetReason()Returns the type of the resourceList<String>getRequiredBy()Returns the resource name which need this resourceStringgetResourceName()Returns the name of the resourceStringgetResourceStatus()Returns the local resource id of the resourceDategetTime()Returns the update time of the resourceStringgetType()Returns the type of the resource
-
-
-
Method Detail
-
getLinks
public List<? extends Link> getLinks()
Description copied from interface:ResourceReturns the link of the resource
-
getTime
public Date getTime()
Description copied from interface:ResourceReturns the update time of the resource
-
getType
public String getType()
Description copied from interface:ResourceReturns the type of the resource
-
getReason
public String getReason()
Description copied from interface:ResourceReturns the type of the resource
-
getResourceName
public String getResourceName()
Description copied from interface:ResourceReturns the name of the resource- Specified by:
getResourceNamein interfaceResource- Returns:
- the name of the resource
-
getLocalReourceId
public String getLocalReourceId()
Description copied from interface:ResourceReturns the local resource id of the resource- Specified by:
getLocalReourceIdin interfaceResource- Returns:
- the local resource id of the resource
-
getResourceStatus
public String getResourceStatus()
Description copied from interface:ResourceReturns the local resource id of the resource- Specified by:
getResourceStatusin interfaceResource- Returns:
- the local resource id of the resource
-
getPhysicalResourceId
public String getPhysicalResourceId()
Description copied from interface:ResourceReturns the local physical resource id of the resource- Specified by:
getPhysicalResourceIdin interfaceResource- Returns:
- the local physical resource id of the resource
-
getRequiredBy
public List<String> getRequiredBy()
Description copied from interface:ResourceReturns the resource name which need this resource- Specified by:
getRequiredByin interfaceResource- Returns:
- the resource name which need this resource
-
-