# File lib/fog/shared_file_system/openstack/requests/create_snapshot.rb, line 28
        def create_snapshot(share_id, options = {})
          # stringify keys
          options = Hash[options.map { |k, v| [k.to_s, v] }]

          response = Excon::Response.new
          response.status = 202

          snapshot = data[:snapshots_detail].first.dup

          snapshot['share_id'] = share_id
          snapshot['status']   = 'creating'

          response.body = {'snapshot' => snapshot.merge(options)}
          response
        end