@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 736 B
TypeScript
import { MonthlyInstanceOptionDetail } from './MonthlyInstanceOptionDetail';
import { RegionTypeEnum } from '../../common/RegionTypeEnum';
/** MonthlyInstanceOption */
export interface MonthlyInstanceOption {
/** 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: MonthlyInstanceOptionDetail[];
/** Instance reference */
reference: string;
/** Instance region */
region: string;
/** Total price */
totalPrice: number;
}
//# sourceMappingURL=MonthlyInstanceOption.d.ts.map