import { PoolType } from './PoolType';
import { StateEnum } from './StateEnum';
import { Ip } from '../Ip';
/** All informations about access point */
export interface Pool {
    /** Pool id */
    accessPointId: number;
    /** DHCP netmask in this port group */
    dhcpNetmask: Ip;
    /** DHCP network in this port group */
    dhcpNetwork: Ip;
    /** External url of your access point */
    externalUrl: string;
    /** Next hop IP to reach virtual desktops network for public Access Point */
    intercoNextHop?: Ip;
    /** Next hop IP to reach virtual desktops network for private Access Point */
    intercoPrivateNextHop?: Ip;
    /** Port group id */
    portGroupId: string;
    /** Network state */
    state: StateEnum;
    /** Two factor authentication */
    twoFA: boolean;
    /** Pool type */
    type: PoolType;
}
//# sourceMappingURL=Pool.d.ts.map