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

com.spotinst.sdkjava.model.bl.azure.statefulNode.StatefulNodeNetworkDeallocationConfig 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 StatefulNodeNetworkDeallocationConfig {

    @JsonIgnore
    private Set isSet;
    private Boolean     shouldDeallocate;
    private Integer     ttlInHours;

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

    public Set getIsSet() {
        return isSet;
    }

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

    public Boolean getShouldDeallocate() {
        return shouldDeallocate;
    }

    public void setShouldDeallocate(Boolean shouldDeallocate) {
        isSet.add("shouldDeallocate");
        this.shouldDeallocate = shouldDeallocate;
    }

    public Integer getTtlInHours() {
        return ttlInHours;
    }

    public void setTtlInHours(Integer ttlInHours) {
        isSet.add("ttlInHours");
        this.ttlInHours = ttlInHours;
    }

    @JsonIgnore
    public boolean isShouldDeallocateSet() {
        return isSet.contains("shouldDeallocate");
    }

    @JsonIgnore
    public boolean isTtlInHoursSet() {
        return isSet.contains("ttlInHours");
    }

    public static class Builder {
        private StatefulNodeNetworkDeallocationConfig statefulNodeNetworkDeallocationConfig;

        private Builder() {
            this.statefulNodeNetworkDeallocationConfig = new StatefulNodeNetworkDeallocationConfig();
        }

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

        public Builder setShouldDeallocate(final Boolean shouldDeallocate) {
            statefulNodeNetworkDeallocationConfig.setShouldDeallocate(shouldDeallocate);
            return this;
        }

        public Builder setTtlInHours(final Integer ttlInHours) {
            statefulNodeNetworkDeallocationConfig.setTtlInHours(ttlInHours);
            return this;
        }

        public StatefulNodeNetworkDeallocationConfig build() {
            return statefulNodeNetworkDeallocationConfig;
        }
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy