
io.fabric8.docker.api.model.Version Maven / Gradle / Ivy
package io.fabric8.docker.api.model;
import java.io.Serializable;
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 com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.fabric8.docker.api.model.Doneable;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.Inline;
import lombok.EqualsAndHashCode;
import lombok.ToString;
/**
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"ApiVersion",
"Arch",
"BuildTime",
"Experimental",
"GitCommit",
"GoVersion",
"KernelVersion",
"Os",
"Version"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = true, validationEnabled = true, generateBuilderPackage = true, builderPackage = "io.fabric8.docker.api.builder", inline = {
@Inline(type = Doneable.class, prefix = "Doneable", value = "done")
})
public class Version implements Serializable
{
/**
*
*
*/
@JsonProperty("ApiVersion")
private String ApiVersion;
/**
*
*
*/
@JsonProperty("Arch")
private String Arch;
/**
*
*
*/
@JsonProperty("BuildTime")
private String BuildTime;
/**
*
*
*/
@JsonProperty("Experimental")
private Boolean Experimental;
/**
*
*
*/
@JsonProperty("GitCommit")
private String GitCommit;
/**
*
*
*/
@JsonProperty("GoVersion")
private String GoVersion;
/**
*
*
*/
@JsonProperty("KernelVersion")
private String KernelVersion;
/**
*
*
*/
@JsonProperty("Os")
private String Os;
/**
*
*
*/
@JsonProperty("Version")
private String Version;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public Version() {
}
/**
*
* @param KernelVersion
* @param ApiVersion
* @param GitCommit
* @param Os
* @param Version
* @param Experimental
* @param Arch
* @param GoVersion
* @param BuildTime
*/
public Version(String ApiVersion, String Arch, String BuildTime, Boolean Experimental, String GitCommit, String GoVersion, String KernelVersion, String Os, String Version) {
this.ApiVersion = ApiVersion;
this.Arch = Arch;
this.BuildTime = BuildTime;
this.Experimental = Experimental;
this.GitCommit = GitCommit;
this.GoVersion = GoVersion;
this.KernelVersion = KernelVersion;
this.Os = Os;
this.Version = Version;
}
/**
*
*
* @return
* The ApiVersion
*/
@JsonProperty("ApiVersion")
public String getApiVersion() {
return ApiVersion;
}
/**
*
*
* @param ApiVersion
* The ApiVersion
*/
@JsonProperty("ApiVersion")
public void setApiVersion(String ApiVersion) {
this.ApiVersion = ApiVersion;
}
/**
*
*
* @return
* The Arch
*/
@JsonProperty("Arch")
public String getArch() {
return Arch;
}
/**
*
*
* @param Arch
* The Arch
*/
@JsonProperty("Arch")
public void setArch(String Arch) {
this.Arch = Arch;
}
/**
*
*
* @return
* The BuildTime
*/
@JsonProperty("BuildTime")
public String getBuildTime() {
return BuildTime;
}
/**
*
*
* @param BuildTime
* The BuildTime
*/
@JsonProperty("BuildTime")
public void setBuildTime(String BuildTime) {
this.BuildTime = BuildTime;
}
/**
*
*
* @return
* The Experimental
*/
@JsonProperty("Experimental")
public Boolean getExperimental() {
return Experimental;
}
/**
*
*
* @param Experimental
* The Experimental
*/
@JsonProperty("Experimental")
public void setExperimental(Boolean Experimental) {
this.Experimental = Experimental;
}
/**
*
*
* @return
* The GitCommit
*/
@JsonProperty("GitCommit")
public String getGitCommit() {
return GitCommit;
}
/**
*
*
* @param GitCommit
* The GitCommit
*/
@JsonProperty("GitCommit")
public void setGitCommit(String GitCommit) {
this.GitCommit = GitCommit;
}
/**
*
*
* @return
* The GoVersion
*/
@JsonProperty("GoVersion")
public String getGoVersion() {
return GoVersion;
}
/**
*
*
* @param GoVersion
* The GoVersion
*/
@JsonProperty("GoVersion")
public void setGoVersion(String GoVersion) {
this.GoVersion = GoVersion;
}
/**
*
*
* @return
* The KernelVersion
*/
@JsonProperty("KernelVersion")
public String getKernelVersion() {
return KernelVersion;
}
/**
*
*
* @param KernelVersion
* The KernelVersion
*/
@JsonProperty("KernelVersion")
public void setKernelVersion(String KernelVersion) {
this.KernelVersion = KernelVersion;
}
/**
*
*
* @return
* The Os
*/
@JsonProperty("Os")
public String getOs() {
return Os;
}
/**
*
*
* @param Os
* The Os
*/
@JsonProperty("Os")
public void setOs(String Os) {
this.Os = Os;
}
/**
*
*
* @return
* The Version
*/
@JsonProperty("Version")
public String getVersion() {
return Version;
}
/**
*
*
* @param Version
* The Version
*/
@JsonProperty("Version")
public void setVersion(String Version) {
this.Version = Version;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy