class TencentCloud::Common::HttpProfile

basic httpprofile

Attributes

endpoint[RW]
keep_alive[RW]
proxy[RW]
req_method[RW]
req_timeout[RW]
scheme[RW]

Public Class Methods

new(scheme = 'https', endpoint = nil, req_method = 'POST', req_timeout = 60, keep_alive = false, proxy = nil) click to toggle source
# File lib/tencentcloud-sdk-common/profile/http_profile.rb, line 9
def initialize(scheme = 'https', endpoint = nil, req_method = 'POST',
               req_timeout = 60, keep_alive = false, proxy = nil)
  @scheme = scheme
  @endpoint = endpoint
  @req_method = req_method
  @req_timeout = req_timeout
  @keep_alive = keep_alive
  @proxy = proxy
end