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 com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.fabric8.kubernetes.api.model.Doneable;
import io.fabric8.kubernetes.api.model.EnvVar;
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({
"command",
"environment",
"image"
})
@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 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 image
* @param environment
* @param command
*/
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;
}
@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