# File lib/fog/libvirt/compute.rb, line 97
        def method_missing(method_sym, *arguments, &block)
          if @raw.respond_to?(method_sym)
            @raw.send(method_sym, *arguments)
          else
            super
          end
        end