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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce7600c7a2b4cad52b74629914e29f6a35380574
|
4
|
+
data.tar.gz: e9e0e6ab19f0ed21cd8c9b676fc08f74df99460c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80be0d77785ec5212ca100ea2a5f193c8040b13f0dc786913734c3d05764c996ca028f3e9880d09c18a9d96a00bcedaa863f69dad72cf1992d9d56d70bdeb3d1
|
7
|
+
data.tar.gz: a81324b6786e89d9b72779399366cb296875301569d3bcdf06d5bf4e4b68e0f542952c9c8a38a51d3669ff16c02486b9cdcb6d8d3101aaea8cdeb45f155a4657
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
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
|