# File lib/fog/ecloud/models/compute/groups.rb, line 26
        def get(uri)
          data = service.get_group(uri).body
          if data == ""
            nil
          else
            new(data)
          end
        rescue Excon::Errors::NotFound
          nil
        end