tencentcloud-sdk-common 3.0.1031 → 3.0.1032

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 86344d2b687ce3cb8fb0c80cb65ce11cbf384ad3
4
- data.tar.gz: e17fb3f3860473cec0fb113462b8e6ec4b925616
3
+ metadata.gz: ce7600c7a2b4cad52b74629914e29f6a35380574
4
+ data.tar.gz: e9e0e6ab19f0ed21cd8c9b676fc08f74df99460c
5
5
  SHA512:
6
- metadata.gz: 9d1991103057938550cadf9c945d747ee404880f0f8d0feaf6905f7766d9e18c32e36248b02e2bca6fbf1372c932c34aceacad4af94484aae34b7d2c758f6af8
7
- data.tar.gz: 9b01ad8304625589ad76e22e225524e15a57cff08bb71af11f35508d497ea52abcf3c0c20307700a8bf04b0cef73bc4477fe7589b65337a5699a0cb1e1939f8c
6
+ metadata.gz: 80be0d77785ec5212ca100ea2a5f193c8040b13f0dc786913734c3d05764c996ca028f3e9880d09c18a9d96a00bcedaa863f69dad72cf1992d9d56d70bdeb3d1
7
+ data.tar.gz: a81324b6786e89d9b72779399366cb296875301569d3bcdf06d5bf4e4b68e0f542952c9c8a38a51d3669ff16c02486b9cdcb6d8d3101aaea8cdeb45f155a4657
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1031
1
+ 3.0.1032
@@ -6,6 +6,12 @@ module TencentCloud
6
6
  class ClientProfile
7
7
  attr_accessor :http_profile, :sign_method, :language, :unsigned_payload, :debug
8
8
 
9
+ # Initializes a new ClientProfile with default values
10
+ #
11
+ # @param sign_method [String] the signing method (default: 'TC3-HMAC-SHA256')
12
+ # @param http_profile [HttpProfile, nil] the HTTP profile (default: nil)
13
+ # @param language [String] the language for responses (default: 'zh-CN')
14
+ # @param debug [Boolean] whether to enable debug mode (default: false)
9
15
  def initialize(sign_method = 'TC3-HMAC-SHA256', http_profile = nil,
10
16
  language = 'zh-CN', debug = false)
11
17
  @sign_method = sign_method
@@ -6,6 +6,14 @@ module TencentCloud
6
6
  class HttpProfile
7
7
  attr_accessor :scheme, :endpoint, :req_method, :req_timeout, :keep_alive, :proxy
8
8
 
9
+ # Initializes a new HttpProfile with default values
10
+ #
11
+ # @param scheme [String] the protocol scheme (default: 'https')
12
+ # @param endpoint [String, nil] the API endpoint (default: nil)
13
+ # @param req_method [String] the HTTP request method (default: 'POST')
14
+ # @param req_timeout [Integer] the request timeout in seconds (default: 60)
15
+ # @param keep_alive [Boolean] whether to keep the connection alive (default: false)
16
+ # @param proxy [String, nil] the proxy server (default: nil)
9
17
  def initialize(scheme = 'https', endpoint = nil, req_method = 'POST',
10
18
  req_timeout = 60, keep_alive = false, proxy = nil)
11
19
  @scheme = scheme
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-common
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1031
4
+ version: 3.0.1032
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud