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

com.spotinst.sdkjava.model.bl.azure.elastiGroup.V3.SuspendGroupProcessesAzure Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.spotinst.sdkjava.enums.ProcessNameEnumsAzure;

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

@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class SuspendGroupProcessesAzure{

    @JsonIgnore
    private Set           isSet;
    private ProcessNameEnumsAzure name;
    private Integer               ttlInMinutes;

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

    public Set getIsSet() {
        return isSet;
    }

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

    public ProcessNameEnumsAzure getName() {
        return name;
    }

    public void setName(ProcessNameEnumsAzure name) {
        isSet.add("name");
        this.name = name;
    }

    public Integer getTtlInMinutes() {
        return ttlInMinutes;
    }

    public void setTtlInMinutes(Integer ttlInMinutes) {
        isSet.add("ttlInMinutes");
        this.ttlInMinutes = ttlInMinutes;
    }

    public static class Builder {
        private SuspendGroupProcessesAzure suspendGroupProcesses;

        private Builder() {
            this.suspendGroupProcesses = new SuspendGroupProcessesAzure();
        }

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

        public Builder setName(final ProcessNameEnumsAzure name) {
            suspendGroupProcesses.setName(name);
            return this;
        }

        public Builder setTtlInMinutes(final Integer ttlInMinutes) {
            suspendGroupProcesses.setTtlInMinutes(ttlInMinutes);
            return this;
        }

        public SuspendGroupProcessesAzure build() {
            return suspendGroupProcesses;
        }

    }


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

    @JsonIgnore
    public boolean isTtlInMinutesSet() {
        return isSet.contains("ttlInMinutes");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy