# File lib/fog/compute/openstack/requests/get_snapshot_details.rb, line 15 def get_snapshot_details(snapshot_id) response = Excon::Response.new if snapshot = list_snapshots_detail.body['snapshots'].find do |snap| snap['id'] == snapshot_id end response.status = 200 response.body = {'snapshot' => snapshot} response else raise Fog::Compute::OpenStack::NotFound end end