
io.kubernetes.client.models.V1HorizontalPodAutoscalerSpecFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import java.lang.Integer;
import java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
public class V1HorizontalPodAutoscalerSpecFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1HorizontalPodAutoscalerSpecFluent{
private Integer maxReplicas;
private Integer minReplicas;
private V1CrossVersionObjectReferenceBuilder scaleTargetRef;
private Integer targetCPUUtilizationPercentage;
public V1HorizontalPodAutoscalerSpecFluentImpl(){
}
public V1HorizontalPodAutoscalerSpecFluentImpl(V1HorizontalPodAutoscalerSpec instance){
this.withMaxReplicas(instance.getMaxReplicas());
this.withMinReplicas(instance.getMinReplicas());
this.withScaleTargetRef(instance.getScaleTargetRef());
this.withTargetCPUUtilizationPercentage(instance.getTargetCPUUtilizationPercentage());
}
public Integer getMaxReplicas(){
return this.maxReplicas;
}
public A withMaxReplicas(Integer maxReplicas){
this.maxReplicas=maxReplicas; return (A) this;
}
public Boolean hasMaxReplicas(){
return this.maxReplicas != null;
}
public A withNewMaxReplicas(int arg1){
return (A)withMaxReplicas(new Integer(arg1));
}
public A withNewMaxReplicas(String arg1){
return (A)withMaxReplicas(new Integer(arg1));
}
public Integer getMinReplicas(){
return this.minReplicas;
}
public A withMinReplicas(Integer minReplicas){
this.minReplicas=minReplicas; return (A) this;
}
public Boolean hasMinReplicas(){
return this.minReplicas != null;
}
public A withNewMinReplicas(int arg1){
return (A)withMinReplicas(new Integer(arg1));
}
public A withNewMinReplicas(String arg1){
return (A)withMinReplicas(new Integer(arg1));
}
/**
* This method has been deprecated, please use method buildScaleTargetRef instead.
*/
@Deprecated public V1CrossVersionObjectReference getScaleTargetRef(){
return this.scaleTargetRef!=null?this.scaleTargetRef.build():null;
}
public V1CrossVersionObjectReference buildScaleTargetRef(){
return this.scaleTargetRef!=null?this.scaleTargetRef.build():null;
}
public A withScaleTargetRef(V1CrossVersionObjectReference scaleTargetRef){
_visitables.remove(this.scaleTargetRef);
if (scaleTargetRef!=null){ this.scaleTargetRef= new V1CrossVersionObjectReferenceBuilder(scaleTargetRef); _visitables.add(this.scaleTargetRef);} return (A) this;
}
public Boolean hasScaleTargetRef(){
return this.scaleTargetRef != null;
}
public V1HorizontalPodAutoscalerSpecFluent.ScaleTargetRefNested withNewScaleTargetRef(){
return new ScaleTargetRefNestedImpl();
}
public V1HorizontalPodAutoscalerSpecFluent.ScaleTargetRefNested withNewScaleTargetRefLike(V1CrossVersionObjectReference item){
return new ScaleTargetRefNestedImpl(item);
}
public V1HorizontalPodAutoscalerSpecFluent.ScaleTargetRefNested editScaleTargetRef(){
return withNewScaleTargetRefLike(getScaleTargetRef());
}
public V1HorizontalPodAutoscalerSpecFluent.ScaleTargetRefNested editOrNewScaleTargetRef(){
return withNewScaleTargetRefLike(getScaleTargetRef() != null ? getScaleTargetRef(): new V1CrossVersionObjectReferenceBuilder().build());
}
public V1HorizontalPodAutoscalerSpecFluent.ScaleTargetRefNested editOrNewScaleTargetRefLike(V1CrossVersionObjectReference item){
return withNewScaleTargetRefLike(getScaleTargetRef() != null ? getScaleTargetRef(): item);
}
public Integer getTargetCPUUtilizationPercentage(){
return this.targetCPUUtilizationPercentage;
}
public A withTargetCPUUtilizationPercentage(Integer targetCPUUtilizationPercentage){
this.targetCPUUtilizationPercentage=targetCPUUtilizationPercentage; return (A) this;
}
public Boolean hasTargetCPUUtilizationPercentage(){
return this.targetCPUUtilizationPercentage != null;
}
public A withNewTargetCPUUtilizationPercentage(int arg1){
return (A)withTargetCPUUtilizationPercentage(new Integer(arg1));
}
public A withNewTargetCPUUtilizationPercentage(String arg1){
return (A)withTargetCPUUtilizationPercentage(new Integer(arg1));
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1HorizontalPodAutoscalerSpecFluentImpl that = (V1HorizontalPodAutoscalerSpecFluentImpl) o;
if (maxReplicas != null ? !maxReplicas.equals(that.maxReplicas) :that.maxReplicas != null) return false;
if (minReplicas != null ? !minReplicas.equals(that.minReplicas) :that.minReplicas != null) return false;
if (scaleTargetRef != null ? !scaleTargetRef.equals(that.scaleTargetRef) :that.scaleTargetRef != null) return false;
if (targetCPUUtilizationPercentage != null ? !targetCPUUtilizationPercentage.equals(that.targetCPUUtilizationPercentage) :that.targetCPUUtilizationPercentage != null) return false;
return true;
}
public class ScaleTargetRefNestedImpl extends V1CrossVersionObjectReferenceFluentImpl> implements V1HorizontalPodAutoscalerSpecFluent.ScaleTargetRefNested,io.kubernetes.client.fluent.Nested{
private final V1CrossVersionObjectReferenceBuilder builder;
ScaleTargetRefNestedImpl(V1CrossVersionObjectReference item){
this.builder = new V1CrossVersionObjectReferenceBuilder(this, item);
}
ScaleTargetRefNestedImpl(){
this.builder = new V1CrossVersionObjectReferenceBuilder(this);
}
public N and(){
return (N) V1HorizontalPodAutoscalerSpecFluentImpl.this.withScaleTargetRef(builder.build());
}
public N endScaleTargetRef(){
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy