io.fabric8.kubernetes.api.model.TopologySpreadConstraint Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
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.kubernetes.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",
"kind",
"metadata",
"labelSelector",
"maxSkew",
"topologyKey",
"whenUnsatisfiable"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = false, validationEnabled = false, generateBuilderPackage = true, lazyCollectionInitEnabled = false, builderPackage = "io.fabric8.kubernetes.api.builder", inline = @Inline(type = Doneable.class, prefix = "Doneable", value = "done"))
public class TopologySpreadConstraint implements KubernetesResource
{
/**
*
*
*/
@JsonProperty("labelSelector")
private LabelSelector labelSelector;
/**
*
*
*/
@JsonProperty("maxSkew")
private Integer maxSkew;
/**
*
*
*/
@JsonProperty("topologyKey")
private String topologyKey;
/**
*
*
*/
@JsonProperty("whenUnsatisfiable")
private String whenUnsatisfiable;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public TopologySpreadConstraint() {
}
/**
*
* @param whenUnsatisfiable
* @param maxSkew
* @param labelSelector
* @param topologyKey
*/
public TopologySpreadConstraint(LabelSelector labelSelector, Integer maxSkew, String topologyKey, String whenUnsatisfiable) {
this.labelSelector = labelSelector;
this.maxSkew = maxSkew;
this.topologyKey = topologyKey;
this.whenUnsatisfiable = whenUnsatisfiable;
}
/**
*
*
* @return
* The labelSelector
*/
@JsonProperty("labelSelector")
public LabelSelector getLabelSelector() {
return labelSelector;
}
/**
*
*
* @param labelSelector
* The labelSelector
*/
@JsonProperty("labelSelector")
public void setLabelSelector(LabelSelector labelSelector) {
this.labelSelector = labelSelector;
}
/**
*
*
* @return
* The maxSkew
*/
@JsonProperty("maxSkew")
public Integer getMaxSkew() {
return maxSkew;
}
/**
*
*
* @param maxSkew
* The maxSkew
*/
@JsonProperty("maxSkew")
public void setMaxSkew(Integer maxSkew) {
this.maxSkew = maxSkew;
}
/**
*
*
* @return
* The topologyKey
*/
@JsonProperty("topologyKey")
public String getTopologyKey() {
return topologyKey;
}
/**
*
*
* @param topologyKey
* The topologyKey
*/
@JsonProperty("topologyKey")
public void setTopologyKey(String topologyKey) {
this.topologyKey = topologyKey;
}
/**
*
*
* @return
* The whenUnsatisfiable
*/
@JsonProperty("whenUnsatisfiable")
public String getWhenUnsatisfiable() {
return whenUnsatisfiable;
}
/**
*
*
* @param whenUnsatisfiable
* The whenUnsatisfiable
*/
@JsonProperty("whenUnsatisfiable")
public void setWhenUnsatisfiable(String whenUnsatisfiable) {
this.whenUnsatisfiable = whenUnsatisfiable;
}
@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