All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.alauda.kubernetes.api.model.PipelineConfigTemplateSpec Maven / Gradle / Ivy

There is a newer version: 0.2.12
Show newest version

package io.alauda.kubernetes.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.alauda.kubernetes.api.model.Doneable;
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({
    "apiVersion",
    "kind",
    "metadata",
    "agent",
    "arguments",
    "engine",
    "parameters",
    "stages",
    "withSCM"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = false, validationEnabled = true, generateBuilderPackage = true, builderPackage = "io.alauda.kubernetes.api.builder", inline = @Inline(type = Doneable.class, prefix = "Doneable", value = "done"))
public class PipelineConfigTemplateSpec implements KubernetesResource
{

    /**
     * 
     * 
     */
    @JsonProperty("agent")
    @Valid
    private JenkinsAgent agent;
    /**
     * 
     * 
     */
    @JsonProperty("arguments")
    @Valid
    private List arguments = new ArrayList();
    /**
     * 
     * 
     */
    @JsonProperty("engine")
    private String engine;
    /**
     * 
     * 
     */
    @JsonProperty("parameters")
    @Valid
    private List parameters = new ArrayList();
    /**
     * 
     * 
     */
    @JsonProperty("stages")
    @Valid
    private List stages = new ArrayList();
    /**
     * 
     * 
     */
    @JsonProperty("withSCM")
    private Boolean withSCM;
    @JsonIgnore
    private Map additionalProperties = new HashMap();

    /**
     * No args constructor for use in serialization
     * 
     */
    public PipelineConfigTemplateSpec() {
    }

    /**
     * 
     * @param agent
     * @param withSCM
     * @param engine
     * @param stages
     * @param arguments
     * @param parameters
     */
    public PipelineConfigTemplateSpec(JenkinsAgent agent, List arguments, String engine, List parameters, List stages, Boolean withSCM) {
        this.agent = agent;
        this.arguments = arguments;
        this.engine = engine;
        this.parameters = parameters;
        this.stages = stages;
        this.withSCM = withSCM;
    }

    /**
     * 
     * 
     * @return
     *     The agent
     */
    @JsonProperty("agent")
    public JenkinsAgent getAgent() {
        return agent;
    }

    /**
     * 
     * 
     * @param agent
     *     The agent
     */
    @JsonProperty("agent")
    public void setAgent(JenkinsAgent agent) {
        this.agent = agent;
    }

    /**
     * 
     * 
     * @return
     *     The arguments
     */
    @JsonProperty("arguments")
    public List getArguments() {
        return arguments;
    }

    /**
     * 
     * 
     * @param arguments
     *     The arguments
     */
    @JsonProperty("arguments")
    public void setArguments(List arguments) {
        this.arguments = arguments;
    }

    /**
     * 
     * 
     * @return
     *     The engine
     */
    @JsonProperty("engine")
    public String getEngine() {
        return engine;
    }

    /**
     * 
     * 
     * @param engine
     *     The engine
     */
    @JsonProperty("engine")
    public void setEngine(String engine) {
        this.engine = engine;
    }

    /**
     * 
     * 
     * @return
     *     The parameters
     */
    @JsonProperty("parameters")
    public List getParameters() {
        return parameters;
    }

    /**
     * 
     * 
     * @param parameters
     *     The parameters
     */
    @JsonProperty("parameters")
    public void setParameters(List parameters) {
        this.parameters = parameters;
    }

    /**
     * 
     * 
     * @return
     *     The stages
     */
    @JsonProperty("stages")
    public List getStages() {
        return stages;
    }

    /**
     * 
     * 
     * @param stages
     *     The stages
     */
    @JsonProperty("stages")
    public void setStages(List stages) {
        this.stages = stages;
    }

    /**
     * 
     * 
     * @return
     *     The withSCM
     */
    @JsonProperty("withSCM")
    public Boolean getWithSCM() {
        return withSCM;
    }

    /**
     * 
     * 
     * @param withSCM
     *     The withSCM
     */
    @JsonProperty("withSCM")
    public void setWithSCM(Boolean withSCM) {
        this.withSCM = withSCM;
    }

    @JsonAnyGetter
    public Map getAdditionalProperties() {
        return this.additionalProperties;
    }

    @JsonAnySetter
    public void setAdditionalProperty(String name, Object value) {
        this.additionalProperties.put(name, value);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy