io.fabric8.kubernetes.api.model.extensions.ReplicaSetSpec Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.extensions;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
import javax.validation.Valid;
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.fabric8.kubernetes.api.model.PodTemplateSpec;
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({
"replicas",
"selector",
"template"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = true, validationEnabled = true, generateBuilderPackage = true, builderPackage = "io.fabric8.kubernetes.api.builder", inline = @Inline(type = Doneable.class, prefix = "Doneable", value = "done"))
public class ReplicaSetSpec {
/**
*
*
*/
@JsonProperty("replicas")
private Integer replicas;
/**
*
*
*/
@JsonProperty("selector")
@Valid
private LabelSelector selector;
/**
*
*
*/
@JsonProperty("template")
@Valid
private PodTemplateSpec template;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public ReplicaSetSpec() {
}
/**
*
* @param template
* @param replicas
* @param selector
*/
public ReplicaSetSpec(Integer replicas, LabelSelector selector, PodTemplateSpec template) {
this.replicas = replicas;
this.selector = selector;
this.template = template;
}
/**
*
*
* @return
* The replicas
*/
@JsonProperty("replicas")
public Integer getReplicas() {
return replicas;
}
/**
*
*
* @param replicas
* The replicas
*/
@JsonProperty("replicas")
public void setReplicas(Integer replicas) {
this.replicas = replicas;
}
/**
*
*
* @return
* The selector
*/
@JsonProperty("selector")
public LabelSelector getSelector() {
return selector;
}
/**
*
*
* @param selector
* The selector
*/
@JsonProperty("selector")
public void setSelector(LabelSelector selector) {
this.selector = selector;
}
/**
*
*
* @return
* The template
*/
@JsonProperty("template")
public PodTemplateSpec getTemplate() {
return template;
}
/**
*
*
* @param template
* The template
*/
@JsonProperty("template")
public void setTemplate(PodTemplateSpec template) {
this.template = template;
}
@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