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

me.snowdrop.istio.api.model.v1.routing.Delay Maven / Gradle / Ivy


package me.snowdrop.istio.api.model.v1.routing;

import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
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.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.fabric8.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_EMPTY)
@JsonPropertyOrder({
    "apiVersion",
    "kind",
    "metadata",
    "HttpDelayType",
    "overrideHeaderName",
    "percent"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = false, validationEnabled = true, generateBuilderPackage = true, builderPackage = "io.fabric8.kubernetes.api.builder", inline = @Inline(type = Doneable.class, prefix = "Doneable", value = "done"))
public class Delay implements Serializable
{

    @JsonProperty("HttpDelayType")
    private Object httpDelayType;
    /**
     * 
     * 
     */
    @JsonProperty("overrideHeaderName")
    @JsonPropertyDescription("")
    private String overrideHeaderName;
    /**
     * 
     * 
     */
    @JsonProperty("percent")
    @JsonPropertyDescription("")
    private Double percent;
    @JsonIgnore
    @Valid
    private Map additionalProperties = new HashMap();
    private final static long serialVersionUID = -5531025789995630064L;

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

    /**
     * 
     * @param overrideHeaderName
     * @param httpDelayType
     * @param percent
     */
    public Delay(Object httpDelayType, String overrideHeaderName, Double percent) {
        super();
        this.httpDelayType = httpDelayType;
        this.overrideHeaderName = overrideHeaderName;
        this.percent = percent;
    }

    @JsonProperty("HttpDelayType")
    public Object getHttpDelayType() {
        return httpDelayType;
    }

    @JsonProperty("HttpDelayType")
    public void setHttpDelayType(Object httpDelayType) {
        this.httpDelayType = httpDelayType;
    }

    /**
     * 
     * 
     */
    @JsonProperty("overrideHeaderName")
    public String getOverrideHeaderName() {
        return overrideHeaderName;
    }

    /**
     * 
     * 
     */
    @JsonProperty("overrideHeaderName")
    public void setOverrideHeaderName(String overrideHeaderName) {
        this.overrideHeaderName = overrideHeaderName;
    }

    /**
     * 
     * 
     */
    @JsonProperty("percent")
    public Double getPercent() {
        return percent;
    }

    /**
     * 
     * 
     */
    @JsonProperty("percent")
    public void setPercent(Double percent) {
        this.percent = percent;
    }

    @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