# File lib/fog/compute/ecloud.rb, line 277
          def basic_request(name, expects = [200], method = :get, headers = {}, body = "")
            define_method(name) do |uri|
              request(
                :expects => expects,
                :method  => method,
                :headers => headers,
                :body    => body,
                :parse   => true,
                :uri     => uri
              )
            end
          end