tencentcloud-sdk-nodejs 4.0.256 → 4.0.257

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.
Files changed (44) hide show
  1. package/CHANGELOG.md +334 -109
  2. package/package.json +1 -1
  3. package/products.md +12 -12
  4. package/src/common/sdk_version.ts +1 -1
  5. package/src/services/antiddos/v20200309/antiddos_models.ts +15 -0
  6. package/src/services/cam/v20190116/cam_models.ts +1 -1
  7. package/src/services/cii/v20210408/cii_models.ts +6 -6
  8. package/src/services/cls/v20201016/cls_client.ts +6 -6
  9. package/src/services/cls/v20201016/cls_models.ts +1 -1
  10. package/src/services/dbbrain/v20210527/dbbrain_client.ts +14 -2
  11. package/src/services/dbbrain/v20210527/dbbrain_models.ts +100 -45
  12. package/src/services/eiam/v20210420/eiam_client.ts +230 -65
  13. package/src/services/eiam/v20210420/eiam_models.ts +1582 -816
  14. package/src/services/iotvideoindustry/v20201201/iotvideoindustry_client.ts +374 -56
  15. package/src/services/iotvideoindustry/v20201201/iotvideoindustry_models.ts +1526 -397
  16. package/src/services/live/v20180801/live_models.ts +12 -1
  17. package/src/services/thpc/v20211109/thpc_client.ts +2 -1
  18. package/src/services/thpc/v20211109/thpc_models.ts +29 -4
  19. package/src/services/tiw/v20190919/tiw_models.ts +2 -6
  20. package/src/services/vpc/v20170312/vpc_models.ts +15 -1
  21. package/tencentcloud/common/sdk_version.d.ts +1 -1
  22. package/tencentcloud/common/sdk_version.js +1 -1
  23. package/tencentcloud/services/antiddos/v20200309/antiddos_models.d.ts +12 -0
  24. package/tencentcloud/services/cam/v20190116/cam_models.d.ts +1 -1
  25. package/tencentcloud/services/cii/v20210408/cii_models.d.ts +6 -6
  26. package/tencentcloud/services/cls/v20201016/cls_client.d.ts +6 -6
  27. package/tencentcloud/services/cls/v20201016/cls_client.js +6 -6
  28. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +1 -1
  29. package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.d.ts +5 -1
  30. package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.js +6 -0
  31. package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +83 -37
  32. package/tencentcloud/services/eiam/v20210420/eiam_client.d.ts +57 -5
  33. package/tencentcloud/services/eiam/v20210420/eiam_client.js +84 -6
  34. package/tencentcloud/services/eiam/v20210420/eiam_models.d.ts +1348 -693
  35. package/tencentcloud/services/iotvideoindustry/v20201201/iotvideoindustry_client.d.ts +119 -15
  36. package/tencentcloud/services/iotvideoindustry/v20201201/iotvideoindustry_client.js +177 -21
  37. package/tencentcloud/services/iotvideoindustry/v20201201/iotvideoindustry_models.d.ts +1191 -221
  38. package/tencentcloud/services/live/v20180801/live_models.d.ts +11 -1
  39. package/tencentcloud/services/thpc/v20211109/thpc_models.d.ts +25 -4
  40. package/tencentcloud/services/tiw/v20190919/tiw_models.d.ts +2 -6
  41. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +14 -1
  42. package/test/dbbrain.v20210527.test.js +10 -0
  43. package/test/eiam.v20210420.test.js +134 -4
  44. package/test/iotvideoindustry.v20201201.test.js +274 -14
@@ -45,6 +45,42 @@ export interface ControlRecordStreamRequest {
45
45
  ChannelId?: string
46
46
  }
47
47
 
48
+ /**
49
+ * ModifySubscriptionStatus请求参数结构体
50
+ */
51
+ export interface ModifySubscriptionStatusRequest {
52
+ /**
53
+ * 设备ID
54
+ */
55
+ DeviceId: string
56
+
57
+ /**
58
+ * 订阅状态 1:关闭订阅 2:开启订阅
59
+ */
60
+ Status: number
61
+
62
+ /**
63
+ * 订阅类型 Alarm:告警订阅 Catalog:目录订阅 MobilePosition:移动位置订阅
64
+ */
65
+ SubscriptionItem?: string
66
+ }
67
+
68
+ /**
69
+ * CreateScene返回参数结构体
70
+ */
71
+ export interface CreateSceneResponse {
72
+ /**
73
+ * 场景ID
74
+ 注意:此字段可能返回 null,表示取不到有效值。
75
+ */
76
+ IntId: number
77
+
78
+ /**
79
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
80
+ */
81
+ RequestId?: string
82
+ }
83
+
48
84
  /**
49
85
  * DeleteTimeTemplate返回参数结构体
50
86
  */
@@ -117,6 +153,83 @@ export interface GetRecordDatesByDevResponse {
117
153
  RequestId?: string
118
154
  }
119
155
 
156
+ /**
157
+ * CreateLiveRecordPlan请求参数结构体
158
+ */
159
+ export interface CreateLiveRecordPlanRequest {
160
+ /**
161
+ * 录制计划名
162
+ */
163
+ PlanName: string
164
+
165
+ /**
166
+ * 计划类型 1:固定直播 2:移动直播
167
+ */
168
+ PlanType: number
169
+
170
+ /**
171
+ * 时间模板ID,固定直播时为必填
172
+ */
173
+ TemplateId?: string
174
+
175
+ /**
176
+ * 录制文件存储时长,单位天,默认30天
177
+ */
178
+ RecordStorageTime?: number
179
+
180
+ /**
181
+ * 绑定的直播频道ID列表
182
+ */
183
+ LiveChannelIds?: Array<string>
184
+ }
185
+
186
+ /**
187
+ * DescribeLiveChannel请求参数结构体
188
+ */
189
+ export interface DescribeLiveChannelRequest {
190
+ /**
191
+ * 频道ID
192
+ */
193
+ LiveChannelId: string
194
+ }
195
+
196
+ /**
197
+ * DescribeSubscriptionStatus返回参数结构体
198
+ */
199
+ export interface DescribeSubscriptionStatusResponse {
200
+ /**
201
+ * 设备GB28181报警订阅状态 1:未开启订阅;2:已开启订阅
202
+ */
203
+ AlarmStatus: number
204
+
205
+ /**
206
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
207
+ */
208
+ RequestId?: string
209
+ }
210
+
211
+ /**
212
+ * DescribeScenes返回参数结构体
213
+ */
214
+ export interface DescribeScenesResponse {
215
+ /**
216
+ * 场景总数
217
+ 注意:此字段可能返回 null,表示取不到有效值。
218
+ */
219
+ Total: number
220
+
221
+ /**
222
+ * 场景列表
223
+ 注意:此字段可能返回 null,表示取不到有效值。
224
+ */
225
+ List: Array<SceneItem>
226
+
227
+ /**
228
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
229
+ */
230
+ RequestId?: string
231
+ }
232
+
120
233
  /**
121
234
  * DescribeDeviceStreams返回参数结构体
122
235
  */
