io.fabric8.openshift.api.model.CustomDeploymentStrategyParams 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.EnvVar;
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({
"command",
"environment",
"image"
})
public class CustomDeploymentStrategyParams {
/**
*
*
*/
@JsonProperty("command")
@Valid
private List command = new ArrayList();
/**
*
*
*/
@JsonProperty("environment")
@Valid
private List environment = new ArrayList();
/**
*
*
*/
@JsonProperty("image")
private String image;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
* No args constructor for use in serialization
*
*/
public CustomDeploymentStrategyParams() {
}
/**
*
* @param environment
* @param command
* @param image
*/
public CustomDeploymentStrategyParams(List command, List environment, String image) {
this.command = command;
this.environment = environment;
this.image = image;
}
/**
*
*
* @return
* The command
*/
@JsonProperty("command")
public List getCommand() {
return command;
}
/**
*
*
* @param command
* The command
*/
@JsonProperty("command")
public void setCommand(List command) {
this.command = command;
}
/**
*
*
* @return
* The environment
*/
@JsonProperty("environment")
public List getEnvironment() {
return environment;
}
/**
*
*
* @param environment
* The environment
*/
@JsonProperty("environment")
public void setEnvironment(List environment) {
this.environment = environment;
}
/**
*
*
* @return
* The image
*/
@JsonProperty("image")
public String getImage() {
return image;
}
/**
*
*
* @param image
* The image
*/
@JsonProperty("image")
public void setImage(String image) {
this.image = image;
}
@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(command).append(environment).append(image).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof CustomDeploymentStrategyParams) == false) {
return false;
}
CustomDeploymentStrategyParams rhs = ((CustomDeploymentStrategyParams) other);
return new EqualsBuilder().append(command, rhs.command).append(environment, rhs.environment).append(image, rhs.image).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy