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;
import io.fabric8.common.BaseFluent;
import io.fabric8.common.Visitable;
public class NodeConditionFluent> extends BaseFluent implements Fluent{
String lastHeartbeatTime; String lastTransitionTime; String message; String reason; String status; String type; Map additionalProperties = new HashMap();
public String getLastHeartbeatTime(){
return this.lastHeartbeatTime;
}
public T withLastHeartbeatTime( String lastHeartbeatTime){
this.lastHeartbeatTime=lastHeartbeatTime; 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 String getType(){
return this.type;
}
public T withType( String type){
this.type=type; return (T) this;
}
public T addToAdditionalProperties( String key, Object value){
if(key != null && value != null) {this.additionalProperties.put(key, value);} 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;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy