UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

27 lines 870 B
import { Ip } from '../Ip'; import { StateEnum } from './StateEnum'; import { PoolType } from './PoolType'; /** 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