UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

16 lines 700 B
import { MonthlyInstanceDetail } from './MonthlyInstanceDetail'; import { RegionTypeEnum } from '../../common/RegionTypeEnum'; /** MonthlyInstance */ export interface MonthlyInstance { /** 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 monthly instances */ details: MonthlyInstanceDetail[]; /** Instance reference */ reference: string; /** Instance region */ region: string; /** Total price */ totalPrice: number; } //# sourceMappingURL=MonthlyInstance.d.ts.map