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

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

There is a newer version: 0.2.12
Show newest version

package io.alauda.kubernetes.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 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",
    "advanced",
    "args",
    "description",
    "name",
    "related",
    "type"
})
@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 PipelineTaskArgumentDisplay implements KubernetesResource
{

    /**
     * 
     * 
     */
    @JsonProperty("advanced")
    private Boolean advanced;
    /**
     * 
     * 
     */
    @JsonProperty("args")
    @Valid
    private Map args;
    /**
     * 
     * 
     */
    @JsonProperty("description")
    @Valid
    private I18nName description;
    /**
     * 
     * 
     */
    @JsonProperty("name")
    @Valid
    private I18nName name;
    /**
     * 
     * 
     */
    @JsonProperty("related")
    private java.lang.String related;
    /**
     * 
     * 
     */
    @JsonProperty("type")
    private java.lang.String type;
    @JsonIgnore
    private Map additionalProperties = new HashMap();

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

    /**
     * 
     * @param args
     * @param related
     * @param advanced
     * @param name
     * @param description
     * @param type
     */
    public PipelineTaskArgumentDisplay(Boolean advanced, Map args, I18nName description, I18nName name, java.lang.String related, java.lang.String type) {
        this.advanced = advanced;
        this.args = args;
        this.description = description;
        this.name = name;
        this.related = related;
        this.type = type;
    }

    /**
     * 
     * 
     * @return
     *     The advanced
     */
    @JsonProperty("advanced")
    public Boolean getAdvanced() {
        return advanced;
    }

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

    /**
     * 
     * 
     * @return
     *     The args
     */
    @JsonProperty("args")
    public Map getArgs() {
        return args;
    }

    /**
     * 
     * 
     * @param args
     *     The args
     */
    @JsonProperty("args")
    public void setArgs(Map args) {
        this.args = args;
    }

    /**
     * 
     * 
     * @return
     *     The description
     */
    @JsonProperty("description")
    public I18nName getDescription() {
        return description;
    }

    /**
     * 
     * 
     * @param description
     *     The description
     */
    @JsonProperty("description")
    public void setDescription(I18nName description) {
        this.description = description;
    }

    /**
     * 
     * 
     * @return
     *     The name
     */
    @JsonProperty("name")
    public I18nName getName() {
        return name;
    }

    /**
     * 
     * 
     * @param name
     *     The name
     */
    @JsonProperty("name")
    public void setName(I18nName name) {
        this.name = name;
    }

    /**
     * 
     * 
     * @return
     *     The related
     */
    @JsonProperty("related")
    public java.lang.String getRelated() {
        return related;
    }

    /**
     * 
     * 
     * @param related
     *     The related
     */
    @JsonProperty("related")
    public void setRelated(java.lang.String related) {
        this.related = related;
    }

    /**
     * 
     * 
     * @return
     *     The type
     */
    @JsonProperty("type")
    public java.lang.String getType() {
        return type;
    }

    /**
     * 
     * 
     * @param type
     *     The type
     */
    @JsonProperty("type")
    public void setType(java.lang.String type) {
        this.type = type;
    }

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy