/**
  * Create a blank device group. Return that DV object.
  **/
 public function createDeviceGroup($newDV_Name)
 {
     $newDG = new DeviceGroup($this);
     $newDG->load_from_templateXml();
     $newDG->setName($newDV_Name);
     return $newDG;
 }