io.fabric8.openshift.api.model.DeploymentConfigSpec Maven / Gradle / Ivy
package io.fabric8.openshift.api.model;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
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 io.fabric8.kubernetes.api.model.ObjectReference;
import io.fabric8.kubernetes.api.model.PodTemplateSpec;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
/**
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"replicas",
"selector",
"strategy",
"template",
"templateRef",
"triggers"
})
public class DeploymentConfigSpec {
/**
*
*
*/
@JsonProperty("replicas")
private Integer replicas;
/**
*
*
*/
@JsonProperty("selector")
@Valid
private Map selector;
/**
*
*
*/
@JsonProperty("strategy")
@Valid
private DeploymentStrategy strategy;
/**
*
*
*/
@JsonProperty("template")
@Valid
private PodTemplateSpec template;
/**
*
*
*/
@JsonProperty("templateRef")
@Valid
private ObjectReference templateRef;
/**
*
*
*/
@JsonProperty("triggers")
@Valid
private List triggers = new ArrayList();
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public DeploymentConfigSpec() {
}
/**
*
* @param template
* @param selector
* @param replicas
* @param templateRef
* @param strategy
* @param triggers
*/
public DeploymentConfigSpec(Integer replicas, Map selector, DeploymentStrategy strategy, PodTemplateSpec template, ObjectReference templateRef, List triggers) {
this.replicas = replicas;
this.selector = selector;
this.strategy = strategy;
this.template = template;
this.templateRef = templateRef;
this.triggers = triggers;
}
/**
*
*
* @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 Map getSelector() {
return selector;
}
/**
*
*
* @param selector
* The selector
*/
@JsonProperty("selector")
public void setSelector(Map selector) {
this.selector = selector;
}
/**
*
*
* @return
* The strategy
*/
@JsonProperty("strategy")
public DeploymentStrategy getStrategy() {
return strategy;
}
/**
*
*
* @param strategy
* The strategy
*/
@JsonProperty("strategy")
public void setStrategy(DeploymentStrategy strategy) {
this.strategy = strategy;
}
/**
*
*
* @return
* The template
*/
@JsonProperty("template")
public PodTemplateSpec getTemplate() {
return template;
}
/**
*
*
* @param template
* The template
*/
@JsonProperty("template")
public void setTemplate(PodTemplateSpec template) {
this.template = template;
}
/**
*
*
* @return
* The templateRef
*/
@JsonProperty("templateRef")
public ObjectReference getTemplateRef() {
return templateRef;
}
/**
*
*
* @param templateRef
* The templateRef
*/
@JsonProperty("templateRef")
public void setTemplateRef(ObjectReference templateRef) {
this.templateRef = templateRef;
}
/**
*
*
* @return
* The triggers
*/
@JsonProperty("triggers")
public List getTriggers() {
return triggers;
}
/**
*
*
* @param triggers
* The triggers
*/
@JsonProperty("triggers")
public void setTriggers(List triggers) {
this.triggers = triggers;
}
@Override
public java.lang.String toString() {
return ToStringBuilder.reflectionToString(this);
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(java.lang.String name, Object value) {
this.additionalProperties.put(name, value);
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(replicas).append(selector).append(strategy).append(template).append(templateRef).append(triggers).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof DeploymentConfigSpec) == false) {
return false;
}
DeploymentConfigSpec rhs = ((DeploymentConfigSpec) other);
return new EqualsBuilder().append(replicas, rhs.replicas).append(selector, rhs.selector).append(strategy, rhs.strategy).append(template, rhs.template).append(templateRef, rhs.templateRef).append(triggers, rhs.triggers).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy