# File lib/fog/dynect/requests/dns/get_node_list.rb, line 13
        def get_node_list(zone, options = {})
          requested_fqdn = options['fqdn'] || options[:fqdn]
          request(
            :expects  => 200,
            :method   => :get,
            :path     => ['NodeList', zone, requested_fqdn].compact.join('/')
          )
        end