@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 672 B
TypeScript
import { ServiceMigration as AliasTypeServiceMigration } from './ServiceMigration';
import { ProposedOffer } from './ProposedOffer';
import { ServiceToMigrate } from './ServiceToMigrate';
/** Service you may migrate to a given offer */
export interface ServiceMigration {
/** Options to migrate linked to the original service */
addons: AliasTypeServiceMigration[];
/** ID of an ongoing migration order */
orderId?: number;
/** Proposed commercial offer to replace the service */
proposedOffer: ProposedOffer;
/** Description of the service to migrate */
serviceToMigrate?: ServiceToMigrate;
}
//# sourceMappingURL=ServiceMigration.d.ts.map