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

com.spotinst.sdkjava.model.bl.ocean.kubernetes.ImportEKSK8sVngSpec Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnore;

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

public class ImportEKSK8sVngSpec {
    @JsonIgnore
    private Set                      isSet;
    private String                            name;
	private List			 	labels;

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

    public Set getIsSet() {
        return isSet;
    }

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

    public String getName() {
        return name;
    }

    public void setName(String name) {
        isSet.add("name");
        this.name = name;
    }

    public List getLabels() {
        return labels;
    }
    
    public void setLabels(List labels) {
        isSet.add("labels");
        this.labels = labels;
    }

    public static class Builder {
        private ImportEKSK8sVngSpec launchSpecification;

        private Builder() {
            this.launchSpecification = new ImportEKSK8sVngSpec();
        }

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

        public Builder setName(final String name) {
            launchSpecification.setName(name);
            return this;
        }

        public Builder setLabels(final List labels) {
            launchSpecification.setLabels(labels);
            return this;
        }

        public ImportEKSK8sVngSpec build() {
            // Validations
            return launchSpecification;
        }
    }

    @JsonIgnore
    public boolean isNameSet() {
        return isSet.contains("name");
    }

    @JsonIgnore
    public boolean isLabelsSet() {
        return isSet.contains("labels");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy