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

com.spotinst.sdkjava.model.bl.azure.elastiGroup.V3.NetworkAzure 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 java.util.HashSet;
import java.util.List;
import java.util.Set;

public class NetworkAzure {

    // Partial Update support
    @JsonIgnore
    private Set                 isSet;
    private String                      resourceGroupName;
    private String                      virtualNetworkName;
    private List networkInterfaces;

    //region Constructor

    private NetworkAzure() {
        isSet = new HashSet<>();
    }
    //endregion

    public Set getIsSet() {
        return isSet;
    }

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

    public String getResourceGroupName() {
        return resourceGroupName;
    }

    public void setResourceGroupName(String resourceGroupName) {
        isSet.add("resourceGroupName");
        this.resourceGroupName = resourceGroupName;
    }

    public List getNetworkInterfaces() {
        return networkInterfaces;
    }

    public void setNetworkInterfaces(List networkInterfaces) {
        isSet.add("networkInterfaces");
        this.networkInterfaces = networkInterfaces;
    }

    public String getVirtualNetworkName() {
        return virtualNetworkName;
    }

    public void setVirtualNetworkName(String virtualNetworkName) {
        isSet.add("virtualNetworkName");
        this.virtualNetworkName = virtualNetworkName;
    }

    //region Builder class
    public static class Builder {
        private NetworkAzure networkInterface;

        private Builder() {
            this.networkInterface = new NetworkAzure();
        }

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


        public Builder setResourceGroupName(final String resourceGroupName) {
            networkInterface.setResourceGroupName(resourceGroupName);
            return this;
        }

        public Builder setVirtualNetworkName(final String virtualNetworkName) {
            networkInterface.setVirtualNetworkName(virtualNetworkName);
            return this;
        }

        public Builder setNetworkInterfaces(final List networkInterfaces) {
            networkInterface.setNetworkInterfaces(networkInterfaces);
            return this;
        }

        public NetworkAzure build() {
            // TODO : Validations
            return networkInterface;
        }
    }

    //endregion
    //region isSet methods
    // Is resourceGroupName Set boolean method
    @JsonIgnore
    public boolean isResourceGroupNameSet() {
        return isSet.contains("resourceGroupName");
    }

    // Is networkInterface Set boolean method
    @JsonIgnore
    public boolean isNetworkInterfaceSet() {
        return isSet.contains("networkInterfaces");
    }

    // Is virtualNetworkName Set boolean method
    @JsonIgnore
    public boolean isVirtualNetworkNameSet() {
        return isSet.contains("virtualNetworkName");
    }

    //endregion
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy