com.huaweicloud.sdk.aom.v2.model.ShowMetricsDataResponse Maven / Gradle / Ivy
package com.huaweicloud.sdk.aom.v2.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.huaweicloud.sdk.core.SdkResponse;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;
/**
* Response Object
*/
public class ShowMetricsDataResponse extends SdkResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "errorCode")
private String errorCode;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "errorMessage")
private String errorMessage;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "metrics")
private List metrics = null;
public ShowMetricsDataResponse withErrorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* 响应码。
* @return errorCode
*/
public String getErrorCode() {
return errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public ShowMetricsDataResponse withErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* 响应信息描述。
* @return errorMessage
*/
public String getErrorMessage() {
return errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public ShowMetricsDataResponse withMetrics(List metrics) {
this.metrics = metrics;
return this;
}
public ShowMetricsDataResponse addMetricsItem(MetricDataValue metricsItem) {
if (this.metrics == null) {
this.metrics = new ArrayList<>();
}
this.metrics.add(metricsItem);
return this;
}
public ShowMetricsDataResponse withMetrics(Consumer> metricsSetter) {
if (this.metrics == null) {
this.metrics = new ArrayList<>();
}
metricsSetter.accept(this.metrics);
return this;
}
/**
* 指标对象列表。
* @return metrics
*/
public List getMetrics() {
return metrics;
}
public void setMetrics(List metrics) {
this.metrics = metrics;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ShowMetricsDataResponse that = (ShowMetricsDataResponse) obj;
return Objects.equals(this.errorCode, that.errorCode) && Objects.equals(this.errorMessage, that.errorMessage)
&& Objects.equals(this.metrics, that.metrics);
}
@Override
public int hashCode() {
return Objects.hash(errorCode, errorMessage, metrics);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ShowMetricsDataResponse {\n");
sb.append(" errorCode: ").append(toIndentedString(errorCode)).append("\n");
sb.append(" errorMessage: ").append(toIndentedString(errorMessage)).append("\n");
sb.append(" metrics: ").append(toIndentedString(metrics)).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 ");
}
}