import { PoolAlgorithmEnum } from './PoolAlgorithmEnum';
import { PoolSessionPersistence } from './PoolSessionPersistence';
/** Parameters to update a load balancer pool */
export interface PoolUpdate {
    /** Algorithm of the pool */
    algorithm?: PoolAlgorithmEnum;
    /** Name of the resource */
    name?: string;
    /**  */
    sessionPersistence?: PoolSessionPersistence;
}
//# sourceMappingURL=PoolUpdate.d.ts.map