# File lib/fog/libvirt/models/compute/uri.rb, line 103
        def no_tty?
          no_tty=value("no_tty")

          return false if no_tty.nil?

          if no_tty=="0"
            return false
          else
            return true
          end

        end