io.fabric8.openshift.api.model.DeploymentStrategy Maven / Gradle / Ivy
package io.fabric8.openshift.api.model;
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 io.fabric8.kubernetes.api.model.ResourceRequirements;
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({
"customParams",
"recreateParams",
"resources",
"rollingParams",
"type"
})
public class DeploymentStrategy {
/**
*
*
*/
@JsonProperty("customParams")
@Valid
private CustomDeploymentStrategyParams customParams;
/**
*
*
*/
@JsonProperty("recreateParams")
@Valid
private RecreateDeploymentStrategyParams recreateParams;
/**
*
*
*/
@JsonProperty("resources")
@Valid
private ResourceRequirements resources;
/**
*
*
*/
@JsonProperty("rollingParams")
@Valid
private RollingDeploymentStrategyParams rollingParams;
/**
*
*
*/
@JsonProperty("type")
private String type;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public DeploymentStrategy() {
}
/**
*
* @param resources
* @param recreateParams
* @param customParams
* @param rollingParams
* @param type
*/
public DeploymentStrategy(CustomDeploymentStrategyParams customParams, RecreateDeploymentStrategyParams recreateParams, ResourceRequirements resources, RollingDeploymentStrategyParams rollingParams, String type) {
this.customParams = customParams;
this.recreateParams = recreateParams;
this.resources = resources;
this.rollingParams = rollingParams;
this.type = type;
}
/**
*
*
* @return
* The customParams
*/
@JsonProperty("customParams")
public CustomDeploymentStrategyParams getCustomParams() {
return customParams;
}
/**
*
*
* @param customParams
* The customParams
*/
@JsonProperty("customParams")
public void setCustomParams(CustomDeploymentStrategyParams customParams) {
this.customParams = customParams;
}
/**
*
*
* @return
* The recreateParams
*/
@JsonProperty("recreateParams")
public RecreateDeploymentStrategyParams getRecreateParams() {
return recreateParams;
}
/**
*
*
* @param recreateParams
* The recreateParams
*/
@JsonProperty("recreateParams")
public void setRecreateParams(RecreateDeploymentStrategyParams recreateParams) {
this.recreateParams = recreateParams;
}
/**
*
*
* @return
* The resources
*/
@JsonProperty("resources")
public ResourceRequirements getResources() {
return resources;
}
/**
*
*
* @param resources
* The resources
*/
@JsonProperty("resources")
public void setResources(ResourceRequirements resources) {
this.resources = resources;
}
/**
*
*
* @return
* The rollingParams
*/
@JsonProperty("rollingParams")
public RollingDeploymentStrategyParams getRollingParams() {
return rollingParams;
}
/**
*
*
* @param rollingParams
* The rollingParams
*/
@JsonProperty("rollingParams")
public void setRollingParams(RollingDeploymentStrategyParams rollingParams) {
this.rollingParams = rollingParams;
}
/**
*
*
* @return
* The type
*/
@JsonProperty("type")
public String getType() {
return type;
}
/**
*
*
* @param type
* The type
*/
@JsonProperty("type")
public void setType(String type) {
this.type = type;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(customParams).append(recreateParams).append(resources).append(rollingParams).append(type).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof DeploymentStrategy) == false) {
return false;
}
DeploymentStrategy rhs = ((DeploymentStrategy) other);
return new EqualsBuilder().append(customParams, rhs.customParams).append(recreateParams, rhs.recreateParams).append(resources, rhs.resources).append(rollingParams, rhs.rollingParams).append(type, rhs.type).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy