tencentcloud-sdk-nodejs 4.1.252 → 4.1.253
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/es/common/sdk_version.js +1 -1
- package/es/services/bi/v20220105/bi_client.js +19 -4
- package/es/services/iss/v20230517/iss_client.js +10 -37
- package/es/services/tdmysql/v20211122/tdmysql_client.js +34 -4
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ags/v20250920/ags_models.d.ts +5 -0
- package/tencentcloud/services/bi/v20220105/bi_client.d.ts +25 -5
- package/tencentcloud/services/bi/v20220105/bi_client.js +36 -6
- package/tencentcloud/services/bi/v20220105/bi_models.d.ts +358 -33
- package/tencentcloud/services/iss/v20230517/iss_client.d.ts +11 -47
- package/tencentcloud/services/iss/v20230517/iss_client.js +15 -69
- package/tencentcloud/services/iss/v20230517/iss_models.d.ts +243 -776
- package/tencentcloud/services/tdmysql/v20211122/tdmysql_client.d.ts +45 -5
- package/tencentcloud/services/tdmysql/v20211122/tdmysql_client.js +66 -6
- package/tencentcloud/services/tdmysql/v20211122/tdmysql_models.d.ts +646 -122
|
@@ -39,12 +39,6 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
39
39
|
async UpdateDeviceStatus(req, cb) {
|
|
40
40
|
return this.request("UpdateDeviceStatus", req, cb);
|
|
41
41
|
}
|
|
42
|
-
/**
|
|
43
|
-
* 用于修改网关信息(支持对网关名称和描述的修改)。
|
|
44
|
-
*/
|
|
45
|
-
async UpdateGateway(req, cb) {
|
|
46
|
-
return this.request("UpdateGateway", req, cb);
|
|
47
|
-
}
|
|
48
42
|
/**
|
|
49
43
|
* 用于查询取回任务列表
|
|
50
44
|
*/
|
|
@@ -88,12 +82,6 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
88
82
|
async DescribeRecordSlice(req, cb) {
|
|
89
83
|
return this.request("DescribeRecordSlice", req, cb);
|
|
90
84
|
}
|
|
91
|
-
/**
|
|
92
|
-
* 用于查询网关接入协议。
|
|
93
|
-
*/
|
|
94
|
-
async DescribeGatewayProtocol(req, cb) {
|
|
95
|
-
return this.request("DescribeGatewayProtocol", req, cb);
|
|
96
|
-
}
|
|
97
85
|
/**
|
|
98
86
|
* 用于查询录像上云模板详情。
|
|
99
87
|
*/
|
|
@@ -101,10 +89,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
101
89
|
return this.request("DescribeRecordBackupTemplate", req, cb);
|
|
102
90
|
}
|
|
103
91
|
/**
|
|
104
|
-
*
|
|
92
|
+
* 用于修改录像上云模板。
|
|
105
93
|
*/
|
|
106
|
-
async
|
|
107
|
-
return this.request("
|
|
94
|
+
async UpdateRecordBackupTemplate(req, cb) {
|
|
95
|
+
return this.request("UpdateRecordBackupTemplate", req, cb);
|
|
108
96
|
}
|
|
109
97
|
/**
|
|
110
98
|
* 用于批量查询设备详细信息。
|
|
@@ -125,16 +113,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
125
113
|
return this.request("CreateVideoDownloadTask", req, cb);
|
|
126
114
|
}
|
|
127
115
|
/**
|
|
128
|
-
*
|
|
129
|
-
*/
|
|
130
|
-
async DescribeGatewayVersion(req, cb) {
|
|
131
|
-
return this.request("DescribeGatewayVersion", req, cb);
|
|
132
|
-
}
|
|
133
|
-
/**
|
|
134
|
-
* 用于查询任务的子任务列表
|
|
116
|
+
* 查询禁播通道列表
|
|
135
117
|
*/
|
|
136
|
-
async
|
|
137
|
-
return this.request("
|
|
118
|
+
async QueryForbidPlayChannelList(req, cb) {
|
|
119
|
+
return this.request("QueryForbidPlayChannelList", req, cb);
|
|
138
120
|
}
|
|
139
121
|
/**
|
|
140
122
|
* 用于查询用户下所有实时上云计划中的通道列表
|
|
@@ -166,12 +148,6 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
166
148
|
async BatchDeleteVideoDownloadTask(req, cb) {
|
|
167
149
|
return this.request("BatchDeleteVideoDownloadTask", req, cb);
|
|
168
150
|
}
|
|
169
|
-
/**
|
|
170
|
-
* 用于查询实时上云计划列表
|
|
171
|
-
*/
|
|
172
|
-
async ListRecordPlans(req, cb) {
|
|
173
|
-
return this.request("ListRecordPlans", req, cb);
|
|
174
|
-
}
|
|
175
151
|
/**
|
|
176
152
|
* 用于查询录像上云计划详情。
|
|
177
153
|
*/
|
|
@@ -196,12 +172,6 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
196
172
|
async DescribeUserDevice(req, cb) {
|
|
197
173
|
return this.request("DescribeUserDevice", req, cb);
|
|
198
174
|
}
|
|
199
|
-
/**
|
|
200
|
-
* 查询禁播通道列表
|
|
201
|
-
*/
|
|
202
|
-
async QueryForbidPlayChannelList(req, cb) {
|
|
203
|
-
return this.request("QueryForbidPlayChannelList", req, cb);
|
|
204
|
-
}
|
|
205
175
|
/**
|
|
206
176
|
* 获取设备抓拍结果列表
|
|
207
177
|
*/
|
|
@@ -328,12 +298,6 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
328
298
|
async UpdateRecordPlan(req, cb) {
|
|
329
299
|
return this.request("UpdateRecordPlan", req, cb);
|
|
330
300
|
}
|
|
331
|
-
/**
|
|
332
|
-
* 用于获取网关详情。
|
|
333
|
-
*/
|
|
334
|
-
async DescribeGateway(req, cb) {
|
|
335
|
-
return this.request("DescribeGateway", req, cb);
|
|
336
|
-
}
|
|
337
301
|
/**
|
|
338
302
|
* 用于修改组织。
|
|
339
303
|
*/
|
|
@@ -442,12 +406,6 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
442
406
|
async ListRecordPlanDevices(req, cb) {
|
|
443
407
|
return this.request("ListRecordPlanDevices", req, cb);
|
|
444
408
|
}
|
|
445
|
-
/**
|
|
446
|
-
* 用于网关升级(支持对所有待更新的服务一键升级)。
|
|
447
|
-
*/
|
|
448
|
-
async UpgradeGateway(req, cb) {
|
|
449
|
-
return this.request("UpgradeGateway", req, cb);
|
|
450
|
-
}
|
|
451
409
|
/**
|
|
452
410
|
* 用于设置推拉流鉴权配置。
|
|
453
411
|
*/
|
|
@@ -472,12 +430,6 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
472
430
|
async AddRecordBackupPlan(req, cb) {
|
|
473
431
|
return this.request("AddRecordBackupPlan", req, cb);
|
|
474
432
|
}
|
|
475
|
-
/**
|
|
476
|
-
* 用于查询推拉流鉴权配置。
|
|
477
|
-
*/
|
|
478
|
-
async DescribeStreamAuth(req, cb) {
|
|
479
|
-
return this.request("DescribeStreamAuth", req, cb);
|
|
480
|
-
}
|
|
481
433
|
/**
|
|
482
434
|
* 用于查询设备本地录像时间轴信息,为NVR/IPC本地存储的录像。
|
|
483
435
|
*/
|
|
@@ -485,10 +437,10 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
485
437
|
return this.request("ControlRecordTimeline", req, cb);
|
|
486
438
|
}
|
|
487
439
|
/**
|
|
488
|
-
*
|
|
440
|
+
* 用于查询任务的子任务列表
|
|
489
441
|
*/
|
|
490
|
-
async
|
|
491
|
-
return this.request("
|
|
442
|
+
async ListSubTasks(req, cb) {
|
|
443
|
+
return this.request("ListSubTasks", req, cb);
|
|
492
444
|
}
|
|
493
445
|
/**
|
|
494
446
|
* 用于删除录像上云模板。
|
|
@@ -497,22 +449,16 @@ class Client extends abstract_client_1.AbstractClient {
|
|
|
497
449
|
return this.request("DeleteRecordBackupPlan", req, cb);
|
|
498
450
|
}
|
|
499
451
|
/**
|
|
500
|
-
*
|
|
501
|
-
*/
|
|
502
|
-
async DeleteGateway(req, cb) {
|
|
503
|
-
return this.request("DeleteGateway", req, cb);
|
|
504
|
-
}
|
|
505
|
-
/**
|
|
506
|
-
* 用于修改录像上云模板。
|
|
452
|
+
* 用于查询推拉流鉴权配置。
|
|
507
453
|
*/
|
|
508
|
-
async
|
|
509
|
-
return this.request("
|
|
454
|
+
async DescribeStreamAuth(req, cb) {
|
|
455
|
+
return this.request("DescribeStreamAuth", req, cb);
|
|
510
456
|
}
|
|
511
457
|
/**
|
|
512
|
-
*
|
|
458
|
+
* 用于查询实时上云计划列表
|
|
513
459
|
*/
|
|
514
|
-
async
|
|
515
|
-
return this.request("
|
|
460
|
+
async ListRecordPlans(req, cb) {
|
|
461
|
+
return this.request("ListRecordPlans", req, cb);
|
|
516
462
|
}
|
|
517
463
|
/**
|
|
518
464
|
* 用于删除域名。
|