/**
 * Kubernetes
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: unversioned
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { IoK8sApiAutoscalingV2HPAScalingRules } from './';
/**
 * HorizontalPodAutoscalerBehavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively).
 * @export
 * @interface IoK8sApiAutoscalingV2HorizontalPodAutoscalerBehavior
 */
export interface IoK8sApiAutoscalingV2HorizontalPodAutoscalerBehavior {
    /**
     *
     * @type {IoK8sApiAutoscalingV2HPAScalingRules}
     * @memberof IoK8sApiAutoscalingV2HorizontalPodAutoscalerBehavior
     */
    scaleDown?: IoK8sApiAutoscalingV2HPAScalingRules;
    /**
     *
     * @type {IoK8sApiAutoscalingV2HPAScalingRules}
     * @memberof IoK8sApiAutoscalingV2HorizontalPodAutoscalerBehavior
     */
    scaleUp?: IoK8sApiAutoscalingV2HPAScalingRules;
}
export declare function IoK8sApiAutoscalingV2HorizontalPodAutoscalerBehaviorFromJSON(json: any): IoK8sApiAutoscalingV2HorizontalPodAutoscalerBehavior;
export declare function IoK8sApiAutoscalingV2HorizontalPodAutoscalerBehaviorFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiAutoscalingV2HorizontalPodAutoscalerBehavior;
export declare function IoK8sApiAutoscalingV2HorizontalPodAutoscalerBehaviorToJSON(value?: IoK8sApiAutoscalingV2HorizontalPodAutoscalerBehavior | null): any;
