![JAR search and dependency download from the Maven repository](/logo.png)
io.kubernetes.client.openapi.models.V2beta2HorizontalPodAutoscalerSpecBuilder Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;
public class V2beta2HorizontalPodAutoscalerSpecBuilder extends V2beta2HorizontalPodAutoscalerSpecFluentImpl implements VisitableBuilder {
V2beta2HorizontalPodAutoscalerSpecFluent> fluent;
Boolean validationEnabled;
public V2beta2HorizontalPodAutoscalerSpecBuilder() {
this(true);
}
public V2beta2HorizontalPodAutoscalerSpecBuilder(Boolean validationEnabled) {
this(new V2beta2HorizontalPodAutoscalerSpec(), validationEnabled);
}
public V2beta2HorizontalPodAutoscalerSpecBuilder(V2beta2HorizontalPodAutoscalerSpecFluent> fluent) {
this(fluent, true);
}
public V2beta2HorizontalPodAutoscalerSpecBuilder(V2beta2HorizontalPodAutoscalerSpecFluent> fluent,Boolean validationEnabled) {
this(fluent, new V2beta2HorizontalPodAutoscalerSpec(), validationEnabled);
}
public V2beta2HorizontalPodAutoscalerSpecBuilder(V2beta2HorizontalPodAutoscalerSpecFluent> fluent,V2beta2HorizontalPodAutoscalerSpec instance) {
this(fluent, instance, true);
}
public V2beta2HorizontalPodAutoscalerSpecBuilder(V2beta2HorizontalPodAutoscalerSpecFluent> fluent,V2beta2HorizontalPodAutoscalerSpec instance,Boolean validationEnabled) {
this.fluent = fluent;
fluent.withBehavior(instance.getBehavior());
fluent.withMaxReplicas(instance.getMaxReplicas());
fluent.withMetrics(instance.getMetrics());
fluent.withMinReplicas(instance.getMinReplicas());
fluent.withScaleTargetRef(instance.getScaleTargetRef());
this.validationEnabled = validationEnabled;
}
public V2beta2HorizontalPodAutoscalerSpecBuilder(V2beta2HorizontalPodAutoscalerSpec instance) {
this(instance,true);
}
public V2beta2HorizontalPodAutoscalerSpecBuilder(V2beta2HorizontalPodAutoscalerSpec instance,Boolean validationEnabled) {
this.fluent = this;
this.withBehavior(instance.getBehavior());
this.withMaxReplicas(instance.getMaxReplicas());
this.withMetrics(instance.getMetrics());
this.withMinReplicas(instance.getMinReplicas());
this.withScaleTargetRef(instance.getScaleTargetRef());
this.validationEnabled = validationEnabled;
}
public V2beta2HorizontalPodAutoscalerSpec build() {
V2beta2HorizontalPodAutoscalerSpec buildable = new V2beta2HorizontalPodAutoscalerSpec();
buildable.setBehavior(fluent.getBehavior());
buildable.setMaxReplicas(fluent.getMaxReplicas());
buildable.setMetrics(fluent.getMetrics());
buildable.setMinReplicas(fluent.getMinReplicas());
buildable.setScaleTargetRef(fluent.getScaleTargetRef());
return buildable;
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V2beta2HorizontalPodAutoscalerSpecBuilder that = (V2beta2HorizontalPodAutoscalerSpecBuilder) o;
if (fluent != null &&fluent != this ? !fluent.equals(that.fluent) :that.fluent != null &&fluent != this ) return false;
if (validationEnabled != null ? !validationEnabled.equals(that.validationEnabled) :that.validationEnabled != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(fluent, validationEnabled, super.hashCode());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy