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