
io.kubernetes.client.models.AppsV1beta1ScaleSpecFluentImpl 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 AppsV1beta1ScaleSpecFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements AppsV1beta1ScaleSpecFluent{
private Integer replicas;
public AppsV1beta1ScaleSpecFluentImpl(){
}
public AppsV1beta1ScaleSpecFluentImpl(AppsV1beta1ScaleSpec 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;
AppsV1beta1ScaleSpecFluentImpl that = (AppsV1beta1ScaleSpecFluentImpl) o;
if (replicas != null ? !replicas.equals(that.replicas) :that.replicas != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy