tencentcloud-sdk-rce 3.0.687 → 3.0.688
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/v20201103/models.rb +7 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f192aa98dd34e0a0c6d692c4852aff514009275d
|
4
|
+
data.tar.gz: 333c10c4da7dc3df9f37a1171d413836735a9174
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28e8e9944c86299c01c8d6200b075370d2ea911c7fbb3393b7173edc63007f3c148b28403d985458212d8adc7e6100872f3f97b0028eea13c217b1c604e14242
|
7
|
+
data.tar.gz: 8e22cf8348b267641c0c1e005227cf9bf457182d916dee6bc8790d27ad5f2ff3626e1372ee841e694de7dd27c284828476499839c0ceed4b0a8643a12d767c14
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.688
|
data/lib/v20201103/models.rb
CHANGED
@@ -636,10 +636,13 @@ module TencentCloud
|
|
636
636
|
# @param ConstId: 唯一ID
|
637
637
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
638
638
|
# @type ConstId: String
|
639
|
+
# @param RiskInformation: 扩展信息
|
640
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
641
|
+
# @type RiskInformation: String
|
639
642
|
|
640
|
-
attr_accessor :UserId, :PostTime, :AssociateAccount, :UserIp, :RiskLevel, :RiskType, :ConstId
|
643
|
+
attr_accessor :UserId, :PostTime, :AssociateAccount, :UserIp, :RiskLevel, :RiskType, :ConstId, :RiskInformation
|
641
644
|
|
642
|
-
def initialize(userid=nil, posttime=nil, associateaccount=nil, userip=nil, risklevel=nil, risktype=nil, constid=nil)
|
645
|
+
def initialize(userid=nil, posttime=nil, associateaccount=nil, userip=nil, risklevel=nil, risktype=nil, constid=nil, riskinformation=nil)
|
643
646
|
@UserId = userid
|
644
647
|
@PostTime = posttime
|
645
648
|
@AssociateAccount = associateaccount
|
@@ -647,6 +650,7 @@ module TencentCloud
|
|
647
650
|
@RiskLevel = risklevel
|
648
651
|
@RiskType = risktype
|
649
652
|
@ConstId = constid
|
653
|
+
@RiskInformation = riskinformation
|
650
654
|
end
|
651
655
|
|
652
656
|
def deserialize(params)
|
@@ -657,6 +661,7 @@ module TencentCloud
|
|
657
661
|
@RiskLevel = params['RiskLevel']
|
658
662
|
@RiskType = params['RiskType']
|
659
663
|
@ConstId = params['ConstId']
|
664
|
+
@RiskInformation = params['RiskInformation']
|
660
665
|
end
|
661
666
|
end
|
662
667
|
|