# File lib/fog/hp/requests/compute/list_security_groups.rb, line 40
        def list_security_groups
          response = Excon::Response.new

          sec_groups = []
          sec_groups = self.data[:security_groups].values unless self.data[:security_groups].nil?

          response.status = 200
          response.body = { 'security_groups' => sec_groups }
          response
        end