@POST
public WrappedProject createProject(WrappedProject wrappedProject) throws CloudException {
AuthenticatedUser owner = getAuthenticatedUser();
Project req = wrappedProject.project;
ProjectData.Builder b = ProjectData.newBuilder();
if (!Strings.isNullOrEmpty(req.description)) {
b.setDescription(req.description);