UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

21 lines 830 B
import { DatacenterEnum } from './DatacenterEnum'; import { StatusEnum } from './StatusEnum'; import { VPS2020to2025Plan } from './VPS2020to2025Plan'; /** A structure describing a migration from VPS 2020 to VPS 2025 */ export interface VPS2020to2025 { /** List of available plans to migrate */ availablePlans: VPS2020to2025Plan[]; /** VPS current plan code */ currentPlan: string; /** All datacenter of vps migration */ datacenter: DatacenterEnum; /** Date of planned migration, null if not scheduled */ date?: string; /** Position on the migration queue, null if not in queue */ position?: number; /** All status a migration task can be in */ status: StatusEnum; /** VPS target plan code after migration */ targetPlan?: string; } //# sourceMappingURL=VPS2020to2025.d.ts.map