
com.huaweicloud.sdk.bcs.v2.model.MetricDataPoints Maven / Gradle / Ivy
package com.huaweicloud.sdk.bcs.v2.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.huaweicloud.sdk.bcs.v2.model.StatisticValue;
import java.util.ArrayList;
import java.util.List;
import java.util.function.Consumer;
import java.util.Objects;
/**
* 查询结果要点
*/
public class MetricDataPoints {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value="timestamp")
private Long timestamp;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value="unit")
private String unit;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value="statistics")
private List statistics = null;
public MetricDataPoints withTimestamp(Long timestamp) {
this.timestamp = timestamp;
return this;
}
/**
* 时间戳。
* @return timestamp
*/
public Long getTimestamp() {
return timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public MetricDataPoints withUnit(String unit) {
this.unit = unit;
return this;
}
/**
* 指标单位。
* @return unit
*/
public String getUnit() {
return unit;
}
public void setUnit(String unit) {
this.unit = unit;
}
public MetricDataPoints withStatistics(List statistics) {
this.statistics = statistics;
return this;
}
public MetricDataPoints addStatisticsItem(StatisticValue statisticsItem) {
if(this.statistics == null) {
this.statistics = new ArrayList<>();
}
this.statistics.add(statisticsItem);
return this;
}
public MetricDataPoints withStatistics(Consumer> statisticsSetter) {
if(this.statistics == null) {
this.statistics = new ArrayList<>();
}
statisticsSetter.accept(this.statistics);
return this;
}
/**
* 统计方式。
* @return statistics
*/
public List getStatistics() {
return statistics;
}
public void setStatistics(List statistics) {
this.statistics = statistics;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
MetricDataPoints metricDataPoints = (MetricDataPoints) o;
return Objects.equals(this.timestamp, metricDataPoints.timestamp) &&
Objects.equals(this.unit, metricDataPoints.unit) &&
Objects.equals(this.statistics, metricDataPoints.statistics);
}
@Override
public int hashCode() {
return Objects.hash(timestamp, unit, statistics);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class MetricDataPoints {\n");
sb.append(" timestamp: ").append(toIndentedString(timestamp)).append("\n");
sb.append(" unit: ").append(toIndentedString(unit)).append("\n");
sb.append(" statistics: ").append(toIndentedString(statistics)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy