com.spotinst.sdkjava.model.bl.ocean.kubernetes.K8sVngLabel Maven / Gradle / Ivy
package com.spotinst.sdkjava.model.bl.ocean.kubernetes;
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 K8sVngLabel {
@JsonIgnore
private Set isSet;
private String key;
private String value;
private K8sVngLabel() {
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 K8sVngLabel labels;
private Builder() {
this.labels = new K8sVngLabel();
}
public static Builder get() {
return new Builder();
}
public Builder setKey(final String key) {
labels.setKey(key);
return this;
}
public Builder setValue(final String value) {
labels.setValue(value);
return this;
}
public K8sVngLabel build() {
return labels;
}
}
@JsonIgnore
public boolean isKeySet() {
return isSet.contains("key");
}
@JsonIgnore
public boolean isValueSet() {
return isSet.contains("value");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy