@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
25 lines • 895 B
TypeScript
import { BandwidthStorage } from './BandwidthStorage';
import { StoredStorage } from './StoredStorage';
import { StorageTypeEnum } from './StorageTypeEnum';
/** HourlyStorage */
export interface HourlyStorage {
/** Bucket Name */
bucketName?: string;
/** Storage incoming bandwidth details */
incomingBandwidth?: BandwidthStorage;
/** Storage incoming internal bandwidth details */
incomingInternalBandwidth?: BandwidthStorage;
/** Storage outgoing bandwidth details */
outgoingBandwidth?: BandwidthStorage;
/** Storage outgoing internal bandwidth details */
outgoingInternalBandwidth?: BandwidthStorage;
/** Region */
region: string;
/** Information about stored data */
stored?: StoredStorage;
/** Total price */
totalPrice: number;
/** Storage type */
type: StorageTypeEnum;
}
//# sourceMappingURL=HourlyStorage.d.ts.map