UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

21 lines 849 B
import { HourlyInstanceDetail } from './HourlyInstanceDetail'; import { Quantity } from './Quantity'; import { RegionTypeEnum } from '../../common/RegionTypeEnum'; /** HourlyInstance */ export interface HourlyInstance { /** Specifies the deployment mode of the region where the resource is deployed (for example, 1-AZ or 3-AZ). Products that are grouped by project or have no region do not include a deployment mode */ deploymentMode?: RegionTypeEnum; /** Details about hourly instances */ details: HourlyInstanceDetail[]; /** Hours of run instances */ quantity: Quantity; /** Instance reference */ reference: string; /** Instance region */ region: string; /** Savings Plan IDs */ savingsPlanIds?: string[]; /** Total price */ totalPrice: number; } //# sourceMappingURL=HourlyInstance.d.ts.map