com.spotinst.sdkjava.model.bl.ocean.gke.LaunchSpecMetadataSpecification Maven / Gradle / Ivy
package com.spotinst.sdkjava.model.bl.ocean.gke;
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 LaunchSpecMetadataSpecification {
@JsonIgnore
private Set isSet;
private String key;
private String value;
public LaunchSpecMetadataSpecification() {
isSet = new HashSet<>();
}
public Set getIsSet() {
return isSet;
}
public void setIsSet(Set isSet) {
this.isSet = isSet;
}
public String getKey(){ return key; }
public void setKey(String key){
isSet.add("key");
this.key = key;
}
public String getValue(){
return value;
}
public void setValue(String value) {
isSet.add("value");
this.value = value;
}
public static class Builder {
private LaunchSpecMetadataSpecification metadata;
private Builder() {
this.metadata = new LaunchSpecMetadataSpecification();
}
public static Builder get() {
return new Builder();
}
public Builder setKey(final String key) {
metadata.setKey(key);
return this;
}
public Builder setValue(final String value) {
metadata.setValue(value);
return this;
}
public LaunchSpecMetadataSpecification build() {
return metadata;
}
}
@JsonIgnore
public boolean isKeySet() {
return isSet.contains("key");
}
@JsonIgnore
public boolean isValueSet() {
return isSet.contains("value");
}
//endregion
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy