node-ovh-ts
Version:
OVH API wrapper library for TypeScript
17 lines (14 loc) • 483 B
TypeScript
import { DedicatedServerRtmRaidStatusEnum } from './DedicatedServerRtmRaidStatusEnum.js';
type DedicatedServerRtmRaidVolume = {
capacity?: number | null;
chunks?: string | null;
label?: string | null;
letter?: string | null;
phys?: string | null;
status?: DedicatedServerRtmRaidStatusEnum | null;
stripe?: string | null;
syncprogress?: string | null;
type?: string | null;
volume?: string | null;
};
export { DedicatedServerRtmRaidVolume };