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

com.spotinst.sdkjava.model.bl.ocean.aks.ClusterMsiAks Maven / Gradle / Ivy

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

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;


@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ClusterMsiAks {
    @JsonIgnore
    private Set               isSet;
    private String                    name;
    private String                    resourceGroupName;


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

    public Set getIsSet() {
        return isSet;
    }

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

    public String getName() {
        return name;
    }

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

    public String getResourceGroupName() {
        return resourceGroupName;
    }

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

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

    @JsonIgnore
    public boolean isResourceGroupNameSet() {
        return isSet.contains("resourceGroupName");
    }

    public static class Builder {

        private ClusterMsiAks clusterMsiAks;

        private Builder() {
            this.clusterMsiAks = new ClusterMsiAks();
        }

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

        public Builder setName(final String name) {
            clusterMsiAks.setName(name);
            return this;
        }

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

        public ClusterMsiAks build() {
            return clusterMsiAks;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy