# File lib/fog/shared_file_system/openstack/requests/get_snapshot.rb, line 15
        def get_snapshot(id)
          response = Excon::Response.new
          response.status = 200
          snapshot = data[:snapshot_updated] || data[:snapshots_detail].first
          snapshot['id'] = id
          response.body = snapshot
          response
        end