UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 488 B
import { HourlyInstanceDetail } from './HourlyInstanceDetail'; import { Quantity } from './Quantity'; /** HourlyInstance */ export interface HourlyInstance { /** Details about hourly instances */ details: HourlyInstanceDetail[]; /** Hours of run instances */ quantity: Quantity; /** Instance reference */ reference: string; /** Instance region */ region: string; /** Total price */ totalPrice: number; } //# sourceMappingURL=HourlyInstance.d.ts.map