import { NetworkingCreation } from './loadbalancer/networking/NetworkingCreation';
import { SizeEnum } from './loadbalancer/SizeEnum';
/** A load balancer to handle workload */
export interface LoadBalancerCreation {
    /** Description of the load balancer */
    description?: string;
    /** ID of the load balancer */
    id: string;
    /** Name of the load balancer */
    name?: string;
    /** Networking definition */
    networking?: NetworkingCreation;
    /** Openstack Region where the load balancer is hosted */
    openstackRegion: string;
    /** Region where the load balancer is hosted */
    region: string;
    /** Size of the load balancer */
    size?: SizeEnum;
}
//# sourceMappingURL=LoadBalancerCreation.d.ts.map