use of com.emc.storageos.model.file.FileSystemUnmountParam in project coprhd-controller by CoprHD.
the class FileStorageUtils method unmountNFSExport.
public static Task<FileShareRestRep> unmountNFSExport(URI fileSystemId, URI hostId, String mountPath) {
FileSystemUnmountParam param = new FileSystemUnmountParam(hostId, mountPath);
Task<FileShareRestRep> task = execute(new UnmountFSExport(fileSystemId, param));
addAffectedResource(task);
return task;
}
Aggregations