
io.fabric8.kubernetes.api.model.NodeSpec Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
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.sundr.builder.annotations.Buildable;
import lombok.EqualsAndHashCode;
import lombok.Setter;
import lombok.ToString;
import lombok.experimental.Accessors;
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"apiVersion",
"kind",
"metadata",
"configSource",
"externalID",
"podCIDR",
"podCIDRs",
"providerID",
"taints",
"unschedulable"
})
@ToString
@EqualsAndHashCode
@Setter
@Accessors(prefix = {
"_",
""
})
@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = true, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder")
public class NodeSpec implements KubernetesResource
{
@JsonProperty("configSource")
private NodeConfigSource configSource;
@JsonProperty("externalID")
private String externalID;
@JsonProperty("podCIDR")
private String podCIDR;
@JsonProperty("podCIDRs")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
private List podCIDRs = new ArrayList();
@JsonProperty("providerID")
private String providerID;
@JsonProperty("taints")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
private List taints = new ArrayList();
@JsonProperty("unschedulable")
private Boolean unschedulable;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public NodeSpec() {
}
/**
*
* @param podCIDRs
* @param providerID
* @param externalID
* @param taints
* @param configSource
* @param unschedulable
* @param podCIDR
*/
public NodeSpec(NodeConfigSource configSource, String externalID, String podCIDR, List podCIDRs, String providerID, List taints, Boolean unschedulable) {
super();
this.configSource = configSource;
this.externalID = externalID;
this.podCIDR = podCIDR;
this.podCIDRs = podCIDRs;
this.providerID = providerID;
this.taints = taints;
this.unschedulable = unschedulable;
}
@JsonProperty("configSource")
public NodeConfigSource getConfigSource() {
return configSource;
}
@JsonProperty("configSource")
public void setConfigSource(NodeConfigSource configSource) {
this.configSource = configSource;
}
@JsonProperty("externalID")
public String getExternalID() {
return externalID;
}
@JsonProperty("externalID")
public void setExternalID(String externalID) {
this.externalID = externalID;
}
@JsonProperty("podCIDR")
public String getPodCIDR() {
return podCIDR;
}
@JsonProperty("podCIDR")
public void setPodCIDR(String podCIDR) {
this.podCIDR = podCIDR;
}
@JsonProperty("podCIDRs")
public List getPodCIDRs() {
return podCIDRs;
}
@JsonProperty("podCIDRs")
public void setPodCIDRs(List podCIDRs) {
this.podCIDRs = podCIDRs;
}
@JsonProperty("providerID")
public String getProviderID() {
return providerID;
}
@JsonProperty("providerID")
public void setProviderID(String providerID) {
this.providerID = providerID;
}
@JsonProperty("taints")
public List getTaints() {
return taints;
}
@JsonProperty("taints")
public void setTaints(List taints) {
this.taints = taints;
}
@JsonProperty("unschedulable")
public Boolean getUnschedulable() {
return unschedulable;
}
@JsonProperty("unschedulable")
public void setUnschedulable(Boolean unschedulable) {
this.unschedulable = unschedulable;
}
@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