public VcTask reconfigure(final ConfigSpecEx spec,
final IVcTaskCallback callback) throws Exception {
VcTask task = VcContext.getTaskMgr().execute(new IVcTaskBody() {
public VcTask body() throws Exception {
final ClusterComputeResource cluster = getManagedObject();
return new VcTask(TaskType.ReconfigCluster, cluster.reconfigureEx(
spec, true), callback);
}
});
return task;
}