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

com.spotinst.sdkjava.model.bl.ocean.kubernetes.ClusterShutdownHoursSpecification 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 com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;

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

@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ClusterShutdownHoursSpecification {
    @JsonIgnore
    private Set  isSet;
    private Boolean      isEnabled;
    private List timeWindows;

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

    public Set getIsSet() {
        return isSet;
    }

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


    public Boolean getIsEnabled() {
        return isEnabled;
    }

    public void setIsEnabled(Boolean enabled) {
        isSet.add("isEnabled");
        isEnabled = enabled;
    }

    public List getTimeWindows() {
        return timeWindows;
    }

    public void setTimeWindows(List timeWindows) {
        isSet.add("timeWindows");
        this.timeWindows = timeWindows;
    }

    public static class Builder {
        private ClusterShutdownHoursSpecification scheduling;

        private Builder() {
            this.scheduling = new ClusterShutdownHoursSpecification();
        }

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

        public ClusterShutdownHoursSpecification.Builder setEnabled(final Boolean isEnabled) {
            scheduling.setIsEnabled(isEnabled);
            return this;
        }

        public ClusterShutdownHoursSpecification.Builder setTimeWindows(final List timeWindows) {
            scheduling.setTimeWindows(timeWindows);
            return this;
        }

        public ClusterShutdownHoursSpecification build() {
            return scheduling;
        }
    }

    @JsonIgnore
    public boolean isIsEnabledSet() {
        return isSet.contains("isEnabled");
    }
    @JsonIgnore
    public boolean istimeWindowsSet() {
        return isSet.contains("timeWindows");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy