com.openshift.cloud.api.kas.models.InstantQuery Maven / Gradle / Ivy
/*
* Kafka Management API
* Kafka Management API is a REST API to manage Kafka instances
*
* The version of the OpenAPI document: 1.14.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.openshift.cloud.api.kas.models;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
/**
* InstantQuery
*/
@JsonPropertyOrder({
InstantQuery.JSON_PROPERTY_METRIC,
InstantQuery.JSON_PROPERTY_TIMESTAMP,
InstantQuery.JSON_PROPERTY_VALUE
})
@JsonTypeName("InstantQuery")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class InstantQuery {
public static final String JSON_PROPERTY_METRIC = "metric";
private Map metric = null;
public static final String JSON_PROPERTY_TIMESTAMP = "timestamp";
private Long timestamp;
public static final String JSON_PROPERTY_VALUE = "value";
private Double value;
public InstantQuery() {
}
public InstantQuery metric(Map metric) {
this.metric = metric;
return this;
}
public InstantQuery putMetricItem(String key, String metricItem) {
if (this.metric == null) {
this.metric = new HashMap<>();
}
this.metric.put(key, metricItem);
return this;
}
/**
* Get metric
* @return metric
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_METRIC)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Map getMetric() {
return metric;
}
@JsonProperty(JSON_PROPERTY_METRIC)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setMetric(Map metric) {
this.metric = metric;
}
public InstantQuery timestamp(Long timestamp) {
this.timestamp = timestamp;
return this;
}
/**
* Get timestamp
* @return timestamp
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_TIMESTAMP)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getTimestamp() {
return timestamp;
}
@JsonProperty(JSON_PROPERTY_TIMESTAMP)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public InstantQuery value(Double value) {
this.value = value;
return this;
}
/**
* Get value
* @return value
**/
@javax.annotation.Nonnull
@ApiModelProperty(required = true, value = "")
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Double getValue() {
return value;
}
@JsonProperty(JSON_PROPERTY_VALUE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setValue(Double value) {
this.value = value;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
InstantQuery instantQuery = (InstantQuery) o;
return Objects.equals(this.metric, instantQuery.metric) &&
Objects.equals(this.timestamp, instantQuery.timestamp) &&
Objects.equals(this.value, instantQuery.value);
}
@Override
public int hashCode() {
return Objects.hash(metric, timestamp, value);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class InstantQuery {\n");
sb.append(" metric: ").append(toIndentedString(metric)).append("\n");
sb.append(" timestamp: ").append(toIndentedString(timestamp)).append("\n");
sb.append(" value: ").append(toIndentedString(value)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}