
io.kubernetes.client.models.V1beta2ScaleSpecFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
import java.lang.Integer;
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 V1beta2ScaleSpecFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1beta2ScaleSpecFluent{
private Integer replicas;
public V1beta2ScaleSpecFluentImpl(){
}
public V1beta2ScaleSpecFluentImpl(V1beta2ScaleSpec instance){
this.withReplicas(instance.getReplicas());
}
public Integer getReplicas(){
return this.replicas;
}
public A withReplicas(Integer replicas){
this.replicas=replicas; return (A) this;
}
public Boolean hasReplicas(){
return this.replicas != null;
}
public A withNewReplicas(int arg1){
return (A)withReplicas(new Integer(arg1));
}
public A withNewReplicas(String arg1){
return (A)withReplicas(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;
V1beta2ScaleSpecFluentImpl that = (V1beta2ScaleSpecFluentImpl) o;
if (replicas != null ? !replicas.equals(that.replicas) :that.replicas != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy