tencentcloud-sdk-taf 3.0.928 → 3.0.929
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200210/models.rb +18 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2bbfbab4744c0eff90775d3b3d9ed1bfe6cb5555
|
4
|
+
data.tar.gz: e5316ae049c28f6d5fa1788671ba6e330f931b10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b2a0ac516c988691e15f3147ac0285a1e1f5de32ffd8fdbe9b3f2fcda7c9b8d592c267f1586831863c765eee7602213197237ffd7a99f29c32ef2525c5e6b65
|
7
|
+
data.tar.gz: 327b448edf2719214f629f9526acc0e1fef98345e8d8031df3830c19caa708239be60a82422368799de7db600fbf4bafd27d9f8404b0e0d8039d1bee5e934d56
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.929
|
data/lib/v20200210/models.rb
CHANGED
@@ -39,12 +39,29 @@ module TencentCloud
|
|
39
39
|
|
40
40
|
# 业务入参
|
41
41
|
class InputBusinessEncryptData < TencentCloud::Common::AbstractModel
|
42
|
+
# @param EncryptMethod: 加密方式;0:AES;1:DES
|
43
|
+
# @type EncryptMethod: Integer
|
44
|
+
# @param EncryptData: 业务数据加密字符串
|
45
|
+
# @type EncryptData: String
|
46
|
+
# @param EncryptMode: 加密模式;0:ECB,1:CBC;2:CTR;3:CFB;4:OFB
|
47
|
+
# @type EncryptMode: Integer
|
48
|
+
# @param PaddingType: 填充模式;0:ZERO ;1:PKCS5;3:PKCS7
|
49
|
+
# @type PaddingType: Integer
|
42
50
|
|
51
|
+
attr_accessor :EncryptMethod, :EncryptData, :EncryptMode, :PaddingType
|
43
52
|
|
44
|
-
def initialize()
|
53
|
+
def initialize(encryptmethod=nil, encryptdata=nil, encryptmode=nil, paddingtype=nil)
|
54
|
+
@EncryptMethod = encryptmethod
|
55
|
+
@EncryptData = encryptdata
|
56
|
+
@EncryptMode = encryptmode
|
57
|
+
@PaddingType = paddingtype
|
45
58
|
end
|
46
59
|
|
47
60
|
def deserialize(params)
|
61
|
+
@EncryptMethod = params['EncryptMethod']
|
62
|
+
@EncryptData = params['EncryptData']
|
63
|
+
@EncryptMode = params['EncryptMode']
|
64
|
+
@PaddingType = params['PaddingType']
|
48
65
|
end
|
49
66
|
end
|
50
67
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-taf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.929
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|