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

com.spotinst.sdkjava.model.bl.azure.statefulNode.LaunchSpecExtensionsProtectedSettings Maven / Gradle / Ivy

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

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;

/**
 * Created by Bansi Chapla on 23/11/2021.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class LaunchSpecExtensionsProtectedSettings {

    @JsonIgnore
    private Set isSet;
    private String      script;

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

    public Set getIsSet() {
        return isSet;
    }

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

    public String getScript() {
        return script;
    }

    public void setScript(String script) {
        isSet.add("script");
        this.script = script;
    }

    public static class Builder {
        private LaunchSpecExtensionsProtectedSettings extensionsProtectedSettings;

        private Builder() {
            this.extensionsProtectedSettings = new LaunchSpecExtensionsProtectedSettings();
        }

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

        public Builder setScript(final String script) {
            extensionsProtectedSettings.setScript(script);
            return this;
        }

        public LaunchSpecExtensionsProtectedSettings build() {
            return extensionsProtectedSettings;
        }
    }

    @JsonIgnore
    public boolean isScriptSet() {
        return isSet.contains("script");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy