# File lib/fog/cloudstack/models/compute/volumes.rb, line 17
        def get(volume_id)
          if volume = connection.list_volumes('id' => volume_id)["listvolumesresponse"]["volume"].first
            new(volume)
          end
        rescue Fog::Compute::Cloudstack::BadRequest
          nil
        end