node-ovh-ts
Version:
OVH API wrapper library for TypeScript
23 lines (20 loc) • 904 B
TypeScript
import { CloudVolumePrice } from './CloudVolumePrice.js';
import { CloudFlavorPrice } from './CloudFlavorPrice.js';
import { OrderPrice } from './OrderPrice.js';
import { CloudSnapshotPrice } from './CloudSnapshotPrice.js';
import { CloudArchiveStoragePrice } from './CloudArchiveStoragePrice.js';
import { CloudStoragePrice } from './CloudStoragePrice.js';
import { CloudBandwidthStoragePrice } from './CloudBandwidthStoragePrice.js';
import './OrderCurrencyCodeEnum.js';
type CloudPrice = {
archive?: CloudArchiveStoragePrice[];
bandwidthArchiveIn?: CloudBandwidthStoragePrice[];
bandwidthArchiveOut?: CloudBandwidthStoragePrice[];
bandwidthStorage?: CloudBandwidthStoragePrice[];
instances?: CloudFlavorPrice[];
projectCreation?: OrderPrice;
snapshots?: CloudSnapshotPrice[];
storage?: CloudStoragePrice[];
volumes?: CloudVolumePrice[];
};
export { CloudPrice };