node-ovh-ts
Version:
OVH API wrapper library for TypeScript
18 lines (15 loc) • 617 B
TypeScript
import { OrderCatalogPccHostSpecifications } from './OrderCatalogPccHostSpecifications.js';
import './OrderCatalogPccHostStorageSpecifications.js';
import './OrderCatalogPccPccUnitAndValue.js';
import './OrderCatalogPccHostMemorySpecifications.js';
import './OrderCatalogPccHostNetworkSpecifications.js';
import './OrderCatalogPccHostCpuSpecifications.js';
type OrderCatalogPccHost = {
name?: string;
onInitialOrder?: boolean;
onUpgradeOrder?: boolean;
planCode?: string;
specifications?: OrderCatalogPccHostSpecifications;
storagesPack?: string[] | null;
};
export { OrderCatalogPccHost };