@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 592 B
TypeScript
import { ProtocolEnum } from '../storage/ProtocolEnum';
/** Storage zpool partition */
export interface Partition {
/** percentage of partition space used in % */
partitionCapacity?: number;
/** a brief description of the partition */
partitionDescription?: string;
/** the given name of partition */
partitionName: string;
/** must be nfs cifs or both */
protocol: ProtocolEnum;
/** Partition size */
size: number;
/** percentage of partition space used by snapshots, in % */
usedBySnapshots?: number;
}
//# sourceMappingURL=Partition.d.ts.map