tencentcloud-sdk-captcha 3.0.1027 → 3.0.1028

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/v20190722/models.rb +6 -17
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bf2b89b93a974909e5354a3da33c77de8753f15c
4
- data.tar.gz: 5f014d994b68d3399b78eb52f4c9d543f82d9dc7
3
+ metadata.gz: 500f230c84688b9be1331492a30bdfad0a4de3e4
4
+ data.tar.gz: 4661b12f72aa139cd4aa5234c1f43a75e38828d3
5
5
  SHA512:
6
- metadata.gz: 7fe16ef359b5b61b139884885e436768ce89f13f2c03822b69bd605f0ef2103e0af930d434ddfd43339ed001dd055a7752c8c5f73b0027dcc5705d82292d6eb9
7
- data.tar.gz: 267167cb8aec447e000e39422bc2cb4d3570b43487c9e0478726a683e0c17c23e52a8092d9e6ac71daa4743ee63ed329dd4d20ed04932ca2eaa33b58521ff82c
6
+ metadata.gz: 8ee5b2eae18e8f7fa978aa8468825e42cb39646ca231b2641727117dd8b0ce98618acd835a001bd4929aa209390dabd3244fcbd6accb17f76da27061a838b699
7
+ data.tar.gz: ca7bb52700f684471e07820cb3009e7ef7ee9375305bb16fb61aeca394d8610d593563e2565cf70ecec4fcc497b7fea31c14d035a89e5040edd83c7140a0a3bf
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1027
1
+ 3.0.1028
@@ -1079,15 +1079,12 @@ module TencentCloud
1079
1079
  # 100 appid-secretkey-ticket mismatch 参数校验错误,(1)请检查CaptchaAppId与AppSecretKey是否正确,CaptchaAppId、AppSecretKey需要在验证码控制台【验证管理】>【基础配置】中获取(2)请检查传入的Ticket是否由传入的CaptchaAppId生成
1080
1080
  # @type CaptchaCode: Integer
1081
1081
  # @param CaptchaMsg: 状态描述及验证错误信息
1082
- # 注意:此字段可能返回 null,表示取不到有效值。
1083
1082
  # @type CaptchaMsg: String
1084
1083
  # @param EvilLevel: 无感验证模式下,该参数返回验证结果:
1085
1084
  # EvilLevel=0 请求无恶意
1086
1085
  # EvilLevel=100 请求有恶意
1087
- # 注意:此字段可能返回 null,表示取不到有效值。
1088
1086
  # @type EvilLevel: Integer
1089
1087
  # @param GetCaptchaTime: 前端获取验证码时间,时间戳格式
1090
- # 注意:此字段可能返回 null,表示取不到有效值。
1091
1088
  # @type GetCaptchaTime: Integer
1092
1089
  # @param EvilBitmap: 拦截类型
1093
1090
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -1095,14 +1092,15 @@ module TencentCloud
1095
1092
  # @param SubmitCaptchaTime: 提交验证码时间
1096
1093
  # @type SubmitCaptchaTime: Integer
1097
1094
  # @param RceResult: rce检测结果
1098
- # 注意:此字段可能返回 null,表示取不到有效值。
1099
1095
  # @type RceResult: :class:`Tencentcloud::Captcha.v20190722.models.RceResult`
1096
+ # @param DeviceRiskCategory: 设备风险大类
1097
+ # @type DeviceRiskCategory: String
1100
1098
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1101
1099
  # @type RequestId: String
1102
1100
 
1103
- attr_accessor :CaptchaCode, :CaptchaMsg, :EvilLevel, :GetCaptchaTime, :EvilBitmap, :SubmitCaptchaTime, :RceResult, :RequestId
1101
+ attr_accessor :CaptchaCode, :CaptchaMsg, :EvilLevel, :GetCaptchaTime, :EvilBitmap, :SubmitCaptchaTime, :RceResult, :DeviceRiskCategory, :RequestId
1104
1102
 
1105
- def initialize(captchacode=nil, captchamsg=nil, evillevel=nil, getcaptchatime=nil, evilbitmap=nil, submitcaptchatime=nil, rceresult=nil, requestid=nil)
1103
+ def initialize(captchacode=nil, captchamsg=nil, evillevel=nil, getcaptchatime=nil, evilbitmap=nil, submitcaptchatime=nil, rceresult=nil, deviceriskcategory=nil, requestid=nil)
1106
1104
  @CaptchaCode = captchacode
