io.kubernetes.client.openapi.models.V1HorizontalPodAutoscalerSpecFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.Integer;
import java.lang.Deprecated;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Fluent;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import java.lang.Boolean;
public interface V1HorizontalPodAutoscalerSpecFluent> extends Fluent {
public Integer getMaxReplicas();
public A withMaxReplicas(Integer maxReplicas);
public Boolean hasMaxReplicas();
public Integer getMinReplicas();
public A withMinReplicas(Integer minReplicas);
public Boolean hasMinReplicas();
/**
* This method has been deprecated, please use method buildScaleTargetRef instead.
* @return The buildable object.
*/
@Deprecated public V1CrossVersionObjectReference getScaleTargetRef();
public V1CrossVersionObjectReference buildScaleTargetRef();
public A withScaleTargetRef(V1CrossVersionObjectReference scaleTargetRef);
public Boolean hasScaleTargetRef();
public V1HorizontalPodAutoscalerSpecFluent.ScaleTargetRefNested withNewScaleTargetRef();
public V1HorizontalPodAutoscalerSpecFluent.ScaleTargetRefNested withNewScaleTargetRefLike(V1CrossVersionObjectReference item);
public V1HorizontalPodAutoscalerSpecFluent.ScaleTargetRefNested editScaleTargetRef();
public V1HorizontalPodAutoscalerSpecFluent.ScaleTargetRefNested editOrNewScaleTargetRef();
public V1HorizontalPodAutoscalerSpecFluent.ScaleTargetRefNested editOrNewScaleTargetRefLike(V1CrossVersionObjectReference item);
public Integer getTargetCPUUtilizationPercentage();
public A withTargetCPUUtilizationPercentage(Integer targetCPUUtilizationPercentage);
public Boolean hasTargetCPUUtilizationPercentage();
public interface ScaleTargetRefNested extends io.kubernetes.client.fluent.Nested,V1CrossVersionObjectReferenceFluent> {
public N and();
public N endScaleTargetRef(); }
}