Package org.openstack4j.model.telemetry
Interface Meter
-
- All Superinterfaces:
ModelEntity,Serializable
- All Known Implementing Classes:
CeilometerMeter
public interface Meter extends ModelEntity
A Meter is a category of Measurement- Author:
- Jeremy Unruh
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classMeter.TypeThe Meter Type
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()StringgetName()StringgetProjectId()StringgetResourceId()Meter.TypegetType()StringgetUnit()StringgetUserId()
-
-
-
Method Detail
-
getId
String getId()
- Returns:
- the unique identifier for the meter
-
getName
String getName()
- Returns:
- the unique name of the meter
-
getResourceId
String getResourceId()
- Returns:
- the ID of the Resource for which the measurements are taken
-
getProjectId
String getProjectId()
- Returns:
- the ID of the project/tenant that owns the resource
-
getType
Meter.Type getType()
- Returns:
- the meter type
-
getUnit
String getUnit()
- Returns:
- the unit of measure
-
getUserId
String getUserId()
- Returns:
- The user id who last modified the resource
-
-