@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
13 lines • 483 B
TypeScript
import { OptionMapping2016 } from './OptionMapping2016';
/** A structure describing a migration plan from VPS 2016/2018 to VPS 2020 */
export interface VPS2018to2020Plan {
/** VPS current plan code */
currentPlan: string;
/** New VPS plan code after migration */
newPlan: string;
/** Mapping of VPS options from VPS 2016 to VPS 2020 */
options: OptionMapping2016[];
/** VPS product */
product: string;
}
//# sourceMappingURL=VPS2018to2020Plan.d.ts.map