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

com.spotinst.sdkjava.model.bl.ocean.gke.LaunchSpecStorageSpecification 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 LaunchSpecStorageSpecification {
    @JsonIgnore
    private Set     isSet;
    private Integer         localSsdCount;

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

    public Set getIsSet() {
        return isSet;
    }

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

    public Integer getLocalSsdCount() {
        return localSsdCount;
    }

    public void setLocalSsdCount(Integer localSsdCount) {
        isSet.add("localSsdCount");
        this.localSsdCount = localSsdCount;
    }

    public static class Builder {
        private LaunchSpecStorageSpecification gkeStorage;

        private Builder() {
            this.gkeStorage = new LaunchSpecStorageSpecification();
        }

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

        public Builder setLocalSsdCount(final Integer localSsdCount) {
            gkeStorage.setLocalSsdCount(localSsdCount);
            return this;
        }

        public LaunchSpecStorageSpecification build() {
            return gkeStorage;
        }
    }

    @JsonIgnore
    public boolean isLocalSsdCountSet() {
        return isSet.contains("localSsdCount");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy