All Downloads are FREE. Search and download functionalities are using the official Maven repository.

annotations.io.fabric8.kubernetes.api.model.NodeSystemInfoFluent Maven / Gradle / Ivy

package io.fabric8.kubernetes.api.model;

import java.util.HashMap;
import java.util.Map;
import io.fabric8.common.Fluent;

public class NodeSystemInfoFluent> implements Fluent{

    private String KubeProxyVersion ;
    private String bootID ;
    private String containerRuntimeVersion ;
    private String kernelVersion ;
    private String kubeletVersion ;
    private String machineID ;
    private String osImage ;
    private String systemUUID ;
    private Map additionalProperties  = new HashMap();

    public String getKubeProxyVersion(){
    return this.KubeProxyVersion;
    }
    public T withKubeProxyVersion(String KubeProxyVersion){
    this.KubeProxyVersion=KubeProxyVersion; return (T) this;
    }
    public String getBootID(){
    return this.bootID;
    }
    public T withBootID(String bootID){
    this.bootID=bootID; return (T) this;
    }
    public String getContainerRuntimeVersion(){
    return this.containerRuntimeVersion;
    }
    public T withContainerRuntimeVersion(String containerRuntimeVersion){
    this.containerRuntimeVersion=containerRuntimeVersion; return (T) this;
    }
    public String getKernelVersion(){
    return this.kernelVersion;
    }
    public T withKernelVersion(String kernelVersion){
    this.kernelVersion=kernelVersion; return (T) this;
    }
    public String getKubeletVersion(){
    return this.kubeletVersion;
    }
    public T withKubeletVersion(String kubeletVersion){
    this.kubeletVersion=kubeletVersion; return (T) this;
    }
    public String getMachineID(){
    return this.machineID;
    }
    public T withMachineID(String machineID){
    this.machineID=machineID; return (T) this;
    }
    public String getOsImage(){
    return this.osImage;
    }
    public T withOsImage(String osImage){
    this.osImage=osImage; return (T) this;
    }
    public String getSystemUUID(){
    return this.systemUUID;
    }
    public T withSystemUUID(String systemUUID){
    this.systemUUID=systemUUID; 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