Package org.openstack4j.model.heat
Interface Event
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
HeatEvent
public interface Event extends ModelEntity
This interface describes the getter-methods (and thus components) of a event. All getters map to the possible return values ofGet /v1/{tenant_id}/stacks/{stack_name}/{stack_id}/resources/{resource_name}/events/{event_id}- Author:
- Octopus Zhang
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()Returns the id of the eventList<? extends Link>getLinks()Returns the links of the eventStringgetLocalReourceId()Returns the logical_resource_id of the eventStringgetPhysicalResourceId()Returns the physical_resource_id of the eventStringgetReason()Returns the resource_status_reason of the eventStringgetResourceName()Returns the resource_name of the eventObjectgetResourceProperties()Returns the resource properties of the eventStringgetResourceStatus()Returns the resource_status of the eventStringgetResourceType()Returns the resource type of the eventDategetTime()Returns the event_time of the event
-
-
-
Method Detail
-
getId
String getId()
Returns the id of the event- Returns:
- the id of the event
-
getResourceName
String getResourceName()
Returns the resource_name of the event- Returns:
- the resource_name of the event
-
getTime
Date getTime()
Returns the event_time of the event- Returns:
- the event_time of the event
-
getLocalReourceId
String getLocalReourceId()
Returns the logical_resource_id of the event- Returns:
- the logical_resource_id of the event
-
getReason
String getReason()
Returns the resource_status_reason of the event- Returns:
- the resource_status_reason of the event
-
getResourceStatus
String getResourceStatus()
Returns the resource_status of the event- Returns:
- the resource_status of the event
-
getPhysicalResourceId
String getPhysicalResourceId()
Returns the physical_resource_id of the event- Returns:
- the physical_resource_id of the event
-
getLinks
List<? extends Link> getLinks()
Returns the links of the event- Returns:
- the links of the event
-
getResourceType
String getResourceType()
Returns the resource type of the event- Returns:
- the resource type of the event
-
getResourceProperties
Object getResourceProperties()
Returns the resource properties of the event- Returns:
- the resource properties of the event
-
-