use of com.emc.sa.service.vipr.block.tasks.AdjustExportPaths in project coprhd-controller by CoprHD.
the class BlockStorageUtils method adjustExportPaths.
public static URI adjustExportPaths(URI vArray, Integer minPaths, Integer maxPaths, Integer pathsPerInitiator, URI storageSystemId, URI id, List<InitiatorPathParam> addedPaths, List<InitiatorPathParam> removedPaths, boolean suspendWait) {
Task<ExportGroupRestRep> task = execute(new AdjustExportPaths(vArray, minPaths, maxPaths, pathsPerInitiator, storageSystemId, id, addedPaths, removedPaths, suspendWait));
URI exportId = task.getResourceId();
addAffectedResource(exportId);
return exportId;
}
Aggregations