tencentcloud-sdk-nodejs 4.0.337 → 4.0.338
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 +214 -0
- package/SERVICE_CHANGELOG.md +337 -29
- package/package.json +1 -1
- package/products.md +10 -10
- package/src/common/sdk_version.ts +1 -1
- package/src/services/antiddos/v20200309/antiddos_client.ts +13 -0
- package/src/services/antiddos/v20200309/antiddos_models.ts +153 -0
- package/src/services/cfw/v20190904/cfw_models.ts +5 -0
- package/src/services/ckafka/v20190819/ckafka_models.ts +1 -1
- package/src/services/dlc/v20210125/dlc_models.ts +35 -0
- package/src/services/faceid/v20180301/faceid_client.ts +1 -1
- package/src/services/faceid/v20180301/faceid_models.ts +5 -4
- package/src/services/iotcloud/v20210408/iotcloud_client.ts +608 -68
- package/src/services/iotcloud/v20210408/iotcloud_models.ts +2835 -667
- package/src/services/ocr/v20181119/ocr_client.ts +13 -0
- package/src/services/ocr/v20181119/ocr_models.ts +96 -0
- package/src/services/tke/v20180525/tke_models.ts +15 -0
- package/src/services/trtc/v20190722/trtc_models.ts +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/antiddos/v20200309/antiddos_client.d.ts +5 -1
- package/tencentcloud/services/antiddos/v20200309/antiddos_client.js +6 -0
- package/tencentcloud/services/antiddos/v20200309/antiddos_models.d.ts +126 -0
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +4 -0
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +1 -1
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +29 -0
- package/tencentcloud/services/faceid/v20180301/faceid_client.d.ts +1 -1
- package/tencentcloud/services/faceid/v20180301/faceid_client.js +1 -1
- package/tencentcloud/services/faceid/v20180301/faceid_models.d.ts +5 -4
- package/tencentcloud/services/iotcloud/v20210408/iotcloud_client.d.ts +187 -11
- package/tencentcloud/services/iotcloud/v20210408/iotcloud_client.js +279 -15
- package/tencentcloud/services/iotcloud/v20210408/iotcloud_models.d.ts +2515 -663
- package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +5 -1
- package/tencentcloud/services/ocr/v20181119/ocr_client.js +6 -0
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +80 -0
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +12 -0
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +1 -1
- package/test/antiddos.v20200309.test.js +10 -0
- package/test/iotcloud.v20210408.test.js +450 -10
- package/test/ocr.v20181119.test.js +10 -0
|
@@ -27,6 +27,24 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
27
27
|
constructor(clientConfig) {
|
|
28
28
|
super("iotcloud.tencentcloudapi.com", "2021-04-08", clientConfig);
|
|
29
29
|
}
|
|
30
|
+
/**
|
|
31
|
+
* 本接口(GetCOSURL)用于获取固件存储在COS的URL
|
|
32
|
+
*/
|
|
33
|
+
async GetCOSURL(req, cb) {
|
|
34
|
+
return this.request("GetCOSURL", req, cb);
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* 本接口(ReplaceTopicRule)用于修改替换规则
|
|
38
|
+
*/
|
|
39
|
+
async ReplaceTopicRule(req, cb) {
|
|
40
|
+
return this.request("ReplaceTopicRule", req, cb);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* 发布RRPC消息
|
|
44
|
+
*/
|
|
45
|
+
async PublishRRPCMessage(req, cb) {
|
|
46
|
+
return this.request("PublishRRPCMessage", req, cb);
|
|
47
|
+
}
|
|
30
48
|
/**
|
|
31
49
|
* 设置设备上报的日志级别
|
|
32
50
|
*/
|
|
@@ -34,10 +52,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
34
52
|
return this.request("UpdateDeviceLogLevel", req, cb);
|
|
35
53
|
}
|
|
36
54
|
/**
|
|
37
|
-
*
|
|
55
|
+
* 本接口(DescribeGatewayBindDevices)用于获取网关绑定的子设备列表
|
|
38
56
|
*/
|
|
39
|
-
async
|
|
40
|
-
return this.request("
|
|
57
|
+
async DescribeGatewayBindDevices(req, cb) {
|
|
58
|
+
return this.request("DescribeGatewayBindDevices", req, cb);
|
|
41
59
|
}
|
|
42
60
|
/**
|
|
43
61
|
* 获取日志内容列表
|
|
@@ -45,30 +63,138 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
45
63
|
async ListLogPayload(req, cb) {
|
|
46
64
|
return this.request("ListLogPayload", req, cb);
|
|
47
65
|
}
|
|
66
|
+
/**
|
|
67
|
+
* 本接口(UpdateTopicPolicy)用于更新Topic信息
|
|
68
|
+
*/
|
|
69
|
+
async UpdateTopicPolicy(req, cb) {
|
|
70
|
+
return this.request("UpdateTopicPolicy", req, cb);
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* 查询固件信息
|
|
74
|
+
*/
|
|
75
|
+
async DescribeFirmware(req, cb) {
|
|
76
|
+
return this.request("DescribeFirmware", req, cb);
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* 本接口(DescribeDeviceShadow)用于查询虚拟设备信息。
|
|
80
|
+
*/
|
|
81
|
+
async DescribeDeviceShadow(req, cb) {
|
|
82
|
+
return this.request("DescribeDeviceShadow", req, cb);
|
|
83
|
+
}
|
|
48
84
|
/**
|
|
49
85
|
* 本接口(DescribeDevice)用于查看设备信息
|
|
50
86
|
*/
|
|
51
87
|
async DescribeDevice(req, cb) {
|
|
52
88
|
return this.request("DescribeDevice", req, cb);
|
|
53
89
|
}
|
|
90
|
+
/**
|
|
91
|
+
* 发布广播消息
|
|
92
|
+
*/
|
|
93
|
+
async PublishBroadcastMessage(req, cb) {
|
|
94
|
+
return this.request("PublishBroadcastMessage", req, cb);
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* 启用或者禁用设备
|
|
98
|
+
*/
|
|
99
|
+
async UpdateDeviceAvailableState(req, cb) {
|
|
100
|
+
return this.request("UpdateDeviceAvailableState", req, cb);
|
|
101
|
+
}
|
|
54
102
|
/**
|
|
55
103
|
* 本接口(DescribeProduct)用于查看产品详情
|
|
56
104
|
*/
|
|
57
105
|
async DescribeProduct(req, cb) {
|
|
58
106
|
return this.request("DescribeProduct", req, cb);
|
|
59
107
|
}
|
|
108
|
+
/**
|
|
109
|
+
* 本接口(CreateTopicRule)用于创建一个规则
|
|
110
|
+
*/
|
|
111
|
+
async CreateTopicRule(req, cb) {
|
|
112
|
+
return this.request("CreateTopicRule", req, cb);
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* 重试设备升级任务
|
|
116
|
+
*/
|
|
117
|
+
async RetryDeviceFirmwareTask(req, cb) {
|
|
118
|
+
return this.request("RetryDeviceFirmwareTask", req, cb);
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* 本接口(CreateTopicPolicy)用于创建一个Topic
|
|
122
|
+
*/
|
|
123
|
+
async CreateTopicPolicy(req, cb) {
|
|
124
|
+
return this.request("CreateTopicPolicy", req, cb);
|
|
125
|
+
}
|
|
60
126
|
/**
|
|
61
127
|
* 更新产品的私有CA
|
|
62
128
|
*/
|
|
63
129
|
async UpdateProductPrivateCA(req, cb) {
|
|
64
130
|
return this.request("UpdateProductPrivateCA", req, cb);
|
|
65
131
|
}
|
|
132
|
+
/**
|
|
133
|
+
* 查询私有CA绑定的产品列表
|
|
134
|
+
*/
|
|
135
|
+
async DescribePrivateCABindedProducts(req, cb) {
|
|
136
|
+
return this.request("DescribePrivateCABindedProducts", req, cb);
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* 本接口(BatchUpdateFirmware)用于批量更新设备固件
|
|
140
|
+
*/
|
|
141
|
+
async BatchUpdateFirmware(req, cb) {
|
|
142
|
+
return this.request("BatchUpdateFirmware", req, cb);
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* 本接口(CreateProduct)用于创建一个新的物联网通信产品
|
|
146
|
+
*/
|
|
147
|
+
async CreateProduct(req, cb) {
|
|
148
|
+
return this.request("CreateProduct", req, cb);
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* 本接口(GetUserResourceInfo)用于查询用户资源使用信息。
|
|
152
|
+
*/
|
|
153
|
+
async GetUserResourceInfo(req, cb) {
|
|
154
|
+
return this.request("GetUserResourceInfo", req, cb);
|
|
155
|
+
}
|
|
156
|
+
/**
|
|
157
|
+
* 批量设置产品禁用状态
|
|
158
|
+
*/
|
|
159
|
+
async SetProductsForbiddenStatus(req, cb) {
|
|
160
|
+
return this.request("SetProductsForbiddenStatus", req, cb);
|
|
161
|
+
}
|
|
66
162
|
/**
|
|
67
163
|
* 查询产品绑定的CA证书
|
|
68
164
|
*/
|
|
69
165
|
async DescribeProductCA(req, cb) {
|
|
70
166
|
return this.request("DescribeProductCA", req, cb);
|
|
71
167
|
}
|
|
168
|
+
/**
|
|
169
|
+
* 获取证书认证类型设备的私钥,刚生成或者重置设备后仅可调用一次
|
|
170
|
+
*/
|
|
171
|
+
async DescribeDeviceClientKey(req, cb) {
|
|
172
|
+
return this.request("DescribeDeviceClientKey", req, cb);
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* 本接口(DescribeProducts)用于列出产品列表。
|
|
176
|
+
*/
|
|
177
|
+
async DescribeProducts(req, cb) {
|
|
178
|
+
return this.request("DescribeProducts", req, cb);
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* 本接口(CreateMultiDevicesTask)用于创建产品级别的批量创建设备任务
|
|
182
|
+
*/
|
|
183
|
+
async CreateMultiDevicesTask(req, cb) {
|
|
184
|
+
return this.request("CreateMultiDevicesTask", req, cb);
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* 查询资源推送任务列表
|
|
188
|
+
*/
|
|
189
|
+
async DescribeResourceTasks(req, cb) {
|
|
190
|
+
return this.request("DescribeResourceTasks", req, cb);
|
|
191
|
+
}
|
|
192
|
+
/**
|
|
193
|
+
* 查询固件升级任务统计信息
|
|
194
|
+
*/
|
|
195
|
+
async DescribeFirmwareTaskStatistics(req, cb) {
|
|
196
|
+
return this.request("DescribeFirmwareTaskStatistics", req, cb);
|
|
197
|
+
}
|
|
72
198
|
/**
|
|
73
199
|
* 删除产品的私有CA证书
|
|
74
200
|
*/
|
|
@@ -76,10 +202,16 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
76
202
|
return this.request("DeleteProductPrivateCA", req, cb);
|
|
77
203
|
}
|
|
78
204
|
/**
|
|
79
|
-
*
|
|
205
|
+
* 查询推送资源任务统计信息
|
|
80
206
|
*/
|
|
81
|
-
async
|
|
82
|
-
return this.request("
|
|
207
|
+
async DescribePushResourceTaskStatistics(req, cb) {
|
|
208
|
+
return this.request("DescribePushResourceTaskStatistics", req, cb);
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* 本接口(DescribeProductTask)用于查看产品级别的任务信息
|
|
212
|
+
*/
|
|
213
|
+
async DescribeProductTask(req, cb) {
|
|
214
|
+
return this.request("DescribeProductTask", req, cb);
|
|
83
215
|
}
|
|
84
216
|
/**
|
|
85
217
|
* 本接口(DeleteDevice)用于删除物联网通信设备。
|
|
@@ -87,12 +219,30 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
87
219
|
async DeleteDevice(req, cb) {
|
|
88
220
|
return this.request("DeleteDevice", req, cb);
|
|
89
221
|
}
|
|
222
|
+
/**
|
|
223
|
+
* 批量启用或者禁用设备
|
|
224
|
+
*/
|
|
225
|
+
async UpdateDevicesEnableState(req, cb) {
|
|
226
|
+
return this.request("UpdateDevicesEnableState", req, cb);
|
|
227
|
+
}
|
|
90
228
|
/**
|
|
91
229
|
* 获取设备上报的日志
|
|
92
230
|
*/
|
|
93
231
|
async ListSDKLog(req, cb) {
|
|
94
232
|
return this.request("ListSDKLog", req, cb);
|
|
95
233
|
}
|
|
234
|
+
/**
|
|
235
|
+
* 本接口(DescribeProductResource)用于查询产品资源详情。
|
|
236
|
+
*/
|
|
237
|
+
async DescribeProductResource(req, cb) {
|
|
238
|
+
return this.request("DescribeProductResource", req, cb);
|
|
239
|
+
}
|
|
240
|
+
/**
|
|
241
|
+
* 编辑固件信息
|
|
242
|
+
*/
|
|
243
|
+
async EditFirmware(req, cb) {
|
|
244
|
+
return this.request("EditFirmware", req, cb);
|
|
245
|
+
}
|
|
96
246
|
/**
|
|
97
247
|
* 本接口(CreateDevice)用于新建一个物联网通信设备。
|
|
98
248
|
*/
|
|
@@ -100,10 +250,22 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
100
250
|
return this.request("CreateDevice", req, cb);
|
|
101
251
|
}
|
|
102
252
|
/**
|
|
103
|
-
*
|
|
253
|
+
* 本接口(DescribeDeviceResource)用于查询设备资源详情。
|
|
104
254
|
*/
|
|
105
|
-
async
|
|
106
|
-
return this.request("
|
|
255
|
+
async DescribeDeviceResource(req, cb) {
|
|
256
|
+
return this.request("DescribeDeviceResource", req, cb);
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* 本接口(PublishMessage)用于向某个主题发消息。
|
|
260
|
+
*/
|
|
261
|
+
async PublishMessage(req, cb) {
|
|
262
|
+
return this.request("PublishMessage", req, cb);
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* 查询固件升级任务状态分布
|
|
266
|
+
*/
|
|
267
|
+
async DescribeFirmwareTaskDistribution(req, cb) {
|
|
268
|
+
return this.request("DescribeFirmwareTaskDistribution", req, cb);
|
|
107
269
|
}
|
|
108
270
|
/**
|
|
109
271
|
* 创建私有CA证书
|
|
@@ -123,12 +285,42 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
123
285
|
async UpdatePrivateCA(req, cb) {
|
|
124
286
|
return this.request("UpdatePrivateCA", req, cb);
|
|
125
287
|
}
|
|
288
|
+
/**
|
|
289
|
+
* 本接口(DownloadDeviceResource)用于下载设备资源
|
|
290
|
+
*/
|
|
291
|
+
async DownloadDeviceResource(req, cb) {
|
|
292
|
+
return this.request("DownloadDeviceResource", req, cb);
|
|
293
|
+
}
|
|
126
294
|
/**
|
|
127
295
|
* 删除私有CA证书
|
|
128
296
|
*/
|
|
129
297
|
async DeletePrivateCA(req, cb) {
|
|
130
298
|
return this.request("DeletePrivateCA", req, cb);
|
|
131
299
|
}
|
|
300
|
+
/**
|
|
301
|
+
* 重置设备的连接状态
|
|
302
|
+
*/
|
|
303
|
+
async ResetDeviceState(req, cb) {
|
|
304
|
+
return this.request("ResetDeviceState", req, cb);
|
|
305
|
+
}
|
|
306
|
+
/**
|
|
307
|
+
* 查询固件升级任务详情
|
|
308
|
+
*/
|
|
309
|
+
async DescribeFirmwareTask(req, cb) {
|
|
310
|
+
return this.request("DescribeFirmwareTask", req, cb);
|
|
311
|
+
}
|
|
312
|
+
/**
|
|
313
|
+
* 本接口(UploadFirmware)用于上传设备固件信息
|
|
314
|
+
*/
|
|
315
|
+
async UploadFirmware(req, cb) {
|
|
316
|
+
return this.request("UploadFirmware", req, cb);
|
|
317
|
+
}
|
|
318
|
+
/**
|
|
319
|
+
* 本接口(DescribeDeviceResources)用于查询设备资源列表。
|
|
320
|
+
*/
|
|
321
|
+
async DescribeDeviceResources(req, cb) {
|
|
322
|
+
return this.request("DescribeDeviceResources", req, cb);
|
|
323
|
+
}
|
|
132
324
|
/**
|
|
133
325
|
* 更新产品动态注册的配置
|
|
134
326
|
*/
|
|
@@ -141,12 +333,54 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
141
333
|
async ListLog(req, cb) {
|
|
142
334
|
return this.request("ListLog", req, cb);
|
|
143
335
|
}
|
|
336
|
+
/**
|
|
337
|
+
* 查询固件升级任务的设备列表
|
|
338
|
+
*/
|
|
339
|
+
async DescribeFirmwareTaskDevices(req, cb) {
|
|
340
|
+
return this.request("DescribeFirmwareTaskDevices", req, cb);
|
|
341
|
+
}
|
|
342
|
+
/**
|
|
343
|
+
* 取消设备升级任务
|
|
344
|
+
*/
|
|
345
|
+
async CancelDeviceFirmwareTask(req, cb) {
|
|
346
|
+
return this.request("CancelDeviceFirmwareTask", req, cb);
|
|
347
|
+
}
|
|
348
|
+
/**
|
|
349
|
+
* 本接口(EnableTopicRule)用于启用规则
|
|
350
|
+
*/
|
|
351
|
+
async EnableTopicRule(req, cb) {
|
|
352
|
+
return this.request("EnableTopicRule", req, cb);
|
|
353
|
+
}
|
|
354
|
+
/**
|
|
355
|
+
* 本接口(BindDevices)用于网关设备批量绑定子设备
|
|
356
|
+
*/
|
|
357
|
+
async BindDevices(req, cb) {
|
|
358
|
+
return this.request("BindDevices", req, cb);
|
|
359
|
+
}
|
|
360
|
+
/**
|
|
361
|
+
* 本接口(CreateTaskFileUrl)用于获取产品级任务文件上传链接
|
|
362
|
+
*/
|
|
363
|
+
async CreateTaskFileUrl(req, cb) {
|
|
364
|
+
return this.request("CreateTaskFileUrl", req, cb);
|
|
365
|
+
}
|
|
366
|
+
/**
|
|
367
|
+
* 本接口(UnbindDevices)用于网关设备批量解绑子设备
|
|
368
|
+
*/
|
|
369
|
+
async UnbindDevices(req, cb) {
|
|
370
|
+
return this.request("UnbindDevices", req, cb);
|
|
371
|
+
}
|
|
144
372
|
/**
|
|
145
373
|
* 查询私有化CA信息
|
|
146
374
|
*/
|
|
147
375
|
async DescribePrivateCA(req, cb) {
|
|
148
376
|
return this.request("DescribePrivateCA", req, cb);
|
|
149
377
|
}
|
|
378
|
+
/**
|
|
379
|
+
* 本接口(DescribeProductTasks)用于查看产品级别的任务列表
|
|
380
|
+
*/
|
|
381
|
+
async DescribeProductTasks(req, cb) {
|
|
382
|
+
return this.request("DescribeProductTasks", req, cb);
|
|
383
|
+
}
|
|
150
384
|
/**
|
|
151
385
|
* 本接口(DescribeDevices)用于查询物联网通信设备的设备列表。
|
|
152
386
|
*/
|
|
@@ -154,16 +388,40 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
154
388
|
return this.request("DescribeDevices", req, cb);
|
|
155
389
|
}
|
|
156
390
|
/**
|
|
157
|
-
*
|
|
391
|
+
* 本接口(DisableTopicRule)用于禁用规则
|
|
158
392
|
*/
|
|
159
|
-
async
|
|
160
|
-
return this.request("
|
|
393
|
+
async DisableTopicRule(req, cb) {
|
|
394
|
+
return this.request("DisableTopicRule", req, cb);
|
|
161
395
|
}
|
|
162
396
|
/**
|
|
163
|
-
*
|
|
397
|
+
* 本接口(UpdateDeviceShadow)用于更新虚拟设备信息。
|
|
164
398
|
*/
|
|
165
|
-
async
|
|
166
|
-
return this.request("
|
|
399
|
+
async UpdateDeviceShadow(req, cb) {
|
|
400
|
+
return this.request("UpdateDeviceShadow", req, cb);
|
|
401
|
+
}
|
|
402
|
+
/**
|
|
403
|
+
* 查询固件升级任务列表
|
|
404
|
+
*/
|
|
405
|
+
async DescribeFirmwareTasks(req, cb) {
|
|
406
|
+
return this.request("DescribeFirmwareTasks", req, cb);
|
|
407
|
+
}
|
|
408
|
+
/**
|
|
409
|
+
* 本接口(DescribeProductResources)用于查询产品资源列表。
|
|
410
|
+
*/
|
|
411
|
+
async DescribeProductResources(req, cb) {
|
|
412
|
+
return this.request("DescribeProductResources", req, cb);
|
|
413
|
+
}
|
|
414
|
+
/**
|
|
415
|
+
* 本接口(DeleteDeviceResource)用于删除设备资源
|
|
416
|
+
*/
|
|
417
|
+
async DeleteDeviceResource(req, cb) {
|
|
418
|
+
return this.request("DeleteDeviceResource", req, cb);
|
|
419
|
+
}
|
|
420
|
+
/**
|
|
421
|
+
* 查询私有CA证书列表
|
|
422
|
+
*/
|
|
423
|
+
async DescribePrivateCAs(req, cb) {
|
|
424
|
+
return this.request("DescribePrivateCAs", req, cb);
|
|
167
425
|
}
|
|
168
426
|
/**
|
|
169
427
|
* 本接口(UpdateDevicePSK)用于更新设备的PSK
|
|
@@ -171,5 +429,11 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
171
429
|
async UpdateDevicePSK(req, cb) {
|
|
172
430
|
return this.request("UpdateDevicePSK", req, cb);
|
|
173
431
|
}
|
|
432
|
+
/**
|
|
433
|
+
* 本接口(DeleteTopicRule)用于删除规则
|
|
434
|
+
*/
|
|
435
|
+
async DeleteTopicRule(req, cb) {
|
|
436
|
+
return this.request("DeleteTopicRule", req, cb);
|
|
437
|
+
}
|
|
174
438
|
}
|
|
175
439
|
exports.Client = Client;
|