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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200210/models.rb +18 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4f4ce593d4bb8e795e644c47f313b962653d5392
4
- data.tar.gz: 3ed3f8a2db4df1549f4f63fc1c3e54ba04cd568d
3
+ metadata.gz: 2bbfbab4744c0eff90775d3b3d9ed1bfe6cb5555
4
+ data.tar.gz: e5316ae049c28f6d5fa1788671ba6e330f931b10
5
5
  SHA512:
6
- metadata.gz: 01b0603da1fe132aab93eb2301c914c26516b5b9d4c61754fa2e905783e958ad92a8aca947d18fba8873d293cffb6247294e9e64116f6e1e1bc24291e7b96ea3
7
- data.tar.gz: babefd625daa0bf21ba3ec90c62d7a1b89199ab39a32dc0af1466280ff4cd73fa49295fe9c700d9a6f500918a07214872596036d15b1c88287a9c0f3cdad8147
6
+ metadata.gz: 2b2a0ac516c988691e15f3147ac0285a1e1f5de32ffd8fdbe9b3f2fcda7c9b8d592c267f1586831863c765eee7602213197237ffd7a99f29c32ef2525c5e6b65
7
+ data.tar.gz: 327b448edf2719214f629f9526acc0e1fef98345e8d8031df3830c19caa708239be60a82422368799de7db600fbf4bafd27d9f8404b0e0d8039d1bee5e934d56
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.928
1
+ 3.0.929
@@ -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.928
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-20 00:00:00.000000000 Z
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