@@ -138,19 +251,91 @@ export interface DescribeDeviceStreamsResponse {
138
251
  export type DescribeSIPServerRequest = null
139
252
 
140
253
  /**
141
- * GetRecordPlanById请求参数结构体
254
+ * CreateLiveRecordPlan返回参数结构体
142
255
  */
143
- export interface GetRecordPlanByIdRequest {
256
+ export interface CreateLiveRecordPlanResponse {
144
257
  /**
145
- * 录制计划ID
146
- */
258
+ * 录制计划名称
259
+ 注意:此字段可能返回 null,表示取不到有效值。
260
+ */
147
261
  PlanId: string
262
+
263
+ /**
264
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
265
+ */
266
+ RequestId?: string
148
267
  }
149
268
 
150
269
  /**
151
- * GetRecordPlans请求参数结构体
270
+ * 分组信息
152
271
  */
153
- export type GetRecordPlansRequest = null
272
+ export interface GroupItem {
273
+ /**
274
+ * 分组名称
275
+ 注意:此字段可能返回 null,表示取不到有效值。
276
+ */
277
+ GroupName: string
278
+
279
+ /**
280
+ * 父分组ID
281
+ 注意:此字段可能返回 null,表示取不到有效值。
282
+ */
283
+ ParentId: string
284
+
285
+ /**
286
+ * 分组ID
287
+ 注意:此字段可能返回 null,表示取不到有效值。
288
+ */
289
+ GroupId: string
290
+
291
+ /**
292
+ * 分组路径
293
+ 注意:此字段可能返回 null,表示取不到有效值。
294
+ */
295
+ GroupPath?: string
296
+
297
+ /**
298
+ * 分组描述
299
+ 注意:此字段可能返回 null,表示取不到有效值。
300
+ */
301
+ GroupDescribe?: string
302
+
303
+ /**
304
+ * 分组绑定设备数
305
+ 注意:此字段可能返回 null,表示取不到有效值。
306
+ */
307
+ DeviceNum?: number
308
+
309
+ /**
310
+ * 子分组数量
311
+ 注意:此字段可能返回 null,表示取不到有效值。
312
+ */
313
+ SubGroupNum?: number
314
+
315
+ /**
316
+ * 分组附加信息
317
+ 注意:此字段可能返回 null,表示取不到有效值。
318
+ */
319
+ ExtraInformation?: string
320
+
321
+ /**
322
+ * 分组类型
323
+ 注意:此字段可能返回 null,表示取不到有效值。
324
+ */
325
+ GroupType?: string
326
+
327
+ /**
328
+ * 创建时间
329
+ 注意:此字段可能返回 null,表示取不到有效值。
330
+ */
331
+ CreateTime?: number
332
+
333
+ /**
334
+ * 分组状态
335
+ 注意:此字段可能返回 null,表示取不到有效值。
336
+ */
337
+ GroupStatus?: number
338
+ }
154
339
 
155
340
  /**
156
341
  * 用于描述唯一一个设备
@@ -200,6 +385,31 @@ export interface DeleteRecordPlanResponse {
200
385
  RequestId?: string
201
386
  }
202
387
 
388
+ /**
389
+ * ModifyVideoInfo请求参数结构体
390
+ */
391
+ export interface ModifyVideoInfoRequest {
392
+ /**
393
+ * 视频ID列表长度限制100内
394
+ */
395
+ InitIDs: Array<number>
396
+
397
+ /**
398
+ * 过期时间 时间戳 -1: 永不过期 0: 无效值
399
+ */
400
+ ExpireTime: number
401
+ }
402
+
403
+ /**
404
+ * ModifyBindPlanLiveChannel返回参数结构体
405
+ */
406
+ export interface ModifyBindPlanLiveChannelResponse {
407
+ /**
408
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
409
+ */
410
+ RequestId?: string
411
+ }
412
+
203
413
  /**
204
414
  * UpdateDeviceGroup返回参数结构体
205
415
  */
@@ -282,64 +492,9 @@ export interface DevGroupInfo {
282
492
  }
283
493
 
284
494
  /**
285
- * DescribeIPCChannels请求参数结构体
286
- */
287
- export interface DescribeIPCChannelsRequest {
288
- /**
289
- * 偏移量,默认0
290
- */
291
- Offset?: number
292
-
293
- /**
294
- * 限制,默认0
295
- */
296
- Limit?: number
297
-
298
- /**
299
- * 设备Id
300
- */
301
- DeviceId?: string
302
-
303
- /**
304
- * 通道类型 0: 未知类型 1: 视频通道 2: 音频通道 3: 告警通道
305
- */
306
- ChannelTypes?: Array<number>
307
- }
308
-
309
- /**
310
- * DescribeSubGroups请求参数结构体
311
- */
312
- export interface DescribeSubGroupsRequest {
313
- /**
314
- * 分组ID
315
- */
316
- GroupId?: string
317
-
318
- /**
319
- * 分组名称,根据名称模糊匹配子分组时为必填
320
- */
321
- GroupName?: string
322
-
323
- /**
324
- * 偏移量,默认0
325
- */
326
- Offset?: number
327
-
328
- /**
329
- * 限制数,默认200
330
- */
331
- Limit?: number
332
-
333
- /**
334
- * 是否统计子分组下的设备数,0:统计,1:不统计
335
- */
336
- OnlyGroup?: number
337
- }
338
-
339
- /**
340
- * DeleteRecordPlan请求参数结构体
495
+ * DescribeLiveRecordPlanById请求参数结构体
341
496
  */
342
- export interface DeleteRecordPlanRequest {
497
+ export interface DescribeLiveRecordPlanByIdRequest {
343
498
  /**
344
499
  * 录制计划ID
345
500
  */
@@ -347,36 +502,183 @@ export interface DeleteRecordPlanRequest {
347
502
  }
348
503
 
349
504
  /**
350
- * CreateDeviceGroup返回参数结构体
505
+ * 直播录制计划详情
351
506
  */
352
- export interface CreateDeviceGroupResponse {
507
+ export interface LiveRecordPlanItem {
353
508
  /**
354
- * 响应结果,“OK”为成功,其他为失败
509
+ * 计划ID
355
510
  注意:此字段可能返回 null,表示取不到有效值。
356
511
  */
357
- Status: string
512
+ PlanId: string
358
513
 
359
514
  /**
360
- * 分组ID
515
+ * 计划名称
361
516
  注意:此字段可能返回 null,表示取不到有效值。
362
517
  */
363
- GroupId: string
364
-
365
- /**
366
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
367
- */
368
- RequestId?: string
518
+ PlanName: string
369
519
  }
370
520
 
371
521
  /**
372
- * GetVideoListByCon返回参数结构体
522
+ * 普通设备的录像详情
373
523
  */
374
- export interface GetVideoListByConResponse {
524
+ export interface RecordTaskItem {
375
525
  /**
376
- * 录像详情列表
526
+ * 录像任务ID
377
527
  注意:此字段可能返回 null,表示取不到有效值。
378
528
  */
379
- VideoList: Array<RecordTaskItem>
529
+ RecordTaskId: string
530
+
531
+ /**
532
+ * 录制计划ID
533
+ 注意:此字段可能返回 null,表示取不到有效值。
534
+ */
535
+ RecordPlanId: string
536
+
537
+ /**
538
+ * 本录制片段开始时间
539
+ 注意:此字段可能返回 null,表示取不到有效值。
540
+ */
541
+ StartTime: number
542
+
543
+ /**
544
+ * 本录制片段结束时间
545
+ 注意:此字段可能返回 null,表示取不到有效值。
546
+ */
547
+ EndTime: number
548
+
549
+ /**
550
+ * 录制模式
551
+ 注意:此字段可能返回 null,表示取不到有效值。
552
+ */
553
+ EventId: number
554
+
555
+ /**
556
+ * 本录制片段对应的录制文件URL
557
+ 注意:此字段可能返回 null,表示取不到有效值。
558
+ */
559
+ VideoUrl: string
560
+
561
+ /**
562
+ * 本录制片段当前的录制状态
563
+ 注意:此字段可能返回 null,表示取不到有效值。
564
+ */
565
+ RecordStatus: number
566
+
567
+ /**
568
+ * 场景ID
569
+ 注意:此字段可能返回 null,表示取不到有效值。
570
+ */
571
+ SceneId: number
572
+
573
+ /**
574
+ * 告警ID
575
+ 注意:此字段可能返回 null,表示取不到有效值。
576
+ */
577
+ WarnId: number
578
+
579
+ /**
580
+ * 录制id,NVR下属设备有效
581
+ 注意:此字段可能返回 null,表示取不到有效值。
582
+ */
583
+ RecordId: string
584
+ }
585
+
586
+ /**
587
+ * DescribeIPCChannels请求参数结构体
588
+ */
589
+ export interface DescribeIPCChannelsRequest {
590
+ /**
591
+ * 偏移量,默认0
592
+ */
593
+ Offset?: number
594
+
595
+ /**
596
+ * 限制,默认0
597
+ */
598
+ Limit?: number
599
+
600
+ /**
601
+ * 设备Id
602
+ */
603
+ DeviceId?: string
604
+
605
+ /**
606
+ * 通道类型 0: 未知类型 1: 视频通道 2: 音频通道 3: 告警通道
607
+ */
608
+ ChannelTypes?: Array<number>
609
+ }
610
+
611
+ /**
612
+ * DescribeSubGroups请求参数结构体
613
+ */
614
+ export interface DescribeSubGroupsRequest {
615
+ /**
616
+ * 分组ID
617
+ */
618
+ GroupId?: string
619
+
620
+ /**
621
+ * 分组名称,根据名称模糊匹配子分组时为必填
622
+ */
623
+ GroupName?: string
624
+
625
+ /**
626
+ * 偏移量,默认0
627
+ */
628
+ Offset?: number
629
+
630
+ /**
631
+ * 限制数,默认200
632
+ */
633
+ Limit?: number
634
+
635
+ /**
636
+ * 是否统计子分组下的设备数,0:统计,1:不统计
637
+ */
638
+ OnlyGroup?: number
639
+ }
640
+
641
+ /**
642
+ * DeleteRecordPlan请求参数结构体
643
+ */
644
+ export interface DeleteRecordPlanRequest {
645
+ /**
646
+ * 录制计划ID
647
+ */
648
+ PlanId: string
649
+ }
650
+
651
+ /**
652
+ * CreateDeviceGroup返回参数结构体
653
+ */
654
+ export interface CreateDeviceGroupResponse {
655
+ /**
656
+ * 响应结果,“OK”为成功,其他为失败
657
+ 注意:此字段可能返回 null,表示取不到有效值。
658
+ */
659
+ Status: string
660
+
661
+ /**
662
+ * 分组ID
663
+ 注意:此字段可能返回 null,表示取不到有效值。
664
+ */
665
+ GroupId: string
666
+
667
+ /**
668
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
669
+ */
670
+ RequestId?: string
671
+ }
672
+
673
+ /**
674
+ * GetVideoListByCon返回参数结构体
675
+ */
676
+ export interface GetVideoListByConResponse {
677
+ /**
678
+ * 录像详情列表
679
+ 注意:此字段可能返回 null,表示取不到有效值。
680
+ */
681
+ VideoList: Array<RecordTaskItem>
380
682
 
381
683
  /**
382
684
  * 录像总数
@@ -390,6 +692,56 @@ export interface GetVideoListByConResponse {
390
692
  RequestId?: string
391
693
  }
392
694
 
695
+ /**
696
+ * 直播录制详情item
697
+ */
698
+ export interface LiveRecordItem {
699
+ /**
700
+ * 录制文件自增ID
701
+ */
702
+ IntID: number
703
+
704
+ /**
705
+ * 直播频道ID
706
+ */
707
+ LiveChannelId: string
708
+
709
+ /**
710
+ * 过期时间
711
+ */
712
+ ExpectDeleteTime: number
713
+
714
+ /**
715
+ * 录制时长
716
+ */
717
+ RecordTimeLen: number
718
+
719
+ /**
720
+ * 文件大小
721
+ */
722
+ FileSize: number
723
+
724
+ /**
725
+ * 录制文件url
726
+ */
727
+ VideoUrl: string
728
+
729
+ /**
730
+ * 录制计划ID
731
+ */
732
+ RecordPlanId: string
733
+
734
+ /**
735
+ * 录制开始时间
736
+ */
737
+ StartTime: number
738
+
739
+ /**
740
+ * 录制结束时间
741
+ */
742
+ EndTime: number
743
+ }
744
+
393
745
  /**
394
746
  * UpdateTimeTemplate返回参数结构体
395
747
  */
@@ -405,6 +757,59 @@ export interface UpdateTimeTemplateResponse {
405
757
  RequestId?: string
406
758
  }
407
759
 
760
+ /**
761
+ * UpdateRecordPlan请求参数结构体
762
+ */
763
+ export interface UpdateRecordPlanRequest {
764
+ /**
765
+ * 录制计划ID
766
+ */
767
+ PlanId: string
768
+
769
+ /**
770
+ * 计划名称
771
+ */
772
+ Name?: string
773
+
774
+ /**
775
+ * 时间模板ID
776
+ */
777
+ TimeTemplateId?: string
778
+
779
+ /**
780
+ * 触发录制的事件 1:全部
781
+ */
782
+ EventId?: number
783
+
784
+ /**
785
+ * 录制设备列表
786
+ */
787
+ Devices?: Array<DeviceItem>
788
+
789
+ /**
790
+ * 是否更新绑定此录制计划的设备列表
791
+ 0 - 不更新
792
+ 1 - 更新,如果Devices参数为空则清空设备列表,Devices不为空则全量更新设备列表
793
+ */
794
+ IsModifyDevices?: number
795
+ }
796
+
797
+ /**
798
+ * ModifyDeviceData返回参数结构体
799
+ */
800
+ export interface ModifyDeviceDataResponse {
801
+ /**
802
+ * 操作结果,“OK”表示成功,其他表示失败。
803
+ 注意:此字段可能返回 null,表示取不到有效值。
804
+ */
805
+ Status: string
806
+
807
+ /**
808
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
809
+ */
810
+ RequestId?: string
811
+ }
812
+
408
813
  /**
409
814
  * DescribeStatisticDetails返回参数结构体
410
815
  */
@@ -487,13 +892,25 @@ export interface GroupDeviceItem {
487
892
  }
488
893
 
489
894
  /**
490
- * DescribeStatisticSummary请求参数结构体
895
+ * DescribeSubGroups返回参数结构体
491
896
  */
492
- export interface DescribeStatisticSummaryRequest {
897
+ export interface DescribeSubGroupsResponse {
493
898
  /**
494
- * 指定日期。格式【YYYY-MM-DD】
899
+ * 子分组详情列表
900
+ 注意:此字段可能返回 null,表示取不到有效值。
901
+ */
902
+ GroupList: Array<GroupItem>
903
+
904
+ /**
905
+ * 子分组总数
906
+ 注意:此字段可能返回 null,表示取不到有效值。
907
+ */
908
+ TotalCount: number
909
+
910
+ /**
911
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
495
912
  */
496
- Date: string
913
+ RequestId?: string
497
914
  }
498
915
 
499
916
  /**
@@ -537,24 +954,116 @@ export interface UpdateDevicePassWordRequest {
537
954
  DeviceId: string
538
955
  }
539
956
 
540
- /**
541
- * CreateTimeTemplate请求参数结构体
542
- */
543
- export interface CreateTimeTemplateRequest {
957
+ /**
958
+ * CreateTimeTemplate请求参数结构体
959
+ */
960
+ export interface CreateTimeTemplateRequest {
961
+ /**
962
+ * 时间模板名称
963
+ */
964
+ Name: string
965
+
966
+ /**
967
+ * 是否为每周全时录制(即7*24h录制),0:非全时录制,1;全时录制,默认0
968
+ */
969
+ IsAllWeek: number
970
+
971
+ /**
972
+ * 当IsAllWeek为0时必选,用于描述模板的各个时间片段
973
+ */
974
+ TimeTemplateSpecs?: Array<TimeTemplateSpec>
975
+ }
976
+
977
+ /**
978
+ * ModifyBindPlanLiveChannel请求参数结构体
979
+ */
980
+ export interface ModifyBindPlanLiveChannelRequest {
981
+ /**
982
+ * 直播录制计划ID
983
+ */
984
+ PlanId: string
985
+
986
+ /**
987
+ * 1: 绑定 2: 解绑
988
+ */
989
+ Type: number
990
+
991
+ /**
992
+ * 直播频道ID列表
993
+ */
994
+ LiveChannelIds: Array<string>
995
+ }
996
+
997
+ /**
998
+ * DescribeLiveStream请求参数结构体
999
+ */
1000
+ export interface DescribeLiveStreamRequest {
1001
+ /**
1002
+ * 频道ID
1003
+ */
1004
+ LiveChannelId: string
1005
+
1006
+ /**
1007
+ * 过期时间
1008
+ */
1009
+ ExpireTime: number
1010
+ }
1011
+
1012
+ /**
1013
+ * ModifyLiveRecordPlan返回参数结构体
1014
+ */
1015
+ export interface ModifyLiveRecordPlanResponse {
1016
+ /**
1017
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1018
+ */
1019
+ RequestId?: string
1020
+ }
1021
+
1022
+ /**
1023
+ * 频道信息
1024
+ */
1025
+ export interface LiveChannelInfo {
1026
+ /**
1027
+ * 频道ID
1028
+ 注意:此字段可能返回 null,表示取不到有效值。
1029
+ */
1030
+ LiveChannelId: string
1031
+
1032
+ /**
1033
+ * 频道名称
1034
+ 注意:此字段可能返回 null,表示取不到有效值。
1035
+ */
1036
+ LiveChannelName: string
1037
+
1038
+ /**
1039
+ * 频道类型
1040
+ 注意:此字段可能返回 null,表示取不到有效值。
1041
+ */
1042
+ LiveChannelType: number
1043
+
1044
+ /**
1045
+ * 通道直播状态:1: 未推流,2: 推流中
1046
+ 注意:此字段可能返回 null,表示取不到有效值。
1047
+ */
1048
+ LiveStatus: number
1049
+
544
1050
  /**
545
- * 时间模板名称
546
- */
547
- Name: string
1051
+ * 推流地址
1052
+ 注意:此字段可能返回 null,表示取不到有效值。
1053
+ */
1054
+ PushStreamAddress: string
548
1055
 
549
1056
  /**
550
- * 是否为每周全时录制(即7*24h录制),0:非全时录制,1;全时录制,默认0
551
- */
552
- IsAllWeek: number
1057
+ * 创建时间
1058
+ 注意:此字段可能返回 null,表示取不到有效值。
1059
+ */
1060
+ CreateTime: string
553
1061
 
554
1062
  /**
555
- * 当IsAllWeek为0时必选,用于描述模板的各个时间片段
556
- */
557
- TimeTemplateSpecs?: Array<TimeTemplateSpec>
1063
+ * 修改时间
1064
+ 注意:此字段可能返回 null,表示取不到有效值。
1065
+ */
1066
+ UpdateTime: string
558
1067
  }
559
1068
 
560
1069
  /**
@@ -587,6 +1096,26 @@ export interface DescribeAllDeviceListRequest {
587
1096
  DeviceTypes?: Array<number>
588
1097
  }
589
1098
 
1099
+ /**
1100
+ * DescribeRecordDatesByLive请求参数结构体
1101
+ */
1102
+ export interface DescribeRecordDatesByLiveRequest {
1103
+ /**
1104
+ * 直播频道ID
1105
+ */
1106
+ LiveChannelId: string
1107
+
1108
+ /**
1109
+ * 分页值,本地录制时参数无效
1110
+ */
1111
+ Offset: number
1112
+
1113
+ /**
1114
+ * 限制值,本地录制时参数无效
1115
+ */
1116
+ Limit: number
1117
+ }
1118
+
590
1119
  /**
591
1120
  * DescribeDevicePassWord请求参数结构体
592
1121
  */
@@ -598,68 +1127,43 @@ export interface DescribeDevicePassWordRequest {
598
1127
  }
599
1128
 
600
1129
  /**
601
- * 普通设备的录像详情
1130
+ * GetRecordPlanById请求参数结构体
602
1131
  */
603
- export interface RecordTaskItem {
604
- /**
605
- * 录像任务ID
606
- 注意:此字段可能返回 null,表示取不到有效值。
607
- */
608
- RecordTaskId: string
609
-
610
- /**
611
- * 录制计划ID
612
- 注意:此字段可能返回 null,表示取不到有效值。
613
- */
614
- RecordPlanId: string
615
-
616
- /**
617
- * 本录制片段开始时间
618
- 注意:此字段可能返回 null,表示取不到有效值。
619
- */
620
- StartTime: number
621
-
622
- /**
623
- * 本录制片段结束时间
624
- 注意:此字段可能返回 null,表示取不到有效值。
625
- */
626
- EndTime: number
627
-
1132
+ export interface GetRecordPlanByIdRequest {
628
1133
  /**
629
- * 录制模式
630
- 注意:此字段可能返回 null,表示取不到有效值。
631
- */
632
- EventId: number
1134
+ * 录制计划ID
1135
+ */
1136
+ PlanId: string
1137
+ }
633
1138
 
1139
+ /**
1140
+ * DescribeLiveChannelList请求参数结构体
1141
+ */
1142
+ export interface DescribeLiveChannelListRequest {
634
1143
  /**
635
- * 本录制片段对应的录制文件URL
636
- 注意:此字段可能返回 null,表示取不到有效值。
637
- */
638
- VideoUrl: string
1144
+ * 偏移量
1145
+ */
1146
+ Offset: number
639
1147
 
640
1148
  /**
641
- * 本录制片段当前的录制状态
642
- 注意:此字段可能返回 null,表示取不到有效值。
643
- */
644
- RecordStatus: number
1149
+ * 最大数
1150
+ */
1151
+ Limit: number
645
1152
 
646
1153
  /**
647
- * 场景ID
648
- 注意:此字段可能返回 null,表示取不到有效值。
649
- */
650
- SceneId: number
1154
+ * 直播频道类型,1:固定直播;2:移动直播
1155
+ */
1156
+ LiveChannelType?: number
651
1157
 
652
1158
  /**
653
- * 告警ID
654
- 注意:此字段可能返回 null,表示取不到有效值。
655
- */
656
- WarnId: number
1159
+ * 直播录制计划ID, null: 直播录制计划为空
1160
+ */
1161
+ RecordPlanId?: string
657
1162
 
658
1163
  /**
659
- * 录制id,NVR下属设备有效
660
- 注意:此字段可能返回 null,表示取不到有效值。
661
- */
662
- RecordId: string
1164
+ * 频道名称 (支持模糊搜索)
1165
+ */
1166
+ LiveChannelName?: string
663
1167
  }
664
1168
 
665
1169
  /**
@@ -679,40 +1183,13 @@ export interface GetRecordPlanByDevResponse {
679
1183
  }
680
1184
 
681
1185
  /**
682
- * UpdateRecordPlan请求参数结构体
1186
+ * DeleteVideoList请求参数结构体
683
1187
  */
684
- export interface UpdateRecordPlanRequest {
685
- /**
686
- * 录制计划ID
687
- */
688
- PlanId: string
689
-
690
- /**
691
- * 计划名称
692
- */
693
- Name?: string
694
-
695
- /**
696
- * 时间模板ID
697
- */
698
- TimeTemplateId?: string
699
-
700
- /**
701
- * 触发录制的事件 1:全部
702
- */
703
- EventId?: number
704
-
1188
+ export interface DeleteVideoListRequest {
705
1189
  /**
706
- * 录制设备列表
1190
+ * 视频ID列表长度限制100内
707
1191
  */
708
- Devices?: Array<DeviceItem>
709
-
710
- /**
711
- * 是否更新绑定此录制计划的设备列表
712
- 0 - 不更新
713
- 1 - 更新,如果Devices参数为空则清空设备列表,Devices不为空则全量更新设备列表
714
- */
715
- IsModifyDevices?: number
1192
+ InitIDs: Array<number>
716
1193
  }
717
1194
 
718
1195
  /**
@@ -905,6 +1382,26 @@ export interface UpdateTimeTemplateRequest {
905
1382
  TimeTemplateSpecs?: Array<TimeTemplateSpec>
906
1383
  }
907
1384
 
1385
+ /**
1386
+ * DescribeLiveRecordPlanIds返回参数结构体
1387
+ */
1388
+ export interface DescribeLiveRecordPlanIdsResponse {
1389
+ /**
1390
+ * 总个数
1391
+ */
1392
+ TotalCount: number
1393
+
1394
+ /**
1395
+ * 计划数组
1396
+ */
1397
+ Plans: Array<LiveRecordPlanItem>
1398
+
1399
+ /**
1400
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1401
+ */
1402
+ RequestId?: string
1403
+ }
1404
+
908
1405
  /**
909
1406
  * CreateDevice返回参数结构体
910
1407
  */
@@ -934,75 +1431,212 @@ export interface CreateDeviceResponse {
934
1431
  }
935
1432
 
936
1433
  /**
937
- * CreateDevice请求参数结构体
1434
+ * CreateDevice请求参数结构体
1435
+ */
1436
+ export interface CreateDeviceRequest {
1437
+ /**
1438
+ * 设备名称
1439
+ */
1440
+ NickName: string
1441
+
1442
+ /**
1443
+ * 设备密码
1444
+ */
1445
+ PassWord: string
1446
+
1447
+ /**
1448
+ * 设备类型 2:国标IPC设备; 3:NVR设备
1449
+ */
1450
+ DeviceType?: number
1451
+
1452
+ /**
1453
+ * 设备需要绑定的分组ID,参数为空则默认绑定到根分组
1454
+ */
1455
+ GroupId?: string
1456
+ }
1457
+
1458
+ /**
1459
+ * DescribeStatisticSummary返回参数结构体
1460
+ */
1461
+ export interface DescribeStatisticSummaryResponse {
1462
+ /**
1463
+ * 录制设备总数
1464
+ 注意:此字段可能返回 null,表示取不到有效值。
1465
+ */
1466
+ RecordingDevice: number
1467
+
1468
+ /**
1469
+ * 非录制设备总数
1470
+ 注意:此字段可能返回 null,表示取不到有效值。
1471
+ */
1472
+ NonRecordingDevice: number
1473
+
1474
+ /**
1475
+ * 观看流量总数。为直播观看流量与点播观看流量之和。单位:GB
1476
+ 注意:此字段可能返回 null,表示取不到有效值。
1477
+ */
1478
+ WatchFlux: number
1479
+
1480
+ /**
1481
+ * 累计有效存储容量总数。单位:GB
1482
+ 注意:此字段可能返回 null,表示取不到有效值。
1483
+ */
1484
+ StorageUsage: number
1485
+
1486
+ /**
1487
+ * X-P2P分享流量。单位 Byte
1488
+ 注意:此字段可能返回 null,表示取不到有效值。
1489
+ */
1490
+ P2PFluxTotal: number
1491
+
1492
+ /**
1493
+ * X-P2P峰值带宽。 单位bps
1494
+ 注意:此字段可能返回 null,表示取不到有效值。
1495
+ */
1496
+ P2PPeakValue: number
1497
+
1498
+ /**
1499
+ * RTMP推流路数 ( 直播推流)
1500
+ 注意:此字段可能返回 null,表示取不到有效值。
1501
+ */
1502
+ LivePushTotal: number
1503
+
1504
+ /**
1505
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1506
+ */
1507
+ RequestId?: string
1508
+ }
1509
+
1510
+ /**
1511
+ * DescribeRecordStream请求参数结构体
1512
+ */
1513
+ export interface DescribeRecordStreamRequest {
1514
+ /**
1515
+ * 设备Id
1516
+ */
1517
+ DeviceId: string
1518
+
1519
+ /**
1520
+ * 流失效时间
1521
+ */
1522
+ ExpireTime: number
1523
+
1524
+ /**
1525
+ * 录像文件Id
1526
+ */
1527
+ RecordId?: string
1528
+
1529
+ /**
1530
+ * 录像流开始时间,当录像文件Id为空时有效
1531
+ */
1532
+ StartTime?: number
1533
+
1534
+ /**
1535
+ * 录像流结束时间,当录像文件Id为空时有效
1536
+ */
1537
+ EndTime?: number
1538
+
1539
+ /**
1540
+ * 通道唯一标识
1541
+ */
1542
+ ChannelId?: string
1543
+ }
1544
+
1545
+ /**
1546
+ * BindGroupDevices请求参数结构体
938
1547
  */
939
- export interface CreateDeviceRequest {
1548
+ export interface BindGroupDevicesRequest {
940
1549
  /**
941
- * 设备名称
1550
+ * 分组ID
942
1551
  */
943
- NickName: string
1552
+ GroupId: string
944
1553
 
945
1554
  /**
946
- * 设备密码
1555
+ * 设备唯一标识列表
947
1556
  */
948
- PassWord: string
1557
+ DeviceList: Array<string>
1558
+ }
1559
+
1560
+ /**
1561
+ * ModifyLiveRecordPlan请求参数结构体
1562
+ */
1563
+ export interface ModifyLiveRecordPlanRequest {
1564
+ /**
1565
+ * 录制计划ID
1566
+ */
1567
+ PlanId: string
949
1568
 
950
1569
  /**
951
- * 设备类型 2:国标IPC设备; 3:NVR设备
1570
+ * 录制计划名
952
1571
  */
953
- DeviceType?: number
1572
+ PlanName: string
954
1573
 
955
1574
  /**
956
- * 设备需要绑定的分组ID,参数为空则默认绑定到根分组
1575
+ * 时间模板ID,固定直播时为必填
957
1576
  */
958
- GroupId?: string
1577
+ TemplateId?: string
959
1578
  }
960
1579
 
961
1580
  /**
962
- * DescribeStatisticSummary返回参数结构体
1581
+ * 场景列表元素
963
1582
  */
964
- export interface DescribeStatisticSummaryResponse {
1583
+ export interface SceneItem {
965
1584
  /**
966
- * 录制设备总数
1585
+ * 场景ID
967
1586
  注意:此字段可能返回 null,表示取不到有效值。
968
1587
  */
969
- RecordingDevice: number
1588
+ IntId: number
970
1589
 
971
1590
  /**
972
- * 非录制设备总数
1591
+ * 用户UIN
973
1592
  注意:此字段可能返回 null,表示取不到有效值。
974
1593
  */
975
- NonRecordingDevice: number
1594
+ Uin: string
976
1595
 
977
1596
  /**
978
- * 观看流量总数。为直播观看流量与点播观看流量之和。单位:GB
1597
+ * 场景名称
979
1598
  注意:此字段可能返回 null,表示取不到有效值。
980
1599
  */
981
- WatchFlux: number
1600
+ SceneName: string
982
1601
 
983
1602
  /**
984
- * 累计有效存储容量总数。单位:GB
1603
+ * 触发规则
985
1604
  注意:此字段可能返回 null,表示取不到有效值。
986
1605
  */
987
- StorageUsage: number
1606
+ SceneTrigger: string
988
1607
 
989
1608
  /**
990
- * X-P2P分享流量。单位 Byte
1609
+ * 录制时长
991
1610
  注意:此字段可能返回 null,表示取不到有效值。
992
1611
  */
993
- P2PFluxTotal: number
1612
+ RecordDuration: number
994
1613
 
995
1614
  /**
996
- * X-P2P峰值带宽。 单位bps
1615
+ * 存储时长
997
1616
  注意:此字段可能返回 null,表示取不到有效值。
998
1617
  */
999
- P2PPeakValue: number
1618
+ StoreDuration: number
1000
1619
 
1001
1620
  /**
1002
- * RTMP推流路数 ( 直播推流)
1621
+ * 创建时间
1622
+ */
1623
+ CreateTime: string
1624
+
1625
+ /**
1626
+ * 修改时间
1627
+ */
1628
+ UpdateTime: string
1629
+ }
1630
+
1631
+ /**
1632
+ * GetTimeTemplateById返回参数结构体
1633
+ */
1634
+ export interface GetTimeTemplateByIdResponse {
1635
+ /**
1636
+ * 时间模板详情
1003
1637
  注意:此字段可能返回 null,表示取不到有效值。
1004
1638
  */
1005
- LivePushTotal: number
1639
+ Template: TimeTemplateItem
1006
1640
 
1007
1641
  /**
1008
1642
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -1011,49 +1645,50 @@ export interface DescribeStatisticSummaryResponse {
1011
1645
  }
1012
1646
 
1013
1647
  /**
1014
- * DescribeRecordStream请求参数结构体
1648
+ * DescribeLiveChannel返回参数结构体
1015
1649
  */
1016
- export interface DescribeRecordStreamRequest {
1650
+ export interface DescribeLiveChannelResponse {
1017
1651
  /**
1018
- * 设备Id
1019
- */
1020
- DeviceId: string
1652
+ * 频道ID
1653
+ 注意:此字段可能返回 null,表示取不到有效值。
1654
+ */
1655
+ LiveChannelId: string
1021
1656
 
1022
1657
  /**
1023
- * 流失效时间
1024
- */
1025
- ExpireTime: number
1658
+ * 频道名称
1659
+ 注意:此字段可能返回 null,表示取不到有效值。
1660
+ */
1661
+ LiveChannelName: string
1026
1662
 
1027
1663
  /**
1028
- * 录像文件Id
1029
- */
1030
- RecordId?: string
1664
+ * 直播频道类型 1:固定直播;2:移动直播
1665
+ 注意:此字段可能返回 null,表示取不到有效值。
1666
+ */
1667
+ LiveChannelType: number
1031
1668
 
1032
1669
  /**
1033
- * 录像流开始时间,当录像文件Id为空时有效
1034
- */
1035
- StartTime?: number
1670
+ * 通道直播状态:1: 未推流,2: 推流中
1671
+ 注意:此字段可能返回 null,表示取不到有效值。
1672
+ */
1673
+ LiveStatus: number
1036
1674
 
1037
1675
  /**
1038
- * 录像流结束时间,当录像文件Id为空时有效
1039
- */
1040
- EndTime?: number
1676
+ * 推流地址
1677
+ 注意:此字段可能返回 null,表示取不到有效值。
1678
+ */
1679
+ PushStreamAddress: string
1041
1680
 
1042
1681
  /**
1043
- * 通道唯一标识
1044
- */
1045
- ChannelId?: string
1046
- }
1682
+ * 创建时间
1683
+ 注意:此字段可能返回 null,表示取不到有效值。
1684
+ */
1685
+ CreateTime: Array<string>
1047
1686
 
1048
- /**
1049
- * GetTimeTemplateById返回参数结构体
1050
- */
1051
- export interface GetTimeTemplateByIdResponse {
1052
1687
  /**
1053
- * 时间模板详情
1688
+ * 修改时间
1054
1689
  注意:此字段可能返回 null,表示取不到有效值。
1055
1690
  */
1056
- Template: TimeTemplateItem
1691
+ UpdateTime: Array<string>
1057
1692
 
1058
1693
  /**
1059
1694
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -1154,6 +1789,28 @@ export interface UpdateDeviceGroupRequest {
1154
1789
  NewParentId?: string
1155
1790
  }
1156
1791
 
1792
+ /**
1793
+ * DescribeChannelsByLiveRecordPlan返回参数结构体
1794
+ */
1795
+ export interface DescribeChannelsByLiveRecordPlanResponse {
1796
+ /**
1797
+ * 总个数
1798
+ 注意:此字段可能返回 null,表示取不到有效值。
1799
+ */
1800
+ TotalCount: number
1801
+
1802
+ /**
1803
+ * 通道详情数组
1804
+ 注意:此字段可能返回 null,表示取不到有效值。
1805
+ */
1806
+ LiveChannels: Array<LiveChannelItem>
1807
+
1808
+ /**
1809
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1810
+ */
1811
+ RequestId?: string
1812
+ }
1813
+
1157
1814
  /**
1158
1815
  * DescribeGroupDevices请求参数结构体
1159
1816
  */
@@ -1216,6 +1873,31 @@ export interface UpdateDevicePassWordResponse {
1216
1873
  RequestId?: string
1217
1874
  }
1218
1875
 
1876
+ /**
1877
+ * DeleteChannel请求参数结构体
1878
+ */
1879
+ export interface DeleteChannelRequest {
1880
+ /**
1881
+ * 设备ID
1882
+ */
1883
+ DeviceId: string
1884
+
1885
+ /**
1886
+ * 通道ID
1887
+ */
1888
+ ChannelId: string
1889
+ }
1890
+
1891
+ /**
1892
+ * DescribeSubscriptionStatus请求参数结构体
1893
+ */
1894
+ export interface DescribeSubscriptionStatusRequest {
1895
+ /**
1896
+ * 设备ID
1897
+ */
1898
+ DeviceId: string
1899
+ }
1900
+
1219
1901
  /**
1220
1902
  * DescribeDeviceStreams请求参数结构体
1221
1903
  */
@@ -1266,6 +1948,36 @@ export interface CreateRecordPlanResponse {
1266
1948
  RequestId?: string
1267
1949
  }
1268
1950
 
1951
+ /**
1952
+ * CreateScene请求参数结构体
1953
+ */
1954
+ export interface CreateSceneRequest {
1955
+ /**
1956
+ * 场景名称
1957
+ */
1958
+ SceneName: string
1959
+
1960
+ /**
1961
+ * 场景触发规则
1962
+ */
1963
+ SceneTrigger: string
1964
+
1965
+ /**
1966
+ * 录制时长 (秒)
1967
+ */
1968
+ RecordDuration: number
1969
+
1970
+ /**
1971
+ * 录像存储时长(天)
1972
+ */
1973
+ StoreDuration: number
1974
+
1975
+ /**
1976
+ * 设备列表
1977
+ */
1978
+ Devices?: Array<DeviceItem>
1979
+ }
1980
+
1269
1981
  /**
1270
1982
  * 查询全部设备出参
1271
1983
  */
@@ -1349,6 +2061,28 @@ export interface AllDeviceInfo {
1349
2061
  GroupName?: string
1350
2062
  }
1351
2063
 
2064
+ /**
2065
+ * DescribeLiveVideoList返回参数结构体
2066
+ */
2067
+ export interface DescribeLiveVideoListResponse {
2068
+ /**
2069
+ * 总的条数
2070
+ 注意:此字段可能返回 null,表示取不到有效值。
2071
+ */
2072
+ Total: number
2073
+
2074
+ /**
2075
+ * 录制任务详情数组
2076
+ 注意:此字段可能返回 null,表示取不到有效值。
2077
+ */
2078
+ RecordList: Array<LiveRecordItem>
2079
+
2080
+ /**
2081
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2082
+ */
2083
+ RequestId?: string
2084
+ }
2085
+
1352
2086
  /**
1353
2087
  * DeleteDeviceGroup请求参数结构体
1354
2088
  */
@@ -1360,15 +2094,60 @@ export interface DeleteDeviceGroupRequest {
1360
2094
  }
1361
2095
 
1362
2096
  /**
1363
- * DescribeDeviceGroup返回参数结构体
2097
+ * DescribeLiveRecordPlanById返回参数结构体
1364
2098
  */
1365
- export interface DescribeDeviceGroupResponse {
2099
+ export interface DescribeLiveRecordPlanByIdResponse {
1366
2100
  /**
1367
- * 设备所在分组信息
2101
+ * 计划名称
2102
+ */
2103
+ PlanName: string
2104
+
2105
+ /**
2106
+ * 模板ID
2107
+ */
2108
+ TemplateId: string
2109
+
2110
+ /**
2111
+ * 模板名称
2112
+ */
2113
+ TemplateName: string
2114
+
2115
+ /**
2116
+ * 存储时间
2117
+ */
2118
+ RecordStorageTime: number
2119
+
2120
+ /**
2121
+ * 计划类型
2122
+ */
2123
+ PlanType: number
2124
+
2125
+ /**
2126
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2127
+ */
2128
+ RequestId?: string
2129
+ }
2130
+
2131
+ /**
2132
+ * DescribeRecordDatesByLive返回参数结构体
2133
+ */
2134
+ export interface DescribeRecordDatesByLiveResponse {
2135
+ /**
2136
+ * 录制日期数组
1368
2137
  注意:此字段可能返回 null,表示取不到有效值。
1369
2138
  */
1370
- DevGroups: Array<DevGroupInfo>
2139
+ Dates: Array<string>
2140
+
2141
+ /**
2142
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2143
+ */
2144
+ RequestId?: string
2145
+ }
1371
2146
 
2147
+ /**
2148
+ * ModifySubscriptionStatus返回参数结构体
2149
+ */
2150
+ export interface ModifySubscriptionStatusResponse {
1372
2151
  /**
1373
2152
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1374
2153
  */
@@ -1390,6 +2169,16 @@ export interface ModifyDeviceDataRequest {
1390
2169
  NickName: string
1391
2170
  }
1392
2171
 
2172
+ /**
2173
+ * DeleteScene返回参数结构体
2174
+ */
2175
+ export interface DeleteSceneResponse {
2176
+ /**
2177
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2178
+ */
2179
+ RequestId?: string
2180
+ }
2181
+
1393
2182
  /**
1394
2183
  * GetRecordDatesByDev请求参数结构体
1395
2184
  */
@@ -1405,19 +2194,74 @@ export interface GetRecordDatesByDevRequest {
1405
2194
  Offset: number
1406
2195
 
1407
2196
  /**
1408
- * 限制量,默认200
2197
+ * 限制量,默认200
2198
+ */
2199
+ Limit: number
2200
+
2201
+ /**
2202
+ * 通道唯一标识
2203
+ */
2204
+ ChannelId?: string
2205
+
2206
+ /**
2207
+ * 1: 云端录制 2: 本地录制
2208
+ */
2209
+ Type?: number
2210
+ }
2211
+
2212
+ /**
2213
+ * DescribeLiveVideoList请求参数结构体
2214
+ */
2215
+ export interface DescribeLiveVideoListRequest {
2216
+ /**
2217
+ * 偏移量
2218
+ */
2219
+ Offset: number
2220
+
2221
+ /**
2222
+ * 分页的每页数量
2223
+ */
2224
+ Limit: number
2225
+
2226
+ /**
2227
+ * 直播ID
2228
+ */
2229
+ LiveChannelId: string
2230
+
2231
+ /**
2232
+ * 开始录制开始时间
2233
+ */
2234
+ StartRecordTime?: number
2235
+
2236
+ /**
2237
+ * 开始录制结束时间
2238
+ */
2239
+ EndRecordTime?: number
2240
+
2241
+ /**
2242
+ * 过期开始时间
2243
+ */
2244
+ StartExpireTime?: number
2245
+
2246
+ /**
2247
+ * 过期结束时间
2248
+ */
2249
+ EndExpireTime?: number
2250
+
2251
+ /**
2252
+ * 文件大小范围 Byte
1409
2253
  */
1410
- Limit: number
2254
+ StartFileSize?: number
1411
2255
 
1412
2256
  /**
1413
- * 通道唯一标识
2257
+ * 文件大小范围 Byte
1414
2258
  */
1415
- ChannelId?: string
2259
+ EndFileSize?: number
1416
2260
 
1417
2261
  /**
1418
- * 1: 云端录制 2: 本地录制
2262
+ * 录制状态,5: 录制回写完
1419
2263
  */
1420
- Type?: number
2264
+ IsRecording?: number
1421
2265
  }
1422
2266
 
1423
2267
  /**
@@ -1442,14 +2286,41 @@ export interface GetTimeTemplatesResponse {
1442
2286
  }
1443
2287
 
1444
2288
  /**
1445
- * DescribeDevicePassWord返回参数结构体
2289
+ * CreateLiveChannel返回参数结构体
1446
2290
  */
1447
- export interface DescribeDevicePassWordResponse {
2291
+ export interface CreateLiveChannelResponse {
1448
2292
  /**
1449
- * 设备密码
2293
+ * 直播频道ID
2294
+ 注意:此字段可能返回 null,表示取不到有效值。
2295
+ */
2296
+ LiveChannelId: string
2297
+
2298
+ /**
2299
+ * 直播频道推流地址
2300
+ 注意:此字段可能返回 null,表示取不到有效值。
2301
+ */
2302
+ PushStreamAddress: string
2303
+
2304
+ /**
2305
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1450
2306
  */
1451
- PassWord: string
2307
+ RequestId?: string
2308
+ }
2309
+
2310
+ /**
2311
+ * DeleteVideoList返回参数结构体
2312
+ */
2313
+ export interface DeleteVideoListResponse {
2314
+ /**
2315
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2316
+ */
2317
+ RequestId?: string
2318
+ }
1452
2319
 
2320
+ /**
2321
+ * ModifyLiveVideo返回参数结构体
2322
+ */
2323
+ export interface ModifyLiveVideoResponse {
1453
2324
  /**
1454
2325
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1455
2326
  */
@@ -1501,25 +2372,13 @@ export interface DescribeAllDeviceListResponse {
1501
2372
  }
1502
2373
 
1503
2374
  /**
1504
- * DescribeSubGroups返回参数结构体
2375
+ * DescribeStatisticSummary请求参数结构体
1505
2376
  */
1506
- export interface DescribeSubGroupsResponse {
1507
- /**
1508
- * 子分组详情列表
1509
- 注意:此字段可能返回 null,表示取不到有效值。
1510
- */
1511
- GroupList: Array<GroupItem>
1512
-
1513
- /**
1514
- * 子分组总数
1515
- 注意:此字段可能返回 null,表示取不到有效值。
1516
- */
1517
- TotalCount: number
1518
-
2377
+ export interface DescribeStatisticSummaryRequest {
1519
2378
  /**
1520
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2379
+ * 指定日期。格式【YYYY-MM-DD】
1521
2380
  */
1522
- RequestId?: string
2381
+ Date: string
1523
2382
  }
1524
2383
 
1525
2384
  /**
@@ -1564,18 +2423,55 @@ export interface DescribeDeviceStreamsData {
1564
2423
  }
1565
2424
 
1566
2425
  /**
1567
- * BindGroupDevices请求参数结构体
2426
+ * DeleteLiveRecordPlan请求参数结构体
1568
2427
  */
1569
- export interface BindGroupDevicesRequest {
2428
+ export interface DeleteLiveRecordPlanRequest {
1570
2429
  /**
1571
- * 分组ID
2430
+ * 录制计划ID
1572
2431
  */
1573
- GroupId: string
2432
+ PlanId: string
2433
+ }
2434
+
2435
+ /**
2436
+ * DeleteDevice返回参数结构体
2437
+ */
2438
+ export interface DeleteDeviceResponse {
2439
+ /**
2440
+ * 操作结果
2441
+ 注意:此字段可能返回 null,表示取不到有效值。
2442
+ */
2443
+ Status: string
1574
2444
 
1575
2445
  /**
1576
- * 设备唯一标识列表
2446
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1577
2447
  */
1578
- DeviceList: Array<string>
2448
+ RequestId?: string
2449
+ }
2450
+
2451
+ /**
2452
+ * DeleteLiveVideoList返回参数结构体
2453
+ */
2454
+ export interface DeleteLiveVideoListResponse {
2455
+ /**
2456
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2457
+ */
2458
+ RequestId?: string
2459
+ }
2460
+
2461
+ /**
2462
+ * DescribeDeviceGroup返回参数结构体
2463
+ */
2464
+ export interface DescribeDeviceGroupResponse {
2465
+ /**
2466
+ * 设备所在分组信息
2467
+ 注意:此字段可能返回 null,表示取不到有效值。
2468
+ */
2469
+ DevGroups: Array<DevGroupInfo>
2470
+
2471
+ /**
2472
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2473
+ */
2474
+ RequestId?: string
1579
2475
  }
1580
2476
 
1581
2477
  /**
@@ -1593,6 +2489,16 @@ export interface CreateTimeTemplateResponse {
1593
2489
  RequestId?: string
1594
2490
  }
1595
2491
 
2492
+ /**
2493
+ * DeleteLiveChannel请求参数结构体
2494
+ */
2495
+ export interface DeleteLiveChannelRequest {
2496
+ /**
2497
+ * 直播频道ID
2498
+ */
2499
+ LiveChannelId: string
2500
+ }
2501
+
1596
2502
  /**
1597
2503
  * 某天的统计数额
1598
2504
  */
@@ -1635,6 +2541,16 @@ export interface DescribeGroupByPathRequest {
1635
2541
  GroupPath: string
1636
2542
  }
1637
2543
 
2544
+ /**
2545
+ * DeleteChannel返回参数结构体
2546
+ */
2547
+ export interface DeleteChannelResponse {
2548
+ /**
2549
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2550
+ */
2551
+ RequestId?: string
2552
+ }
2553
+
1638
2554
  /**
1639
2555
  * UpdateRecordPlan返回参数结构体
1640
2556
  */
@@ -1695,6 +2611,93 @@ export interface DescribeDeviceGroupRequest {
1695
2611
  DeviceIds?: Array<string>
1696
2612
  }
1697
2613
 
2614
+ /**
2615
+ * 直播频道详情
2616
+ */
2617
+ export interface LiveChannelItem {
2618
+ /**
2619
+ * 频道ID
2620
+ */
2621
+ ChannelId: string
2622
+
2623
+ /**
2624
+ * 频道名称
2625
+ */
2626
+ ChannelName: string
2627
+ }
2628
+
2629
+ /**
2630
+ * DescribeGroups请求参数结构体
2631
+ */
2632
+ export interface DescribeGroupsRequest {
2633
+ /**
2634
+ * 分组ID列表
2635
+ */
2636
+ GroupIds?: Array<string>
2637
+ }
2638
+
2639
+ /**
2640
+ * GetRecordPlans返回参数结构体
2641
+ */
2642
+ export interface GetRecordPlansResponse {
2643
+ /**
2644
+ * 录制计划详情·列表
2645
+ 注意:此字段可能返回 null,表示取不到有效值。
2646
+ */
2647
+ Plans: Array<RecordPlanItem>
2648
+
2649
+ /**
2650
+ * 录制计划总数
2651
+ 注意:此字段可能返回 null,表示取不到有效值。
2652
+ */
2653
+ TotalCount: number
2654
+
2655
+ /**
2656
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2657
+ */
2658
+ RequestId?: string
2659
+ }
2660
+
2661
+ /**
2662
+ * DescribeChannelsByLiveRecordPlan请求参数结构体
2663
+ */
2664
+ export interface DescribeChannelsByLiveRecordPlanRequest {
2665
+ /**
2666
+ * 录制计划ID
2667
+ */
2668
+ PlanId: string
2669
+
2670
+ /**
2671
+ * 分页偏移量
2672
+ */
2673
+ Offset?: number
2674
+
2675
+ /**
2676
+ * 分页大小
2677
+ */
2678
+ Limit?: number
2679
+ }
2680
+
2681
+ /**
2682
+ * ModifyLiveChannel返回参数结构体
2683
+ */
2684
+ export interface ModifyLiveChannelResponse {
2685
+ /**
2686
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2687
+ */
2688
+ RequestId?: string
2689
+ }
2690
+
2691
+ /**
2692
+ * GetTimeTemplateById请求参数结构体
2693
+ */
2694
+ export interface GetTimeTemplateByIdRequest {
2695
+ /**
2696
+ * 时间模板ID
2697
+ */
2698
+ TemplateId: string
2699
+ }
2700
+
1698
2701
  /**
1699
2702
  * 录制计划详情
1700
2703
  */
@@ -1712,56 +2715,149 @@ export interface RecordPlanItem {
1712
2715
  Name: string
1713
2716
 
1714
2717
  /**
1715
- * 时间模板ID
1716
- 注意:此字段可能返回 null,表示取不到有效值。
1717
- */
1718
- TimeTemplateId: string
2718
+ * 时间模板ID
2719
+ 注意:此字段可能返回 null,表示取不到有效值。
2720
+ */
2721
+ TimeTemplateId: string
2722
+
2723
+ /**
2724
+ * 时间模板名称
2725
+ 注意:此字段可能返回 null,表示取不到有效值。
2726
+ */
2727
+ TimeTemplateName: string
2728
+
2729
+ /**
2730
+ * 录制类型
2731
+ 注意:此字段可能返回 null,表示取不到有效值。
2732
+ */
2733
+ EventId: number
2734
+
2735
+ /**
2736
+ * 绑定的设备列表
2737
+ 注意:此字段可能返回 null,表示取不到有效值。
2738
+ */
2739
+ Devices: Array<DeviceItem>
2740
+ }
2741
+
2742
+ /**
2743
+ * GetRecordPlans请求参数结构体
2744
+ */
2745
+ export type GetRecordPlansRequest = null
2746
+
2747
+ /**
2748
+ * DeleteTimeTemplate请求参数结构体
2749
+ */
2750
+ export interface DeleteTimeTemplateRequest {
2751
+ /**
2752
+ * 时间模板ID
2753
+ */
2754
+ TemplateId: string
2755
+ }
2756
+
2757
+ /**
2758
+ * ModifyLiveChannel请求参数结构体
2759
+ */
2760
+ export interface ModifyLiveChannelRequest {
2761
+ /**
2762
+ * 直播频道ID
2763
+ */
2764
+ LiveChannelId: string
2765
+
2766
+ /**
2767
+ * 直播频道名
2768
+ */
2769
+ LiveChannelName: string
2770
+ }
2771
+
2772
+ /**
2773
+ * DescribeVideoList返回参数结构体
2774
+ */
2775
+ export interface DescribeVideoListResponse {
2776
+ /**
2777
+ * 总数
2778
+ */
2779
+ TotalCount: number
2780
+
2781
+ /**
2782
+ * 已废弃
2783
+ */
2784
+ VideoList: RecordTaskItem
2785
+
2786
+ /**
2787
+ * 录像详情列表
2788
+ */
2789
+ RecordList: Array<RecordTaskItem>
2790
+
2791
+ /**
2792
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2793
+ */
2794
+ RequestId?: string
2795
+ }
1719
2796
 
2797
+ /**
2798
+ * DescribeLiveRecordPlanIds请求参数结构体
2799
+ */
2800
+ export interface DescribeLiveRecordPlanIdsRequest {
1720
2801
  /**
1721
- * 时间模板名称
1722
- 注意:此字段可能返回 null,表示取不到有效值。
1723
- */
1724
- TimeTemplateName: string
2802
+ * 时间模板ID
2803
+ */
2804
+ TemplateId?: string
1725
2805
 
1726
2806
  /**
1727
- * 录制类型
1728
- 注意:此字段可能返回 null,表示取不到有效值。
1729
- */
1730
- EventId: number
2807
+ * 分页偏移量
2808
+ */
2809
+ Offset?: number
1731
2810
 
1732
2811
  /**
1733
- * 绑定的设备列表
1734
- 注意:此字段可能返回 null,表示取不到有效值。
1735
- */
1736
- Devices: Array<DeviceItem>
2812
+ * 分页大小
2813
+ */
2814
+ Limit?: number
1737
2815
  }
1738
2816
 
1739
2817
  /**
1740
- * DescribeGroups请求参数结构体
2818
+ * DeleteLiveVideoList请求参数结构体
1741
2819
  */
1742
- export interface DescribeGroupsRequest {
2820
+ export interface DeleteLiveVideoListRequest {
1743
2821
  /**
1744
- * 分组ID列表
2822
+ * 视频ID 列表, 大小限制(100)
1745
2823
  */
1746
- GroupIds?: Array<string>
2824
+ IntIDs: Array<number>
1747
2825
  }
1748
2826
 
1749
2827
  /**
1750
- * GetRecordPlans返回参数结构体
2828
+ * DescribeScenes请求参数结构体
1751
2829
  */
1752
- export interface GetRecordPlansResponse {
2830
+ export interface DescribeScenesRequest {
1753
2831
  /**
1754
- * 录制计划详情·列表
1755
- 注意:此字段可能返回 null,表示取不到有效值。
1756
- */
1757
- Plans: Array<RecordPlanItem>
2832
+ * 条数限制
2833
+ */
2834
+ Limit: number
1758
2835
 
1759
2836
  /**
1760
- * 录制计划总数
1761
- 注意:此字段可能返回 null,表示取不到有效值。
1762
- */
1763
- TotalCount: number
2837
+ * 偏移
2838
+ */
2839
+ Offset?: number
2840
+ }
1764
2841
 
2842
+ /**
2843
+ * DeleteLiveRecordPlan返回参数结构体
2844
+ */
2845
+ export interface DeleteLiveRecordPlanResponse {
2846
+ /**
2847
+ * 删除状态描述
2848
+ */
2849
+ Status: string
2850
+
2851
+ /**
2852
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2853
+ */
2854
+ RequestId?: string
2855
+ }
2856
+
2857
+ /**
2858
+ * ModifyVideoInfo返回参数结构体
2859
+ */
2860
+ export interface ModifyVideoInfoResponse {
1765
2861
  /**
1766
2862
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1767
2863
  */
@@ -1785,129 +2881,59 @@ export interface DescribeGroupByIdResponse {
1785
2881
  }
1786
2882
 
1787
2883
  /**
1788
- * GetTimeTemplateById请求参数结构体
2884
+ * ControlRecordStream返回参数结构体
1789
2885
  */
1790
- export interface GetTimeTemplateByIdRequest {
2886
+ export interface ControlRecordStreamResponse {
1791
2887
  /**
1792
- * 时间模板ID
2888
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1793
2889
  */
1794
- TemplateId: string
2890
+ RequestId?: string
1795
2891
  }
1796
2892
 
1797
2893
  /**
1798
- * 分组信息
2894
+ * DeleteLiveChannel返回参数结构体
1799
2895
  */
1800
- export interface GroupItem {
1801
- /**
1802
- * 分组名称
1803
- 注意:此字段可能返回 null,表示取不到有效值。
1804
- */
1805
- GroupName: string
1806
-
1807
- /**
1808
- * 父分组ID
1809
- 注意:此字段可能返回 null,表示取不到有效值。
1810
- */
1811
- ParentId: string
1812
-
1813
- /**
1814
- * 分组ID
1815
- 注意:此字段可能返回 null,表示取不到有效值。
1816
- */
1817
- GroupId: string
1818
-
1819
- /**
1820
- * 分组路径
1821
- 注意:此字段可能返回 null,表示取不到有效值。
1822
- */
1823
- GroupPath?: string
1824
-
2896
+ export interface DeleteLiveChannelResponse {
1825
2897
  /**
1826
- * 分组描述
1827
- 注意:此字段可能返回 null,表示取不到有效值。
1828
- */
1829
- GroupDescribe?: string
2898
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2899
+ */
2900
+ RequestId?: string
2901
+ }
1830
2902
 
1831
- /**
1832
- * 分组绑定设备数
1833
- 注意:此字段可能返回 null,表示取不到有效值。
1834
- */
1835
- DeviceNum?: number
2903
+ /**
2904
+ * 拉流地址,只有在推流情况下才有
1836
2905
 
2906
+ */
2907
+ export interface StreamAddress {
1837
2908
  /**
1838
- * 子分组数量
2909
+ * 流ID
1839
2910
  注意:此字段可能返回 null,表示取不到有效值。
1840
2911
  */
1841
- SubGroupNum?: number
2912
+ StreamId: string
1842
2913
 
1843
2914
  /**
1844
- * 分组附加信息
2915
+ * rtsp流地址
1845
2916
  注意:此字段可能返回 null,表示取不到有效值。
1846
2917
  */
1847
- ExtraInformation?: string
2918
+ RtspAddr: string
1848
2919
 
1849
2920
  /**
1850
- * 分组类型
2921
+ * rtmp流地址
1851
2922
  注意:此字段可能返回 null,表示取不到有效值。
1852
2923
  */
1853
- GroupType?: string
2924
+ RtmpAddr: string
1854
2925
 
1855
2926
  /**
1856
- * 创建时间
2927
+ * hls流地址
1857
2928
  注意:此字段可能返回 null,表示取不到有效值。
1858
2929
  */
1859
- CreateTime?: number
2930
+ HlsAddr: string
1860
2931
 
1861
2932
  /**
1862
- * 分组状态
2933
+ * flv流地址
1863
2934
  注意:此字段可能返回 null,表示取不到有效值。
1864
2935
  */
1865
- GroupStatus?: number
1866
- }
1867
-
1868
- /**
1869
- * DeleteTimeTemplate请求参数结构体
1870
- */
1871
- export interface DeleteTimeTemplateRequest {
1872
- /**
1873
- * 时间模板ID
1874
- */
1875
- TemplateId: string
1876
- }
1877
-
1878
- /**
1879
- * DescribeVideoList返回参数结构体
1880
- */
1881
- export interface DescribeVideoListResponse {
1882
- /**
1883
- * 总数
1884
- */
1885
- TotalCount: number
1886
-
1887
- /**
1888
- * 已废弃
1889
- */
1890
- VideoList: RecordTaskItem
1891
-
1892
- /**
1893
- * 录像详情列表
1894
- */
1895
- RecordList: Array<RecordTaskItem>
1896
-
1897
- /**
1898
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1899
- */
1900
- RequestId?: string
1901
- }
1902
-
1903
- /**
1904
- * ControlRecordStream返回参数结构体
1905
- */
1906
- export interface ControlRecordStreamResponse {
1907
- /**
1908
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1909
- */
1910
- RequestId?: string
2936
+ FlvAddr: string
1911
2937
  }
1912
2938
 
1913
2939
  /**
@@ -2011,14 +3037,20 @@ export interface DescribeVideoListRequest {
2011
3037
  }
2012
3038
 
2013
3039
  /**
2014
- * ModifyDeviceData返回参数结构体
3040
+ * DescribeLiveChannelList返回参数结构体
2015
3041
  */
2016
- export interface ModifyDeviceDataResponse {
3042
+ export interface DescribeLiveChannelListResponse {
2017
3043
  /**
2018
- * 操作结果,“OK”表示成功,其他表示失败。
3044
+ * 频道总数
2019
3045
  注意:此字段可能返回 null,表示取不到有效值。
2020
3046
  */
2021
- Status: string
3047
+ Total: number
3048
+
3049
+ /**
3050
+ * 频道信息数组
3051
+ 注意:此字段可能返回 null,表示取不到有效值。
3052
+ */
3053
+ LiveChannels: Array<LiveChannelInfo>
2022
3054
 
2023
3055
  /**
2024
3056
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -2027,14 +3059,55 @@ export interface ModifyDeviceDataResponse {
2027
3059
  }
2028
3060
 
2029
3061
  /**
2030
- * DeleteDevice返回参数结构体
3062
+ * DescribeDevicePassWord返回参数结构体
2031
3063
  */
2032
- export interface DeleteDeviceResponse {
3064
+ export interface DescribeDevicePassWordResponse {
2033
3065
  /**
2034
- * 操作结果
3066
+ * 设备密码
3067
+ */
3068
+ PassWord: string
3069
+
3070
+ /**
3071
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3072
+ */
3073
+ RequestId?: string
3074
+ }
3075
+
3076
+ /**
3077
+ * DescribeBindSceneDevices请求参数结构体
3078
+ */
3079
+ export interface DescribeBindSceneDevicesRequest {
3080
+ /**
3081
+ * 场景ID
3082
+ */
3083
+ SceneId?: number
3084
+
3085
+ /**
3086
+ * 偏移值
3087
+ */
3088
+ Offset?: number
3089
+
3090
+ /**
3091
+ * 条数限制最大不能超过1000
3092
+ */
3093
+ Limit?: number
3094
+ }
3095
+
3096
+ /**
3097
+ * DescribeBindSceneDevices返回参数结构体
3098
+ */
3099
+ export interface DescribeBindSceneDevicesResponse {
3100
+ /**
3101
+ * 总数
2035
3102
  注意:此字段可能返回 null,表示取不到有效值。
2036
3103
  */
2037
- Status: string
3104
+ Total: number
3105
+
3106
+ /**
3107
+ * 设备列表
3108
+ 注意:此字段可能返回 null,表示取不到有效值。
3109
+ */
3110
+ List: Array<DeviceItem>
2038
3111
 
2039
3112
  /**
2040
3113
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -2042,6 +3115,21 @@ export interface DeleteDeviceResponse {
2042
3115
  RequestId?: string
2043
3116
  }
2044
3117
 
3118
+ /**
3119
+ * ModifyLiveVideo请求参数结构体
3120
+ */
3121
+ export interface ModifyLiveVideoRequest {
3122
+ /**
3123
+ * 视频ID 列表, 大小限制(100)
3124
+ */
3125
+ IntIDs: Array<number>
3126
+
3127
+ /**
3128
+ * 过期时间 秒 (-1: 为永不过期)
3129
+ */
3130
+ ExpireTime: number
3131
+ }
3132
+
2045
3133
  /**
2046
3134
  * DescribeGroupByPath返回参数结构体
2047
3135
  */
@@ -2058,6 +3146,21 @@ export interface DescribeGroupByPathResponse {
2058
3146
  RequestId?: string
2059
3147
  }
2060
3148
 
3149
+ /**
3150
+ * CreateLiveChannel请求参数结构体
3151
+ */
3152
+ export interface CreateLiveChannelRequest {
3153
+ /**
3154
+ * 直播频道名称
3155
+ */
3156
+ LiveChannelName: string
3157
+
3158
+ /**
3159
+ * 直播频道类型 1:固定直播;2:移动直播
3160
+ */
3161
+ LiveChannelType: number
3162
+ }
3163
+
2061
3164
  /**
2062
3165
  * DescribeGroupDevices返回参数结构体
2063
3166
  */
@@ -2079,3 +3182,29 @@ export interface DescribeGroupDevicesResponse {
2079
3182
  */
2080
3183
  RequestId?: string
2081
3184
  }
3185
+
3186
+ /**
3187
+ * DeleteScene请求参数结构体
3188
+ */
3189
+ export interface DeleteSceneRequest {
3190
+ /**
3191
+ * 场景ID
3192
+ */
3193
+ IntId: number
3194
+ }
3195
+
3196
+ /**
3197
+ * DescribeLiveStream返回参数结构体
3198
+ */
3199
+ export interface DescribeLiveStreamResponse {
3200
+ /**
3201
+ * 拉流地址,只有在推流情况下才有
3202
+ 注意:此字段可能返回 null,表示取不到有效值。
3203
+ */
3204
+ Data: StreamAddress
3205
+
3206
+ /**
3207
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3208
+ */
3209
+ RequestId?: string
3210
+ }