
io.kubernetes.client.models.V1RollingUpdateDaemonSetFluentImpl 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 V1RollingUpdateDaemonSetFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1RollingUpdateDaemonSetFluent{
private String maxUnavailable;
public V1RollingUpdateDaemonSetFluentImpl(){
}
public V1RollingUpdateDaemonSetFluentImpl(V1RollingUpdateDaemonSet instance){
this.withMaxUnavailable(instance.getMaxUnavailable());
}
public String getMaxUnavailable(){
return this.maxUnavailable;
}
public A withMaxUnavailable(String maxUnavailable){
this.maxUnavailable=maxUnavailable; return (A) this;
}
public Boolean hasMaxUnavailable(){
return this.maxUnavailable != 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;
V1RollingUpdateDaemonSetFluentImpl that = (V1RollingUpdateDaemonSetFluentImpl) o;
if (maxUnavailable != null ? !maxUnavailable.equals(that.maxUnavailable) :that.maxUnavailable != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy