# File lib/fog/shared_file_system/openstack/requests/delete_share.rb, line 15
        def delete_share(id)
          response = Excon::Response.new
          response.status = 202

          share                  = data[:share_updated] || data[:shares_detail].first.dup
          share['id']            = id
          share['links']['self'] = "https://127.0.0.1:8786/v2/shares/#{id}"

          response.body = {'share' => share}
          response
        end