# File lib/fog/openstack/models/compute/volumes.rb, line 15
        def get(volume_id)
          if volume = connection.get_volume_details(volume_id).body['volume']
            new(volume)
          end
        rescue Fog::Compute::OpenStack::NotFound
          nil
        end