tencentcloud-sdk-captcha 1.0.200
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.
- checksums.yaml +7 -0
- data/lib/VERSION +1 -0
- data/lib/tencentcloud-sdk-captcha.rb +11 -0
- data/lib/v20190722/client.rb +348 -0
- data/lib/v20190722/models.rb +1381 -0
- metadata +66 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 9e296faa4f2941e336612048517e74ce7081bf09
|
4
|
+
data.tar.gz: 34d1c9295c3c5439a468020b75aff2d89bffc7ec
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1124db494f552fc919f512c2d0d6670ec054082c83bbb0d3519e6a148acd1d86f529a64f0cd53d49a7a0734b5a18077b529579be911223851f52a3f809600890
|
7
|
+
data.tar.gz: 28d920a20cb69153d2dd915f76d0ad0bdf830accb35f7c0c490a33c49797421e9b7142c87b516b1d43192b03fcb5c3ac9972cfb8b02eadb0dbefc272f422776c
|
data/lib/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.200
|
@@ -0,0 +1,348 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
require 'json'
|
18
|
+
|
19
|
+
module TencentCloud
|
20
|
+
module Captcha
|
21
|
+
module V20190722
|
22
|
+
class Client < TencentCloud::Common::AbstractClient
|
23
|
+
|
24
|
+
def initialize(credential, region, profile = nil)
|
25
|
+
api_version = '2019-07-22'
|
26
|
+
api_endpoint = 'captcha.tencentcloudapi.com'
|
27
|
+
sdk_version = 'CAPTCHA_' + File.read(File.expand_path('../VERSION', __dir__)).strip
|
28
|
+
super(credential, region, api_version, api_endpoint, sdk_version, profile)
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
# 查询安全验证码应用APPId信息
|
33
|
+
|
34
|
+
# @param request: Request instance for DescribeCaptchaAppIdInfo.
|
35
|
+
# @type request: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaAppIdInfoRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaAppIdInfoResponse`
|
37
|
+
def DescribeCaptchaAppIdInfo(request)
|
38
|
+
body = send_request('DescribeCaptchaAppIdInfo', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = DescribeCaptchaAppIdInfoResponse.new
|
42
|
+
model.deserialize(response['Response'])
|
43
|
+
model
|
44
|
+
else
|
45
|
+
code = response['Response']['Error']['Code']
|
46
|
+
message = response['Response']['Error']['Message']
|
47
|
+
reqid = response['Response']['RequestId']
|
48
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
49
|
+
end
|
50
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
51
|
+
raise e
|
52
|
+
rescue StandardError => e
|
53
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
54
|
+
end
|
55
|
+
|
56
|
+
# 安全验证码分类查询数据接口,请求量type=0、通过量type=1、验证量type=2、拦截量type=3 分钟级查询
|
57
|
+
|
58
|
+
# @param request: Request instance for DescribeCaptchaData.
|
59
|
+
# @type request: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaDataRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaDataResponse`
|
61
|
+
def DescribeCaptchaData(request)
|
62
|
+
body = send_request('DescribeCaptchaData', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = DescribeCaptchaDataResponse.new
|
66
|
+
model.deserialize(response['Response'])
|
67
|
+
model
|
68
|
+
else
|
69
|
+
code = response['Response']['Error']['Code']
|
70
|
+
message = response['Response']['Error']['Message']
|
71
|
+
reqid = response['Response']['RequestId']
|
72
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
73
|
+
end
|
74
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
75
|
+
raise e
|
76
|
+
rescue StandardError => e
|
77
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
|
+
end
|
79
|
+
|
80
|
+
# 安全验证码查询请求数据概况,例如:按照时间段查询数据 昨日请求量、昨日恶意比例、昨日验证量、昨日通过量、昨日恶意拦截量……
|
81
|
+
|
82
|
+
# @param request: Request instance for DescribeCaptchaDataSum.
|
83
|
+
# @type request: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaDataSumRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaDataSumResponse`
|
85
|
+
def DescribeCaptchaDataSum(request)
|
86
|
+
body = send_request('DescribeCaptchaDataSum', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = DescribeCaptchaDataSumResponse.new
|
90
|
+
model.deserialize(response['Response'])
|
91
|
+
model
|
92
|
+
else
|
93
|
+
code = response['Response']['Error']['Code']
|
94
|
+
message = response['Response']['Error']['Message']
|
95
|
+
reqid = response['Response']['RequestId']
|
96
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
97
|
+
end
|
98
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
99
|
+
raise e
|
100
|
+
rescue StandardError => e
|
101
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
102
|
+
end
|
103
|
+
|
104
|
+
# 安全验证码小程序插件分类查询数据接口,请求量type=0、通过量type=1、验证量type=2、拦截量type=3 小时级查询(五小时左右延迟)
|
105
|
+
|
106
|
+
# @param request: Request instance for DescribeCaptchaMiniData.
|
107
|
+
# @type request: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaMiniDataRequest`
|
108
|
+
# @rtype: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaMiniDataResponse`
|
109
|
+
def DescribeCaptchaMiniData(request)
|
110
|
+
body = send_request('DescribeCaptchaMiniData', request.serialize)
|
111
|
+
response = JSON.parse(body)
|
112
|
+
if response['Response'].key?('Error') == false
|
113
|
+
model = DescribeCaptchaMiniDataResponse.new
|
114
|
+
model.deserialize(response['Response'])
|
115
|
+
model
|
116
|
+
else
|
117
|
+
code = response['Response']['Error']['Code']
|
118
|
+
message = response['Response']['Error']['Message']
|
119
|
+
reqid = response['Response']['RequestId']
|
120
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
121
|
+
end
|
122
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
123
|
+
raise e
|
124
|
+
rescue StandardError => e
|
125
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
126
|
+
end
|
127
|
+
|
128
|
+
# 安全验证码小程序插件查询请求数据概况
|
129
|
+
|
130
|
+
# @param request: Request instance for DescribeCaptchaMiniDataSum.
|
131
|
+
# @type request: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaMiniDataSumRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaMiniDataSumResponse`
|
133
|
+
def DescribeCaptchaMiniDataSum(request)
|
134
|
+
body = send_request('DescribeCaptchaMiniDataSum', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = DescribeCaptchaMiniDataSumResponse.new
|
138
|
+
model.deserialize(response['Response'])
|
139
|
+
model
|
140
|
+
else
|
141
|
+
code = response['Response']['Error']['Code']
|
142
|
+
message = response['Response']['Error']['Message']
|
143
|
+
reqid = response['Response']['RequestId']
|
144
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
145
|
+
end
|
146
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
147
|
+
raise e
|
148
|
+
rescue StandardError => e
|
149
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
150
|
+
end
|
151
|
+
|
152
|
+
# 安全验证码小程序插件用户操作数据查询
|
153
|
+
|
154
|
+
# @param request: Request instance for DescribeCaptchaMiniOperData.
|
155
|
+
# @type request: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaMiniOperDataRequest`
|
156
|
+
# @rtype: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaMiniOperDataResponse`
|
157
|
+
def DescribeCaptchaMiniOperData(request)
|
158
|
+
body = send_request('DescribeCaptchaMiniOperData', request.serialize)
|
159
|
+
response = JSON.parse(body)
|
160
|
+
if response['Response'].key?('Error') == false
|
161
|
+
model = DescribeCaptchaMiniOperDataResponse.new
|
162
|
+
model.deserialize(response['Response'])
|
163
|
+
model
|
164
|
+
else
|
165
|
+
code = response['Response']['Error']['Code']
|
166
|
+
message = response['Response']['Error']['Message']
|
167
|
+
reqid = response['Response']['RequestId']
|
168
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
169
|
+
end
|
170
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
171
|
+
raise e
|
172
|
+
rescue StandardError => e
|
173
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
174
|
+
end
|
175
|
+
|
176
|
+
# 核查验证码小程序插件票据结果
|
177
|
+
|
178
|
+
# @param request: Request instance for DescribeCaptchaMiniResult.
|
179
|
+
# @type request: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaMiniResultRequest`
|
180
|
+
# @rtype: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaMiniResultResponse`
|
181
|
+
def DescribeCaptchaMiniResult(request)
|
182
|
+
body = send_request('DescribeCaptchaMiniResult', request.serialize)
|
183
|
+
response = JSON.parse(body)
|
184
|
+
if response['Response'].key?('Error') == false
|
185
|
+
model = DescribeCaptchaMiniResultResponse.new
|
186
|
+
model.deserialize(response['Response'])
|
187
|
+
model
|
188
|
+
else
|
189
|
+
code = response['Response']['Error']['Code']
|
190
|
+
message = response['Response']['Error']['Message']
|
191
|
+
reqid = response['Response']['RequestId']
|
192
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
193
|
+
end
|
194
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
195
|
+
raise e
|
196
|
+
rescue StandardError => e
|
197
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
198
|
+
end
|
199
|
+
|
200
|
+
# 核查验证码小程序插件票据接入风控结果(Beta)
|
201
|
+
|
202
|
+
# @param request: Request instance for DescribeCaptchaMiniRiskResult.
|
203
|
+
# @type request: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaMiniRiskResultRequest`
|
204
|
+
# @rtype: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaMiniRiskResultResponse`
|
205
|
+
def DescribeCaptchaMiniRiskResult(request)
|
206
|
+
body = send_request('DescribeCaptchaMiniRiskResult', request.serialize)
|
207
|
+
response = JSON.parse(body)
|
208
|
+
if response['Response'].key?('Error') == false
|
209
|
+
model = DescribeCaptchaMiniRiskResultResponse.new
|
210
|
+
model.deserialize(response['Response'])
|
211
|
+
model
|
212
|
+
else
|
213
|
+
code = response['Response']['Error']['Code']
|
214
|
+
message = response['Response']['Error']['Message']
|
215
|
+
reqid = response['Response']['RequestId']
|
216
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
217
|
+
end
|
218
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
219
|
+
raise e
|
220
|
+
rescue StandardError => e
|
221
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
222
|
+
end
|
223
|
+
|
224
|
+
# 安全验证码用户操作数据查询,验证码加载耗时type = 1 、拦截情况type = 2、 一周通过平均尝试次数 type = 3、尝试次数分布 type = 4
|
225
|
+
|
226
|
+
# @param request: Request instance for DescribeCaptchaOperData.
|
227
|
+
# @type request: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaOperDataRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaOperDataResponse`
|
229
|
+
def DescribeCaptchaOperData(request)
|
230
|
+
body = send_request('DescribeCaptchaOperData', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = DescribeCaptchaOperDataResponse.new
|
234
|
+
model.deserialize(response['Response'])
|
235
|
+
model
|
236
|
+
else
|
237
|
+
code = response['Response']['Error']['Code']
|
238
|
+
message = response['Response']['Error']['Message']
|
239
|
+
reqid = response['Response']['RequestId']
|
240
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
241
|
+
end
|
242
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
243
|
+
raise e
|
244
|
+
rescue StandardError => e
|
245
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
246
|
+
end
|
247
|
+
|
248
|
+
# 核查验证码票据结果
|
249
|
+
|
250
|
+
# @param request: Request instance for DescribeCaptchaResult.
|
251
|
+
# @type request: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaResultRequest`
|
252
|
+
# @rtype: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaResultResponse`
|
253
|
+
def DescribeCaptchaResult(request)
|
254
|
+
body = send_request('DescribeCaptchaResult', request.serialize)
|
255
|
+
response = JSON.parse(body)
|
256
|
+
if response['Response'].key?('Error') == false
|
257
|
+
model = DescribeCaptchaResultResponse.new
|
258
|
+
model.deserialize(response['Response'])
|
259
|
+
model
|
260
|
+
else
|
261
|
+
code = response['Response']['Error']['Code']
|
262
|
+
message = response['Response']['Error']['Message']
|
263
|
+
reqid = response['Response']['RequestId']
|
264
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
265
|
+
end
|
266
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
267
|
+
raise e
|
268
|
+
rescue StandardError => e
|
269
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
270
|
+
end
|
271
|
+
|
272
|
+
# 安全验证码用户操作票据数据查询
|
273
|
+
|
274
|
+
# @param request: Request instance for DescribeCaptchaTicketData.
|
275
|
+
# @type request: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaTicketDataRequest`
|
276
|
+
# @rtype: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaTicketDataResponse`
|
277
|
+
def DescribeCaptchaTicketData(request)
|
278
|
+
body = send_request('DescribeCaptchaTicketData', request.serialize)
|
279
|
+
response = JSON.parse(body)
|
280
|
+
if response['Response'].key?('Error') == false
|
281
|
+
model = DescribeCaptchaTicketDataResponse.new
|
282
|
+
model.deserialize(response['Response'])
|
283
|
+
model
|
284
|
+
else
|
285
|
+
code = response['Response']['Error']['Code']
|
286
|
+
message = response['Response']['Error']['Message']
|
287
|
+
reqid = response['Response']['RequestId']
|
288
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
289
|
+
end
|
290
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
291
|
+
raise e
|
292
|
+
rescue StandardError => e
|
293
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
294
|
+
end
|
295
|
+
|
296
|
+
# 安全验证码获取用户注册所有APPId和应用名称
|
297
|
+
|
298
|
+
# @param request: Request instance for DescribeCaptchaUserAllAppId.
|
299
|
+
# @type request: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaUserAllAppIdRequest`
|
300
|
+
# @rtype: :class:`Tencentcloud::captcha::V20190722::DescribeCaptchaUserAllAppIdResponse`
|
301
|
+
def DescribeCaptchaUserAllAppId(request)
|
302
|
+
body = send_request('DescribeCaptchaUserAllAppId', request.serialize)
|
303
|
+
response = JSON.parse(body)
|
304
|
+
if response['Response'].key?('Error') == false
|
305
|
+
model = DescribeCaptchaUserAllAppIdResponse.new
|
306
|
+
model.deserialize(response['Response'])
|
307
|
+
model
|
308
|
+
else
|
309
|
+
code = response['Response']['Error']['Code']
|
310
|
+
message = response['Response']['Error']['Message']
|
311
|
+
reqid = response['Response']['RequestId']
|
312
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
313
|
+
end
|
314
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
315
|
+
raise e
|
316
|
+
rescue StandardError => e
|
317
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
318
|
+
end
|
319
|
+
|
320
|
+
# 更新验证码应用APPId信息
|
321
|
+
|
322
|
+
# @param request: Request instance for UpdateCaptchaAppIdInfo.
|
323
|
+
# @type request: :class:`Tencentcloud::captcha::V20190722::UpdateCaptchaAppIdInfoRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::captcha::V20190722::UpdateCaptchaAppIdInfoResponse`
|
325
|
+
def UpdateCaptchaAppIdInfo(request)
|
326
|
+
body = send_request('UpdateCaptchaAppIdInfo', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = UpdateCaptchaAppIdInfoResponse.new
|
330
|
+
model.deserialize(response['Response'])
|
331
|
+
model
|
332
|
+
else
|
333
|
+
code = response['Response']['Error']['Code']
|
334
|
+
message = response['Response']['Error']['Message']
|
335
|
+
reqid = response['Response']['RequestId']
|
336
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
337
|
+
end
|
338
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
339
|
+
raise e
|
340
|
+
rescue StandardError => e
|
341
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
342
|
+
end
|
343
|
+
|
344
|
+
|
345
|
+
end
|
346
|
+
end
|
347
|
+
end
|
348
|
+
end
|