# File lib/fog/cloudstack/compute.rb, line 137
        def initialize(options={})
          require 'multi_json'          
          @cloudstack_api_key         = options[:cloudstack_api_key]
          @cloudstack_secret_access_key = options[:cloudstack_secret_access_key]
          @cloudstack_session_id      = options[:cloudstack_session_id]
          @cloudstack_session_key      = options[:cloudstack_session_key]
          @host                       = options[:cloudstack_host]
          @path                       = options[:cloudstack_path]    || '/client/api'
          @port                       = options[:cloudstack_port]    || 443
          @scheme                     = options[:cloudstack_scheme]  || 'https'
          @connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}#{@path}", options[:cloudstack_persistent], {:ssl_verify_peer => false})
        end