io.fabric8.kubernetes.api.model.autoscaling.v2beta1.ResourceMetricStatusFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.autoscaling.v2beta1;
import java.lang.Integer;
import java.lang.StringBuffer;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.lang.StringBuilder;
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;
public class ResourceMetricStatusFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements ResourceMetricStatusFluent{
private Integer currentAverageUtilization;
private Quantity currentAverageValue;
private String name;
public ResourceMetricStatusFluentImpl(){
}
public ResourceMetricStatusFluentImpl(ResourceMetricStatus instance){
this.withCurrentAverageUtilization(instance.getCurrentAverageUtilization());
this.withCurrentAverageValue(instance.getCurrentAverageValue());
this.withName(instance.getName());
}
public Integer getCurrentAverageUtilization(){
return this.currentAverageUtilization;
}
public A withCurrentAverageUtilization(Integer currentAverageUtilization){
this.currentAverageUtilization=currentAverageUtilization; return (A) this;
}
public Boolean hasCurrentAverageUtilization(){
return this.currentAverageUtilization != null;
}
public A withNewCurrentAverageUtilization(String arg1){
return (A)withCurrentAverageUtilization(new Integer(arg1));
}
public A withNewCurrentAverageUtilization(int arg1){
return (A)withCurrentAverageUtilization(new Integer(arg1));
}
public Quantity getCurrentAverageValue(){
return this.currentAverageValue;
}
public A withCurrentAverageValue(Quantity currentAverageValue){
this.currentAverageValue=currentAverageValue; return (A) this;
}
public Boolean hasCurrentAverageValue(){
return this.currentAverageValue != null;
}
public A withNewCurrentAverageValue(String amount,String format){
return (A)withCurrentAverageValue(new Quantity(amount, format));
}
public A withNewCurrentAverageValue(String amount){
return (A)withCurrentAverageValue(new Quantity(amount));
}
public String getName(){
return this.name;
}
public A withName(String name){
this.name=name; return (A) this;
}
public Boolean hasName(){
return this.name != null;
}
public A withNewName(String arg1){
return (A)withName(new String(arg1));
}
public A withNewName(StringBuilder arg1){
return (A)withName(new String(arg1));
}
public A withNewName(StringBuffer arg1){
return (A)withName(new String(arg1));
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ResourceMetricStatusFluentImpl that = (ResourceMetricStatusFluentImpl) o;
if (currentAverageUtilization != null ? !currentAverageUtilization.equals(that.currentAverageUtilization) :that.currentAverageUtilization != null) return false;
if (currentAverageValue != null ? !currentAverageValue.equals(that.currentAverageValue) :that.currentAverageValue != null) return false;
if (name != null ? !name.equals(that.name) :that.name != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy