UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

15 lines 532 B
import { SafeKeyValueString } from '../../complexType/SafeKeyValueString'; /** Original service that can be migrated */ export interface ServiceToMigrate { /** Description of the offer of the service */ description: string; /** Additional information on the service */ metadata: SafeKeyValueString[]; /** Route */ route?: string; /** ID of the migratable service */ serviceId: number; /** Name of the migratable service */ serviceName: string; } //# sourceMappingURL=ServiceToMigrate.d.ts.map