/**
 * EvictionChangeRequirement refers to the relationship between the new target recommendation for a Pod and its current requests, what kind of change is necessary for the Pod to be evicted
 */
export type IEvictionChangeRequirement = "TargetHigherThanRequests" | "TargetLowerThanRequests";
export type EvictionChangeRequirement = IEvictionChangeRequirement;
export type { IEvictionChangeRequirement as IIoK8sAutoscalerVerticalPodAutoscalerPkgApisAutoscalingK8sIoV1EvictionChangeRequirement, EvictionChangeRequirement as IoK8sAutoscalerVerticalPodAutoscalerPkgApisAutoscalingK8sIoV1EvictionChangeRequirement };
