@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 425 B
TypeScript
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