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

com.spotinst.sdkjava.model.ElastigroupEcsBatch Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnore;

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

public class ElastigroupEcsBatch {
    //region Members
    private Set  isSet;
    private List jobQueueNames;
    //endregion

    private ElastigroupEcsBatch() {isSet = new HashSet<>();}
    //region Setters&Getters
    public List getJobQueueNames() {
        return jobQueueNames;
    }

    public void setJobQueueNames(List jobQueueNames) {
        isSet.add("jobQueueNames");
        this.jobQueueNames = jobQueueNames;
    }
    public Set getIsSet() {
        return isSet;
    }

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

    //region Builder class
public static class Builder {
        private ElastigroupEcsBatch ecsBatch;

        private Builder() {
            this.ecsBatch = new ElastigroupEcsBatch();
        }

        public static Builder get() {
            return new Builder();
        }
        public  Builder setJobQueueNames(final List jobQueueNames){
            ecsBatch.setJobQueueNames(jobQueueNames);
            return this;
        }
        public  ElastigroupEcsBatch build() {
            return  ecsBatch;
        }
    }
    //region isSet methods
    @JsonIgnore
    public boolean isJobQueueNamesSet() {
        return isSet.contains("jobQueueNames");
    }
    //endregion
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy