io.fabric8.kubernetes.api.model.NodeConditionFluent Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import java.util.HashMap;
import java.util.Map;
import io.fabric8.common.Fluent;
public class NodeConditionFluent> implements Fluent{
private String kind ;
private String lastProbeTime ;
private String lastTransitionTime ;
private String message ;
private String reason ;
private String status ;
private Map additionalProperties = new HashMap();
public String getKind(){
return this.kind;
}
public T withKind(String kind){
this.kind=kind; return (T) this;
}
public String getLastProbeTime(){
return this.lastProbeTime;
}
public T withLastProbeTime(String lastProbeTime){
this.lastProbeTime=lastProbeTime; return (T) this;
}
public String getLastTransitionTime(){
return this.lastTransitionTime;
}
public T withLastTransitionTime(String lastTransitionTime){
this.lastTransitionTime=lastTransitionTime; return (T) this;
}
public String getMessage(){
return this.message;
}
public T withMessage(String message){
this.message=message; return (T) this;
}
public String getReason(){
return this.reason;
}
public T withReason(String reason){
this.reason=reason; return (T) this;
}
public String getStatus(){
return this.status;
}
public T withStatus(String status){
this.status=status; return (T) this;
}
public Map getAdditionalProperties(){
return this.additionalProperties;
}
public T withAdditionalProperties(Map additionalProperties){
this.additionalProperties.clear();if (additionalProperties != null) {this.additionalProperties.putAll(additionalProperties);} return (T) this;
}
public T addToAdditionalProperties(String key, Object value){
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (T)this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy