tencentcloud-sdk-nodejs 4.0.462 → 4.0.463
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.
- package/CHANGELOG.md +168 -0
- package/SERVICE_CHANGELOG.md +214 -67
- package/package.json +1 -1
- package/products.md +13 -13
- package/src/common/sdk_version.ts +1 -1
- package/src/services/bma/v20210624/bma_client.ts +14 -2
- package/src/services/bma/v20210624/bma_models.ts +96 -1
- package/src/services/captcha/v20190722/captcha_client.ts +8 -4
- package/src/services/captcha/v20190722/captcha_models.ts +214 -42
- package/src/services/cpdp/v20190820/cpdp_client.ts +18 -2
- package/src/services/cpdp/v20190820/cpdp_models.ts +358 -33
- package/src/services/essbasic/v20210526/essbasic_client.ts +11 -8
- package/src/services/essbasic/v20210526/essbasic_models.ts +18 -13
- package/src/services/lcic/v20220817/lcic_client.ts +74 -25
- package/src/services/lcic/v20220817/lcic_models.ts +333 -137
- package/src/services/monitor/v20180724/monitor_client.ts +1 -0
- package/src/services/monitor/v20180724/monitor_models.ts +29 -0
- package/src/services/ses/v20201002/ses_client.ts +2 -2
- package/src/services/soe/v20180724/soe_models.ts +2 -2
- package/src/services/tcb/v20180608/tcb_client.ts +12 -0
- package/src/services/tcb/v20180608/tcb_models.ts +25 -0
- package/src/services/trp/v20210515/trp_models.ts +7 -7
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/bma/v20210624/bma_client.d.ts +7 -3
- package/tencentcloud/services/bma/v20210624/bma_client.js +8 -2
- package/tencentcloud/services/bma/v20210624/bma_models.d.ts +79 -1
- package/tencentcloud/services/captcha/v20190722/captcha_client.d.ts +2 -2
- package/tencentcloud/services/captcha/v20190722/captcha_models.d.ts +182 -38
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.d.ts +5 -1
- package/tencentcloud/services/cpdp/v20190820/cpdp_client.js +6 -0
- package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +298 -29
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +11 -8
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +11 -8
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +15 -11
- package/tencentcloud/services/lcic/v20220817/lcic_client.d.ts +21 -5
- package/tencentcloud/services/lcic/v20220817/lcic_client.js +30 -6
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +299 -133
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +25 -0
- package/tencentcloud/services/ses/v20201002/ses_client.d.ts +2 -2
- package/tencentcloud/services/ses/v20201002/ses_client.js +2 -2
- package/tencentcloud/services/soe/v20180724/soe_models.d.ts +2 -2
- package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +5 -1
- package/tencentcloud/services/tcb/v20180608/tcb_client.js +6 -0
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +22 -0
- package/tencentcloud/services/trp/v20210515/trp_models.d.ts +7 -7
- package/test/bma.v20210624.test.js +10 -0
- package/test/cpdp.v20190820.test.js +10 -0
- package/test/lcic.v20220817.test.js +44 -4
- package/test/tcb.v20180608.test.js +10 -0
|
@@ -38,6 +38,29 @@ export interface UpdateAlertRuleStateRequest {
|
|
|
38
38
|
RuleState: number
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
+
/**
|
|
42
|
+
* 告警分级阈值配置
|
|
43
|
+
*/
|
|
44
|
+
export interface AlarmHierarchicalValue {
|
|
45
|
+
/**
|
|
46
|
+
* 提醒等级阈值
|
|
47
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
48
|
+
*/
|
|
49
|
+
Remind?: string
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* 警告等级阈值
|
|
53
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
54
|
+
*/
|
|
55
|
+
Warn?: string
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* 严重等级阈值
|
|
59
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
60
|
+
*/
|
|
61
|
+
Serious?: string
|
|
62
|
+
}
|
|
63
|
+
|
|
41
64
|
/**
|
|
42
65
|
* 策略列表详情标签返回体
|
|
43
66
|
*/
|
|
@@ -3363,6 +3386,12 @@ re=正则匹配
|
|
|
3363
3386
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3364
3387
|
*/
|
|
3365
3388
|
ValueMin?: number
|
|
3389
|
+
|
|
3390
|
+
/**
|
|
3391
|
+
* 告警分级阈值配置
|
|
3392
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3393
|
+
*/
|
|
3394
|
+
HierarchicalValue?: AlarmHierarchicalValue
|
|
3366
3395
|
}
|
|
3367
3396
|
|
|
3368
3397
|
/**
|
|
@@ -116,7 +116,7 @@ export class Client extends AbstractClient {
|
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
/**
|
|
119
|
-
* 添加收件人地址附带模板参数,使用本接口在添加收件人地址的同时传入模板参数,使每一个收件人地址在发信的时候使用的模板变量取值不同。用户首先调用创建收件人列表接口-CreateReceiver后,然后调用本接口传入收件人地址和发信时的模板参数,最后使用批量发送邮件接口-BatchSendEmail,即可完成批量发信。需要注意的是在使用本接口后BatchSendEmail接口中的Template
|
|
119
|
+
* 添加收件人地址附带模板参数,使用本接口在添加收件人地址的同时传入模板参数,使每一个收件人地址在发信的时候使用的模板变量取值不同。用户首先调用创建收件人列表接口-CreateReceiver后,然后调用本接口传入收件人地址和发信时的模板参数,最后使用批量发送邮件接口-BatchSendEmail,即可完成批量发信。需要注意的是在使用本接口后BatchSendEmail接口中的Template参数不需再传。用户也可以在控制台上邮件发送-收件人列表菜单中,通过导入文件的方式,导入收件人地址和模板变量和参数值。本接口一次请求的收件人地址数量限制为2W条,本接口同时也可以用来向已经上传完成的收件人列表追加收件人地址,但收件人列表中收件人地址的总量不能超过一定的数量,目前是限制5万条。本接口不支持去除重复的收件人地址,用户需要自己保证上传和追加地址不重复,不与之前上传的地址重复。
|
|
120
120
|
*/
|
|
121
121
|
async CreateReceiverDetailWithData(
|
|
122
122
|
req: CreateReceiverDetailWithDataRequest,
|
|
@@ -318,7 +318,7 @@ export class Client extends AbstractClient {
|
|
|
318
318
|
}
|
|
319
319
|
|
|
320
320
|
/**
|
|
321
|
-
* 在创建完收件人列表后,向这个收件人列表中批量增加收件人邮箱地址,一次最大支持
|
|
321
|
+
* 在创建完收件人列表后,向这个收件人列表中批量增加收件人邮箱地址,一次最大支持2万,异步完成处理。数据量比较大的时候,上传可能需要一点时间,可以通过查询收件人列表了解上传状态和上传数量。本接口与接口CreateReceiverDetailWithData的功能特性基本一致,只是不支持上传发信时的模板参数。用户首先调用创建收件人列表接口-CreateReceiver后,然后调用本接口传入收件人地址,最后使用批量发送邮件接口-BatchSendEmail,即可完成批量发信。本接口也支持追加收件人地址,也不支持去重,需要用户自己保证收件人地址不重复。本接口一次请求的收件人地址数量限制为2W条,但收件人列表中收件人地址的总量不能超过一定的数量,目前是限制5万条。
|
|
322
322
|
*/
|
|
323
323
|
async CreateReceiverDetail(
|
|
324
324
|
req: CreateReceiverDetailRequest,
|
|
@@ -151,7 +151,7 @@ ServerType不填默认为0
|
|
|
151
151
|
*/
|
|
152
152
|
export interface Keyword {
|
|
153
153
|
/**
|
|
154
|
-
*
|
|
154
|
+
* 被评估语音对应的文本,句子模式下不超过 20个单词或者中文文字,段落模式不超过 120个单词或者中文文字,中文文字需使用 utf-8 编码,自由说模式RefText可以不填。如需要在单词模式和句子模式下使用自定义音素,可以通过设置 TextMode 使用[音素标注](https://cloud.tencent.com/document/product/884/33698)。
|
|
155
155
|
*/
|
|
156
156
|
RefText: string
|
|
157
157
|
|
|
@@ -167,7 +167,7 @@ export interface Keyword {
|
|
|
167
167
|
|
|
168
168
|
/**
|
|
169
169
|
* 评估语言,0:英文,1:中文。
|
|
170
|
-
ServerType
|
|
170
|
+
ServerType不填默认为0
|
|
171
171
|
*/
|
|
172
172
|
ServerType?: number
|
|
173
173
|
|
|
@@ -30,6 +30,7 @@ import {
|
|
|
30
30
|
DeleteCloudBaseRunServerVersionResponse,
|
|
31
31
|
RollUpdateCloudBaseRunServerVersionResponse,
|
|
32
32
|
SearchClsLogResponse,
|
|
33
|
+
ModifyClsTopicResponse,
|
|
33
34
|
StandaloneGatewayInfo,
|
|
34
35
|
CloudBaseRunSideSpec,
|
|
35
36
|
CommonServiceAPIResponse,
|
|
@@ -56,6 +57,7 @@ import {
|
|
|
56
57
|
DescribeCloudBaseRunOperationTypesRequest,
|
|
57
58
|
DescribeAuthDomainsResponse,
|
|
58
59
|
DescribeCloudBaseRunOneClickTaskExternalRequest,
|
|
60
|
+
ModifyClsTopicRequest,
|
|
59
61
|
DescribeStandaloneGatewayResponse,
|
|
60
62
|
DescribeWxCloudBaseRunEnvsResponse,
|
|
61
63
|
CreateHostingDomainRequest,
|
|
@@ -283,6 +285,16 @@ export class Client extends AbstractClient {
|
|
|
283
285
|
return this.request("EstablishWxGatewayRoute", req, cb)
|
|
284
286
|
}
|
|
285
287
|
|
|
288
|
+
/**
|
|
289
|
+
* 修改日志主题
|
|
290
|
+
*/
|
|
291
|
+
async ModifyClsTopic(
|
|
292
|
+
req: ModifyClsTopicRequest,
|
|
293
|
+
cb?: (error: string, rep: ModifyClsTopicResponse) => void
|
|
294
|
+
): Promise<ModifyClsTopicResponse> {
|
|
295
|
+
return this.request("ModifyClsTopic", req, cb)
|
|
296
|
+
}
|
|
297
|
+
|
|
286
298
|
/**
|
|
287
299
|
* 本接口(DestroyStandaloneGateway)用于销毁小租户网关。
|
|
288
300
|
*/
|
|
@@ -347,6 +347,16 @@ export interface SearchClsLogResponse {
|
|
|
347
347
|
RequestId?: string
|
|
348
348
|
}
|
|
349
349
|
|
|
350
|
+
/**
|
|
351
|
+
* ModifyClsTopic返回参数结构体
|
|
352
|
+
*/
|
|
353
|
+
export interface ModifyClsTopicResponse {
|
|
354
|
+
/**
|
|
355
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
356
|
+
*/
|
|
357
|
+
RequestId?: string
|
|
358
|
+
}
|
|
359
|
+
|
|
350
360
|
/**
|
|
351
361
|
* 独立网关信息
|
|
352
362
|
*/
|
|
@@ -1173,6 +1183,21 @@ export interface DescribeCloudBaseRunOneClickTaskExternalRequest {
|
|
|
1173
1183
|
ExternalId: string
|
|
1174
1184
|
}
|
|
1175
1185
|
|
|
1186
|
+
/**
|
|
1187
|
+
* ModifyClsTopic请求参数结构体
|
|
1188
|
+
*/
|
|
1189
|
+
export interface ModifyClsTopicRequest {
|
|
1190
|
+
/**
|
|
1191
|
+
* 环境ID
|
|
1192
|
+
*/
|
|
1193
|
+
EnvId: string
|
|
1194
|
+
|
|
1195
|
+
/**
|
|
1196
|
+
* 日志生命周期,单位天,可取值范围1~3600,取值为3640时代表永久保存
|
|
1197
|
+
*/
|
|
1198
|
+
Period?: number
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1176
1201
|
/**
|
|
1177
1202
|
* DescribeStandaloneGateway返回参数结构体
|
|
1178
1203
|
*/
|
|
@@ -307,13 +307,13 @@ export interface CodePack {
|
|
|
307
307
|
UpdateTime: string
|
|
308
308
|
|
|
309
309
|
/**
|
|
310
|
-
*
|
|
310
|
+
* 制码状态 init: 初始化, pending: 执行中, done: 完成, error: 失败
|
|
311
311
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
312
312
|
*/
|
|
313
313
|
Status: string
|
|
314
314
|
|
|
315
315
|
/**
|
|
316
|
-
*
|
|
316
|
+
* 执行日志
|
|
317
317
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
318
318
|
*/
|
|
319
319
|
Log: string
|
|
@@ -349,13 +349,13 @@ export interface CodePack {
|
|
|
349
349
|
Cipher: number
|
|
350
350
|
|
|
351
351
|
/**
|
|
352
|
-
*
|
|
352
|
+
* [弃用] 文字码地址,通过另一个接口查
|
|
353
353
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
354
354
|
*/
|
|
355
355
|
TextUrl: string
|
|
356
356
|
|
|
357
357
|
/**
|
|
358
|
-
*
|
|
358
|
+
* [弃用] 二维码地址,通过另一个接口查
|
|
359
359
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
360
360
|
*/
|
|
361
361
|
PackUrl: string
|
|
@@ -2203,7 +2203,7 @@ export interface DescribeTmpTokenRequest {
|
|
|
2203
2203
|
*/
|
|
2204
2204
|
export interface TraceCode {
|
|
2205
2205
|
/**
|
|
2206
|
-
*
|
|
2206
|
+
* 二维码
|
|
2207
2207
|
*/
|
|
2208
2208
|
Code: string
|
|
2209
2209
|
|
|
@@ -2213,7 +2213,7 @@ export interface TraceCode {
|
|
|
2213
2213
|
CorpId: number
|
|
2214
2214
|
|
|
2215
2215
|
/**
|
|
2216
|
-
*
|
|
2216
|
+
* 码包ID
|
|
2217
2217
|
*/
|
|
2218
2218
|
PackId: string
|
|
2219
2219
|
|
|
@@ -2233,7 +2233,7 @@ export interface TraceCode {
|
|
|
2233
2233
|
ProductId: string
|
|
2234
2234
|
|
|
2235
2235
|
/**
|
|
2236
|
-
*
|
|
2236
|
+
* 码状态 0: 冻结 1: 激活
|
|
2237
2237
|
*/
|
|
2238
2238
|
Status: number
|
|
2239
2239
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.0.
|
|
1
|
+
export declare const sdkVersion = "4.0.463";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { CreateCRObtainResponse, CreateCRUserVerifyRequest, CreateBPFalseTicketResponse, CreateCRRightFileRequest, CreateCRRightResponse, CreateCRWorkResponse, CreateCRRightRequest, CreateBPOfflineTicketResponse, CreateCRTortRequest, UpdateCRWorkRequest, DescribeBPFakeURLsRequest, ModifyCRBlockStatusResponse, ModifyCRObtainStatusRequest, DescribeCRWorkInfoRequest, ModifyBPOfflineAttachmentRequest, DescribeBPFakeURLsResponse, CreateBPOfflineAttachmentResponse, DescribeBPReportFakeURLsRequest, CreateBPFakeURLRequest, UpdateCRWorkResponse, CreateBPProtectURLsResponse, DescribeBPProtectURLsResponse, DescribeCRMonitorsResponse, CreateCRCompanyVerifyResponse, CreateBPOfflineAttachmentRequest, CreateBPProtectURLsRequest, CreateCRObtainRequest, ModifyCRBlockStatusRequest, ModifyCRMonitorRequest, DescribeCRMonitorDetailResponse, CreateCRWorkRequest, DescribeBPCompanyInfoRequest, DescribeBPReportFakeURLsResponse, DescribeCRMonitorDetailRequest, CreateCRBlockResponse, ModifyCRRightStatusRequest, DescribeCRMonitorsRequest, DescribeCRWorkInfoResponse, CreateCRRightFileResponse, ModifyCRWhiteListResponse, CreateBPOfflineTicketRequest, CreateCRUserVerifyResponse, ModifyCRRightStatusResponse, DescribeBPCompanyInfoResponse, ModifyBPOfflineAttachmentResponse, CreateCRBlockRequest, CreateBPFakeURLResponse, CreateCRTortResponse, CreateBPFalseTicketRequest, ModifyCRMonitorResponse, DescribeBPProtectURLsRequest, ModifyCRObtainStatusResponse, ModifyCRWhiteListRequest, CreateCRCompanyVerifyRequest } from "./bma_models";
|
|
3
|
+
import { CreateCRObtainResponse, CreateCRUserVerifyRequest, CreateBPFalseTicketResponse, CreateCRRightFileRequest, CreateCRRightResponse, CreateCRWorkResponse, CreateCRRightRequest, CreateBPOfflineTicketResponse, CreateCRTortRequest, UpdateCRWorkRequest, DescribeBPFakeURLsRequest, ModifyCRBlockStatusResponse, ModifyCRObtainStatusRequest, DescribeCRWorkInfoRequest, ModifyBPOfflineAttachmentRequest, DescribeBPFakeURLsResponse, CreateBPOfflineAttachmentResponse, DescribeBPReportFakeURLsRequest, CreateBPFakeURLRequest, UpdateCRWorkResponse, CreateBPProtectURLsResponse, DescribeBPProtectURLsResponse, DescribeCRMonitorsResponse, CreateCRCompanyVerifyResponse, CreateBPOfflineAttachmentRequest, CreateBPProtectURLsRequest, CreateCRObtainRequest, ModifyCRBlockStatusRequest, ModifyCRMonitorRequest, DescribeCRMonitorDetailResponse, CreateCRWorkRequest, DescribeBPCompanyInfoRequest, DescribeCRObtainDetailRequest, DescribeBPReportFakeURLsResponse, DescribeCRMonitorDetailRequest, CreateCRBlockResponse, ModifyCRRightStatusRequest, DescribeCRMonitorsRequest, DescribeCRWorkInfoResponse, DescribeCRObtainDetailResponse, CreateCRRightFileResponse, ModifyCRWhiteListResponse, CreateBPOfflineTicketRequest, CreateCRUserVerifyResponse, ModifyCRRightStatusResponse, DescribeBPCompanyInfoResponse, ModifyBPOfflineAttachmentResponse, CreateCRBlockRequest, CreateBPFakeURLResponse, CreateCRTortResponse, CreateBPFalseTicketRequest, ModifyCRMonitorResponse, DescribeBPProtectURLsRequest, ModifyCRObtainStatusResponse, ModifyCRWhiteListRequest, CreateCRCompanyVerifyRequest } from "./bma_models";
|
|
4
4
|
/**
|
|
5
5
|
* bma client
|
|
6
6
|
* @class
|
|
@@ -28,7 +28,11 @@ export declare class Client extends AbstractClient {
|
|
|
28
28
|
*/
|
|
29
29
|
CreateBPOfflineTicket(req: CreateBPOfflineTicketRequest, cb?: (error: string, rep: CreateBPOfflineTicketResponse) => void): Promise<CreateBPOfflineTicketResponse>;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* 查询取证详情
|
|
32
|
+
*/
|
|
33
|
+
DescribeCRObtainDetail(req: DescribeCRObtainDetailRequest, cb?: (error: string, rep: DescribeCRObtainDetailResponse) => void): Promise<DescribeCRObtainDetailResponse>;
|
|
34
|
+
/**
|
|
35
|
+
* 新建协查处置
|
|
32
36
|
|
|
33
37
|
*/
|
|
34
38
|
CreateCRBlock(req: CreateCRBlockRequest, cb?: (error: string, rep: CreateCRBlockResponse) => void): Promise<CreateCRBlockResponse>;
|
|
@@ -69,7 +73,7 @@ export declare class Client extends AbstractClient {
|
|
|
69
73
|
*/
|
|
70
74
|
ModifyCRWhiteList(req: ModifyCRWhiteListRequest, cb?: (error: string, rep: ModifyCRWhiteListResponse) => void): Promise<ModifyCRWhiteListResponse>;
|
|
71
75
|
/**
|
|
72
|
-
*
|
|
76
|
+
* 协查处置申请
|
|
73
77
|
*/
|
|
74
78
|
ModifyCRBlockStatus(req: ModifyCRBlockStatusRequest, cb?: (error: string, rep: ModifyCRBlockStatusResponse) => void): Promise<ModifyCRBlockStatusResponse>;
|
|
75
79
|
/**
|
|
@@ -58,7 +58,13 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
58
58
|
return this.request("CreateBPOfflineTicket", req, cb);
|
|
59
59
|
}
|
|
60
60
|
/**
|
|
61
|
-
*
|
|
61
|
+
* 查询取证详情
|
|
62
|
+
*/
|
|
63
|
+
async DescribeCRObtainDetail(req, cb) {
|
|
64
|
+
return this.request("DescribeCRObtainDetail", req, cb);
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* 新建协查处置
|
|
62
68
|
|
|
63
69
|
*/
|
|
64
70
|
async CreateCRBlock(req, cb) {
|
|
@@ -119,7 +125,7 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
119
125
|
return this.request("ModifyCRWhiteList", req, cb);
|
|
120
126
|
}
|
|
121
127
|
/**
|
|
122
|
-
*
|
|
128
|
+
* 协查处置申请
|
|
123
129
|
*/
|
|
124
130
|
async ModifyCRBlockStatus(req, cb) {
|
|
125
131
|
return this.request("ModifyCRBlockStatus", req, cb);
|
|
@@ -333,7 +333,7 @@ export interface ModifyCRObtainStatusRequest {
|
|
|
333
333
|
*/
|
|
334
334
|
TortId: number;
|
|
335
335
|
/**
|
|
336
|
-
* 取证类型:1-网页取证 2-过程取证
|
|
336
|
+
* 取证类型:1-网页取证 2-过程取证(暂不提供)
|
|
337
337
|
*/
|
|
338
338
|
ObtainType: number;
|
|
339
339
|
/**
|
|
@@ -977,6 +977,15 @@ export interface CreateCRWorkRequest {
|
|
|
977
977
|
* DescribeBPCompanyInfo请求参数结构体
|
|
978
978
|
*/
|
|
979
979
|
export declare type DescribeBPCompanyInfoRequest = null;
|
|
980
|
+
/**
|
|
981
|
+
* DescribeCRObtainDetail请求参数结构体
|
|
982
|
+
*/
|
|
983
|
+
export interface DescribeCRObtainDetailRequest {
|
|
984
|
+
/**
|
|
985
|
+
* 侵权ID
|
|
986
|
+
*/
|
|
987
|
+
TortId: number;
|
|
988
|
+
}
|
|
980
989
|
/**
|
|
981
990
|
* DescribeBPReportFakeURLs返回参数结构体
|
|
982
991
|
*/
|
|
@@ -1163,6 +1172,75 @@ export interface DescribeCRWorkInfoResponse {
|
|
|
1163
1172
|
*/
|
|
1164
1173
|
RequestId?: string;
|
|
1165
1174
|
}
|
|
1175
|
+
/**
|
|
1176
|
+
* DescribeCRObtainDetail返回参数结构体
|
|
1177
|
+
*/
|
|
1178
|
+
export interface DescribeCRObtainDetailResponse {
|
|
1179
|
+
/**
|
|
1180
|
+
* 作品名称
|
|
1181
|
+
*/
|
|
1182
|
+
WorkName: string;
|
|
1183
|
+
/**
|
|
1184
|
+
* 侵权链接
|
|
1185
|
+
*/
|
|
1186
|
+
TortURL: string;
|
|
1187
|
+
/**
|
|
1188
|
+
* 取证时间
|
|
1189
|
+
*/
|
|
1190
|
+
ObtainTime: string;
|
|
1191
|
+
/**
|
|
1192
|
+
* 取证类型
|
|
1193
|
+
*/
|
|
1194
|
+
ObtainType: string;
|
|
1195
|
+
/**
|
|
1196
|
+
* 取证号
|
|
1197
|
+
*/
|
|
1198
|
+
ObtainNum: string;
|
|
1199
|
+
/**
|
|
1200
|
+
* 证据地址
|
|
1201
|
+
*/
|
|
1202
|
+
DepositFile: string;
|
|
1203
|
+
/**
|
|
1204
|
+
* 公证信息地址
|
|
1205
|
+
*/
|
|
1206
|
+
DepositCert: string;
|
|
1207
|
+
/**
|
|
1208
|
+
* 内容类型
|
|
1209
|
+
*/
|
|
1210
|
+
WorkType: string;
|
|
1211
|
+
/**
|
|
1212
|
+
* 作品类型
|
|
1213
|
+
*/
|
|
1214
|
+
WorkCategory: string;
|
|
1215
|
+
/**
|
|
1216
|
+
* 侵权ID
|
|
1217
|
+
*/
|
|
1218
|
+
TortId: number;
|
|
1219
|
+
/**
|
|
1220
|
+
* 侵权编号
|
|
1221
|
+
*/
|
|
1222
|
+
TortNum: string;
|
|
1223
|
+
/**
|
|
1224
|
+
* 取证状态
|
|
1225
|
+
*/
|
|
1226
|
+
ObtainStatus: number;
|
|
1227
|
+
/**
|
|
1228
|
+
* 取证状态说明
|
|
1229
|
+
*/
|
|
1230
|
+
ObtainNote: string;
|
|
1231
|
+
/**
|
|
1232
|
+
* 取证时长
|
|
1233
|
+
*/
|
|
1234
|
+
ObtainDuration: string;
|
|
1235
|
+
/**
|
|
1236
|
+
* 取证名称
|
|
1237
|
+
*/
|
|
1238
|
+
ObtainName: string;
|
|
1239
|
+
/**
|
|
1240
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1241
|
+
*/
|
|
1242
|
+
RequestId?: string;
|
|
1243
|
+
}
|
|
1166
1244
|
/**
|
|
1167
1245
|
* CreateCRRightFile返回参数结构体
|
|
1168
1246
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { DescribeCaptchaOperDataResponse, DescribeCaptchaMiniOperDataResponse, GetTotalTicketStatisticsRequest, DescribeCaptchaMiniDataSumResponse, UpdateCaptchaAppIdInfoRequest, DescribeCaptchaUserAllAppIdRequest, GetTotalTicketStatisticsResponse, DescribeCaptchaMiniDataResponse,
|
|
3
|
+
import { DescribeCaptchaOperDataResponse, DescribeCaptchaMiniOperDataResponse, GetTotalTicketStatisticsRequest, DescribeCaptchaMiniDataSumResponse, UpdateCaptchaAppIdInfoRequest, DescribeCaptchaUserAllAppIdRequest, GetTotalTicketStatisticsResponse, DescribeCaptchaMiniDataResponse, DescribeCaptchaMiniRiskResultRequest, UpdateCaptchaAppIdInfoResponse, DescribeCaptchaDataSumResponse, DescribeCaptchaTicketDataRequest, DescribeCaptchaResultResponse, DescribeCaptchaMiniDataSumRequest, DescribeCaptchaOperDataRequest, DescribeCaptchaDataSumRequest, DescribeCaptchaMiniRiskResultResponse, DescribeCaptchaDataResponse, DescribeCaptchaResultRequest, DescribeCaptchaMiniOperDataRequest, DescribeCaptchaAppIdInfoRequest, DescribeCaptchaAppIdInfoResponse, DescribeCaptchaUserAllAppIdResponse, DescribeCaptchaDataRequest, DescribeCaptchaMiniResultRequest, DescribeCaptchaTicketDataResponse, DescribeCaptchaMiniResultResponse, DescribeCaptchaMiniDataRequest } from "./captcha_models";
|
|
4
4
|
/**
|
|
5
5
|
* captcha client
|
|
6
6
|
* @class
|
|
@@ -50,7 +50,7 @@ export declare class Client extends AbstractClient {
|
|
|
50
50
|
/**
|
|
51
51
|
* 查询所有验证的统计数据,包括:总票据校验量、总票据校验通过量、总票据校验拦截量。
|
|
52
52
|
*/
|
|
53
|
-
GetTotalTicketStatistics(req
|
|
53
|
+
GetTotalTicketStatistics(req: GetTotalTicketStatisticsRequest, cb?: (error: string, rep: GetTotalTicketStatisticsResponse) => void): Promise<GetTotalTicketStatisticsResponse>;
|
|
54
54
|
/**
|
|
55
55
|
* 安全验证码获取用户注册所有APPId和应用名称
|
|
56
56
|
*/
|