use of com.emc.storageos.model.file.FileSnapshotRestRep in project coprhd-controller by CoprHD.
the class FileStorageUtils method restoreFileSnapshot.
public static void restoreFileSnapshot(URI snapshotId) {
Task<FileSnapshotRestRep> task = execute(new RestoreFileSnapshot(snapshotId));
addAffectedResource(task);
}
use of com.emc.storageos.model.file.FileSnapshotRestRep in project coprhd-controller by CoprHD.
the class FileStorageUtils method shareFileSnapshot.
public static URI shareFileSnapshot(URI snapshotId, String shareName, String shareComment) {
Task<FileSnapshotRestRep> task = execute(new CreateFileSnapshotShare(snapshotId, shareName, shareComment));
addAffectedResource(task);
return task.getResourceId();
}
use of com.emc.storageos.model.file.FileSnapshotRestRep in project coprhd-controller by CoprHD.
the class FileStorageUtils method updateFileSnapshotExport.
public static String updateFileSnapshotExport(URI fileSnapshotId, String subDirectory, FileExportRule[] fileExportRules) {
List<ExportRule> exportRuleList = getFileSnapshotExportRules(fileSnapshotId, false, subDirectory);
Set<String> existingRuleSet = Sets.newHashSet();
for (ExportRule rule : exportRuleList) {
existingRuleSet.add(rule.getSecFlavor());
}
List<ExportRule> exportRuleListToAdd = Lists.newArrayList();
List<ExportRule> exportRuleListToModify = Lists.newArrayList();
for (FileExportRule rule : fileExportRules) {
ExportRule exportRule = new ExportRule();
exportRule.setFsID(fileSnapshotId);
exportRule.setSecFlavor(rule.security);
String rootUserMapping = rule.rootUserMapping;
String domain = rule.domain;
if (StringUtils.isNotBlank(domain)) {
rootUserMapping = domain.trim() + "\\" + rootUserMapping.trim();
}
exportRule.setAnon(rootUserMapping);
Set<String> exportHosts = new HashSet<String>(rule.exportHosts);
switch(rule.getPermission()) {
case "ro":
exportRule.setReadOnlyHosts(exportHosts);
break;
case "rw":
exportRule.setReadWriteHosts(exportHosts);
break;
case "root":
exportRule.setRootHosts(exportHosts);
break;
default:
break;
}
if (existingRuleSet.contains(exportRule.getSecFlavor())) {
exportRuleListToModify.add(exportRule);
} else {
exportRuleListToAdd.add(exportRule);
}
}
SnapshotExportUpdateParams params = new SnapshotExportUpdateParams();
if (!exportRuleListToAdd.isEmpty()) {
ExportRules exportRulesToAdd = new ExportRules();
exportRulesToAdd.setExportRules(exportRuleListToAdd);
params.setExportRulesToAdd(exportRulesToAdd);
}
if (!exportRuleListToModify.isEmpty()) {
ExportRules exportRulesToModify = new ExportRules();
exportRulesToModify.setExportRules(exportRuleListToModify);
params.setExportRulesToModify(exportRulesToModify);
}
Task<FileSnapshotRestRep> task = execute(new UpdateFileSnapshotExport(fileSnapshotId, subDirectory, params));
addAffectedResource(task);
String exportId = task.getResourceId().toString();
logInfo("file.storage.export.task", exportId, task.getOpId());
return exportId;
}
use of com.emc.storageos.model.file.FileSnapshotRestRep in project coprhd-controller by CoprHD.
the class FileSnapshotsDataTable method fetch.
public static List<FileSnapshot> fetch(URI projectId) {
if (projectId == null) {
return Collections.EMPTY_LIST;
}
ViPRCoreClient client = getViprClient();
List<FileSnapshotRestRep> fileSnapshots = client.fileSnapshots().findByProject(projectId);
List<FileSnapshot> results = Lists.newArrayList();
for (FileSnapshotRestRep fileSnapshot : fileSnapshots) {
results.add(new FileSnapshot(fileSnapshot));
}
return results;
}
use of com.emc.storageos.model.file.FileSnapshotRestRep in project coprhd-controller by CoprHD.
the class FileSnapshots method deleteSnapshotShare.
@FlashException(referrer = { "snapshot" })
public static void deleteSnapshotShare(String snapshotId, String shareName) {
ViPRCoreClient client = BourneUtil.getViprClient();
Task<FileSnapshotRestRep> task = client.fileSnapshots().removeShare(uri(snapshotId), shareName);
flash.put("info", MessagesUtils.get("resources.filesnapshot.share.deactivate"));
snapshot(snapshotId);
}
Aggregations