1107
1105
  @CaptchaMsg = captchamsg
1108
1106
  @EvilLevel = evillevel
@@ -1110,6 +1108,7 @@ module TencentCloud
1110
1108
  @EvilBitmap = evilbitmap
1111
1109
  @SubmitCaptchaTime = submitcaptchatime
1112
1110
  @RceResult = rceresult
1111
+ @DeviceRiskCategory = deviceriskcategory
1113
1112
  @RequestId = requestid
1114
1113
  end
1115
1114
 
@@ -1124,6 +1123,7 @@ module TencentCloud
1124
1123
  @RceResult = RceResult.new
1125
1124
  @RceResult.deserialize(params['RceResult'])
1126
1125
  end
1126
+ @DeviceRiskCategory = params['DeviceRiskCategory']
1127
1127
  @RequestId = params['RequestId']
1128
1128
  end
1129
1129
  end
@@ -1196,15 +1196,12 @@ module TencentCloud
1196
1196
  # 100 appid-secretkey-ticket mismatch 参数校验错误,(1)请检查CaptchaAppId与AppSecretKey是否正确,CaptchaAppId、AppSecretKey需要在验证码控制台【验证管理】>【基础配置】中获取(2)请检查传入的Ticket是否由传入的CaptchaAppId生成
1197
1197
  # @type CaptchaCode: Integer
1198
1198
  # @param CaptchaMsg: 状态描述及验证错误信息
1199
- # 注意:此字段可能返回 null,表示取不到有效值。
1200
1199
  # @type CaptchaMsg: String
1201
1200
  # @param EvilLevel: 无感验证模式下,该参数返回验证结果:
1202
1201
  # EvilLevel=0 请求无恶意
1203
1202
  # EvilLevel=100 请求有恶意
1204
- # 注意:此字段可能返回 null,表示取不到有效值。
1205
1203
  # @type EvilLevel: Integer
1206
1204
  # @param GetCaptchaTime: 前端获取验证码时间,时间戳格式
1207
- # 注意:此字段可能返回 null,表示取不到有效值。
1208
1205
  # @type GetCaptchaTime: Integer
1209
1206
  # @param EvilBitmap: 拦截类型
1210
1207
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -1675,28 +1672,20 @@ module TencentCloud
1675
1672
  # 验证码拼装Rce结果,Rce结果部分
1676
1673
  class RceResult < TencentCloud::Common::AbstractModel
1677
1674
  # @param UserId: 用户ID
1678
- # 注意:此字段可能返回 null,表示取不到有效值。
1679
1675
  # @type UserId: String
1680
1676
  # @param PostTime: 操作时间戳
1681
- # 注意:此字段可能返回 null,表示取不到有效值。
1682
1677
  # @type PostTime: Integer
1683
1678
  # @param AssociateAccount: 业务参数
1684
- # 注意:此字段可能返回 null,表示取不到有效值。
1685
1679
  # @type AssociateAccount: String
1686
1680
  # @param UserIp: 用户Ip
1687
- # 注意:此字段可能返回 null,表示取不到有效值。
1688
1681
  # @type UserIp: String
1689
1682
  # @param RiskLevel: 风险等级
1690
- # 注意:此字段可能返回 null,表示取不到有效值。
1691
1683
  # @type RiskLevel: String
1692
1684
  # @param RiskType: 风险类型
1693
- # 注意:此字段可能返回 null,表示取不到有效值。
1694
1685
  # @type RiskType: Array
1695
1686
  # @param ConstId: 设备唯一ID
1696
- # 注意:此字段可能返回 null,表示取不到有效值。
1697
1687
  # @type ConstId: String
1698
1688
  # @param RiskInformation: 风险扩展参数
1699
- # 注意:此字段可能返回 null,表示取不到有效值。
1700
1689
  # @type RiskInformation: String
1701
1690
 
1702
1691
  attr_accessor :UserId, :PostTime, :AssociateAccount, :UserIp, :RiskLevel, :RiskType, :ConstId, :RiskInformation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-captcha
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1027
4
+ version: 3.0.1028
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-25 00:00:00.000000000 Z
11
+ date: 2025-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common