interface IZFSManager {
    addDataset(parent: ZPoolBase | Dataset, name: string, options: DatasetCreateOptions): Promise<void>;
    addVDevsToPool(pool: ZPoolBase, vdevs: VDevBase[], options: ZPoolAddVDevOptions): Promise<void>;
    createPool(pool: ZPoolBase, options: ZpoolCreateOptions): Promise<void>;
    destroyPool(name: string): Promise<void>;
    getBaseDisks(): Promise<VDevDiskBase[]>;
    getDiskCapacity(path: string): Promise<string>;
    getFullDisks(): Promise<VDevDiskBase[]>;
    getPools(): Promise<ZPool[]>;
}

Implemented by

Methods