use of com.emc.sa.service.vipr.block.tasks.AddClusterToExport in project coprhd-controller by CoprHD.
the class BlockStorageUtils method addClusterToExport.
public static void addClusterToExport(URI exportId, URI cluster, Integer minPaths, Integer maxPaths, Integer pathsPerInitiator, URI portGroup) {
Task<ExportGroupRestRep> task = execute(new AddClusterToExport(exportId, cluster, minPaths, maxPaths, pathsPerInitiator, portGroup));
addRollback(new DeactivateBlockExport(exportId));
addAffectedResource(task);
}
Aggregations