annotations.io.fabric8.kubernetes.api.model.autoscaling.v2beta1.PodsMetricSourceFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.autoscaling.v2beta1;
import io.fabric8.kubernetes.api.model.LabelSelectorBuilder;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.lang.StringBuilder;
import io.fabric8.kubernetes.api.model.LabelSelectorFluentImpl;
import io.fabric8.kubernetes.api.builder.Nested;
import io.fabric8.kubernetes.api.model.LabelSelector;
import io.fabric8.kubernetes.api.model.Quantity;
import java.lang.String;
import java.lang.StringBuffer;
import java.lang.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
public class PodsMetricSourceFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements PodsMetricSourceFluent{
private String metricName;
private LabelSelectorBuilder selector;
private Quantity targetAverageValue;
public PodsMetricSourceFluentImpl(){
}
public PodsMetricSourceFluentImpl(PodsMetricSource instance){
this.withMetricName(instance.getMetricName());
this.withSelector(instance.getSelector());
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 A withNewMetricName(String arg1){
return (A)withMetricName(new String(arg1));
}
public A withNewMetricName(StringBuilder arg1){
return (A)withMetricName(new String(arg1));
}
public A withNewMetricName(StringBuffer arg1){
return (A)withMetricName(new String(arg1));
}
/**
* This method has been deprecated, please use method buildSelector instead.
* @return The buildable object.
*/
@Deprecated public LabelSelector getSelector(){
return this.selector!=null?this.selector.build():null;
}
public LabelSelector buildSelector(){
return this.selector!=null?this.selector.build():null;
}
public A withSelector(LabelSelector selector){
_visitables.get("selector").remove(this.selector);
if (selector!=null){ this.selector= new LabelSelectorBuilder(selector); _visitables.get("selector").add(this.selector);} return (A) this;
}
public Boolean hasSelector(){
return this.selector != null;
}
public PodsMetricSourceFluent.SelectorNested withNewSelector(){
return new SelectorNestedImpl();
}
public PodsMetricSourceFluent.SelectorNested withNewSelectorLike(LabelSelector item){
return new SelectorNestedImpl(item);
}
public PodsMetricSourceFluent.SelectorNested editSelector(){
return withNewSelectorLike(getSelector());
}
public PodsMetricSourceFluent.SelectorNested editOrNewSelector(){
return withNewSelectorLike(getSelector() != null ? getSelector(): new LabelSelectorBuilder().build());
}
public PodsMetricSourceFluent.SelectorNested editOrNewSelectorLike(LabelSelector item){
return withNewSelectorLike(getSelector() != null ? getSelector(): item);
}
public Quantity getTargetAverageValue(){
return this.targetAverageValue;
}
public A withTargetAverageValue(Quantity targetAverageValue){
this.targetAverageValue=targetAverageValue; return (A) this;
}
public Boolean hasTargetAverageValue(){
return this.targetAverageValue != null;
}
public A withNewTargetAverageValue(String amount,String format){
return (A)withTargetAverageValue(new Quantity(amount, format));
}
public A withNewTargetAverageValue(String amount){
return (A)withTargetAverageValue(new Quantity(amount));
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
PodsMetricSourceFluentImpl that = (PodsMetricSourceFluentImpl) o;
if (metricName != null ? !metricName.equals(that.metricName) :that.metricName != null) return false;
if (selector != null ? !selector.equals(that.selector) :that.selector != null) return false;
if (targetAverageValue != null ? !targetAverageValue.equals(that.targetAverageValue) :that.targetAverageValue != null) return false;
return true;
}
public class SelectorNestedImpl extends LabelSelectorFluentImpl> implements PodsMetricSourceFluent.SelectorNested,io.fabric8.kubernetes.api.builder.Nested{
private final LabelSelectorBuilder builder;
SelectorNestedImpl(LabelSelector item){
this.builder = new LabelSelectorBuilder(this, item);
}
SelectorNestedImpl(){
this.builder = new LabelSelectorBuilder(this);
}
public N and(){
return (N) PodsMetricSourceFluentImpl.this.withSelector(builder.build());
}
public N endSelector(){
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy