use of com.emc.storageos.model.application.VolumeGroupCopySetParam in project coprhd-controller by CoprHD.
the class GetBlockSnapshotSessionList method executeTask.
@Override
public BlockSnapshotSessionList executeTask() throws Exception {
VolumeGroupCopySetParam setParam = new VolumeGroupCopySetParam();
setParam.setCopySetName(copySet);
return getClient().application().getVolumeGroupSnapshotSessionsByCopySet(applicationId, setParam);
}
use of com.emc.storageos.model.application.VolumeGroupCopySetParam in project coprhd-controller by CoprHD.
the class GetFullCopyList method executeTask.
@Override
public NamedVolumesList executeTask() throws Exception {
VolumeGroupCopySetParam setParam = new VolumeGroupCopySetParam();
setParam.setCopySetName(copySet);
return getClient().application().getVolumeGroupFullCopiesForSet(applicationId, setParam);
}
use of com.emc.storageos.model.application.VolumeGroupCopySetParam in project coprhd-controller by CoprHD.
the class AppSupportUtil method getVolumeGroupFullCopiesForSet.
public static List<NamedRelatedResourceRep> getVolumeGroupFullCopiesForSet(String id, String copySets) {
VolumeGroupCopySetParam getSetsForCopies = new VolumeGroupCopySetParam();
getSetsForCopies.setCopySetName(copySets);
return BourneUtil.getViprClient().application().getVolumeGroupFullCopiesForSet(uri(id), getSetsForCopies).getVolumes();
}
Aggregations