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

com.spotinst.sdkjava.model.bl.ocean.gke.ClusterAccessConfigsSpecification Maven / Gradle / Ivy

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

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 ClusterAccessConfigsSpecification {

    @JsonIgnore
    private Set isSet;
    private String      name;
    private String      type;

    private ClusterAccessConfigsSpecification() {
        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 String getType() { return type; }

    public void setType(String type) {
        isSet.add("type");
        this.type = type;
    }

    public static class Builder {
        private ClusterAccessConfigsSpecification accessConfigs;

        private Builder() {
            this.accessConfigs = new ClusterAccessConfigsSpecification();
        }

        public static Builder get() {
            return new Builder();
        }
        
        public Builder setName(final String name) {
            accessConfigs.setName(name);
            return this;
        }

        public Builder setType(final String type) {
            accessConfigs.setType(type);
            return this;
        }

        public ClusterAccessConfigsSpecification build() {
            return accessConfigs;
        }
    }

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

    @JsonIgnore
    public boolean isTypeSet() {
        return isSet.contains("type");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy