# File lib/fog/serverlove/models/compute/server.rb, line 30
        def save
          attributes = {}
          
          if(identity)
            attributes = connection.update_server(identity, allowed_attributes).body
          else
            requires :name
            requires :cpu
            attributes = connection.create_server(self.defaults.merge(allowed_attributes)).body
          end
          
          merge_attributes(attributes)
          self
        end