# File lib/fog/terremark/vcloud.rb, line 42
        def initialize(options={})
          @terremark_password = options[:terremark_vcloud_password]
          @terremark_username = options[:terremark_vcloud_username]
          @host   = options[:host]   || Fog::Terremark::Vcloud::Defaults::HOST
          @path   = options[:path]   || Fog::Terremark::Vcloud::Defaults::PATH
          @port   = options[:port]   || Fog::Terremark::Vcloud::Defaults::PORT
          @scheme = options[:scheme] || Fog::Terremark::Vcloud::Defaults::SCHEME
          @connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", options[:persistent])
        end