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

com.spotinst.sdkjava.model.bl.ocean.aks.ClusterImageAks 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 ClusterImageAks {
    @JsonIgnore
    private Set                         isSet;
    private ClusterMarketplaceAks               marketplace;


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

    public Set getIsSet() {
        return isSet;
    }

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

    public ClusterMarketplaceAks getMarketplace() {
        return marketplace;
    }

    public void setMarketplace(ClusterMarketplaceAks marketplace) {
        isSet.add("marketplace");
        this.marketplace = marketplace;
    }

    @JsonIgnore
    public boolean isMarketplaceSet() {
        return isSet.contains("marketplace");
    }

public static class Builder {

    private ClusterImageAks clusterImageAks;
    private Builder() {
        this.clusterImageAks = new ClusterImageAks();
    }

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

    public Builder setMarketplace(final ClusterMarketplaceAks marketplace) {
        clusterImageAks.setMarketplace(marketplace);
        return this;
    }

    public ClusterImageAks build() {
        return clusterImageAks;
    }
}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy