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

com.spotinst.sdkjava.model.bl.elastigroup.aws.ElastigroupDeploymentStatusInstances Maven / Gradle / Ivy

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

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.List;
import java.util.Set;

@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ElastigroupDeploymentStatusInstances {

    @JsonIgnore
    private Set                                     isSet;
    private List  blue;
    private List green;

    public ElastigroupDeploymentStatusInstances() {
        isSet = new HashSet<>();
    }

    public Set getIsSet() {
        return isSet;
    }

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

    public List getBlue() {
        return blue;
    }

    public void setBlue(List blue) {
        isSet.add("blue");
        this.blue = blue;
    }

    public List getGreen() {
        return green;
    }

    public void setGreen(List green) {
        isSet.add("green");
        this.green = green;
    }


    public static class Builder {
        private ElastigroupDeploymentStatusInstances elastigroupGetDeploymentStatusInstances;

        private Builder() {
            this.elastigroupGetDeploymentStatusInstances = new ElastigroupDeploymentStatusInstances();
        }

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

        public Builder setBlue(final List blue) {
            elastigroupGetDeploymentStatusInstances.setBlue(blue);
            return this;
        }

        public Builder setGreen(final List green) {
            elastigroupGetDeploymentStatusInstances.setGreen(green);
            return this;
        }

        public ElastigroupDeploymentStatusInstances build() {
            return elastigroupGetDeploymentStatusInstances;
        }

    }

    @JsonIgnore
    public boolean isBlueSet() {
        return isSet.contains("blue");
    }

    @JsonIgnore
    public boolean isGreenSet() {
        return isSet.contains("green");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy