/**
  * Deletes a storage service from subscription.
  *
  * @param string $name The storage service name.
  *
  * @return none
  */
 public function deleteStorageService($name)
 {
     if ($this->storageServiceExists($name)) {
         $this->_proxy->deleteStorageService($name);
     }
 }