Class LoadBalancerMonitoringMetricDataPoint
- java.lang.Object
-
- com.softlayer.api.Type
-
- com.softlayer.api.service.Entity
-
- com.softlayer.api.service.network.lbaas.LoadBalancerMonitoringMetricDataPoint
-
@ApiType("SoftLayer_Network_LBaaS_LoadBalancerMonitoringMetricDataPoint") public class LoadBalancerMonitoringMetricDataPoint extends Entity
SoftLayer_Network_LBaaS_LoadBalancerMonitoringMetricDataPoint is a collection of datapoints retrieved from a load balancer instance. The available metrics are:- The metric value
- The timestamp when the metric value was obtained
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
LoadBalancerMonitoringMetricDataPoint.Mask
-
Field Summary
Fields Modifier and Type Field Description protected Long
epochTimestamp
Epoch Timeprotected boolean
epochTimestampSpecified
protected BigDecimal
value
a valueprotected boolean
valueSpecified
-
Fields inherited from class com.softlayer.api.Type
unknownProperties
-
-
Constructor Summary
Constructors Constructor Description LoadBalancerMonitoringMetricDataPoint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Long
getEpochTimestamp()
BigDecimal
getValue()
boolean
isEpochTimestampSpecified()
boolean
isValueSpecified()
void
setEpochTimestamp(Long epochTimestamp)
void
setValue(BigDecimal value)
void
unsetEpochTimestamp()
void
unsetValue()
-
Methods inherited from class com.softlayer.api.Type
getUnknownProperties, setUnknownProperties
-
-
-
-
Field Detail
-
epochTimestamp
@ApiProperty(canBeNullOrNotSet=true) protected Long epochTimestamp
Epoch Time
-
epochTimestampSpecified
protected boolean epochTimestampSpecified
-
value
@ApiProperty(canBeNullOrNotSet=true) protected BigDecimal value
a value
-
valueSpecified
protected boolean valueSpecified
-
-
Method Detail
-
getEpochTimestamp
public Long getEpochTimestamp()
-
setEpochTimestamp
public void setEpochTimestamp(Long epochTimestamp)
-
isEpochTimestampSpecified
public boolean isEpochTimestampSpecified()
-
unsetEpochTimestamp
public void unsetEpochTimestamp()
-
getValue
public BigDecimal getValue()
-
setValue
public void setValue(BigDecimal value)
-
isValueSpecified
public boolean isValueSpecified()
-
unsetValue
public void unsetValue()
-
-