# File lib/fog/aws/models/iam/group.rb, line 92
        def reload
          requires :name

          data = begin
                   collection.get(self.name)
                 rescue Excon::Errors::SocketError
                   nil
                 end

          return unless data

          merge_attributes(data.attributes)
          self
        end