import { PoolAlgorithmEnum } from './PoolAlgorithmEnum';
import { PoolProtocolEnum } from './PoolProtocolEnum';
import { PoolSessionPersistence } from './PoolSessionPersistence';
/** Pool */
export interface PoolCreate {
    /** Algorithm of the pool */
    algorithm: PoolAlgorithmEnum;
    /** ID of the listener */
    listenerId: string;
    /** ID of the loadbalancer */
    loadbalancerId: string;
    /** Name of the resource */
    name: string;
    /** Protocol of the pool */
    protocol: PoolProtocolEnum;
    /** Information about session persistence */
    sessionPersistence?: PoolSessionPersistence;
}
//# sourceMappingURL=PoolCreate.d.ts.map