io.alauda.kubernetes.api.model.extensions.HostPortRange Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model.extensions;
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.alauda.kubernetes.api.model.Doneable;
import io.alauda.kubernetes.api.model.KubernetesResource;
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",
"max",
"min"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = false, validationEnabled = true, generateBuilderPackage = true, builderPackage = "io.alauda.kubernetes.api.builder", inline = @Inline(type = Doneable.class, prefix = "Doneable", value = "done"))
public class HostPortRange implements KubernetesResource
{
/**
*
*
*/
@JsonProperty("max")
private Integer max;
/**
*
*
*/
@JsonProperty("min")
private Integer min;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public HostPortRange() {
}
/**
*
* @param min
* @param max
*/
public HostPortRange(Integer max, Integer min) {
this.max = max;
this.min = min;
}
/**
*
*
* @return
* The max
*/
@JsonProperty("max")
public Integer getMax() {
return max;
}
/**
*
*
* @param max
* The max
*/
@JsonProperty("max")
public void setMax(Integer max) {
this.max = max;
}
/**
*
*
* @return
* The min
*/
@JsonProperty("min")
public Integer getMin() {
return min;
}
/**
*
*
* @param min
* The min
*/
@JsonProperty("min")
public void setMin(Integer min) {
this.min = min;
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}