io.fabric8.openshift.api.model.installer.aws.v1.EC2RootVolumeFluent Maven / Gradle / Ivy
package io.fabric8.openshift.api.model.installer.aws.v1;
import java.lang.Integer;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.LinkedHashMap;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class EC2RootVolumeFluent> extends BaseFluent{
public EC2RootVolumeFluent() {
}
public EC2RootVolumeFluent(EC2RootVolume instance) {
this.copyInstance(instance);
}
private Integer iops;
private String kmsKeyARN;
private Integer size;
private String type;
private Map additionalProperties;
protected void copyInstance(EC2RootVolume instance) {
instance = (instance != null ? instance : new EC2RootVolume());
if (instance != null) {
this.withIops(instance.getIops());
this.withKmsKeyARN(instance.getKmsKeyARN());
this.withSize(instance.getSize());
this.withType(instance.getType());
this.withIops(instance.getIops());
this.withKmsKeyARN(instance.getKmsKeyARN());
this.withSize(instance.getSize());
this.withType(instance.getType());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
}
public Integer getIops() {
return this.iops;
}
public A withIops(Integer iops) {
this.iops=iops; return (A) this;
}
public boolean hasIops() {
return this.iops != null;
}
public String getKmsKeyARN() {
return this.kmsKeyARN;
}
public A withKmsKeyARN(String kmsKeyARN) {
this.kmsKeyARN=kmsKeyARN; return (A) this;
}
public boolean hasKmsKeyARN() {
return this.kmsKeyARN != null;
}
public Integer getSize() {
return this.size;
}
public A withSize(Integer size) {
this.size=size; return (A) this;
}
public boolean hasSize() {
return this.size != null;
}
public String getType() {
return this.type;
}
public A withType(String type) {
this.type=type; return (A) this;
}
public boolean hasType() {
return this.type != null;
}
public A addToAdditionalProperties(String key,Object value) {
if(this.additionalProperties == null && key != null && value != null) { this.additionalProperties = new LinkedHashMap(); }
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (A)this;
}
public A addToAdditionalProperties(Map map) {
if(this.additionalProperties == null && map != null) { this.additionalProperties = new LinkedHashMap(); }
if(map != null) { this.additionalProperties.putAll(map);} return (A)this;
}
public A removeFromAdditionalProperties(String key) {
if(this.additionalProperties == null) { return (A) this; }
if(key != null && this.additionalProperties != null) {this.additionalProperties.remove(key);} return (A)this;
}
public A removeFromAdditionalProperties(Map map) {
if(this.additionalProperties == null) { return (A) this; }
if(map != null) { for(Object key : map.keySet()) {if (this.additionalProperties != null){this.additionalProperties.remove(key);}}} return (A)this;
}
public Map getAdditionalProperties() {
return this.additionalProperties;
}
public A withAdditionalProperties(Map additionalProperties) {
if (additionalProperties == null) { this.additionalProperties = null;} else {this.additionalProperties = new LinkedHashMap(additionalProperties);} return (A) this;
}
public boolean hasAdditionalProperties() {
return this.additionalProperties != null;
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
EC2RootVolumeFluent that = (EC2RootVolumeFluent) o;
if (!java.util.Objects.equals(iops, that.iops)) return false;
if (!java.util.Objects.equals(kmsKeyARN, that.kmsKeyARN)) return false;
if (!java.util.Objects.equals(size, that.size)) return false;
if (!java.util.Objects.equals(type, that.type)) return false;
if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(iops, kmsKeyARN, size, type, additionalProperties, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (iops != null) { sb.append("iops:"); sb.append(iops + ","); }
if (kmsKeyARN != null) { sb.append("kmsKeyARN:"); sb.append(kmsKeyARN + ","); }
if (size != null) { sb.append("size:"); sb.append(size + ","); }
if (type != null) { sb.append("type:"); sb.append(type + ","); }
if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
sb.append("}");
return sb.toString();
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy