
io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ResourceMetricSourceFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.autoscaling.v2beta1;
import java.lang.Integer;
import java.lang.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.model.Quantity;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
import java.util.Map;
import java.util.LinkedHashMap;
/**
* Generated
*/
public class ResourceMetricSourceFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ResourceMetricSourceFluent{
public ResourceMetricSourceFluentImpl() {
}
public ResourceMetricSourceFluentImpl(io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ResourceMetricSource instance) {
this.withName(instance.getName());
this.withTargetAverageUtilization(instance.getTargetAverageUtilization());
this.withTargetAverageValue(instance.getTargetAverageValue());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
private java.lang.String name;
private java.lang.Integer targetAverageUtilization;
private io.fabric8.kubernetes.api.model.Quantity targetAverageValue;
private java.util.Map additionalProperties;
public java.lang.String getName() {
return this.name;
}
public A withName(java.lang.String name) {
this.name=name; return (A) this;
}
public java.lang.Boolean hasName() {
return this.name != null;
}
/**
* Method is deprecated. use withName instead.
*/
@java.lang.Deprecated
public A withNewName(java.lang.String arg0) {
return (A)withName(new String(arg0));
}
public java.lang.Integer getTargetAverageUtilization() {
return this.targetAverageUtilization;
}
public A withTargetAverageUtilization(java.lang.Integer targetAverageUtilization) {
this.targetAverageUtilization=targetAverageUtilization; return (A) this;
}
public java.lang.Boolean hasTargetAverageUtilization() {
return this.targetAverageUtilization != null;
}
public io.fabric8.kubernetes.api.model.Quantity getTargetAverageValue() {
return this.targetAverageValue;
}
public A withTargetAverageValue(io.fabric8.kubernetes.api.model.Quantity targetAverageValue) {
this.targetAverageValue=targetAverageValue; return (A) this;
}
public java.lang.Boolean hasTargetAverageValue() {
return this.targetAverageValue != null;
}
public A withNewTargetAverageValue(java.lang.String amount,java.lang.String format) {
return (A)withTargetAverageValue(new Quantity(amount, format));
}
public A withNewTargetAverageValue(java.lang.String amount) {
return (A)withTargetAverageValue(new Quantity(amount));
}
public A addToAdditionalProperties(java.lang.String key,java.lang.Object value) {
if(this.additionalProperties == null && key != null && value != null) { this.additionalProperties = new java.util.LinkedHashMap(); }
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (A)this;
}
public A addToAdditionalProperties(java.util.Map map) {
if(this.additionalProperties == null && map != null) { this.additionalProperties = new java.util.LinkedHashMap(); }
if(map != null) { this.additionalProperties.putAll(map);} return (A)this;
}
public A removeFromAdditionalProperties(java.lang.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(java.util.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 java.util.Map getAdditionalProperties() {
return this.additionalProperties;
}
public A withAdditionalProperties(java.util.Map additionalProperties) {
if (additionalProperties == null) { this.additionalProperties = null;} else {this.additionalProperties = new java.util.LinkedHashMap(additionalProperties);} return (A) this;
}
public java.lang.Boolean hasAdditionalProperties() {
return this.additionalProperties != null;
}
public boolean equals(java.lang.Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ResourceMetricSourceFluentImpl that = (ResourceMetricSourceFluentImpl) o;
if (name != null ? !name.equals(that.name) :that.name != null) return false;
if (targetAverageUtilization != null ? !targetAverageUtilization.equals(that.targetAverageUtilization) :that.targetAverageUtilization != null) return false;
if (targetAverageValue != null ? !targetAverageValue.equals(that.targetAverageValue) :that.targetAverageValue != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(name, targetAverageUtilization, targetAverageValue, additionalProperties, super.hashCode());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy