com.spotinst.sdkjava.model.api.azure.elastiGroup.V3.ApiImageSpecAzure Maven / Gradle / Ivy
package com.spotinst.sdkjava.model.api.azure.elastiGroup.V3;
import com.fasterxml.jackson.annotation.JsonFilter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.spotinst.sdkjava.client.rest.IPartialUpdateEntity;
import java.util.HashSet;
import java.util.Set;
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonFilter("PartialUpdateEntityFilter")
public class ApiImageSpecAzure implements IPartialUpdateEntity {
//region Members
@JsonIgnore
private Set isSet;
private ApiMarketplaceAzure marketplace;
private ApiCustomSpecAzure custom;
//endregion
//region Constructor
public ApiImageSpecAzure() {
isSet = new HashSet<>();
}
//endregion
//region Getters & Setters
public Set getIsSet() {
return isSet;
}
public void setIsSet(Set isSet) {
this.isSet = isSet;
}
public ApiMarketplaceAzure getMarketplace() {
return marketplace;
}
public void setMarketplace(ApiMarketplaceAzure marketplace) {
isSet.add("marketplace");
this.marketplace = marketplace;
}
public ApiCustomSpecAzure getCustom() {
return custom;
}
public void setCustom(ApiCustomSpecAzure custom) {
isSet.add("custom");
this.custom = custom;
}
//endregion
//region isSet methods
// Is marketplace Set boolean method
@JsonIgnore
public boolean isMarketplaceSet() {
return isSet.contains("marketplace");
}
// Is custom Set boolean method
@JsonIgnore
public boolean isCustomSet() {
return isSet.contains("custom");
}
//endregion
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy