}
@POST
@Produces({ JSON })
public WrappedSecurityGroup create(WrappedSecurityGroup request) throws CloudException {
WrappedSecurityGroup response = new WrappedSecurityGroup();
String name = request.securityGroup.name;
if (Strings.isNullOrEmpty(name)) {
throw new IllegalArgumentException();
}