
io.kubernetes.client.models.V2beta1PodsMetricSourceFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
public class V2beta1PodsMetricSourceFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V2beta1PodsMetricSourceFluent{
private String metricName;
private String targetAverageValue;
public V2beta1PodsMetricSourceFluentImpl(){
}
public V2beta1PodsMetricSourceFluentImpl(V2beta1PodsMetricSource instance){
this.withMetricName(instance.getMetricName());
this.withTargetAverageValue(instance.getTargetAverageValue());
}
public String getMetricName(){
return this.metricName;
}
public A withMetricName(String metricName){
this.metricName=metricName; return (A) this;
}
public Boolean hasMetricName(){
return this.metricName != null;
}
public String getTargetAverageValue(){
return this.targetAverageValue;
}
public A withTargetAverageValue(String targetAverageValue){
this.targetAverageValue=targetAverageValue; return (A) this;
}
public Boolean hasTargetAverageValue(){
return this.targetAverageValue != 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;
V2beta1PodsMetricSourceFluentImpl that = (V2beta1PodsMetricSourceFluentImpl) o;
if (metricName != null ? !metricName.equals(that.metricName) :that.metricName != null) return false;
if (targetAverageValue != null ? !targetAverageValue.equals(that.targetAverageValue) :that.targetAverageValue != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy