UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

25 lines 642 B
import { Ip } from '../../Ip'; import { IpStatusEnum } from './IpStatusEnum'; import { IpSubTypeEnum } from './IpSubTypeEnum'; /** FailoverIp */ export interface FailoverIp { /** IP block */ block?: Ip; /** Ip continent */ continentCode?: string; /** Ip location */ geoloc?: string; /** Ip id */ id: string; /** Ip */ ip?: Ip; /** Current operation progress in percent */ progress: number; /** Instance where ip is routed to */ routedTo: string; /** Ip status */ status: IpStatusEnum; /** IP sub type */ subType: IpSubTypeEnum; } //# sourceMappingURL=FailoverIp.d.ts.map