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

          update_data(id, options)

          response = Excon::Response.new
          response.status = 200
          response.body = {'share' => data[:share_updated]}
          response
        end