tencentcloud-sdk-nodejs 4.0.673 → 4.0.674
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 +145 -0
- package/SERVICE_CHANGELOG.md +452 -729
- package/package.json +1 -1
- package/products.md +13 -13
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +17 -17
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +22 -17
- package/src/services/iss/v20230517/iss_client.ts +64 -11
- package/src/services/iss/v20230517/iss_models.ts +381 -86
- package/src/services/live/v20180801/live_models.ts +4 -4
- package/src/services/tione/v20211111/tione_client.ts +2 -1
- package/src/services/tione/v20211111/tione_models.ts +94 -54
- package/src/services/trtc/v20190722/trtc_client.ts +84 -6
- package/src/services/trtc/v20190722/trtc_models.ts +292 -92
- package/src/services/waf/v20180125/waf_client.ts +42 -6
- package/src/services/waf/v20180125/waf_models.ts +191 -56
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +17 -17
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +17 -17
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +22 -17
- package/tencentcloud/services/iss/v20230517/iss_client.d.ts +19 -3
- package/tencentcloud/services/iss/v20230517/iss_client.js +27 -3
- package/tencentcloud/services/iss/v20230517/iss_models.d.ts +368 -86
- package/tencentcloud/services/live/v20180801/live_models.d.ts +4 -4
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +93 -54
- package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +44 -1
- package/tencentcloud/services/trtc/v20190722/trtc_client.js +51 -0
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +281 -92
- package/tencentcloud/services/waf/v20180125/waf_client.d.ts +13 -1
- package/tencentcloud/services/waf/v20180125/waf_client.js +18 -0
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +184 -55
- package/test/iss.v20230517.test.js +42 -2
- package/test/trtc.v20190722.test.js +40 -0
- package/test/waf.v20180125.test.js +30 -0
|
@@ -203,6 +203,28 @@ export interface DescribeDevicePresetData {
|
|
|
203
203
|
Name?: string
|
|
204
204
|
}
|
|
205
205
|
|
|
206
|
+
/**
|
|
207
|
+
* ListSubTasks请求参数结构体
|
|
208
|
+
*/
|
|
209
|
+
export interface ListSubTasksRequest {
|
|
210
|
+
/**
|
|
211
|
+
* 复杂任务ID
|
|
212
|
+
*/
|
|
213
|
+
TaskId: string
|
|
214
|
+
/**
|
|
215
|
+
* 页码,默认为1
|
|
216
|
+
*/
|
|
217
|
+
PageNumber?: number
|
|
218
|
+
/**
|
|
219
|
+
* 每页数量,默认为10
|
|
220
|
+
*/
|
|
221
|
+
PageSize?: number
|
|
222
|
+
/**
|
|
223
|
+
* 默认不对该字段进行筛选,否则根据任务状态进行筛选。状态码:1-NEW,2-RUNNING,3-COMPLETED,4-FAILED
|
|
224
|
+
*/
|
|
225
|
+
Status?: number
|
|
226
|
+
}
|
|
227
|
+
|
|
206
228
|
/**
|
|
207
229
|
* 查询网关监控信息返回结果
|
|
208
230
|
*/
|
|
@@ -358,6 +380,57 @@ export interface CheckDomainResponse {
|
|
|
358
380
|
RequestId?: string
|
|
359
381
|
}
|
|
360
382
|
|
|
383
|
+
/**
|
|
384
|
+
* 子任务详情
|
|
385
|
+
*/
|
|
386
|
+
export interface SubTaskData {
|
|
387
|
+
/**
|
|
388
|
+
* 子任务ID
|
|
389
|
+
*/
|
|
390
|
+
SubTaskId?: string
|
|
391
|
+
/**
|
|
392
|
+
* 任务状态1:NEW,2:RUNNING,3:COMPLETED ,4:FAILED
|
|
393
|
+
*/
|
|
394
|
+
Status?: number
|
|
395
|
+
/**
|
|
396
|
+
* 任务失败原因
|
|
397
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
398
|
+
*/
|
|
399
|
+
FailReason?: string
|
|
400
|
+
/**
|
|
401
|
+
* 任务进度
|
|
402
|
+
*/
|
|
403
|
+
Progress?: number
|
|
404
|
+
/**
|
|
405
|
+
* 操作类型
|
|
406
|
+
*/
|
|
407
|
+
Action?: string
|
|
408
|
+
/**
|
|
409
|
+
* 操作类型中文描述
|
|
410
|
+
*/
|
|
411
|
+
ActionZhDesc?: string
|
|
412
|
+
/**
|
|
413
|
+
* 资源ID
|
|
414
|
+
*/
|
|
415
|
+
ResourceId?: string
|
|
416
|
+
/**
|
|
417
|
+
* 启动任务时间
|
|
418
|
+
*/
|
|
419
|
+
StartedAt?: string
|
|
420
|
+
/**
|
|
421
|
+
* 创建任务时间
|
|
422
|
+
*/
|
|
423
|
+
CreatedAt?: string
|
|
424
|
+
/**
|
|
425
|
+
* 更新任务时间
|
|
426
|
+
*/
|
|
427
|
+
UpdatedAt?: string
|
|
428
|
+
/**
|
|
429
|
+
* 任务运行时间,单位ms
|
|
430
|
+
*/
|
|
431
|
+
Runtime?: number
|
|
432
|
+
}
|
|
433
|
+
|
|
361
434
|
/**
|
|
362
435
|
* DescribeCNAME返回参数结构体
|
|
363
436
|
*/
|
|
@@ -508,21 +581,17 @@ export interface AddOrganizationResponse {
|
|
|
508
581
|
}
|
|
509
582
|
|
|
510
583
|
/**
|
|
511
|
-
*
|
|
584
|
+
* BatchOperateDevice返回参数结构体
|
|
512
585
|
*/
|
|
513
|
-
export interface
|
|
514
|
-
/**
|
|
515
|
-
* 模板ID
|
|
516
|
-
*/
|
|
517
|
-
TemplateId?: string
|
|
586
|
+
export interface BatchOperateDeviceResponse {
|
|
518
587
|
/**
|
|
519
|
-
*
|
|
588
|
+
* 返回结果
|
|
520
589
|
*/
|
|
521
|
-
|
|
590
|
+
Data?: BatchOperateDeviceData
|
|
522
591
|
/**
|
|
523
|
-
*
|
|
592
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
524
593
|
*/
|
|
525
|
-
|
|
594
|
+
RequestId?: string
|
|
526
595
|
}
|
|
527
596
|
|
|
528
597
|
/**
|
|
@@ -718,6 +787,16 @@ export interface DescribeOrganizationResponse {
|
|
|
718
787
|
RequestId?: string
|
|
719
788
|
}
|
|
720
789
|
|
|
790
|
+
/**
|
|
791
|
+
* UpgradeGateway返回参数结构体
|
|
792
|
+
*/
|
|
793
|
+
export interface UpgradeGatewayResponse {
|
|
794
|
+
/**
|
|
795
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
796
|
+
*/
|
|
797
|
+
RequestId?: string
|
|
798
|
+
}
|
|
799
|
+
|
|
721
800
|
/**
|
|
722
801
|
* UpdateUserDevice请求参数结构体
|
|
723
802
|
*/
|
|
@@ -952,6 +1031,77 @@ export interface ListRecordBackupPlanDevicesData {
|
|
|
952
1031
|
List?: RecordPlanChannelInfo
|
|
953
1032
|
}
|
|
954
1033
|
|
|
1034
|
+
/**
|
|
1035
|
+
* 查询复杂任务详情返回结果
|
|
1036
|
+
*/
|
|
1037
|
+
export interface TaskData {
|
|
1038
|
+
/**
|
|
1039
|
+
* 任务ID
|
|
1040
|
+
*/
|
|
1041
|
+
TaskId?: string
|
|
1042
|
+
/**
|
|
1043
|
+
* 任务状态1:NEW,2:RUNNING,3:COMPLETED ,4:FAILED
|
|
1044
|
+
*/
|
|
1045
|
+
Status?: number
|
|
1046
|
+
/**
|
|
1047
|
+
* 失败原因
|
|
1048
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1049
|
+
*/
|
|
1050
|
+
FailReason?: string
|
|
1051
|
+
/**
|
|
1052
|
+
* 进度(0-1)
|
|
1053
|
+
*/
|
|
1054
|
+
Progress?: number
|
|
1055
|
+
/**
|
|
1056
|
+
* 任务操作类型,批量任务类型以Batch开头
|
|
1057
|
+
*/
|
|
1058
|
+
Action?: string
|
|
1059
|
+
/**
|
|
1060
|
+
* 操作类型中文描述
|
|
1061
|
+
*/
|
|
1062
|
+
ActionZhDesc?: string
|
|
1063
|
+
/**
|
|
1064
|
+
* 任务类型 1.简单 2.复杂 3.子任务
|
|
1065
|
+
*/
|
|
1066
|
+
TaskType?: number
|
|
1067
|
+
/**
|
|
1068
|
+
* 任务资源id(复杂任务该字段无效)
|
|
1069
|
+
*/
|
|
1070
|
+
ResourceId?: string
|
|
1071
|
+
/**
|
|
1072
|
+
* 总任务数(仅复杂任务有效)
|
|
1073
|
+
*/
|
|
1074
|
+
Total?: number
|
|
1075
|
+
/**
|
|
1076
|
+
* 成功任务数(仅复杂任务有效)
|
|
1077
|
+
*/
|
|
1078
|
+
SuccessCount?: number
|
|
1079
|
+
/**
|
|
1080
|
+
* 失败任务数(仅复杂任务有效)
|
|
1081
|
+
*/
|
|
1082
|
+
FailCount?: number
|
|
1083
|
+
/**
|
|
1084
|
+
* 运行任务数(仅复杂任务有效)
|
|
1085
|
+
*/
|
|
1086
|
+
RunningCount?: number
|
|
1087
|
+
/**
|
|
1088
|
+
* 启动任务时间
|
|
1089
|
+
*/
|
|
1090
|
+
StartedAt?: string
|
|
1091
|
+
/**
|
|
1092
|
+
* 创建任务时间
|
|
1093
|
+
*/
|
|
1094
|
+
CreatedAt?: string
|
|
1095
|
+
/**
|
|
1096
|
+
* 更新任务时间
|
|
1097
|
+
*/
|
|
1098
|
+
UpdatedAt?: string
|
|
1099
|
+
/**
|
|
1100
|
+
* 任务运行时间,单位ms
|
|
1101
|
+
*/
|
|
1102
|
+
Runtime?: number
|
|
1103
|
+
}
|
|
1104
|
+
|
|
955
1105
|
/**
|
|
956
1106
|
* DescribeGateway请求参数结构体
|
|
957
1107
|
*/
|
|
@@ -1201,13 +1351,21 @@ export interface FaceMaskAIResultInfo {
|
|
|
1201
1351
|
}
|
|
1202
1352
|
|
|
1203
1353
|
/**
|
|
1204
|
-
*
|
|
1354
|
+
* 抽烟识别结果详情
|
|
1205
1355
|
*/
|
|
1206
|
-
export interface
|
|
1356
|
+
export interface SmokingAIResultInfo {
|
|
1207
1357
|
/**
|
|
1208
|
-
*
|
|
1358
|
+
* 时间字符串
|
|
1209
1359
|
*/
|
|
1210
|
-
|
|
1360
|
+
Time?: string
|
|
1361
|
+
/**
|
|
1362
|
+
* 截图 URL
|
|
1363
|
+
*/
|
|
1364
|
+
Url?: string
|
|
1365
|
+
/**
|
|
1366
|
+
* 抽烟信息
|
|
1367
|
+
*/
|
|
1368
|
+
SmokingInfo?: Array<BaseAIResultInfo>
|
|
1211
1369
|
}
|
|
1212
1370
|
|
|
1213
1371
|
/**
|
|
@@ -1392,6 +1550,20 @@ export interface SnapshotConfig {
|
|
|
1392
1550
|
OperTimeSlot: Array<OperTimeSlot>
|
|
1393
1551
|
}
|
|
1394
1552
|
|
|
1553
|
+
/**
|
|
1554
|
+
* ListSubTasks返回参数结构体
|
|
1555
|
+
*/
|
|
1556
|
+
export interface ListSubTasksResponse {
|
|
1557
|
+
/**
|
|
1558
|
+
* 返回数据
|
|
1559
|
+
*/
|
|
1560
|
+
Data?: ListSubTasksData
|
|
1561
|
+
/**
|
|
1562
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1563
|
+
*/
|
|
1564
|
+
RequestId?: string
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1395
1567
|
/**
|
|
1396
1568
|
* ListAITasks请求参数结构体
|
|
1397
1569
|
*/
|
|
@@ -1892,6 +2064,17 @@ export interface RecordRetrieveTaskChannelInfo {
|
|
|
1892
2064
|
*/
|
|
1893
2065
|
export type DescribeDomainRequest = null
|
|
1894
2066
|
|
|
2067
|
+
/**
|
|
2068
|
+
* 批量操作设备返回结果
|
|
2069
|
+
*/
|
|
2070
|
+
export interface BatchOperateDeviceData {
|
|
2071
|
+
/**
|
|
2072
|
+
* 任务 ID(用于在查询任务的子任务列表接口ListSubTasks中查询任务进度)
|
|
2073
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2074
|
+
*/
|
|
2075
|
+
TaskId?: string
|
|
2076
|
+
}
|
|
2077
|
+
|
|
1895
2078
|
/**
|
|
1896
2079
|
* 云录像回放url
|
|
1897
2080
|
*/
|
|
@@ -1916,6 +2099,20 @@ export interface ListOrganizationChannelNumbersData {
|
|
|
1916
2099
|
NotInPlanCount?: number
|
|
1917
2100
|
}
|
|
1918
2101
|
|
|
2102
|
+
/**
|
|
2103
|
+
* 列举子任务列表
|
|
2104
|
+
*/
|
|
2105
|
+
export interface ListSubTasksData {
|
|
2106
|
+
/**
|
|
2107
|
+
* 子任务列表
|
|
2108
|
+
*/
|
|
2109
|
+
List?: Array<SubTaskData>
|
|
2110
|
+
/**
|
|
2111
|
+
* 子任务数量
|
|
2112
|
+
*/
|
|
2113
|
+
TotalCount?: number
|
|
2114
|
+
}
|
|
2115
|
+
|
|
1919
2116
|
/**
|
|
1920
2117
|
* ListRecordPlanDevices请求参数结构体
|
|
1921
2118
|
*/
|
|
@@ -1949,6 +2146,20 @@ export interface ListRecordPlanDevicesRequest {
|
|
|
1949
2146
|
OrganizationName?: string
|
|
1950
2147
|
}
|
|
1951
2148
|
|
|
2149
|
+
/**
|
|
2150
|
+
* ListTasks返回参数结构体
|
|
2151
|
+
*/
|
|
2152
|
+
export interface ListTasksResponse {
|
|
2153
|
+
/**
|
|
2154
|
+
* 返回数据
|
|
2155
|
+
*/
|
|
2156
|
+
Data?: ListTasksData
|
|
2157
|
+
/**
|
|
2158
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2159
|
+
*/
|
|
2160
|
+
RequestId?: string
|
|
2161
|
+
}
|
|
2162
|
+
|
|
1952
2163
|
/**
|
|
1953
2164
|
* AddStreamAuth返回参数结构体
|
|
1954
2165
|
*/
|
|
@@ -3094,43 +3305,25 @@ export interface ListGatewaysRequest {
|
|
|
3094
3305
|
}
|
|
3095
3306
|
|
|
3096
3307
|
/**
|
|
3097
|
-
*
|
|
3308
|
+
* ListTasks请求参数结构体
|
|
3098
3309
|
*/
|
|
3099
|
-
export interface
|
|
3100
|
-
/**
|
|
3101
|
-
* 上云计划ID
|
|
3102
|
-
*/
|
|
3103
|
-
PlanId?: string
|
|
3310
|
+
export interface ListTasksRequest {
|
|
3104
3311
|
/**
|
|
3105
|
-
*
|
|
3106
|
-
*/
|
|
3107
|
-
PlanName?: string
|
|
3108
|
-
/**
|
|
3109
|
-
* 上云模板ID
|
|
3312
|
+
* 页码,默认为1
|
|
3110
3313
|
*/
|
|
3111
|
-
|
|
3314
|
+
PageNumber?: number
|
|
3112
3315
|
/**
|
|
3113
|
-
*
|
|
3114
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3316
|
+
* 每页数量,默认为10
|
|
3115
3317
|
*/
|
|
3116
|
-
|
|
3117
|
-
/**
|
|
3118
|
-
* 码流类型,default:设备默认码流类型,main:主码流,sub:子码流,其他根据设备能力集自定义
|
|
3119
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3120
|
-
*/
|
|
3121
|
-
StreamType?: string
|
|
3318
|
+
PageSize?: number
|
|
3122
3319
|
/**
|
|
3123
|
-
*
|
|
3320
|
+
* 默认不根据该字段进行筛选,否则根据设备操作类型进行筛选,对应任务的Action字段,批量任务操作类型以Batch开头。目前值有:BatchDeleteUserDevice,BatchDisableDevice,BatchEnableDevice,DeleteUserDevice,DisableDevice,EnableDevice
|
|
3124
3321
|
*/
|
|
3125
|
-
|
|
3322
|
+
Operation?: string
|
|
3126
3323
|
/**
|
|
3127
|
-
*
|
|
3324
|
+
* 默认不根据该字段进行筛选,否则根据任务状态进行筛选。状态码:1-NEW,2-RUNNING,3-COMPLETED,4-FAILED
|
|
3128
3325
|
*/
|
|
3129
3326
|
Status?: number
|
|
3130
|
-
/**
|
|
3131
|
-
* 通道总数
|
|
3132
|
-
*/
|
|
3133
|
-
ChannelCount?: number
|
|
3134
3327
|
}
|
|
3135
3328
|
|
|
3136
3329
|
/**
|
|
@@ -3438,6 +3631,46 @@ export interface ListRecordRetrieveTasksResponse {
|
|
|
3438
3631
|
RequestId?: string
|
|
3439
3632
|
}
|
|
3440
3633
|
|
|
3634
|
+
/**
|
|
3635
|
+
* 实时上云计划基础信息
|
|
3636
|
+
*/
|
|
3637
|
+
export interface RecordPlanBaseInfo {
|
|
3638
|
+
/**
|
|
3639
|
+
* 上云计划ID
|
|
3640
|
+
*/
|
|
3641
|
+
PlanId?: string
|
|
3642
|
+
/**
|
|
3643
|
+
* 上云计划名称
|
|
3644
|
+
*/
|
|
3645
|
+
PlanName?: string
|
|
3646
|
+
/**
|
|
3647
|
+
* 上云模板ID
|
|
3648
|
+
*/
|
|
3649
|
+
TemplateId?: string
|
|
3650
|
+
/**
|
|
3651
|
+
* 上云计划描述
|
|
3652
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3653
|
+
*/
|
|
3654
|
+
Describe?: string
|
|
3655
|
+
/**
|
|
3656
|
+
* 码流类型,default:设备默认码流类型,main:主码流,sub:子码流,其他根据设备能力集自定义
|
|
3657
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3658
|
+
*/
|
|
3659
|
+
StreamType?: string
|
|
3660
|
+
/**
|
|
3661
|
+
* 云文件生命周期
|
|
3662
|
+
*/
|
|
3663
|
+
LifeCycle?: LifeCycleData
|
|
3664
|
+
/**
|
|
3665
|
+
* 录像计划状态,1:正常使用中,0:删除中,无法使用
|
|
3666
|
+
*/
|
|
3667
|
+
Status?: number
|
|
3668
|
+
/**
|
|
3669
|
+
* 通道总数
|
|
3670
|
+
*/
|
|
3671
|
+
ChannelCount?: number
|
|
3672
|
+
}
|
|
3673
|
+
|
|
3441
3674
|
/**
|
|
3442
3675
|
* ListRecordBackupPlanDevices请求参数结构体
|
|
3443
3676
|
*/
|
|
@@ -3753,6 +3986,20 @@ export interface UpdateRecordPlanResponse {
|
|
|
3753
3986
|
RequestId?: string
|
|
3754
3987
|
}
|
|
3755
3988
|
|
|
3989
|
+
/**
|
|
3990
|
+
* DescribeTask返回参数结构体
|
|
3991
|
+
*/
|
|
3992
|
+
export interface DescribeTaskResponse {
|
|
3993
|
+
/**
|
|
3994
|
+
* 任务详情
|
|
3995
|
+
*/
|
|
3996
|
+
Data?: TaskData
|
|
3997
|
+
/**
|
|
3998
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3999
|
+
*/
|
|
4000
|
+
RequestId?: string
|
|
4001
|
+
}
|
|
4002
|
+
|
|
3756
4003
|
/**
|
|
3757
4004
|
* 查询网关服务版本信息返回数据
|
|
3758
4005
|
*/
|
|
@@ -3999,6 +4246,14 @@ export interface ListGatewayDevicesRequest {
|
|
|
3999
4246
|
* 网关索引ID(从获取网关列表接口ListGateways中获取)
|
|
4000
4247
|
*/
|
|
4001
4248
|
GatewayId: string
|
|
4249
|
+
/**
|
|
4250
|
+
* 分页页数
|
|
4251
|
+
*/
|
|
4252
|
+
PageNumber?: number
|
|
4253
|
+
/**
|
|
4254
|
+
* 分页大小
|
|
4255
|
+
*/
|
|
4256
|
+
PageSize?: number
|
|
4002
4257
|
}
|
|
4003
4258
|
|
|
4004
4259
|
/**
|
|
@@ -4179,21 +4434,13 @@ export interface UpdateRecordPlanData {
|
|
|
4179
4434
|
}
|
|
4180
4435
|
|
|
4181
4436
|
/**
|
|
4182
|
-
*
|
|
4437
|
+
* DescribeTask请求参数结构体
|
|
4183
4438
|
*/
|
|
4184
|
-
export interface
|
|
4185
|
-
/**
|
|
4186
|
-
* 时间字符串
|
|
4187
|
-
*/
|
|
4188
|
-
Time?: string
|
|
4189
|
-
/**
|
|
4190
|
-
* 截图 URL
|
|
4191
|
-
*/
|
|
4192
|
-
Url?: string
|
|
4439
|
+
export interface DescribeTaskRequest {
|
|
4193
4440
|
/**
|
|
4194
|
-
*
|
|
4441
|
+
* 简单任务或复杂任务ID
|
|
4195
4442
|
*/
|
|
4196
|
-
|
|
4443
|
+
TaskId: string
|
|
4197
4444
|
}
|
|
4198
4445
|
|
|
4199
4446
|
/**
|
|
@@ -4394,44 +4641,17 @@ export interface DescribeDomainRegionResponse {
|
|
|
4394
4641
|
}
|
|
4395
4642
|
|
|
4396
4643
|
/**
|
|
4397
|
-
*
|
|
4644
|
+
* BatchOperateDevice请求参数结构体
|
|
4398
4645
|
*/
|
|
4399
|
-
export interface
|
|
4646
|
+
export interface BatchOperateDeviceRequest {
|
|
4400
4647
|
/**
|
|
4401
|
-
*
|
|
4402
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4403
|
-
*/
|
|
4404
|
-
TemplateId?: string
|
|
4405
|
-
/**
|
|
4406
|
-
* 模板名称
|
|
4407
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4408
|
-
*/
|
|
4409
|
-
TemplateName?: string
|
|
4410
|
-
/**
|
|
4411
|
-
* 上云时间段(按周进行设置,支持一天设置多个时间段,每个时间段不小于10分钟)
|
|
4412
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4413
|
-
*/
|
|
4414
|
-
TimeSections?: Array<RecordTemplateTimeSections>
|
|
4415
|
-
/**
|
|
4416
|
-
* 录像时间段(按周进行设置,支持一天设置多个时间段,每个时间段不小于10分钟)
|
|
4417
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4418
|
-
*/
|
|
4419
|
-
DevTimeSections?: Array<RecordTemplateTimeSections>
|
|
4420
|
-
/**
|
|
4421
|
-
* 上云倍速(支持1,2,4倍速)
|
|
4422
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4423
|
-
*/
|
|
4424
|
-
Scale?: number
|
|
4425
|
-
/**
|
|
4426
|
-
* 创建时间
|
|
4427
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4648
|
+
* 设备 ID 数组(从获取设备列表接口ListDevices中获取)
|
|
4428
4649
|
*/
|
|
4429
|
-
|
|
4650
|
+
DeviceIds: Array<string>
|
|
4430
4651
|
/**
|
|
4431
|
-
*
|
|
4432
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4652
|
+
* 操作命令(enable:启用;disable:禁用;delete:删除)
|
|
4433
4653
|
*/
|
|
4434
|
-
|
|
4654
|
+
Cmd: string
|
|
4435
4655
|
}
|
|
4436
4656
|
|
|
4437
4657
|
/**
|
|
@@ -4487,6 +4707,22 @@ export interface AddRecordBackupPlanRequest {
|
|
|
4487
4707
|
OrganizationId?: Array<string>
|
|
4488
4708
|
}
|
|
4489
4709
|
|
|
4710
|
+
/**
|
|
4711
|
+
* 查询任务列表
|
|
4712
|
+
*/
|
|
4713
|
+
export interface ListTasksData {
|
|
4714
|
+
/**
|
|
4715
|
+
* 任务列表
|
|
4716
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4717
|
+
*/
|
|
4718
|
+
List?: Array<TaskData>
|
|
4719
|
+
/**
|
|
4720
|
+
* 任务数量
|
|
4721
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4722
|
+
*/
|
|
4723
|
+
TotalCount?: number
|
|
4724
|
+
}
|
|
4725
|
+
|
|
4490
4726
|
/**
|
|
4491
4727
|
* 获取开流地址返回数据
|
|
4492
4728
|
*/
|
|
@@ -4508,6 +4744,24 @@ export interface ControlDeviceStreamData {
|
|
|
4508
4744
|
Rtmp?: string
|
|
4509
4745
|
}
|
|
4510
4746
|
|
|
4747
|
+
/**
|
|
4748
|
+
* 实时上云模板信息数据
|
|
4749
|
+
*/
|
|
4750
|
+
export interface RecordTemplateInfo {
|
|
4751
|
+
/**
|
|
4752
|
+
* 模板ID
|
|
4753
|
+
*/
|
|
4754
|
+
TemplateId?: string
|
|
4755
|
+
/**
|
|
4756
|
+
* 模板名称
|
|
4757
|
+
*/
|
|
4758
|
+
TemplateName?: string
|
|
4759
|
+
/**
|
|
4760
|
+
* 上云时间段,按周进行设置,支持一天设置多个时间段,每个时间段不小于10分钟
|
|
4761
|
+
*/
|
|
4762
|
+
TimeSections?: Array<RecordTemplateTimeSections>
|
|
4763
|
+
}
|
|
4764
|
+
|
|
4511
4765
|
/**
|
|
4512
4766
|
* UpdateRecordBackupTemplate请求参数结构体
|
|
4513
4767
|
*/
|
|
@@ -4708,6 +4962,47 @@ export interface DescribeRecordRetrieveTaskResponse {
|
|
|
4708
4962
|
*/
|
|
4709
4963
|
export type DescribeStreamAuthRequest = null
|
|
4710
4964
|
|
|
4965
|
+
/**
|
|
4966
|
+
* 修改录像上云模版返回数据
|
|
4967
|
+
*/
|
|
4968
|
+
export interface UpdateRecordBackupTemplateData {
|
|
4969
|
+
/**
|
|
4970
|
+
* 模板ID
|
|
4971
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4972
|
+
*/
|
|
4973
|
+
TemplateId?: string
|
|
4974
|
+
/**
|
|
4975
|
+
* 模板名称
|
|
4976
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4977
|
+
*/
|
|
4978
|
+
TemplateName?: string
|
|
4979
|
+
/**
|
|
4980
|
+
* 上云时间段(按周进行设置,支持一天设置多个时间段,每个时间段不小于10分钟)
|
|
4981
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4982
|
+
*/
|
|
4983
|
+
TimeSections?: Array<RecordTemplateTimeSections>
|
|
4984
|
+
/**
|
|
4985
|
+
* 录像时间段(按周进行设置,支持一天设置多个时间段,每个时间段不小于10分钟)
|
|
4986
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4987
|
+
*/
|
|
4988
|
+
DevTimeSections?: Array<RecordTemplateTimeSections>
|
|
4989
|
+
/**
|
|
4990
|
+
* 上云倍速(支持1,2,4倍速)
|
|
4991
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4992
|
+
*/
|
|
4993
|
+
Scale?: number
|
|
4994
|
+
/**
|
|
4995
|
+
* 创建时间
|
|
4996
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4997
|
+
*/
|
|
4998
|
+
CreateAt?: string
|
|
4999
|
+
/**
|
|
5000
|
+
* 更新时间
|
|
5001
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5002
|
+
*/
|
|
5003
|
+
UpdateAt?: string
|
|
5004
|
+
}
|
|
5005
|
+
|
|
4711
5006
|
/**
|
|
4712
5007
|
* 修改录像上云计划返回数据
|
|
4713
5008
|
*/
|
|
@@ -2844,7 +2844,7 @@ export interface AddDelayLiveStreamRequest {
|
|
|
2844
2844
|
* 延播设置的过期时间。UTC 格式,例如:2018-11-29T19:00:00Z。
|
|
2845
2845
|
注意:
|
|
2846
2846
|
1. 默认7天后过期,且最长支持7天内生效。
|
|
2847
|
-
2. 北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/
|
|
2847
|
+
2. 北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/267/38543#I)。
|
|
2848
2848
|
*/
|
|
2849
2849
|
ExpireTime?: string
|
|
2850
2850
|
}
|
|
@@ -3001,7 +3001,7 @@ SourceType为点播(PullVodPushLive)可以填多个,上限30个。
|
|
|
3001
3001
|
* 开始时间。
|
|
3002
3002
|
使用UTC格式时间,
|
|
3003
3003
|
例如:2019-01-08T10:00:00Z。
|
|
3004
|
-
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/
|
|
3004
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/267/38543#I)。
|
|
3005
3005
|
*/
|
|
3006
3006
|
StartTime?: string
|
|
3007
3007
|
/**
|
|
@@ -3011,7 +3011,7 @@ SourceType为点播(PullVodPushLive)可以填多个,上限30个。
|
|
|
3011
3011
|
3. 结束时间 和 开始时间 间隔必须小于七天。
|
|
3012
3012
|
使用UTC格式时间,
|
|
3013
3013
|
例如:2019-01-08T10:00:00Z。
|
|
3014
|
-
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/
|
|
3014
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/267/38543#I)。
|
|
3015
3015
|
*/
|
|
3016
3016
|
EndTime?: string
|
|
3017
3017
|
/**
|
|
@@ -7664,7 +7664,7 @@ export interface ForbidLiveStreamRequest {
|
|
|
7664
7664
|
* 恢复流的时间。UTC 格式,例如:2018-11-29T19:00:00Z。
|
|
7665
7665
|
注意:
|
|
7666
7666
|
1. 默认禁推7天,且最长支持禁推90天。
|
|
7667
|
-
2. 北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/
|
|
7667
|
+
2. 北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/267/38543#I)。
|
|
7668
7668
|
*/
|
|
7669
7669
|
ResumeTime?: string
|
|
7670
7670
|
/**
|
|
@@ -87,6 +87,7 @@ import {
|
|
|
87
87
|
DescribeAPIConfigsRequest,
|
|
88
88
|
DescribeModelServiceGroupsResponse,
|
|
89
89
|
DeleteBatchTaskRequest,
|
|
90
|
+
InferGatewayCallInfo,
|
|
90
91
|
DescribeTrainingModelsResponse,
|
|
91
92
|
DescribeBatchTaskInstancesResponse,
|
|
92
93
|
CreateNotebookRequest,
|
|
@@ -112,7 +113,7 @@ import {
|
|
|
112
113
|
DeleteTrainingModelResponse,
|
|
113
114
|
DescribeInferTemplatesResponse,
|
|
114
115
|
DescribeBillingSpecsRequest,
|
|
115
|
-
|
|
116
|
+
InferCodeInfo,
|
|
116
117
|
DescribeInferTemplatesRequest,
|
|
117
118
|
DeleteModelServiceGroupResponse,
|
|
118
119
|
GpuDetail,
|