io.fabric8.kubernetes.api.model.NodeCondition Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
/**
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"lastHeartbeatTime",
"lastTransitionTime",
"message",
"reason",
"status",
"type"
})
public class NodeCondition {
/**
* last time we got an update on a given condition
*
*/
@JsonProperty("lastHeartbeatTime")
private String lastHeartbeatTime;
/**
* last time the condition transit from one status to another
*
*/
@JsonProperty("lastTransitionTime")
private String lastTransitionTime;
/**
* human readable message indicating details about last transition
*
*/
@JsonProperty("message")
private String message;
/**
* (brief) reason for the condition's last transition
*
*/
@JsonProperty("reason")
private String reason;
/**
* status of the condition
*
*/
@JsonProperty("status")
private String status;
/**
* type of node condition
*
*/
@JsonProperty("type")
private String type;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public NodeCondition() {
}
/**
*
* @param message
* @param status
* @param reason
* @param lastHeartbeatTime
* @param lastTransitionTime
* @param type
*/
public NodeCondition(String lastHeartbeatTime, String lastTransitionTime, String message, String reason, String status, String type) {
this.lastHeartbeatTime = lastHeartbeatTime;
this.lastTransitionTime = lastTransitionTime;
this.message = message;
this.reason = reason;
this.status = status;
this.type = type;
}
/**
* last time we got an update on a given condition
*
* @return
* The lastHeartbeatTime
*/
@JsonProperty("lastHeartbeatTime")
public String getLastHeartbeatTime() {
return lastHeartbeatTime;
}
/**
* last time we got an update on a given condition
*
* @param lastHeartbeatTime
* The lastHeartbeatTime
*/
@JsonProperty("lastHeartbeatTime")
public void setLastHeartbeatTime(String lastHeartbeatTime) {
this.lastHeartbeatTime = lastHeartbeatTime;
}
/**
* last time the condition transit from one status to another
*
* @return
* The lastTransitionTime
*/
@JsonProperty("lastTransitionTime")
public String getLastTransitionTime() {
return lastTransitionTime;
}
/**
* last time the condition transit from one status to another
*
* @param lastTransitionTime
* The lastTransitionTime
*/
@JsonProperty("lastTransitionTime")
public void setLastTransitionTime(String lastTransitionTime) {
this.lastTransitionTime = lastTransitionTime;
}
/**
* human readable message indicating details about last transition
*
* @return
* The message
*/
@JsonProperty("message")
public String getMessage() {
return message;
}
/**
* human readable message indicating details about last transition
*
* @param message
* The message
*/
@JsonProperty("message")
public void setMessage(String message) {
this.message = message;
}
/**
* (brief) reason for the condition's last transition
*
* @return
* The reason
*/
@JsonProperty("reason")
public String getReason() {
return reason;
}
/**
* (brief) reason for the condition's last transition
*
* @param reason
* The reason
*/
@JsonProperty("reason")
public void setReason(String reason) {
this.reason = reason;
}
/**
* status of the condition
*
* @return
* The status
*/
@JsonProperty("status")
public String getStatus() {
return status;
}
/**
* status of the condition
*
* @param status
* The status
*/
@JsonProperty("status")
public void setStatus(String status) {
this.status = status;
}
/**
* type of node condition
*
* @return
* The type
*/
@JsonProperty("type")
public String getType() {
return type;
}
/**
* type of node condition
*
* @param type
* The type
*/
@JsonProperty("type")
public void setType(String type) {
this.type = type;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(lastHeartbeatTime).append(lastTransitionTime).append(message).append(reason).append(status).append(type).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof NodeCondition) == false) {
return false;
}
NodeCondition rhs = ((NodeCondition) other);
return new EqualsBuilder().append(lastHeartbeatTime, rhs.lastHeartbeatTime).append(lastTransitionTime, rhs.lastTransitionTime).append(message, rhs.message).append(reason, rhs.reason).append(status, rhs.status).append(type, rhs.type).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy