# File lib/cloudfiles/container.rb, line 287
    def make_private
      headers = { "X-CDN-Enabled" => "False" }
      response = self.connection.cfreq("POST",@cdnmgmthost,@cdnmgmtpath,@cdnmgmtport,@cdnmgmtscheme,headers)
      raise NoSuchContainerException, "Container #{@name} does not exist" unless (response.code == "201" || response.code == "202")
      populate
      true
    end