@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
10 lines • 332 B
TypeScript
/** Boot the instance from an image or a volume. Both cannot be null. */
export interface BootFrom {
/** Instance image id */
imageId?: string;
/** Region of the instance image */
imageRegionName?: string;
/** Specify a volume id to boot from it */
volumeId?: string;
}
//# sourceMappingURL=BootFrom.d.ts.map