tencentcloud-sdk-taf 3.0.927 → 3.0.929

Sign up to get free protection for your applications and to get access to all the features.
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: 9567eebcf1b717163ed6c79102930fbe98f58660
4
- data.tar.gz: ce1665f40baea7d2581f5fe9ec75b23d932f0da6
3
+ metadata.gz: 2bbfbab4744c0eff90775d3b3d9ed1bfe6cb5555
4
+ data.tar.gz: e5316ae049c28f6d5fa1788671ba6e330f931b10
5
5
  SHA512:
6
- metadata.gz: 8262e30d8c7620b49ac5b57100f2f1ca0b7ddf800cd929ef0c8cc29341796ab792f874ae82c8781481c3142a2826bd0bc12ef318774691b02263a0fcf27e3350
7
- data.tar.gz: b893b29cdde53a79d95938c8236c627a957937c8963b5ae450c0dada2370865d4f81a7f281ed9e4c8a0ce0e3acad07cafdc643786ef6bf32ad05e776a232faa9
6
+ metadata.gz: 2b2a0ac516c988691e15f3147ac0285a1e1f5de32ffd8fdbe9b3f2fcda7c9b8d592c267f1586831863c765eee7602213197237ffd7a99f29c32ef2525c5e6b65
7
+ data.tar.gz: 327b448edf2719214f629f9526acc0e1fef98345e8d8031df3830c19caa708239be60a82422368799de7db600fbf4bafd27d9f8404b0e0d8039d1bee5e934d56
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.927
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.927
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-18 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