# File lib/fog/compute/ecloud/requests/ssh_key_edit.rb, line 29
        def ssh_key_edit(options)
          ssh_key_id = id_from_uri(options[:uri]).to_i
          if data[:ssh_keys][ssh_key_id]
            data[:ssh_keys][ssh_key_id][:Name] = options[:Name]
            data[:ssh_keys][ssh_key_id][:Default] = options[:Default]
            ssh_key = data[:ssh_keys][ssh_key_id]
            response(:body => Fog::Ecloud.slice(ssh_key, :id, :admin_organization)).body
          else
            body = "<Error message=\"Resource Not Found\" majorErrorCode=\"404\" minorErrorCode=\"ResourceNotFound\" />"
            response(:body => body, :expects => 200, :status => 404)
          end
        end