tencentcloud-sdk-taf 3.0.928 → 3.0.930
Sign up to get free protection for your applications and to get access to all the features.
- 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: b732c1aaebb0ac94efffd7be8fce2578aa192011
|
4
|
+
data.tar.gz: 44b70f83015dc8c8d3e87655b1a6ab73ac9adf07
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36f49d5bd7c4a69def4bf619f10e5eaf4d17b3e1a5b70a028ddc12d2cc44db183a1e4e30b3f0ee9464139ec94af42c5e6b1af06ea894ad78a0185e8d26a5cf4e
|
7
|
+
data.tar.gz: 8d90df24e7755a238bda476bc143d144f61842b75ee903cf14506e2be335539e4e14fc220094685fa9b319489ff06e1179fb2f8ef4db55ec8c2b52058c768608
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.930
|
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.930
|
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-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|