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

com.spotinst.sdkjava.model.bl.oceanCD.StepsSetCanaryScale Maven / Gradle / Ivy

There is a newer version: 1.0.121
Show newest version
package com.spotinst.sdkjava.model.bl.oceanCD;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;

import java.util.HashSet;
import java.util.Set;

@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class StepsSetCanaryScale {
    @JsonIgnore
    private Set                               isSet;
    private Integer                                   weight;
    private Integer                                   replicas;
    private Boolean                                   matchTrafficWeight;


    private StepsSetCanaryScale() {
        isSet = new HashSet<>();
    }

    public Set getIsSet() {
        return isSet;
    }

    public void setIsSet(Set isSet) {
        this.isSet = isSet;
    }

    public Integer getWeight() {
        return weight;
    }

    public void setWeight(Integer weight) {
        isSet.add("weight");
        this.weight = weight;
    }

    public Integer getReplicas() {
        return replicas;
    }

    public void setReplicas(Integer replicas) {
        isSet.add("replicas");
        this.replicas = replicas;
    }

    public Boolean getMatchTrafficWeight() {
        return matchTrafficWeight;
    }

    public void setMatchTrafficWeight(Boolean matchTrafficWeight) {
        isSet.add("matchTrafficWeight");
        this.matchTrafficWeight = matchTrafficWeight;
    }

    public static class Builder {
        private StepsSetCanaryScale stepsSetCanaryScale;

        private Builder() {
            this.stepsSetCanaryScale = new StepsSetCanaryScale();
        }

        public static Builder get() {
            return new Builder();
        }

        public Builder setWeight(final Integer weight) {
            stepsSetCanaryScale.setWeight(weight);
            return this;
        }

        public Builder setReplicas(final Integer replicas) {
            stepsSetCanaryScale.setReplicas(replicas);
            return this;
        }

        public Builder setMatchTrafficWeight(final Boolean matchTrafficWeight) {
            stepsSetCanaryScale.setMatchTrafficWeight(matchTrafficWeight);
            return this;
        }

        public StepsSetCanaryScale build() {
            return stepsSetCanaryScale;
        }
    }

    @JsonIgnore
    public boolean isWeightSet() {
        return isSet.contains("weight");
    }

    @JsonIgnore
    public boolean isReplicasSet() {
        return isSet.contains("replicas");
    }

    @JsonIgnore
    public boolean isMatchTrafficWeightSet() {
        return isSet.contains("matchTrafficWeight");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy