@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
13 lines • 334 B
TypeScript
import { BootTypeEnum } from './BootTypeEnum';
/** Available boots */
export interface Netboot {
/** boot id */
bootId: number;
/** the boot system */
bootType: BootTypeEnum;
/** the boot description */
description: string;
/** The boot kernel */
kernel: string;
}
//# sourceMappingURL=Netboot.d.ts.map