tencentcloud-sdk-iss 3.0.628 → 3.0.630

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20230517/models.rb +1591 -873
  4. metadata +2 -2
@@ -103,6 +103,34 @@ module TencentCloud
103
103
  end
104
104
  end
105
105
 
106
+ # AI识别结果
107
+ class AITaskResultData < TencentCloud::Common::AbstractModel
108
+ # @param TaskId: AI 任务 ID
109
+ # @type TaskId: String
110
+ # @param AIResultCount: 在 BeginTime 和 EndTime 时间之内,有识别结果的 AI 调用次数(分页依据此数值)
111
+ # @type AIResultCount: Integer
112
+ # @param AIResults: AI 任务执行结果详情
113
+ # 注意:此字段可能返回 null,表示取不到有效值。
114
+ # @type AIResults: :class:`Tencentcloud::Iss.v20230517.models.AITaskResultInfo`
115
+
116
+ attr_accessor :TaskId, :AIResultCount, :AIResults
117
+
118
+ def initialize(taskid=nil, airesultcount=nil, airesults=nil)
119
+ @TaskId = taskid
120
+ @AIResultCount = airesultcount
121
+ @AIResults = airesults
122
+ end
123
+
124
+ def deserialize(params)
125
+ @TaskId = params['TaskId']
126
+ @AIResultCount = params['AIResultCount']
127
+ unless params['AIResults'].nil?
128
+ @AIResults = AITaskResultInfo.new
129
+ @AIResults.deserialize(params['AIResults'])
130
+ end
131
+ end
132
+ end
133
+
106
134
  # AI分析结果详情
107
135
  class AITaskResultInfo < TencentCloud::Common::AbstractModel
108
136
  # @param Body: 人体识别结果列表
@@ -211,34 +239,6 @@ module TencentCloud
211
239
  end
212
240
  end
213
241
 
214
- # AI识别结果
215
- class AITaskResultResponse < TencentCloud::Common::AbstractModel
216
- # @param TaskId: AI 任务 ID
217
- # @type TaskId: String
218
- # @param AIResultCount: 在 BeginTime 和 EndTime 时间之内,有识别结果的 AI 调用次数(分页依据此数值)
219
- # @type AIResultCount: Integer
220
- # @param AIResults: AI 任务执行结果详情
221
- # 注意:此字段可能返回 null,表示取不到有效值。
222
- # @type AIResults: :class:`Tencentcloud::Iss.v20230517.models.AITaskResultInfo`
223
-
224
- attr_accessor :TaskId, :AIResultCount, :AIResults
225
-
226
- def initialize(taskid=nil, airesultcount=nil, airesults=nil)
227
- @TaskId = taskid
228
- @AIResultCount = airesultcount
229
- @AIResults = airesults
230
- end
231
-
232
- def deserialize(params)
233
- @TaskId = params['TaskId']
234
- @AIResultCount = params['AIResultCount']
235
- unless params['AIResults'].nil?
236
- @AIResults = AITaskResultInfo.new
237
- @AIResults.deserialize(params['AIResults'])
238
- end
239
- end
240
- end
241
-
242
242
  # AI模板信息
243
243
  class AITemplates < TencentCloud::Common::AbstractModel
244
244
  # @param Tag: AI 类别。可选值 AI(AI 分析)和 Snapshot(截图),Templates 列表中只能出现一种类型。
@@ -337,7 +337,7 @@ module TencentCloud
337
337
  end
338
338
 
339
339
  # 增加设备接口返回数据
340
- class AddDeviceResponse < TencentCloud::Common::AbstractModel
340
+ class AddDeviceData < TencentCloud::Common::AbstractModel
341
341
  # @param DeviceId: 设备iD
342
342
  # 注意:此字段可能返回 null,表示取不到有效值。
343
343
  # @type DeviceId: String
@@ -440,7 +440,7 @@ module TencentCloud
440
440
  end
441
441
 
442
442
  # 增加组织接口返回数据
443
- class AddOrgResponse < TencentCloud::Common::AbstractModel
443
+ class AddOrgData < TencentCloud::Common::AbstractModel
444
444
  # @param OrganizationId: 组织 ID
445
445
  # 注意:此字段可能返回 null,表示取不到有效值。
446
446
  # @type OrganizationId: String
@@ -514,7 +514,7 @@ module TencentCloud
514
514
  # AddOrganization返回参数结构体
515
515
  class AddOrganizationResponse < TencentCloud::Common::AbstractModel
516
516
  # @param Data: 增加组织接口返回数据
517
- # @type Data: :class:`Tencentcloud::Iss.v20230517.models.AddOrgResponse`
517
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.AddOrgData`
518
518
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
519
519
  # @type RequestId: String
520
520
 
@@ -527,13 +527,64 @@ module TencentCloud
527
527
 
528
528
  def deserialize(params)
529
529
  unless params['Data'].nil?
530
- @Data = AddOrgResponse.new
530
+ @Data = AddOrgData.new
531
531
  @Data.deserialize(params['Data'])
532
532
  end
533
533
  @RequestId = params['RequestId']
534
534
  end
535
535
  end
536
536
 
537
+ # 新增录像上云计划返回数据
538
+ class AddRecordBackupPlanData < TencentCloud::Common::AbstractModel
539
+ # @param PlanId: 录像上云计划ID
540
+ # @type PlanId: String
541
+ # @param PlanName: 录像上云计划名称
542
+ # @type PlanName: String
543
+ # @param TemplateId: 录像上云模板ID
544
+ # @type TemplateId: String
545
+ # @param Describe: 录像上云计划描述
546
+ # @type Describe: String
547
+ # @param LifeCycle: 云文件生命周期
548
+ # @type LifeCycle: :class:`Tencentcloud::Iss.v20230517.models.LifeCycleData`
549
+ # @param Status: 录像上云计划状态,1:正常使用中,0:删除中,无法使用
550
+ # @type Status: Integer
551
+ # @param ChannelCount: 通道数量
552
+ # @type ChannelCount: Integer
553
+ # @param CreateAt: 创建时间
554
+ # @type CreateAt: String
555
+ # @param UpdateAt: 修改时间
556
+ # @type UpdateAt: String
557
+
558
+ attr_accessor :PlanId, :PlanName, :TemplateId, :Describe, :LifeCycle, :Status, :ChannelCount, :CreateAt, :UpdateAt
559
+
560
+ def initialize(planid=nil, planname=nil, templateid=nil, describe=nil, lifecycle=nil, status=nil, channelcount=nil, createat=nil, updateat=nil)
561
+ @PlanId = planid
562
+ @PlanName = planname
563
+ @TemplateId = templateid
564
+ @Describe = describe
565
+ @LifeCycle = lifecycle
566
+ @Status = status
567
+ @ChannelCount = channelcount
568
+ @CreateAt = createat
569
+ @UpdateAt = updateat
570
+ end
571
+
572
+ def deserialize(params)
573
+ @PlanId = params['PlanId']
574
+ @PlanName = params['PlanName']
575
+ @TemplateId = params['TemplateId']
576
+ @Describe = params['Describe']
577
+ unless params['LifeCycle'].nil?
578
+ @LifeCycle = LifeCycleData.new
579
+ @LifeCycle.deserialize(params['LifeCycle'])
580
+ end
581
+ @Status = params['Status']
582
+ @ChannelCount = params['ChannelCount']
583
+ @CreateAt = params['CreateAt']
584
+ @UpdateAt = params['UpdateAt']
585
+ end
586
+ end
587
+
537
588
  # AddRecordBackupPlan请求参数结构体
538
589
  class AddRecordBackupPlanRequest < TencentCloud::Common::AbstractModel
539
590
  # @param TemplateId: 录制模板ID(录像计划关联的模板ID,从查询录像上云模板列表接口ListRecordBackupTemplates中获取)
@@ -580,78 +631,67 @@ module TencentCloud
580
631
  end
581
632
  end
582
633
 
583
- # 新增录像上云计划返回数据
634
+ # AddRecordBackupPlan返回参数结构体
584
635
  class AddRecordBackupPlanResponse < TencentCloud::Common::AbstractModel
585
- # @param PlanId: 录像上云计划ID
586
- # @type PlanId: String
587
- # @param PlanName: 录像上云计划名称
588
- # @type PlanName: String
589
- # @param TemplateId: 录像上云模板ID
590
- # @type TemplateId: String
591
- # @param Describe: 录像上云计划描述
592
- # @type Describe: String
593
- # @param LifeCycle: 云文件生命周期
594
- # @type LifeCycle: :class:`Tencentcloud::Iss.v20230517.models.LifeCycleData`
595
- # @param Status: 录像上云计划状态,1:正常使用中,0:删除中,无法使用
596
- # @type Status: Integer
597
- # @param ChannelCount: 通道数量
598
- # @type ChannelCount: Integer
599
- # @param CreateAt: 创建时间
600
- # @type CreateAt: String
601
- # @param UpdateAt: 修改时间
602
- # @type UpdateAt: String
636
+ # @param Data: 返回数据
637
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.AddRecordBackupPlanData`
638
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
639
+ # @type RequestId: String
603
640
 
604
- attr_accessor :PlanId, :PlanName, :TemplateId, :Describe, :LifeCycle, :Status, :ChannelCount, :CreateAt, :UpdateAt
641
+ attr_accessor :Data, :RequestId
605
642
 
606
- def initialize(planid=nil, planname=nil, templateid=nil, describe=nil, lifecycle=nil, status=nil, channelcount=nil, createat=nil, updateat=nil)
607
- @PlanId = planid
608
- @PlanName = planname
609
- @TemplateId = templateid
610
- @Describe = describe
611
- @LifeCycle = lifecycle
612
- @Status = status
613
- @ChannelCount = channelcount
614
- @CreateAt = createat
615
- @UpdateAt = updateat
643
+ def initialize(data=nil, requestid=nil)
644
+ @Data = data
645
+ @RequestId = requestid
616
646
  end
617
647
 
618
648
  def deserialize(params)
619
- @PlanId = params['PlanId']
620
- @PlanName = params['PlanName']
621
- @TemplateId = params['TemplateId']
622
- @Describe = params['Describe']
623
- unless params['LifeCycle'].nil?
624
- @LifeCycle = LifeCycleData.new
625
- @LifeCycle.deserialize(params['LifeCycle'])
649
+ unless params['Data'].nil?
650
+ @Data = AddRecordBackupPlanData.new
651
+ @Data.deserialize(params['Data'])
626
652
  end
627
- @Status = params['Status']
628
- @ChannelCount = params['ChannelCount']
629
- @CreateAt = params['CreateAt']
630
- @UpdateAt = params['UpdateAt']
653
+ @RequestId = params['RequestId']
631
654
  end
632
655
  end
633
656
 
634
- # AddRecordBackupTemplate请求参数结构体
635
- class AddRecordBackupTemplateRequest < TencentCloud::Common::AbstractModel
636
- # @param TemplateName: 模板名称(仅支持中文、英文、数字、_、-,长度不超过32个字符,模板名称全局唯一,不能为空,不能重复)
657
+ # 新增录像上云模版返回数据
658
+ class AddRecordBackupTemplateData < TencentCloud::Common::AbstractModel
659
+ # @param TemplateId: 模板ID
660
+ # 注意:此字段可能返回 null,表示取不到有效值。
661
+ # @type TemplateId: String
662
+ # @param TemplateName: 模板名称
663
+ # 注意:此字段可能返回 null,表示取不到有效值。
637
664
  # @type TemplateName: String
638
665
  # @param TimeSections: 上云时间段(按周进行设置,支持一天设置多个时间段,每个时间段不小于10分钟)
666
+ # 注意:此字段可能返回 null,表示取不到有效值。
639
667
  # @type TimeSections: Array
640
668
  # @param DevTimeSections: 录像时间段(按周进行设置,支持一天设置多个时间段,每个时间段不小于10分钟)
669
+ # 注意:此字段可能返回 null,表示取不到有效值。
641
670
  # @type DevTimeSections: Array
642
671
  # @param Scale: 上云倍速(支持1,2,4倍速)
672
+ # 注意:此字段可能返回 null,表示取不到有效值。
643
673
  # @type Scale: Integer
674
+ # @param CreateAt: 创建时间
675
+ # 注意:此字段可能返回 null,表示取不到有效值。
676
+ # @type CreateAt: String
677
+ # @param UpdateAt: 更新时间
678
+ # 注意:此字段可能返回 null,表示取不到有效值。
679
+ # @type UpdateAt: String
644
680
 
645
- attr_accessor :TemplateName, :TimeSections, :DevTimeSections, :Scale
681
+ attr_accessor :TemplateId, :TemplateName, :TimeSections, :DevTimeSections, :Scale, :CreateAt, :UpdateAt
646
682
 
647
- def initialize(templatename=nil, timesections=nil, devtimesections=nil, scale=nil)
683
+ def initialize(templateid=nil, templatename=nil, timesections=nil, devtimesections=nil, scale=nil, createat=nil, updateat=nil)
684
+ @TemplateId = templateid
648
685
  @TemplateName = templatename
649
686
  @TimeSections = timesections
650
687
  @DevTimeSections = devtimesections
651
688
  @Scale = scale
689
+ @CreateAt = createat
690
+ @UpdateAt = updateat
652
691
  end
653
692
 
654
693
  def deserialize(params)
694
+ @TemplateId = params['TemplateId']
655
695
  @TemplateName = params['TemplateName']
656
696
  unless params['TimeSections'].nil?
657
697
  @TimeSections = []
@@ -670,47 +710,32 @@ module TencentCloud
670
710
  end
671
711
  end
672
712
  @Scale = params['Scale']
713
+ @CreateAt = params['CreateAt']
714
+ @UpdateAt = params['UpdateAt']
673
715
  end
674
716
  end
675
717
 
676
- # 新增录像上云模版返回数据
677
- class AddRecordBackupTemplateResponse < TencentCloud::Common::AbstractModel
678
- # @param TemplateId: 模板ID
679
- # 注意:此字段可能返回 null,表示取不到有效值。
680
- # @type TemplateId: String
681
- # @param TemplateName: 模板名称
682
- # 注意:此字段可能返回 null,表示取不到有效值。
718
+ # AddRecordBackupTemplate请求参数结构体
719
+ class AddRecordBackupTemplateRequest < TencentCloud::Common::AbstractModel
720
+ # @param TemplateName: 模板名称(仅支持中文、英文、数字、_、-,长度不超过32个字符,模板名称全局唯一,不能为空,不能重复)
683
721
  # @type TemplateName: String
684
722
  # @param TimeSections: 上云时间段(按周进行设置,支持一天设置多个时间段,每个时间段不小于10分钟)
685
- # 注意:此字段可能返回 null,表示取不到有效值。
686
723
  # @type TimeSections: Array
687
724
  # @param DevTimeSections: 录像时间段(按周进行设置,支持一天设置多个时间段,每个时间段不小于10分钟)
688
- # 注意:此字段可能返回 null,表示取不到有效值。
689
725
  # @type DevTimeSections: Array
690
726
  # @param Scale: 上云倍速(支持1,2,4倍速)
691
- # 注意:此字段可能返回 null,表示取不到有效值。
692
727
  # @type Scale: Integer
693
- # @param CreateAt: 创建时间
694
- # 注意:此字段可能返回 null,表示取不到有效值。
695
- # @type CreateAt: String
696
- # @param UpdateAt: 更新时间
697
- # 注意:此字段可能返回 null,表示取不到有效值。
698
- # @type UpdateAt: String
699
728
 
700
- attr_accessor :TemplateId, :TemplateName, :TimeSections, :DevTimeSections, :Scale, :CreateAt, :UpdateAt
729
+ attr_accessor :TemplateName, :TimeSections, :DevTimeSections, :Scale
701
730
 
702
- def initialize(templateid=nil, templatename=nil, timesections=nil, devtimesections=nil, scale=nil, createat=nil, updateat=nil)
703
- @TemplateId = templateid
731
+ def initialize(templatename=nil, timesections=nil, devtimesections=nil, scale=nil)
704
732
  @TemplateName = templatename
705
733
  @TimeSections = timesections
706
734
  @DevTimeSections = devtimesections
707
735
  @Scale = scale
708
- @CreateAt = createat
709
- @UpdateAt = updateat
710
736
  end
711
737
 
712
738
  def deserialize(params)
713
- @TemplateId = params['TemplateId']
714
739
  @TemplateName = params['TemplateName']
715
740
  unless params['TimeSections'].nil?
716
741
  @TimeSections = []
@@ -729,8 +754,29 @@ module TencentCloud
729
754
  end
730
755
  end
731
756
  @Scale = params['Scale']
732
- @CreateAt = params['CreateAt']
733
- @UpdateAt = params['UpdateAt']
757
+ end
758
+ end
759
+
760
+ # AddRecordBackupTemplate返回参数结构体
761
+ class AddRecordBackupTemplateResponse < TencentCloud::Common::AbstractModel
762
+ # @param Data: 返回数据
763
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.AddRecordBackupTemplateData`
764
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
765
+ # @type RequestId: String
766
+
767
+ attr_accessor :Data, :RequestId
768
+
769
+ def initialize(data=nil, requestid=nil)
770
+ @Data = data
771
+ @RequestId = requestid
772
+ end
773
+
774
+ def deserialize(params)
775
+ unless params['Data'].nil?
776
+ @Data = AddRecordBackupTemplateData.new
777
+ @Data.deserialize(params['Data'])
778
+ end
779
+ @RequestId = params['RequestId']
734
780
  end
735
781
  end
736
782
 
@@ -787,7 +833,7 @@ module TencentCloud
787
833
  # AddRecordPlan返回参数结构体
788
834
  class AddRecordPlanResponse < TencentCloud::Common::AbstractModel
789
835
  # @param Data: 返回结果
790
- # @type Data: :class:`Tencentcloud::Iss.v20230517.models.RecordPlanOptResponse`
836
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.RecordPlanOptData`
791
837
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
792
838
  # @type RequestId: String
793
839
 
@@ -800,109 +846,132 @@ module TencentCloud
800
846
 
801
847
  def deserialize(params)
802
848
  unless params['Data'].nil?
803
- @Data = RecordPlanOptResponse.new
849
+ @Data = RecordPlanOptData.new
804
850
  @Data.deserialize(params['Data'])
805
851
  end
806
852
  @RequestId = params['RequestId']
807
853
  end
808
854
  end
809
855
 
810
- # AddRecordRetrieveTask请求参数结构体
811
- class AddRecordRetrieveTaskRequest < TencentCloud::Common::AbstractModel
812
- # @param TaskName: 任务名称,仅支持中文、英文、数字、_、-,长度不超过32个字符,模板名称全局唯一,不能为空,不能重复
856
+ # 查询取回任务详情返回数据
857
+ class AddRecordRetrieveTaskData < TencentCloud::Common::AbstractModel
858
+ # @param TaskId: 任务ID
859
+ # @type TaskId: String
860
+ # @param TaskName: 任务名称
813
861
  # @type TaskName: String
814
- # @param StartTime: 取回录像的开始时间,UTC秒数,例如:1662114146,开始和结束时间段最长为一天,且不能跨天
862
+ # @param StartTime: 取回录像的开始时间
815
863
  # @type StartTime: Integer
816
- # @param EndTime: 取回录像的结束时间,UTC秒数,例如:1662114146,开始和结束时间段最长为一天,且不能跨天
864
+ # @param EndTime: 取回录像的结束时间
817
865
  # @type EndTime: Integer
818
- # @param Mode: 取回模式, 1:极速模式,其他暂不支持
866
+ # @param Mode: 取回模式,1:极速模式,其他暂不支持
819
867
  # @type Mode: Integer
820
- # @param Expiration: 取回录像副本有效期,最小为1天,最大为365天
868
+ # @param Expiration: 副本有效期
821
869
  # @type Expiration: Integer
822
- # @param Channels: 设备通道,一个任务最多32个设备通道
823
- # @type Channels: Array
824
- # @param Describe: 取回任务描述
870
+ # @param Status: 任务状态,0:已取回,1:取回中,2:待取回
871
+ # @type Status: Integer
872
+ # @param Capacity: 取回容量,单位MB
873
+ # @type Capacity: Float
874
+ # @param Describe: 任务描述
875
+ # 注意:此字段可能返回 null,表示取不到有效值。
825
876
  # @type Describe: String
826
877
 
827
- attr_accessor :TaskName, :StartTime, :EndTime, :Mode, :Expiration, :Channels, :Describe
878
+ attr_accessor :TaskId, :TaskName, :StartTime, :EndTime, :Mode, :Expiration, :Status, :Capacity, :Describe
828
879
 
829
- def initialize(taskname=nil, starttime=nil, endtime=nil, mode=nil, expiration=nil, channels=nil, describe=nil)
880
+ def initialize(taskid=nil, taskname=nil, starttime=nil, endtime=nil, mode=nil, expiration=nil, status=nil, capacity=nil, describe=nil)
881
+ @TaskId = taskid
830
882
  @TaskName = taskname
831
883
  @StartTime = starttime
832
884
  @EndTime = endtime
833
885
  @Mode = mode
834
886
  @Expiration = expiration
835
- @Channels = channels
887
+ @Status = status
888
+ @Capacity = capacity
836
889
  @Describe = describe
837
890
  end
838
891
 
839
892
  def deserialize(params)
893
+ @TaskId = params['TaskId']
840
894
  @TaskName = params['TaskName']
841
895
  @StartTime = params['StartTime']
842
896
  @EndTime = params['EndTime']
843
897
  @Mode = params['Mode']
844
898
  @Expiration = params['Expiration']
845
- unless params['Channels'].nil?
846
- @Channels = []
847
- params['Channels'].each do |i|
848
- channelinfo_tmp = ChannelInfo.new
849
- channelinfo_tmp.deserialize(i)
850
- @Channels << channelinfo_tmp
851
- end
852
- end
899
+ @Status = params['Status']
900
+ @Capacity = params['Capacity']
853
901
  @Describe = params['Describe']
854
902
  end
855
903
  end
856
904
 
857
- # 查询取回任务详情返回数据
858
- class AddRecordRetrieveTaskResponse < TencentCloud::Common::AbstractModel
859
- # @param TaskId: 任务ID
860
- # @type TaskId: String
861
- # @param TaskName: 任务名称
905
+ # AddRecordRetrieveTask请求参数结构体
906
+ class AddRecordRetrieveTaskRequest < TencentCloud::Common::AbstractModel
907
+ # @param TaskName: 任务名称,仅支持中文、英文、数字、_、-,长度不超过32个字符,模板名称全局唯一,不能为空,不能重复
862
908
  # @type TaskName: String
863
- # @param StartTime: 取回录像的开始时间
909
+ # @param StartTime: 取回录像的开始时间,UTC秒数,例如:1662114146,开始和结束时间段最长为一天,且不能跨天
864
910
  # @type StartTime: Integer
865
- # @param EndTime: 取回录像的结束时间
911
+ # @param EndTime: 取回录像的结束时间,UTC秒数,例如:1662114146,开始和结束时间段最长为一天,且不能跨天
866
912
  # @type EndTime: Integer
867
- # @param Mode: 取回模式,1:极速模式,其他暂不支持
913
+ # @param Mode: 取回模式, 1:极速模式,其他暂不支持
868
914
  # @type Mode: Integer
869
- # @param Expiration: 副本有效期
915
+ # @param Expiration: 取回录像副本有效期,最小为1天,最大为365天
870
916
  # @type Expiration: Integer
871
- # @param Status: 任务状态,0:已取回,1:取回中,2:待取回
872
- # @type Status: Integer
873
- # @param Capacity: 取回容量,单位MB
874
- # @type Capacity: Float
875
- # @param Describe: 任务描述
876
- # 注意:此字段可能返回 null,表示取不到有效值。
917
+ # @param Channels: 设备通道,一个任务最多32个设备通道
918
+ # @type Channels: Array
919
+ # @param Describe: 取回任务描述
877
920
  # @type Describe: String
878
921
 
879
- attr_accessor :TaskId, :TaskName, :StartTime, :EndTime, :Mode, :Expiration, :Status, :Capacity, :Describe
922
+ attr_accessor :TaskName, :StartTime, :EndTime, :Mode, :Expiration, :Channels, :Describe
880
923
 
881
- def initialize(taskid=nil, taskname=nil, starttime=nil, endtime=nil, mode=nil, expiration=nil, status=nil, capacity=nil, describe=nil)
882
- @TaskId = taskid
924
+ def initialize(taskname=nil, starttime=nil, endtime=nil, mode=nil, expiration=nil, channels=nil, describe=nil)
883
925
  @TaskName = taskname
884
926
  @StartTime = starttime
885
927
  @EndTime = endtime
886
928
  @Mode = mode
887
929
  @Expiration = expiration
888
- @Status = status
889
- @Capacity = capacity
930
+ @Channels = channels
890
931
  @Describe = describe
891
932
  end
892
933
 
893
934
  def deserialize(params)
894
- @TaskId = params['TaskId']
895
935
  @TaskName = params['TaskName']
896
936
  @StartTime = params['StartTime']
897
937
  @EndTime = params['EndTime']
898
938
  @Mode = params['Mode']
899
939
  @Expiration = params['Expiration']
900
- @Status = params['Status']
901
- @Capacity = params['Capacity']
940
+ unless params['Channels'].nil?
941
+ @Channels = []
942
+ params['Channels'].each do |i|
943
+ channelinfo_tmp = ChannelInfo.new
944
+ channelinfo_tmp.deserialize(i)
945
+ @Channels << channelinfo_tmp
946
+ end
947
+ end
902
948
  @Describe = params['Describe']
903
949
  end
904
950
  end
905
951
 
952
+ # AddRecordRetrieveTask返回参数结构体
953
+ class AddRecordRetrieveTaskResponse < TencentCloud::Common::AbstractModel
954
+ # @param Data: 返回结果
955
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.AddRecordRetrieveTaskData`
956
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
957
+ # @type RequestId: String
958
+
959
+ attr_accessor :Data, :RequestId
960
+
961
+ def initialize(data=nil, requestid=nil)
962
+ @Data = data
963
+ @RequestId = requestid
964
+ end
965
+
966
+ def deserialize(params)
967
+ unless params['Data'].nil?
968
+ @Data = AddRecordRetrieveTaskData.new
969
+ @Data.deserialize(params['Data'])
970
+ end
971
+ @RequestId = params['RequestId']
972
+ end
973
+ end
974
+
906
975
  # AddRecordTemplate请求参数结构体
907
976
  class AddRecordTemplateRequest < TencentCloud::Common::AbstractModel
908
977
  # @param TemplateName: 模板名称, 仅支持中文、英文、数字、_、-,长度不超过32个字符,模板名称全局唯一,不能为空,不能重复
@@ -953,26 +1022,36 @@ module TencentCloud
953
1022
  end
954
1023
  end
955
1024
 
956
- # AddStreamAuth请求参数结构体
957
- class AddStreamAuthRequest < TencentCloud::Common::AbstractModel
1025
+ # 设置推拉流鉴权返回数据结构
1026
+ class AddStreamAuthData < TencentCloud::Common::AbstractModel
958
1027
  # @param Id: 鉴权配置ID(uuid)
1028
+ # 注意:此字段可能返回 null,表示取不到有效值。
959
1029
  # @type Id: String
960
1030
  # @param PullState: 是否开播放鉴权(1:开启,0:关闭)
1031
+ # 注意:此字段可能返回 null,表示取不到有效值。
961
1032
  # @type PullState: Integer
962
1033
  # @param PullSecret: 播放密钥(仅支持字母数字,长度0-10位)
1034
+ # 注意:此字段可能返回 null,表示取不到有效值。
963
1035
  # @type PullSecret: String
964
1036
  # @param PullExpired: 播放过期时间(单位:分钟)
1037
+ # 注意:此字段可能返回 null,表示取不到有效值。
965
1038
  # @type PullExpired: Integer
966
1039
  # @param PushState: 是否开启推流鉴权(1:开启,0:关闭)
1040
+ # 注意:此字段可能返回 null,表示取不到有效值。
967
1041
  # @type PushState: Integer
968
1042
  # @param PushSecret: 推流密钥(仅支持字母数字,长度0-10位)
1043
+ # 注意:此字段可能返回 null,表示取不到有效值。
969
1044
  # @type PushSecret: String
970
1045
  # @param PushExpired: 推流过期时间(单位:分钟)
1046
+ # 注意:此字段可能返回 null,表示取不到有效值。
971
1047
  # @type PushExpired: Integer
1048
+ # @param AppId: 用户ID
1049
+ # 注意:此字段可能返回 null,表示取不到有效值。
1050
+ # @type AppId: Integer
972
1051
 
973
- attr_accessor :Id, :PullState, :PullSecret, :PullExpired, :PushState, :PushSecret, :PushExpired
1052
+ attr_accessor :Id, :PullState, :PullSecret, :PullExpired, :PushState, :PushSecret, :PushExpired, :AppId
974
1053
 
975
- def initialize(id=nil, pullstate=nil, pullsecret=nil, pullexpired=nil, pushstate=nil, pushsecret=nil, pushexpired=nil)
1054
+ def initialize(id=nil, pullstate=nil, pullsecret=nil, pullexpired=nil, pushstate=nil, pushsecret=nil, pushexpired=nil, appid=nil)
976
1055
  @Id = id
977
1056
  @PullState = pullstate
978
1057
  @PullSecret = pullsecret
@@ -980,6 +1059,7 @@ module TencentCloud
980
1059
  @PushState = pushstate
981
1060
  @PushSecret = pushsecret
982
1061
  @PushExpired = pushexpired
1062
+ @AppId = appid
983
1063
  end
984
1064
 
985
1065
  def deserialize(params)
@@ -990,39 +1070,30 @@ module TencentCloud
990
1070
  @PushState = params['PushState']
991
1071
  @PushSecret = params['PushSecret']
992
1072
  @PushExpired = params['PushExpired']
1073
+ @AppId = params['AppId']
993
1074
  end
994
1075
  end
995
1076
 
996
- # 设置推拉流鉴权返回数据结构
997
- class AddStreamAuthResponse < TencentCloud::Common::AbstractModel
1077
+ # AddStreamAuth请求参数结构体
1078
+ class AddStreamAuthRequest < TencentCloud::Common::AbstractModel
998
1079
  # @param Id: 鉴权配置ID(uuid)
999
- # 注意:此字段可能返回 null,表示取不到有效值。
1000
1080
  # @type Id: String
1001
1081
  # @param PullState: 是否开播放鉴权(1:开启,0:关闭)
1002
- # 注意:此字段可能返回 null,表示取不到有效值。
1003
1082
  # @type PullState: Integer
1004
1083
  # @param PullSecret: 播放密钥(仅支持字母数字,长度0-10位)
1005
- # 注意:此字段可能返回 null,表示取不到有效值。
1006
1084
  # @type PullSecret: String
1007
1085
  # @param PullExpired: 播放过期时间(单位:分钟)
1008
- # 注意:此字段可能返回 null,表示取不到有效值。
1009
1086
  # @type PullExpired: Integer
1010
1087
  # @param PushState: 是否开启推流鉴权(1:开启,0:关闭)
1011
- # 注意:此字段可能返回 null,表示取不到有效值。
1012
1088
  # @type PushState: Integer
1013
1089
  # @param PushSecret: 推流密钥(仅支持字母数字,长度0-10位)
1014
- # 注意:此字段可能返回 null,表示取不到有效值。
1015
1090
  # @type PushSecret: String
1016
1091
  # @param PushExpired: 推流过期时间(单位:分钟)
1017
- # 注意:此字段可能返回 null,表示取不到有效值。
1018
1092
  # @type PushExpired: Integer
1019
- # @param AppId: 用户ID
1020
- # 注意:此字段可能返回 null,表示取不到有效值。
1021
- # @type AppId: Integer
1022
1093
 
1023
- attr_accessor :Id, :PullState, :PullSecret, :PullExpired, :PushState, :PushSecret, :PushExpired, :AppId
1094
+ attr_accessor :Id, :PullState, :PullSecret, :PullExpired, :PushState, :PushSecret, :PushExpired
1024
1095
 
1025
- def initialize(id=nil, pullstate=nil, pullsecret=nil, pullexpired=nil, pushstate=nil, pushsecret=nil, pushexpired=nil, appid=nil)
1096
+ def initialize(id=nil, pullstate=nil, pullsecret=nil, pullexpired=nil, pushstate=nil, pushsecret=nil, pushexpired=nil)
1026
1097
  @Id = id
1027
1098
  @PullState = pullstate
1028
1099
  @PullSecret = pullsecret
@@ -1030,7 +1101,6 @@ module TencentCloud
1030
1101
  @PushState = pushstate
1031
1102
  @PushSecret = pushsecret
1032
1103
  @PushExpired = pushexpired
1033
- @AppId = appid
1034
1104
  end
1035
1105
 
1036
1106
  def deserialize(params)
@@ -1041,7 +1111,29 @@ module TencentCloud
1041
1111
  @PushState = params['PushState']
1042
1112
  @PushSecret = params['PushSecret']
1043
1113
  @PushExpired = params['PushExpired']
1044
- @AppId = params['AppId']
1114
+ end
1115
+ end
1116
+
1117
+ # AddStreamAuth返回参数结构体
1118
+ class AddStreamAuthResponse < TencentCloud::Common::AbstractModel
1119
+ # @param Data: 设置推拉流鉴权返回数据
1120
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.AddStreamAuthData`
1121
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1122
+ # @type RequestId: String
1123
+
1124
+ attr_accessor :Data, :RequestId
1125
+
1126
+ def initialize(data=nil, requestid=nil)
1127
+ @Data = data
1128
+ @RequestId = requestid
1129
+ end
1130
+
1131
+ def deserialize(params)
1132
+ unless params['Data'].nil?
1133
+ @Data = AddStreamAuthData.new
1134
+ @Data.deserialize(params['Data'])
1135
+ end
1136
+ @RequestId = params['RequestId']
1045
1137
  end
1046
1138
  end
1047
1139
 
@@ -1112,7 +1204,7 @@ module TencentCloud
1112
1204
  # AddUserDevice返回参数结构体
1113
1205
  class AddUserDeviceResponse < TencentCloud::Common::AbstractModel
1114
1206
  # @param Data: 增加设备返回数据
1115
- # @type Data: :class:`Tencentcloud::Iss.v20230517.models.AddDeviceResponse`
1207
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.AddDeviceData`
1116
1208
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1117
1209
  # @type RequestId: String
1118
1210
 
@@ -1125,7 +1217,7 @@ module TencentCloud
1125
1217
 
1126
1218
  def deserialize(params)
1127
1219
  unless params['Data'].nil?
1128
- @Data = AddDeviceResponse.new
1220
+ @Data = AddDeviceData.new
1129
1221
  @Data.deserialize(params['Data'])
1130
1222
  end
1131
1223
  @RequestId = params['RequestId']
@@ -1448,6 +1540,33 @@ module TencentCloud
1448
1540
  end
1449
1541
  end
1450
1542
 
1543
+ # 获取开流地址返回数据
1544
+ class ControlDeviceStreamData < TencentCloud::Common::AbstractModel
1545
+ # @param Flv: flv 流地址
1546
+ # 注意:此字段可能返回 null,表示取不到有效值。
1547
+ # @type Flv: String
1548
+ # @param Hls: hls 流地址
1549
+ # 注意:此字段可能返回 null,表示取不到有效值。
1550
+ # @type Hls: String
1551
+ # @param Rtmp: rtmp 流地址
1552
+ # 注意:此字段可能返回 null,表示取不到有效值。
1553
+ # @type Rtmp: String
1554
+
1555
+ attr_accessor :Flv, :Hls, :Rtmp
1556
+
1557
+ def initialize(flv=nil, hls=nil, rtmp=nil)
1558
+ @Flv = flv
1559
+ @Hls = hls
1560
+ @Rtmp = rtmp
1561
+ end
1562
+
1563
+ def deserialize(params)
1564
+ @Flv = params['Flv']
1565
+ @Hls = params['Hls']
1566
+ @Rtmp = params['Rtmp']
1567
+ end
1568
+ end
1569
+
1451
1570
  # ControlDeviceStream请求参数结构体
1452
1571
  class ControlDeviceStreamRequest < TencentCloud::Common::AbstractModel
1453
1572
  # @param ChannelId: 通道 ID(从通道查询接口DescribeDeviceChannel中获取)
@@ -1479,30 +1598,26 @@ module TencentCloud
1479
1598
  end
1480
1599
  end
1481
1600
 
1482
- # 获取开流地址返回数据
1601
+ # ControlDeviceStream返回参数结构体
1483
1602
  class ControlDeviceStreamResponse < TencentCloud::Common::AbstractModel
1484
- # @param Flv: flv 流地址
1485
- # 注意:此字段可能返回 null,表示取不到有效值。
1486
- # @type Flv: String
1487
- # @param Hls: hls 流地址
1488
- # 注意:此字段可能返回 null,表示取不到有效值。
1489
- # @type Hls: String
1490
- # @param Rtmp: rtmp 流地址
1491
- # 注意:此字段可能返回 null,表示取不到有效值。
1492
- # @type Rtmp: String
1603
+ # @param Data: 返回数据
1604
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.ControlDeviceStreamData`
1605
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1606
+ # @type RequestId: String
1493
1607
 
1494
- attr_accessor :Flv, :Hls, :Rtmp
1608
+ attr_accessor :Data, :RequestId
1495
1609
 
1496
- def initialize(flv=nil, hls=nil, rtmp=nil)
1497
- @Flv = flv
1498
- @Hls = hls
1499
- @Rtmp = rtmp
1610
+ def initialize(data=nil, requestid=nil)
1611
+ @Data = data
1612
+ @RequestId = requestid
1500
1613
  end
1501
1614
 
1502
1615
  def deserialize(params)
1503
- @Flv = params['Flv']
1504
- @Hls = params['Hls']
1505
- @Rtmp = params['Rtmp']
1616
+ unless params['Data'].nil?
1617
+ @Data = ControlDeviceStreamData.new
1618
+ @Data.deserialize(params['Data'])
1619
+ end
1620
+ @RequestId = params['RequestId']
1506
1621
  end
1507
1622
  end
1508
1623
 
@@ -2014,7 +2129,7 @@ module TencentCloud
2014
2129
  class DescribeAITaskResultResponse < TencentCloud::Common::AbstractModel
2015
2130
  # @param Data: AI识别结果
2016
2131
  # 注意:此字段可能返回 null,表示取不到有效值。
2017
- # @type Data: :class:`Tencentcloud::Iss.v20230517.models.AITaskResultResponse`
2132
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.AITaskResultData`
2018
2133
  # @param TotalCount: AI识别结果数量
2019
2134
  # @type TotalCount: Integer
2020
2135
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -2030,7 +2145,7 @@ module TencentCloud
2030
2145
 
2031
2146
  def deserialize(params)
2032
2147
  unless params['Data'].nil?
2033
- @Data = AITaskResultResponse.new
2148
+ @Data = AITaskResultData.new
2034
2149
  @Data.deserialize(params['Data'])
2035
2150
  end
2036
2151
  @TotalCount = params['TotalCount']
@@ -2074,24 +2189,8 @@ module TencentCloud
2074
2189
  end
2075
2190
  end
2076
2191
 
2077
- # DescribeDeviceChannel请求参数结构体
2078
- class DescribeDeviceChannelRequest < TencentCloud::Common::AbstractModel
2079
- # @param DeviceId: 设备ID(从获取设备列表接口ListDevices中获取)
2080
- # @type DeviceId: String
2081
-
2082
- attr_accessor :DeviceId
2083
-
2084
- def initialize(deviceid=nil)
2085
- @DeviceId = deviceid
2086
- end
2087
-
2088
- def deserialize(params)
2089
- @DeviceId = params['DeviceId']
2090
- end
2091
- end
2092
-
2093
2192
  # 查询设备通道信息返回结果
2094
- class DescribeDeviceChannelResponse < TencentCloud::Common::AbstractModel
2193
+ class DescribeDeviceChannelData < TencentCloud::Common::AbstractModel
2095
2194
  # @param DeviceId: 设备 ID
2096
2195
  # 注意:此字段可能返回 null,表示取不到有效值。
2097
2196
  # @type DeviceId: String
@@ -2152,103 +2251,43 @@ module TencentCloud
2152
2251
  end
2153
2252
  end
2154
2253
 
2155
- # DescribeDevicePreset请求参数结构体
2156
- class DescribeDevicePresetRequest < TencentCloud::Common::AbstractModel
2157
- # @param ChannelId: 通道ID(从通道查询接口DescribeDeviceChannel中获取)
2158
- # @type ChannelId: String
2254
+ # DescribeDeviceChannel请求参数结构体
2255
+ class DescribeDeviceChannelRequest < TencentCloud::Common::AbstractModel
2256
+ # @param DeviceId: 设备ID(从获取设备列表接口ListDevices中获取)
2257
+ # @type DeviceId: String
2159
2258
 
2160
- attr_accessor :ChannelId
2259
+ attr_accessor :DeviceId
2161
2260
 
2162
- def initialize(channelid=nil)
2163
- @ChannelId = channelid
2261
+ def initialize(deviceid=nil)
2262
+ @DeviceId = deviceid
2164
2263
  end
2165
2264
 
2166
2265
  def deserialize(params)
2167
- @ChannelId = params['ChannelId']
2266
+ @DeviceId = params['DeviceId']
2168
2267
  end
2169
2268
  end
2170
2269
 
2171
- # 查询设备预置位返回数据
2172
- class DescribeDevicePresetResponse < TencentCloud::Common::AbstractModel
2173
- # @param Index: 预置位索引 只支持1-10的索引
2174
- # 注意:此字段可能返回 null,表示取不到有效值。
2175
- # @type Index: Integer
2176
- # @param Name: 预置位名称
2177
- # 注意:此字段可能返回 null,表示取不到有效值。
2178
- # @type Name: String
2270
+ # DescribeDeviceChannel返回参数结构体
2271
+ class DescribeDeviceChannelResponse < TencentCloud::Common::AbstractModel
2272
+ # @param Data: 返回结果
2273
+ # @type Data: Array
2274
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2275
+ # @type RequestId: String
2179
2276
 
2180
- attr_accessor :Index, :Name
2277
+ attr_accessor :Data, :RequestId
2181
2278
 
2182
- def initialize(index=nil, name=nil)
2183
- @Index = index
2184
- @Name = name
2185
- end
2186
-
2187
- def deserialize(params)
2188
- @Index = params['Index']
2189
- @Name = params['Name']
2190
- end
2191
- end
2192
-
2193
- # 查询设备可接入集群信息
2194
- class DescribeDeviceRegion < TencentCloud::Common::AbstractModel
2195
- # @param Label: 服务节点描述
2196
- # 注意:此字段可能返回 null,表示取不到有效值。
2197
- # @type Label: String
2198
- # @param Value: 服务节点 ID(对应为其他接口中所需的 ClusterId)
2199
- # 注意:此字段可能返回 null,表示取不到有效值。
2200
- # @type Value: String
2201
- # @param Region: 地域信息
2202
- # 注意:此字段可能返回 null,表示取不到有效值。
2203
- # @type Region: String
2204
-
2205
- attr_accessor :Label, :Value, :Region
2206
-
2207
- def initialize(label=nil, value=nil, region=nil)
2208
- @Label = label
2209
- @Value = value
2210
- @Region = region
2211
- end
2212
-
2213
- def deserialize(params)
2214
- @Label = params['Label']
2215
- @Value = params['Value']
2216
- @Region = params['Region']
2217
- end
2218
- end
2219
-
2220
- # DescribeDeviceRegion请求参数结构体
2221
- class DescribeDeviceRegionRequest < TencentCloud::Common::AbstractModel
2222
-
2223
-
2224
- def initialize()
2225
- end
2226
-
2227
- def deserialize(params)
2228
- end
2229
- end
2230
-
2231
- # DescribeDeviceRegion返回参数结构体
2232
- class DescribeDeviceRegionResponse < TencentCloud::Common::AbstractModel
2233
- # @param Data: 返回数据
2234
- # @type Data: Array
2235
- # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2236
- # @type RequestId: String
2237
-
2238
- attr_accessor :Data, :RequestId
2239
-
2240
- def initialize(data=nil, requestid=nil)
2241
- @Data = data
2242
- @RequestId = requestid
2279
+ def initialize(data=nil, requestid=nil)
2280
+ @Data = data
2281
+ @RequestId = requestid
2243
2282
  end
2244
2283
 
2245
2284
  def deserialize(params)
2246
2285
  unless params['Data'].nil?
2247
2286
  @Data = []
2248
2287
  params['Data'].each do |i|
2249
- describedeviceregion_tmp = DescribeDeviceRegion.new
2250
- describedeviceregion_tmp.deserialize(i)
2251
- @Data << describedeviceregion_tmp
2288
+ describedevicechanneldata_tmp = DescribeDeviceChannelData.new
2289
+ describedevicechanneldata_tmp.deserialize(i)
2290
+ @Data << describedevicechanneldata_tmp
2252
2291
  end
2253
2292
  end
2254
2293
  @RequestId = params['RequestId']
@@ -2256,7 +2295,7 @@ module TencentCloud
2256
2295
  end
2257
2296
 
2258
2297
  # 查询设备接口返回数据
2259
- class DescribeDeviceResponse < TencentCloud::Common::AbstractModel
2298
+ class DescribeDeviceData < TencentCloud::Common::AbstractModel
2260
2299
  # @param DeviceId: 设备ID
2261
2300
  # 注意:此字段可能返回 null,表示取不到有效值。
2262
2301
  # @type DeviceId: String
@@ -2398,19 +2437,73 @@ module TencentCloud
2398
2437
  end
2399
2438
  end
2400
2439
 
2401
- # DescribeDomainRegion请求参数结构体
2402
- class DescribeDomainRegionRequest < TencentCloud::Common::AbstractModel
2440
+ # 查询设备预置位返回数据
2441
+ class DescribeDevicePresetData < TencentCloud::Common::AbstractModel
2442
+ # @param Index: 预置位索引 只支持1-10的索引
2443
+ # 注意:此字段可能返回 null,表示取不到有效值。
2444
+ # @type Index: Integer
2445
+ # @param Name: 预置位名称
2446
+ # 注意:此字段可能返回 null,表示取不到有效值。
2447
+ # @type Name: String
2403
2448
 
2449
+ attr_accessor :Index, :Name
2404
2450
 
2405
- def initialize()
2451
+ def initialize(index=nil, name=nil)
2452
+ @Index = index
2453
+ @Name = name
2406
2454
  end
2407
2455
 
2408
2456
  def deserialize(params)
2457
+ @Index = params['Index']
2458
+ @Name = params['Name']
2409
2459
  end
2410
2460
  end
2411
2461
 
2412
- # 查询域名可绑定集群数据
2413
- class DescribeDomainRegionResponse < TencentCloud::Common::AbstractModel
2462
+ # DescribeDevicePreset请求参数结构体
2463
+ class DescribeDevicePresetRequest < TencentCloud::Common::AbstractModel
2464
+ # @param ChannelId: 通道ID(从通道查询接口DescribeDeviceChannel中获取)
2465
+ # @type ChannelId: String
2466
+
2467
+ attr_accessor :ChannelId
2468
+
2469
+ def initialize(channelid=nil)
2470
+ @ChannelId = channelid
2471
+ end
2472
+
2473
+ def deserialize(params)
2474
+ @ChannelId = params['ChannelId']
2475
+ end
2476
+ end
2477
+
2478
+ # DescribeDevicePreset返回参数结构体
2479
+ class DescribeDevicePresetResponse < TencentCloud::Common::AbstractModel
2480
+ # @param Data: 返回数据
2481
+ # @type Data: Array
2482
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2483
+ # @type RequestId: String
2484
+
2485
+ attr_accessor :Data, :RequestId
2486
+
2487
+ def initialize(data=nil, requestid=nil)
2488
+ @Data = data
2489
+ @RequestId = requestid
2490
+ end
2491
+
2492
+ def deserialize(params)
2493
+ unless params['Data'].nil?
2494
+ @Data = []
2495
+ params['Data'].each do |i|
2496
+ describedevicepresetdata_tmp = DescribeDevicePresetData.new
2497
+ describedevicepresetdata_tmp.deserialize(i)
2498
+ @Data << describedevicepresetdata_tmp
2499
+ end
2500
+ end
2501
+ @RequestId = params['RequestId']
2502
+ end
2503
+ end
2504
+
2505
+ # 查询设备可接入集群信息
2506
+ class DescribeDeviceRegion < TencentCloud::Common::AbstractModel
2414
2507
  # @param Label: 服务节点描述
2415
2508
  # 注意:此字段可能返回 null,表示取不到有效值。
2416
2509
  # @type Label: String
@@ -2436,8 +2529,8 @@ module TencentCloud
2436
2529
  end
2437
2530
  end
2438
2531
 
2439
- # DescribeDomain请求参数结构体
2440
- class DescribeDomainRequest < TencentCloud::Common::AbstractModel
2532
+ # DescribeDeviceRegion请求参数结构体
2533
+ class DescribeDeviceRegionRequest < TencentCloud::Common::AbstractModel
2441
2534
 
2442
2535
 
2443
2536
  def initialize()
@@ -2447,8 +2540,35 @@ module TencentCloud
2447
2540
  end
2448
2541
  end
2449
2542
 
2543
+ # DescribeDeviceRegion返回参数结构体
2544
+ class DescribeDeviceRegionResponse < TencentCloud::Common::AbstractModel
2545
+ # @param Data: 返回数据
2546
+ # @type Data: Array
2547
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2548
+ # @type RequestId: String
2549
+
2550
+ attr_accessor :Data, :RequestId
2551
+
2552
+ def initialize(data=nil, requestid=nil)
2553
+ @Data = data
2554
+ @RequestId = requestid
2555
+ end
2556
+
2557
+ def deserialize(params)
2558
+ unless params['Data'].nil?
2559
+ @Data = []
2560
+ params['Data'].each do |i|
2561
+ describedeviceregion_tmp = DescribeDeviceRegion.new
2562
+ describedeviceregion_tmp.deserialize(i)
2563
+ @Data << describedeviceregion_tmp
2564
+ end
2565
+ end
2566
+ @RequestId = params['RequestId']
2567
+ end
2568
+ end
2569
+
2450
2570
  # 查询域名详情数据
2451
- class DescribeDomainResponse < TencentCloud::Common::AbstractModel
2571
+ class DescribeDomainData < TencentCloud::Common::AbstractModel
2452
2572
  # @param Id: 域名ID
2453
2573
  # 注意:此字段可能返回 null,表示取不到有效值。
2454
2574
  # @type Id: String
@@ -2494,83 +2614,48 @@ module TencentCloud
2494
2614
  end
2495
2615
  end
2496
2616
 
2497
- # 查询网关监控信息返回结果
2498
- class DescribeGatewayMonitor < TencentCloud::Common::AbstractModel
2499
- # @param DeviceTotal: 设备接入总数
2500
- # 注意:此字段可能返回 null,表示取不到有效值。
2501
- # @type DeviceTotal: Integer
2502
- # @param DeviceOnline: 设备在线数
2503
- # 注意:此字段可能返回 null,表示取不到有效值。
2504
- # @type DeviceOnline: Integer
2505
- # @param DeviceOffline: 设备离线数
2506
- # 注意:此字段可能返回 null,表示取不到有效值。
2507
- # @type DeviceOffline: Integer
2508
- # @param ChannelTotal: 视频通道总数
2509
- # 注意:此字段可能返回 null,表示取不到有效值。
2510
- # @type ChannelTotal: Integer
2511
- # @param ChannelOnline: 视频通道在线数
2512
- # 注意:此字段可能返回 null,表示取不到有效值。
2513
- # @type ChannelOnline: Integer
2514
- # @param ChannelOffline: 视频通道离线数
2515
- # 注意:此字段可能返回 null,表示取不到有效值。
2516
- # @type ChannelOffline: Integer
2517
- # @param UpFlow: 网关上行流量,单位kbps
2617
+ # 查询域名可绑定集群数据
2618
+ class DescribeDomainRegionData < TencentCloud::Common::AbstractModel
2619
+ # @param Label: 服务节点描述
2518
2620
  # 注意:此字段可能返回 null,表示取不到有效值。
2519
- # @type UpFlow: Integer
2520
- # @param ChannelPull: 流在传输中的通道数
2621
+ # @type Label: String
2622
+ # @param Value: 服务节点 ID(对应为其他接口中所需的 ClusterId)
2521
2623
  # 注意:此字段可能返回 null,表示取不到有效值。
2522
- # @type ChannelPull: Integer
2523
- # @param ChannelUnPull: 流未传输中的通道数
2624
+ # @type Value: String
2625
+ # @param Region: 地域信息
2524
2626
  # 注意:此字段可能返回 null,表示取不到有效值。
2525
- # @type ChannelUnPull: Integer
2627
+ # @type Region: String
2526
2628
 
2527
- attr_accessor :DeviceTotal, :DeviceOnline, :DeviceOffline, :ChannelTotal, :ChannelOnline, :ChannelOffline, :UpFlow, :ChannelPull, :ChannelUnPull
2629
+ attr_accessor :Label, :Value, :Region
2528
2630
 
2529
- def initialize(devicetotal=nil, deviceonline=nil, deviceoffline=nil, channeltotal=nil, channelonline=nil, channeloffline=nil, upflow=nil, channelpull=nil, channelunpull=nil)
2530
- @DeviceTotal = devicetotal
2531
- @DeviceOnline = deviceonline
2532
- @DeviceOffline = deviceoffline
2533
- @ChannelTotal = channeltotal
2534
- @ChannelOnline = channelonline
2535
- @ChannelOffline = channeloffline
2536
- @UpFlow = upflow
2537
- @ChannelPull = channelpull
2538
- @ChannelUnPull = channelunpull
2631
+ def initialize(label=nil, value=nil, region=nil)
2632
+ @Label = label
2633
+ @Value = value
2634
+ @Region = region
2539
2635
  end
2540
2636
 
2541
2637
  def deserialize(params)
2542
- @DeviceTotal = params['DeviceTotal']
2543
- @DeviceOnline = params['DeviceOnline']
2544
- @DeviceOffline = params['DeviceOffline']
2545
- @ChannelTotal = params['ChannelTotal']
2546
- @ChannelOnline = params['ChannelOnline']
2547
- @ChannelOffline = params['ChannelOffline']
2548
- @UpFlow = params['UpFlow']
2549
- @ChannelPull = params['ChannelPull']
2550
- @ChannelUnPull = params['ChannelUnPull']
2638
+ @Label = params['Label']
2639
+ @Value = params['Value']
2640
+ @Region = params['Region']
2551
2641
  end
2552
2642
  end
2553
2643
 
2554
- # DescribeGatewayMonitor请求参数结构体
2555
- class DescribeGatewayMonitorRequest < TencentCloud::Common::AbstractModel
2556
- # @param GatewayId: 网关索引ID(从获取网关列表接口ListGateways中获取)
2557
- # @type GatewayId: String
2644
+ # DescribeDomainRegion请求参数结构体
2645
+ class DescribeDomainRegionRequest < TencentCloud::Common::AbstractModel
2558
2646
 
2559
- attr_accessor :GatewayId
2560
2647
 
2561
- def initialize(gatewayid=nil)
2562
- @GatewayId = gatewayid
2648
+ def initialize()
2563
2649
  end
2564
2650
 
2565
2651
  def deserialize(params)
2566
- @GatewayId = params['GatewayId']
2567
2652
  end
2568
2653
  end
2569
2654
 
2570
- # DescribeGatewayMonitor返回参数结构体
2571
- class DescribeGatewayMonitorResponse < TencentCloud::Common::AbstractModel
2655
+ # DescribeDomainRegion返回参数结构体
2656
+ class DescribeDomainRegionResponse < TencentCloud::Common::AbstractModel
2572
2657
  # @param Data: 返回数据
2573
- # @type Data: :class:`Tencentcloud::Iss.v20230517.models.DescribeGatewayMonitor`
2658
+ # @type Data: Array
2574
2659
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2575
2660
  # @type RequestId: String
2576
2661
 
@@ -2583,15 +2668,19 @@ module TencentCloud
2583
2668
 
2584
2669
  def deserialize(params)
2585
2670
  unless params['Data'].nil?
2586
- @Data = DescribeGatewayMonitor.new
2587
- @Data.deserialize(params['Data'])
2671
+ @Data = []
2672
+ params['Data'].each do |i|
2673
+ describedomainregiondata_tmp = DescribeDomainRegionData.new
2674
+ describedomainregiondata_tmp.deserialize(i)
2675
+ @Data << describedomainregiondata_tmp
2676
+ end
2588
2677
  end
2589
2678
  @RequestId = params['RequestId']
2590
2679
  end
2591
2680
  end
2592
2681
 
2593
- # DescribeGatewayProtocol请求参数结构体
2594
- class DescribeGatewayProtocolRequest < TencentCloud::Common::AbstractModel
2682
+ # DescribeDomain请求参数结构体
2683
+ class DescribeDomainRequest < TencentCloud::Common::AbstractModel
2595
2684
 
2596
2685
 
2597
2686
  def initialize()
@@ -2601,51 +2690,35 @@ module TencentCloud
2601
2690
  end
2602
2691
  end
2603
2692
 
2604
- # 查询网关所支持的接入协议
2605
- class DescribeGatewayProtocolResponse < TencentCloud::Common::AbstractModel
2606
- # @param TypeCode: 接入协议的字典码
2607
- # 注意:此字段可能返回 null,表示取不到有效值。
2608
- # @type TypeCode: String
2609
- # @param Value: 接入协议类型值
2610
- # 注意:此字段可能返回 null,表示取不到有效值。
2611
- # @type Value: Integer
2612
- # @param Label: 接入协议的类型描述
2613
- # 注意:此字段可能返回 null,表示取不到有效值。
2614
- # @type Label: String
2615
-
2616
- attr_accessor :TypeCode, :Value, :Label
2693
+ # DescribeDomain返回参数结构体
2694
+ class DescribeDomainResponse < TencentCloud::Common::AbstractModel
2695
+ # @param Data: 返回数据
2696
+ # @type Data: Array
2697
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2698
+ # @type RequestId: String
2617
2699
 
2618
- def initialize(typecode=nil, value=nil, label=nil)
2619
- @TypeCode = typecode
2620
- @Value = value
2621
- @Label = label
2622
- end
2700
+ attr_accessor :Data, :RequestId
2623
2701
 
2624
- def deserialize(params)
2625
- @TypeCode = params['TypeCode']
2626
- @Value = params['Value']
2627
- @Label = params['Label']
2628
- end
2629
- end
2630
-
2631
- # DescribeGateway请求参数结构体
2632
- class DescribeGatewayRequest < TencentCloud::Common::AbstractModel
2633
- # @param GatewayId: 网关索引ID(从获取网关列表接口ListGateways中获取)
2634
- # @type GatewayId: String
2635
-
2636
- attr_accessor :GatewayId
2637
-
2638
- def initialize(gatewayid=nil)
2639
- @GatewayId = gatewayid
2702
+ def initialize(data=nil, requestid=nil)
2703
+ @Data = data
2704
+ @RequestId = requestid
2640
2705
  end
2641
2706
 
2642
2707
  def deserialize(params)
2643
- @GatewayId = params['GatewayId']
2708
+ unless params['Data'].nil?
2709
+ @Data = []
2710
+ params['Data'].each do |i|
2711
+ describedomaindata_tmp = DescribeDomainData.new
2712
+ describedomaindata_tmp.deserialize(i)
2713
+ @Data << describedomaindata_tmp
2714
+ end
2715
+ end
2716
+ @RequestId = params['RequestId']
2644
2717
  end
2645
2718
  end
2646
2719
 
2647
2720
  # 查询网关信息返回结果
2648
- class DescribeGatewayResponse < TencentCloud::Common::AbstractModel
2721
+ class DescribeGatewayData < TencentCloud::Common::AbstractModel
2649
2722
  # @param GatewayId: 网关索引ID,用于网关查询,更新,删除操作
2650
2723
  # 注意:此字段可能返回 null,表示取不到有效值。
2651
2724
  # @type GatewayId: String
@@ -2718,6 +2791,206 @@ module TencentCloud
2718
2791
  end
2719
2792
  end
2720
2793
 
2794
+ # 查询网关监控信息返回结果
2795
+ class DescribeGatewayMonitor < TencentCloud::Common::AbstractModel
2796
+ # @param DeviceTotal: 设备接入总数
2797
+ # 注意:此字段可能返回 null,表示取不到有效值。
2798
+ # @type DeviceTotal: Integer
2799
+ # @param DeviceOnline: 设备在线数
2800
+ # 注意:此字段可能返回 null,表示取不到有效值。
2801
+ # @type DeviceOnline: Integer
2802
+ # @param DeviceOffline: 设备离线数
2803
+ # 注意:此字段可能返回 null,表示取不到有效值。
2804
+ # @type DeviceOffline: Integer
2805
+ # @param ChannelTotal: 视频通道总数
2806
+ # 注意:此字段可能返回 null,表示取不到有效值。
2807
+ # @type ChannelTotal: Integer
2808
+ # @param ChannelOnline: 视频通道在线数
2809
+ # 注意:此字段可能返回 null,表示取不到有效值。
2810
+ # @type ChannelOnline: Integer
2811
+ # @param ChannelOffline: 视频通道离线数
2812
+ # 注意:此字段可能返回 null,表示取不到有效值。
2813
+ # @type ChannelOffline: Integer
2814
+ # @param UpFlow: 网关上行流量,单位kbps
2815
+ # 注意:此字段可能返回 null,表示取不到有效值。
2816
+ # @type UpFlow: Integer
2817
+ # @param ChannelPull: 流在传输中的通道数
2818
+ # 注意:此字段可能返回 null,表示取不到有效值。
2819
+ # @type ChannelPull: Integer
2820
+ # @param ChannelUnPull: 流未传输中的通道数
2821
+ # 注意:此字段可能返回 null,表示取不到有效值。
2822
+ # @type ChannelUnPull: Integer
2823
+
2824
+ attr_accessor :DeviceTotal, :DeviceOnline, :DeviceOffline, :ChannelTotal, :ChannelOnline, :ChannelOffline, :UpFlow, :ChannelPull, :ChannelUnPull
2825
+
2826
+ def initialize(devicetotal=nil, deviceonline=nil, deviceoffline=nil, channeltotal=nil, channelonline=nil, channeloffline=nil, upflow=nil, channelpull=nil, channelunpull=nil)
2827
+ @DeviceTotal = devicetotal
2828
+ @DeviceOnline = deviceonline
2829
+ @DeviceOffline = deviceoffline
2830
+ @ChannelTotal = channeltotal
2831
+ @ChannelOnline = channelonline
2832
+ @ChannelOffline = channeloffline
2833
+ @UpFlow = upflow
2834
+ @ChannelPull = channelpull
2835
+ @ChannelUnPull = channelunpull
2836
+ end
2837
+
2838
+ def deserialize(params)
2839
+ @DeviceTotal = params['DeviceTotal']
2840
+ @DeviceOnline = params['DeviceOnline']
2841
+ @DeviceOffline = params['DeviceOffline']
2842
+ @ChannelTotal = params['ChannelTotal']
2843
+ @ChannelOnline = params['ChannelOnline']
2844
+ @ChannelOffline = params['ChannelOffline']
2845
+ @UpFlow = params['UpFlow']
2846
+ @ChannelPull = params['ChannelPull']
2847
+ @ChannelUnPull = params['ChannelUnPull']
2848
+ end
2849
+ end
2850
+
2851
+ # DescribeGatewayMonitor请求参数结构体
2852
+ class DescribeGatewayMonitorRequest < TencentCloud::Common::AbstractModel
2853
+ # @param GatewayId: 网关索引ID(从获取网关列表接口ListGateways中获取)
2854
+ # @type GatewayId: String
2855
+
2856
+ attr_accessor :GatewayId
2857
+
2858
+ def initialize(gatewayid=nil)
2859
+ @GatewayId = gatewayid
2860
+ end
2861
+
2862
+ def deserialize(params)
2863
+ @GatewayId = params['GatewayId']
2864
+ end
2865
+ end
2866
+
2867
+ # DescribeGatewayMonitor返回参数结构体
2868
+ class DescribeGatewayMonitorResponse < TencentCloud::Common::AbstractModel
2869
+ # @param Data: 返回数据
2870
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.DescribeGatewayMonitor`
2871
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2872
+ # @type RequestId: String
2873
+
2874
+ attr_accessor :Data, :RequestId
2875
+
2876
+ def initialize(data=nil, requestid=nil)
2877
+ @Data = data
2878
+ @RequestId = requestid
2879
+ end
2880
+
2881
+ def deserialize(params)
2882
+ unless params['Data'].nil?
2883
+ @Data = DescribeGatewayMonitor.new
2884
+ @Data.deserialize(params['Data'])
2885
+ end
2886
+ @RequestId = params['RequestId']
2887
+ end
2888
+ end
2889
+
2890
+ # 查询网关所支持的接入协议
2891
+ class DescribeGatewayProtocolData < TencentCloud::Common::AbstractModel
2892
+ # @param TypeCode: 接入协议的字典码
2893
+ # 注意:此字段可能返回 null,表示取不到有效值。
2894
+ # @type TypeCode: String
2895
+ # @param Value: 接入协议类型值
2896
+ # 注意:此字段可能返回 null,表示取不到有效值。
2897
+ # @type Value: Integer
2898
+ # @param Label: 接入协议的类型描述
2899
+ # 注意:此字段可能返回 null,表示取不到有效值。
2900
+ # @type Label: String
2901
+
2902
+ attr_accessor :TypeCode, :Value, :Label
2903
+
2904
+ def initialize(typecode=nil, value=nil, label=nil)
2905
+ @TypeCode = typecode
2906
+ @Value = value
2907
+ @Label = label
2908
+ end
2909
+
2910
+ def deserialize(params)
2911
+ @TypeCode = params['TypeCode']
2912
+ @Value = params['Value']
2913
+ @Label = params['Label']
2914
+ end
2915
+ end
2916
+
2917
+ # DescribeGatewayProtocol请求参数结构体
2918
+ class DescribeGatewayProtocolRequest < TencentCloud::Common::AbstractModel
2919
+
2920
+
2921
+ def initialize()
2922
+ end
2923
+
2924
+ def deserialize(params)
2925
+ end
2926
+ end
2927
+
2928
+ # DescribeGatewayProtocol返回参数结构体
2929
+ class DescribeGatewayProtocolResponse < TencentCloud::Common::AbstractModel
2930
+ # @param Data: 返回数据
2931
+ # @type Data: Array
2932
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2933
+ # @type RequestId: String
2934
+
2935
+ attr_accessor :Data, :RequestId
2936
+
2937
+ def initialize(data=nil, requestid=nil)
2938
+ @Data = data
2939
+ @RequestId = requestid
2940
+ end
2941
+
2942
+ def deserialize(params)
2943
+ unless params['Data'].nil?
2944
+ @Data = []
2945
+ params['Data'].each do |i|
2946
+ describegatewayprotocoldata_tmp = DescribeGatewayProtocolData.new
2947
+ describegatewayprotocoldata_tmp.deserialize(i)
2948
+ @Data << describegatewayprotocoldata_tmp
2949
+ end
2950
+ end
2951
+ @RequestId = params['RequestId']
2952
+ end
2953
+ end
2954
+
2955
+ # DescribeGateway请求参数结构体
2956
+ class DescribeGatewayRequest < TencentCloud::Common::AbstractModel
2957
+ # @param GatewayId: 网关索引ID(从获取网关列表接口ListGateways中获取)
2958
+ # @type GatewayId: String
2959
+
2960
+ attr_accessor :GatewayId
2961
+
2962
+ def initialize(gatewayid=nil)
2963
+ @GatewayId = gatewayid
2964
+ end
2965
+
2966
+ def deserialize(params)
2967
+ @GatewayId = params['GatewayId']
2968
+ end
2969
+ end
2970
+
2971
+ # DescribeGateway返回参数结构体
2972
+ class DescribeGatewayResponse < TencentCloud::Common::AbstractModel
2973
+ # @param Data: 返回数据
2974
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.DescribeGatewayData`
2975
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2976
+ # @type RequestId: String
2977
+
2978
+ attr_accessor :Data, :RequestId
2979
+
2980
+ def initialize(data=nil, requestid=nil)
2981
+ @Data = data
2982
+ @RequestId = requestid
2983
+ end
2984
+
2985
+ def deserialize(params)
2986
+ unless params['Data'].nil?
2987
+ @Data = DescribeGatewayData.new
2988
+ @Data.deserialize(params['Data'])
2989
+ end
2990
+ @RequestId = params['RequestId']
2991
+ end
2992
+ end
2993
+
2721
2994
  # 查询网关服务版本信息返回数据
2722
2995
  class DescribeGatewayVersion < TencentCloud::Common::AbstractModel
2723
2996
  # @param Name: 服务名
@@ -2755,24 +3028,8 @@ module TencentCloud
2755
3028
  end
2756
3029
  end
2757
3030
 
2758
- # DescribeGatewayVersion请求参数结构体
2759
- class DescribeGatewayVersionRequest < TencentCloud::Common::AbstractModel
2760
- # @param GatewayId: 网关索引ID(从获取网关列表接口ListGateways中获取)
2761
- # @type GatewayId: String
2762
-
2763
- attr_accessor :GatewayId
2764
-
2765
- def initialize(gatewayid=nil)
2766
- @GatewayId = gatewayid
2767
- end
2768
-
2769
- def deserialize(params)
2770
- @GatewayId = params['GatewayId']
2771
- end
2772
- end
2773
-
2774
3031
  # 查询网关服务版本信息返回数据
2775
- class DescribeGatewayVersionResponse < TencentCloud::Common::AbstractModel
3032
+ class DescribeGatewayVersionData < TencentCloud::Common::AbstractModel
2776
3033
  # @param Services: 网关服务列表
2777
3034
  # 注意:此字段可能返回 null,表示取不到有效值。
2778
3035
  # @type Services: Array
@@ -2795,19 +3052,47 @@ module TencentCloud
2795
3052
  end
2796
3053
  end
2797
3054
 
2798
- # DescribeOrganization请求参数结构体
2799
- class DescribeOrganizationRequest < TencentCloud::Common::AbstractModel
3055
+ # DescribeGatewayVersion请求参数结构体
3056
+ class DescribeGatewayVersionRequest < TencentCloud::Common::AbstractModel
3057
+ # @param GatewayId: 网关索引ID(从获取网关列表接口ListGateways中获取)
3058
+ # @type GatewayId: String
2800
3059
 
3060
+ attr_accessor :GatewayId
2801
3061
 
2802
- def initialize()
3062
+ def initialize(gatewayid=nil)
3063
+ @GatewayId = gatewayid
2803
3064
  end
2804
3065
 
2805
3066
  def deserialize(params)
3067
+ @GatewayId = params['GatewayId']
3068
+ end
3069
+ end
3070
+
3071
+ # DescribeGatewayVersion返回参数结构体
3072
+ class DescribeGatewayVersionResponse < TencentCloud::Common::AbstractModel
3073
+ # @param Data: 返回数据
3074
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.DescribeGatewayVersionData`
3075
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3076
+ # @type RequestId: String
3077
+
3078
+ attr_accessor :Data, :RequestId
3079
+
3080
+ def initialize(data=nil, requestid=nil)
3081
+ @Data = data
3082
+ @RequestId = requestid
3083
+ end
3084
+
3085
+ def deserialize(params)
3086
+ unless params['Data'].nil?
3087
+ @Data = DescribeGatewayVersionData.new
3088
+ @Data.deserialize(params['Data'])
3089
+ end
3090
+ @RequestId = params['RequestId']
2806
3091
  end
2807
3092
  end
2808
3093
 
2809
3094
  # 查询组织数据返回结果
2810
- class DescribeOrganizationResponse < TencentCloud::Common::AbstractModel
3095
+ class DescribeOrganizationData < TencentCloud::Common::AbstractModel
2811
3096
  # @param OrganizationId: 组织 ID
2812
3097
  # 注意:此字段可能返回 null,表示取不到有效值。
2813
3098
  # @type OrganizationId: String
@@ -2858,24 +3143,46 @@ module TencentCloud
2858
3143
  end
2859
3144
  end
2860
3145
 
2861
- # DescribeRecordBackupPlan请求参数结构体
2862
- class DescribeRecordBackupPlanRequest < TencentCloud::Common::AbstractModel
2863
- # @param PlanId: 录像上云计划ID(从查询录像上云计划列表接口ListRecordBackupPlans中获取)
2864
- # @type PlanId: String
3146
+ # DescribeOrganization请求参数结构体
3147
+ class DescribeOrganizationRequest < TencentCloud::Common::AbstractModel
2865
3148
 
2866
- attr_accessor :PlanId
2867
3149
 
2868
- def initialize(planid=nil)
2869
- @PlanId = planid
3150
+ def initialize()
2870
3151
  end
2871
3152
 
2872
3153
  def deserialize(params)
2873
- @PlanId = params['PlanId']
3154
+ end
3155
+ end
3156
+
3157
+ # DescribeOrganization返回参数结构体
3158
+ class DescribeOrganizationResponse < TencentCloud::Common::AbstractModel
3159
+ # @param Data: 返回数据
3160
+ # @type Data: Array
3161
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3162
+ # @type RequestId: String
3163
+
3164
+ attr_accessor :Data, :RequestId
3165
+
3166
+ def initialize(data=nil, requestid=nil)
3167
+ @Data = data
3168
+ @RequestId = requestid
3169
+ end
3170
+
3171
+ def deserialize(params)
3172
+ unless params['Data'].nil?
3173
+ @Data = []
3174
+ params['Data'].each do |i|
3175
+ describeorganizationdata_tmp = DescribeOrganizationData.new
3176
+ describeorganizationdata_tmp.deserialize(i)
3177
+ @Data << describeorganizationdata_tmp
3178
+ end
3179
+ end
3180
+ @RequestId = params['RequestId']
2874
3181
  end
2875
3182
  end
2876
3183
 
2877
3184
  # 查询录像上云计划返回数据
2878
- class DescribeRecordBackupPlanResponse < TencentCloud::Common::AbstractModel
3185
+ class DescribeRecordBackupPlanData < TencentCloud::Common::AbstractModel
2879
3186
  # @param PlanId: 录像上云计划ID
2880
3187
  # @type PlanId: String
2881
3188
  # @param PlanName: 录像上云计划名称
@@ -2925,24 +3232,47 @@ module TencentCloud
2925
3232
  end
2926
3233
  end
2927
3234
 
2928
- # DescribeRecordBackupTemplate请求参数结构体
2929
- class DescribeRecordBackupTemplateRequest < TencentCloud::Common::AbstractModel
2930
- # @param TemplateId: 模板ID(从查询录像上云模板列表接口ListRecordBackupTemplates中获取)
2931
- # @type TemplateId: String
3235
+ # DescribeRecordBackupPlan请求参数结构体
3236
+ class DescribeRecordBackupPlanRequest < TencentCloud::Common::AbstractModel
3237
+ # @param PlanId: 录像上云计划ID(从查询录像上云计划列表接口ListRecordBackupPlans中获取)
3238
+ # @type PlanId: String
2932
3239
 
2933
- attr_accessor :TemplateId
3240
+ attr_accessor :PlanId
2934
3241
 
2935
- def initialize(templateid=nil)
2936
- @TemplateId = templateid
3242
+ def initialize(planid=nil)
3243
+ @PlanId = planid
2937
3244
  end
2938
3245
 
2939
3246
  def deserialize(params)
2940
- @TemplateId = params['TemplateId']
3247
+ @PlanId = params['PlanId']
3248
+ end
3249
+ end
3250
+
3251
+ # DescribeRecordBackupPlan返回参数结构体
3252
+ class DescribeRecordBackupPlanResponse < TencentCloud::Common::AbstractModel
3253
+ # @param Data: 返回数据
3254
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.DescribeRecordBackupPlanData`
3255
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3256
+ # @type RequestId: String
3257
+
3258
+ attr_accessor :Data, :RequestId
3259
+
3260
+ def initialize(data=nil, requestid=nil)
3261
+ @Data = data
3262
+ @RequestId = requestid
3263
+ end
3264
+
3265
+ def deserialize(params)
3266
+ unless params['Data'].nil?
3267
+ @Data = DescribeRecordBackupPlanData.new
3268
+ @Data.deserialize(params['Data'])
3269
+ end
3270
+ @RequestId = params['RequestId']
2941
3271
  end
2942
3272
  end
2943
3273
 
2944
3274
  # 查询录像上云模版返回数据
2945
- class DescribeRecordBackupTemplateResponse < TencentCloud::Common::AbstractModel
3275
+ class DescribeRecordBackupTemplateData < TencentCloud::Common::AbstractModel
2946
3276
  # @param TemplateId: 模板ID
2947
3277
  # 注意:此字段可能返回 null,表示取不到有效值。
2948
3278
  # @type TemplateId: String
@@ -3002,6 +3332,73 @@ module TencentCloud
3002
3332
  end
3003
3333
  end
3004
3334
 
3335
+ # DescribeRecordBackupTemplate请求参数结构体
3336
+ class DescribeRecordBackupTemplateRequest < TencentCloud::Common::AbstractModel
3337
+ # @param TemplateId: 模板ID(从查询录像上云模板列表接口ListRecordBackupTemplates中获取)
3338
+ # @type TemplateId: String
3339
+
3340
+ attr_accessor :TemplateId
3341
+
3342
+ def initialize(templateid=nil)
3343
+ @TemplateId = templateid
3344
+ end
3345
+
3346
+ def deserialize(params)
3347
+ @TemplateId = params['TemplateId']
3348
+ end
3349
+ end
3350
+
3351
+ # DescribeRecordBackupTemplate返回参数结构体
3352
+ class DescribeRecordBackupTemplateResponse < TencentCloud::Common::AbstractModel
3353
+ # @param Data: 返回数据
3354
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.DescribeRecordBackupTemplateData`
3355
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3356
+ # @type RequestId: String
3357
+
3358
+ attr_accessor :Data, :RequestId
3359
+
3360
+ def initialize(data=nil, requestid=nil)
3361
+ @Data = data
3362
+ @RequestId = requestid
3363
+ end
3364
+
3365
+ def deserialize(params)
3366
+ unless params['Data'].nil?
3367
+ @Data = DescribeRecordBackupTemplateData.new
3368
+ @Data.deserialize(params['Data'])
3369
+ end
3370
+ @RequestId = params['RequestId']
3371
+ end
3372
+ end
3373
+
3374
+ # 用于查询设备云端录像时间轴信息返回数据
3375
+ class DescribeRecordFileData < TencentCloud::Common::AbstractModel
3376
+ # @param Tips: 提示类型,0:时间段内无归档录像,1:时间段内有归档录像
3377
+ # @type Tips: Integer
3378
+ # @param List: 存在为数组格式,不存在字段内容为空
3379
+ # 注意:此字段可能返回 null,表示取不到有效值。
3380
+ # @type List: Array
3381
+
3382
+ attr_accessor :Tips, :List
3383
+
3384
+ def initialize(tips=nil, list=nil)
3385
+ @Tips = tips
3386
+ @List = list
3387
+ end
3388
+
3389
+ def deserialize(params)
3390
+ @Tips = params['Tips']
3391
+ unless params['List'].nil?
3392
+ @List = []
3393
+ params['List'].each do |i|
3394
+ recordtimeline_tmp = RecordTimeLine.new
3395
+ recordtimeline_tmp.deserialize(i)
3396
+ @List << recordtimeline_tmp
3397
+ end
3398
+ end
3399
+ end
3400
+ end
3401
+
3005
3402
  # DescribeRecordFile请求参数结构体
3006
3403
  class DescribeRecordFileRequest < TencentCloud::Common::AbstractModel
3007
3404
  # @param DeviceId: 通道所属设备ID
@@ -3030,31 +3427,26 @@ module TencentCloud
3030
3427
  end
3031
3428
  end
3032
3429
 
3033
- # 用于查询设备云端录像时间轴信息返回数据
3430
+ # DescribeRecordFile返回参数结构体
3034
3431
  class DescribeRecordFileResponse < TencentCloud::Common::AbstractModel
3035
- # @param Tips: 提示类型,0:时间段内无归档录像,1:时间段内有归档录像
3036
- # @type Tips: Integer
3037
- # @param List: 存在为数组格式,不存在字段内容为空
3038
- # 注意:此字段可能返回 null,表示取不到有效值。
3039
- # @type List: Array
3432
+ # @param Data: 返回结果
3433
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.DescribeRecordFileData`
3434
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3435
+ # @type RequestId: String
3040
3436
 
3041
- attr_accessor :Tips, :List
3437
+ attr_accessor :Data, :RequestId
3042
3438
 
3043
- def initialize(tips=nil, list=nil)
3044
- @Tips = tips
3045
- @List = list
3439
+ def initialize(data=nil, requestid=nil)
3440
+ @Data = data
3441
+ @RequestId = requestid
3046
3442
  end
3047
3443
 
3048
3444
  def deserialize(params)
3049
- @Tips = params['Tips']
3050
- unless params['List'].nil?
3051
- @List = []
3052
- params['List'].each do |i|
3053
- recordtimeline_tmp = RecordTimeLine.new
3054
- recordtimeline_tmp.deserialize(i)
3055
- @List << recordtimeline_tmp
3056
- end
3445
+ unless params['Data'].nil?
3446
+ @Data = DescribeRecordFileData.new
3447
+ @Data.deserialize(params['Data'])
3057
3448
  end
3449
+ @RequestId = params['RequestId']
3058
3450
  end
3059
3451
  end
3060
3452
 
@@ -3144,24 +3536,8 @@ module TencentCloud
3144
3536
  end
3145
3537
  end
3146
3538
 
3147
- # DescribeRecordRetrieveTask请求参数结构体
3148
- class DescribeRecordRetrieveTaskRequest < TencentCloud::Common::AbstractModel
3149
- # @param TaskId: 云录像取回任务ID
3150
- # @type TaskId: String
3151
-
3152
- attr_accessor :TaskId
3153
-
3154
- def initialize(taskid=nil)
3155
- @TaskId = taskid
3156
- end
3157
-
3158
- def deserialize(params)
3159
- @TaskId = params['TaskId']
3160
- end
3161
- end
3162
-
3163
3539
  # 查询云录像取回任务详情返回数据
3164
- class DescribeRecordRetrieveTaskResponse < TencentCloud::Common::AbstractModel
3540
+ class DescribeRecordRetrieveTaskData < TencentCloud::Common::AbstractModel
3165
3541
  # @param TaskId: 取回任务ID
3166
3542
  # @type TaskId: String
3167
3543
  # @param TaskName: 取回任务名称
@@ -3203,24 +3579,63 @@ module TencentCloud
3203
3579
  end
3204
3580
 
3205
3581
  def deserialize(params)
3206
- @TaskId = params['TaskId']
3207
- @TaskName = params['TaskName']
3208
- @StartTime = params['StartTime']
3209
- @EndTime = params['EndTime']
3210
- @Mode = params['Mode']
3211
- @Expiration = params['Expiration']
3212
- @Status = params['Status']
3213
- @Capacity = params['Capacity']
3214
- unless params['Channels'].nil?
3215
- @Channels = []
3216
- params['Channels'].each do |i|
3217
- recordretrievetaskchannelinfo_tmp = RecordRetrieveTaskChannelInfo.new
3218
- recordretrievetaskchannelinfo_tmp.deserialize(i)
3219
- @Channels << recordretrievetaskchannelinfo_tmp
3220
- end
3582
+ @TaskId = params['TaskId']
3583
+ @TaskName = params['TaskName']
3584
+ @StartTime = params['StartTime']
3585
+ @EndTime = params['EndTime']
3586
+ @Mode = params['Mode']
3587
+ @Expiration = params['Expiration']
3588
+ @Status = params['Status']
3589
+ @Capacity = params['Capacity']
3590
+ unless params['Channels'].nil?
3591
+ @Channels = []
3592
+ params['Channels'].each do |i|
3593
+ recordretrievetaskchannelinfo_tmp = RecordRetrieveTaskChannelInfo.new
3594
+ recordretrievetaskchannelinfo_tmp.deserialize(i)
3595
+ @Channels << recordretrievetaskchannelinfo_tmp
3596
+ end
3597
+ end
3598
+ @Describe = params['Describe']
3599
+ @ChannelCount = params['ChannelCount']
3600
+ end
3601
+ end
3602
+
3603
+ # DescribeRecordRetrieveTask请求参数结构体
3604
+ class DescribeRecordRetrieveTaskRequest < TencentCloud::Common::AbstractModel
3605
+ # @param TaskId: 云录像取回任务ID
3606
+ # @type TaskId: String
3607
+
3608
+ attr_accessor :TaskId
3609
+
3610
+ def initialize(taskid=nil)
3611
+ @TaskId = taskid
3612
+ end
3613
+
3614
+ def deserialize(params)
3615
+ @TaskId = params['TaskId']
3616
+ end
3617
+ end
3618
+
3619
+ # DescribeRecordRetrieveTask返回参数结构体
3620
+ class DescribeRecordRetrieveTaskResponse < TencentCloud::Common::AbstractModel
3621
+ # @param Data: 返回结果
3622
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.DescribeRecordRetrieveTaskData`
3623
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3624
+ # @type RequestId: String
3625
+
3626
+ attr_accessor :Data, :RequestId
3627
+
3628
+ def initialize(data=nil, requestid=nil)
3629
+ @Data = data
3630
+ @RequestId = requestid
3631
+ end
3632
+
3633
+ def deserialize(params)
3634
+ unless params['Data'].nil?
3635
+ @Data = DescribeRecordRetrieveTaskData.new
3636
+ @Data.deserialize(params['Data'])
3221
3637
  end
3222
- @Describe = params['Describe']
3223
- @ChannelCount = params['ChannelCount']
3638
+ @RequestId = params['RequestId']
3224
3639
  end
3225
3640
  end
3226
3641
 
@@ -3263,19 +3678,8 @@ module TencentCloud
3263
3678
  end
3264
3679
  end
3265
3680
 
3266
- # DescribeStreamAuth请求参数结构体
3267
- class DescribeStreamAuthRequest < TencentCloud::Common::AbstractModel
3268
-
3269
-
3270
- def initialize()
3271
- end
3272
-
3273
- def deserialize(params)
3274
- end
3275
- end
3276
-
3277
3681
  # 查询推拉流鉴权返回数据结构
3278
- class DescribeStreamAuthResponse < TencentCloud::Common::AbstractModel
3682
+ class DescribeStreamAuthData < TencentCloud::Common::AbstractModel
3279
3683
  # @param Id: 鉴权配置ID(uuid)
3280
3684
  # 注意:此字段可能返回 null,表示取不到有效值。
3281
3685
  # @type Id: String
@@ -3326,6 +3730,40 @@ module TencentCloud
3326
3730
  end
3327
3731
  end
3328
3732
 
3733
+ # DescribeStreamAuth请求参数结构体
3734
+ class DescribeStreamAuthRequest < TencentCloud::Common::AbstractModel
3735
+
3736
+
3737
+ def initialize()
3738
+ end
3739
+
3740
+ def deserialize(params)
3741
+ end
3742
+ end
3743
+
3744
+ # DescribeStreamAuth返回参数结构体
3745
+ class DescribeStreamAuthResponse < TencentCloud::Common::AbstractModel
3746
+ # @param Data: 返回结果
3747
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.DescribeStreamAuthData`
3748
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3749
+ # @type RequestId: String
3750
+
3751
+ attr_accessor :Data, :RequestId
3752
+
3753
+ def initialize(data=nil, requestid=nil)
3754
+ @Data = data
3755
+ @RequestId = requestid
3756
+ end
3757
+
3758
+ def deserialize(params)
3759
+ unless params['Data'].nil?
3760
+ @Data = DescribeStreamAuthData.new
3761
+ @Data.deserialize(params['Data'])
3762
+ end
3763
+ @RequestId = params['RequestId']
3764
+ end
3765
+ end
3766
+
3329
3767
  # DescribeUserDevice请求参数结构体
3330
3768
  class DescribeUserDeviceRequest < TencentCloud::Common::AbstractModel
3331
3769
  # @param DeviceId: 设备ID(从获取设备列表接口ListDevices中获取)
@@ -3345,7 +3783,7 @@ module TencentCloud
3345
3783
  # DescribeUserDevice返回参数结构体
3346
3784
  class DescribeUserDeviceResponse < TencentCloud::Common::AbstractModel
3347
3785
  # @param Data: 返回结果
3348
- # @type Data: :class:`Tencentcloud::Iss.v20230517.models.DescribeDeviceResponse`
3786
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.DescribeDeviceData`
3349
3787
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3350
3788
  # @type RequestId: String
3351
3789
 
@@ -3358,13 +3796,43 @@ module TencentCloud
3358
3796
 
3359
3797
  def deserialize(params)
3360
3798
  unless params['Data'].nil?
3361
- @Data = DescribeDeviceResponse.new
3799
+ @Data = DescribeDeviceData.new
3362
3800
  @Data.deserialize(params['Data'])
3363
3801
  end
3364
3802
  @RequestId = params['RequestId']
3365
3803
  end
3366
3804
  end
3367
3805
 
3806
+ # 获取云录像下载URL返回的数据
3807
+ class DescribeVideoDownloadUrlData < TencentCloud::Common::AbstractModel
3808
+ # @param Url: 录像文件下载 URL
3809
+ # 注意:
3810
+ # URL 有效期是10分钟,过期后将拒绝访问,若需再用请重新获取
3811
+ # 录像文件下载采用分块传输编码,响应头Transfer-Encoding:chunked
3812
+ # 下载文件命名格式为{ChannelId}-{BeginTime}-{EndTime}.{FileType}
3813
+ # @type Url: String
3814
+ # @param ActualBeginTime: 实际下载录像的开始时间
3815
+ # 注意:当请求中指定IsRespActualTime参数为true时,才有该字段
3816
+ # @type ActualBeginTime: String
3817
+ # @param ActualEndTime: 实际下载录像的结束时间
3818
+ # 注意:当请求中指定IsRespActualTime参数为true时,才有该字段
3819
+ # @type ActualEndTime: String
3820
+
3821
+ attr_accessor :Url, :ActualBeginTime, :ActualEndTime
3822
+
3823
+ def initialize(url=nil, actualbegintime=nil, actualendtime=nil)
3824
+ @Url = url
3825
+ @ActualBeginTime = actualbegintime
3826
+ @ActualEndTime = actualendtime
3827
+ end
3828
+
3829
+ def deserialize(params)
3830
+ @Url = params['Url']
3831
+ @ActualBeginTime = params['ActualBeginTime']
3832
+ @ActualEndTime = params['ActualEndTime']
3833
+ end
3834
+ end
3835
+
3368
3836
  # DescribeVideoDownloadUrl请求参数结构体
3369
3837
  class DescribeVideoDownloadUrlRequest < TencentCloud::Common::AbstractModel
3370
3838
  # @param ChannelId: 通道 ID
@@ -3397,33 +3865,26 @@ module TencentCloud
3397
3865
  end
3398
3866
  end
3399
3867
 
3400
- # 获取云录像下载URL返回的数据
3868
+ # DescribeVideoDownloadUrl返回参数结构体
3401
3869
  class DescribeVideoDownloadUrlResponse < TencentCloud::Common::AbstractModel
3402
- # @param Url: 录像文件下载 URL
3403
- # 注意:
3404
- # URL 有效期是10分钟,过期后将拒绝访问,若需再用请重新获取
3405
- # 录像文件下载采用分块传输编码,响应头Transfer-Encoding:chunked
3406
- # 下载文件命名格式为{ChannelId}-{BeginTime}-{EndTime}.{FileType}
3407
- # @type Url: String
3408
- # @param ActualBeginTime: 实际下载录像的开始时间
3409
- # 注意:当请求中指定IsRespActualTime参数为true时,才有该字段
3410
- # @type ActualBeginTime: String
3411
- # @param ActualEndTime: 实际下载录像的结束时间
3412
- # 注意:当请求中指定IsRespActualTime参数为true时,才有该字段
3413
- # @type ActualEndTime: String
3870
+ # @param Data: 返回的数据结构
3871
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.DescribeVideoDownloadUrlData`
3872
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3873
+ # @type RequestId: String
3414
3874
 
3415
- attr_accessor :Url, :ActualBeginTime, :ActualEndTime
3875
+ attr_accessor :Data, :RequestId
3416
3876
 
3417
- def initialize(url=nil, actualbegintime=nil, actualendtime=nil)
3418
- @Url = url
3419
- @ActualBeginTime = actualbegintime
3420
- @ActualEndTime = actualendtime
3877
+ def initialize(data=nil, requestid=nil)
3878
+ @Data = data
3879
+ @RequestId = requestid
3421
3880
  end
3422
3881
 
3423
3882
  def deserialize(params)
3424
- @Url = params['Url']
3425
- @ActualBeginTime = params['ActualBeginTime']
3426
- @ActualEndTime = params['ActualEndTime']
3883
+ unless params['Data'].nil?
3884
+ @Data = DescribeVideoDownloadUrlData.new
3885
+ @Data.deserialize(params['Data'])
3886
+ end
3887
+ @RequestId = params['RequestId']
3427
3888
  end
3428
3889
  end
3429
3890
 
@@ -3790,6 +4251,35 @@ module TencentCloud
3790
4251
  end
3791
4252
  end
3792
4253
 
4254
+ # 查询网关列表返回结果
4255
+ class ListGatewaysData < TencentCloud::Common::AbstractModel
4256
+ # @param List: 网关列表
4257
+ # 注意:此字段可能返回 null,表示取不到有效值。
4258
+ # @type List: Array
4259
+ # @param TotalCount: 网关数量
4260
+ # 注意:此字段可能返回 null,表示取不到有效值。
4261
+ # @type TotalCount: Integer
4262
+
4263
+ attr_accessor :List, :TotalCount
4264
+
4265
+ def initialize(list=nil, totalcount=nil)
4266
+ @List = list
4267
+ @TotalCount = totalcount
4268
+ end
4269
+
4270
+ def deserialize(params)
4271
+ unless params['List'].nil?
4272
+ @List = []
4273
+ params['List'].each do |i|
4274
+ gatewaysdata_tmp = GatewaysData.new
4275
+ gatewaysdata_tmp.deserialize(i)
4276
+ @List << gatewaysdata_tmp
4277
+ end
4278
+ end
4279
+ @TotalCount = params['TotalCount']
4280
+ end
4281
+ end
4282
+
3793
4283
  # ListGateways请求参数结构体
3794
4284
  class ListGatewaysRequest < TencentCloud::Common::AbstractModel
3795
4285
  # @param PageNumber: 页码,默认为1
@@ -3822,53 +4312,31 @@ module TencentCloud
3822
4312
  end
3823
4313
  end
3824
4314
 
3825
- # 查询网关列表返回结果
4315
+ # ListGateways返回参数结构体
3826
4316
  class ListGatewaysResponse < TencentCloud::Common::AbstractModel
3827
- # @param List: 网关列表
3828
- # 注意:此字段可能返回 null,表示取不到有效值。
3829
- # @type List: Array
3830
- # @param TotalCount: 网关数量
3831
- # 注意:此字段可能返回 null,表示取不到有效值。
3832
- # @type TotalCount: Integer
4317
+ # @param Data: 返回数据
4318
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.ListGatewaysData`
4319
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4320
+ # @type RequestId: String
3833
4321
 
3834
- attr_accessor :List, :TotalCount
4322
+ attr_accessor :Data, :RequestId
3835
4323
 
3836
- def initialize(list=nil, totalcount=nil)
3837
- @List = list
3838
- @TotalCount = totalcount
4324
+ def initialize(data=nil, requestid=nil)
4325
+ @Data = data
4326
+ @RequestId = requestid
3839
4327
  end
3840
4328
 
3841
4329
  def deserialize(params)
3842
- unless params['List'].nil?
3843
- @List = []
3844
- params['List'].each do |i|
3845
- gatewaysdata_tmp = GatewaysData.new
3846
- gatewaysdata_tmp.deserialize(i)
3847
- @List << gatewaysdata_tmp
3848
- end
4330
+ unless params['Data'].nil?
4331
+ @Data = ListGatewaysData.new
4332
+ @Data.deserialize(params['Data'])
3849
4333
  end
3850
- @TotalCount = params['TotalCount']
3851
- end
3852
- end
3853
-
3854
- # ListOrganizationChannelNumbers请求参数结构体
3855
- class ListOrganizationChannelNumbersRequest < TencentCloud::Common::AbstractModel
3856
- # @param OrganizationId: 组织ID,json数组格式,最多一次支持10个组织
3857
- # @type OrganizationId: Array
3858
-
3859
- attr_accessor :OrganizationId
3860
-
3861
- def initialize(organizationid=nil)
3862
- @OrganizationId = organizationid
3863
- end
3864
-
3865
- def deserialize(params)
3866
- @OrganizationId = params['OrganizationId']
4334
+ @RequestId = params['RequestId']
3867
4335
  end
3868
4336
  end
3869
4337
 
3870
4338
  # 组织目录下的未添加到实时上云计划中的通道数量返回数据
3871
- class ListOrganizationChannelNumbersResponse < TencentCloud::Common::AbstractModel
4339
+ class ListOrganizationChannelNumbersData < TencentCloud::Common::AbstractModel
3872
4340
  # @param TotalCount: 组织下通道总数
3873
4341
  # @type TotalCount: Integer
3874
4342
  # @param NotInPlanCount: 组织下未添加到计划的通道总数
@@ -3887,42 +4355,47 @@ module TencentCloud
3887
4355
  end
3888
4356
  end
3889
4357
 
3890
- # ListOrganizationChannels请求参数结构体
3891
- class ListOrganizationChannelsRequest < TencentCloud::Common::AbstractModel
3892
- # @param OrganizationId: 组织ID
3893
- # @type OrganizationId: String
3894
- # @param PageSize: 每页最大数量
3895
- # @type PageSize: Integer
3896
- # @param PageNumber: 第几页
3897
- # @type PageNumber: Integer
3898
- # @param DeviceName: 查询条件,则按照设备名称查询
3899
- # 查询条件同时只有一个生效。长度不超过32字节
3900
- # @type DeviceName: String
3901
- # @param ChannelName: 查询条件,则按照通道名称查询
3902
- # 查询条件同时只有一个生效。长度不超过32字节
3903
- # @type ChannelName: String
4358
+ # ListOrganizationChannelNumbers请求参数结构体
4359
+ class ListOrganizationChannelNumbersRequest < TencentCloud::Common::AbstractModel
4360
+ # @param OrganizationId: 组织ID,json数组格式,最多一次支持10个组织
4361
+ # @type OrganizationId: Array
3904
4362
 
3905
- attr_accessor :OrganizationId, :PageSize, :PageNumber, :DeviceName, :ChannelName
4363
+ attr_accessor :OrganizationId
3906
4364
 
3907
- def initialize(organizationid=nil, pagesize=nil, pagenumber=nil, devicename=nil, channelname=nil)
4365
+ def initialize(organizationid=nil)
3908
4366
  @OrganizationId = organizationid
3909
- @PageSize = pagesize
3910
- @PageNumber = pagenumber
3911
- @DeviceName = devicename
3912
- @ChannelName = channelname
3913
4367
  end
3914
4368
 
3915
4369
  def deserialize(params)
3916
4370
  @OrganizationId = params['OrganizationId']
3917
- @PageSize = params['PageSize']
3918
- @PageNumber = params['PageNumber']
3919
- @DeviceName = params['DeviceName']
3920
- @ChannelName = params['ChannelName']
4371
+ end
4372
+ end
4373
+
4374
+ # ListOrganizationChannelNumbers返回参数结构体
4375
+ class ListOrganizationChannelNumbersResponse < TencentCloud::Common::AbstractModel
4376
+ # @param Data: 返回结果
4377
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.ListOrganizationChannelNumbersData`
4378
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4379
+ # @type RequestId: String
4380
+
4381
+ attr_accessor :Data, :RequestId
4382
+
4383
+ def initialize(data=nil, requestid=nil)
4384
+ @Data = data
4385
+ @RequestId = requestid
4386
+ end
4387
+
4388
+ def deserialize(params)
4389
+ unless params['Data'].nil?
4390
+ @Data = ListOrganizationChannelNumbersData.new
4391
+ @Data.deserialize(params['Data'])
4392
+ end
4393
+ @RequestId = params['RequestId']
3921
4394
  end
3922
4395
  end
3923
4396
 
3924
4397
  # 查询组织目录下的通道列表返回数据
3925
- class ListOrganizationChannelsResponse < TencentCloud::Common::AbstractModel
4398
+ class ListOrganizationChannelsData < TencentCloud::Common::AbstractModel
3926
4399
  # @param PageNumber: 第几页
3927
4400
  # @type PageNumber: Integer
3928
4401
  # @param PageSize: 当前页的设备数量
@@ -3957,79 +4430,65 @@ module TencentCloud
3957
4430
  end
3958
4431
  end
3959
4432
 
3960
- # ListRecordBackupPlanDevices请求参数结构体
3961
- class ListRecordBackupPlanDevicesRequest < TencentCloud::Common::AbstractModel
3962
- # @param PlanId: 录像计划ID(从查询录像上云计划列表接口ListRecordBackupPlans中获取)
3963
- # @type PlanId: String
3964
- # @param DeviceName: 按照设备名称查询(为空时,不参考该参数)
3965
- # @type DeviceName: String
3966
- # @param ChannelName: 按照通道名称查询(为空时,不参考该参数)
3967
- # @type ChannelName: String
3968
- # @param OrganizationName: 按照组织名称查询(为空时,不参考该参数)
3969
- # @type OrganizationName: String
4433
+ # ListOrganizationChannels请求参数结构体
4434
+ class ListOrganizationChannelsRequest < TencentCloud::Common::AbstractModel
4435
+ # @param OrganizationId: 组织ID
4436
+ # @type OrganizationId: String
3970
4437
  # @param PageSize: 每页最大数量
3971
- # @type PageSize: String
4438
+ # @type PageSize: Integer
3972
4439
  # @param PageNumber: 第几页
3973
- # @type PageNumber: String
4440
+ # @type PageNumber: Integer
4441
+ # @param DeviceName: 查询条件,则按照设备名称查询
4442
+ # 查询条件同时只有一个生效。长度不超过32字节
4443
+ # @type DeviceName: String
4444
+ # @param ChannelName: 查询条件,则按照通道名称查询
4445
+ # 查询条件同时只有一个生效。长度不超过32字节
4446
+ # @type ChannelName: String
3974
4447
 
3975
- attr_accessor :PlanId, :DeviceName, :ChannelName, :OrganizationName, :PageSize, :PageNumber
4448
+ attr_accessor :OrganizationId, :PageSize, :PageNumber, :DeviceName, :ChannelName
3976
4449
 
3977
- def initialize(planid=nil, devicename=nil, channelname=nil, organizationname=nil, pagesize=nil, pagenumber=nil)
3978
- @PlanId = planid
3979
- @DeviceName = devicename
3980
- @ChannelName = channelname
3981
- @OrganizationName = organizationname
4450
+ def initialize(organizationid=nil, pagesize=nil, pagenumber=nil, devicename=nil, channelname=nil)
4451
+ @OrganizationId = organizationid
3982
4452
  @PageSize = pagesize
3983
4453
  @PageNumber = pagenumber
4454
+ @DeviceName = devicename
4455
+ @ChannelName = channelname
3984
4456
  end
3985
4457
 
3986
4458
  def deserialize(params)
3987
- @PlanId = params['PlanId']
3988
- @DeviceName = params['DeviceName']
3989
- @ChannelName = params['ChannelName']
3990
- @OrganizationName = params['OrganizationName']
4459
+ @OrganizationId = params['OrganizationId']
3991
4460
  @PageSize = params['PageSize']
3992
4461
  @PageNumber = params['PageNumber']
4462
+ @DeviceName = params['DeviceName']
4463
+ @ChannelName = params['ChannelName']
3993
4464
  end
3994
4465
  end
3995
4466
 
3996
- # 查询录像上云计划关联通道的返回数据
3997
- class ListRecordBackupPlanDevicesResponse < TencentCloud::Common::AbstractModel
3998
- # @param PageNumber: 第几页
3999
- # 注意:此字段可能返回 null,表示取不到有效值。
4000
- # @type PageNumber: Integer
4001
- # @param PageSize: 当前页的设备数量
4002
- # 注意:此字段可能返回 null,表示取不到有效值。
4003
- # @type PageSize: Integer
4004
- # @param TotalCount: 本次查询的设备通道总数
4005
- # 注意:此字段可能返回 null,表示取不到有效值。
4006
- # @type TotalCount: Integer
4007
- # @param List: 设备通道信息列表
4008
- # 注意:此字段可能返回 null,表示取不到有效值。
4009
- # @type List: :class:`Tencentcloud::Iss.v20230517.models.RecordPlanChannelInfo`
4467
+ # ListOrganizationChannels返回参数结构体
4468
+ class ListOrganizationChannelsResponse < TencentCloud::Common::AbstractModel
4469
+ # @param Data: 返回结果
4470
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.ListOrganizationChannelsData`
4471
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4472
+ # @type RequestId: String
4010
4473
 
4011
- attr_accessor :PageNumber, :PageSize, :TotalCount, :List
4474
+ attr_accessor :Data, :RequestId
4012
4475
 
4013
- def initialize(pagenumber=nil, pagesize=nil, totalcount=nil, list=nil)
4014
- @PageNumber = pagenumber
4015
- @PageSize = pagesize
4016
- @TotalCount = totalcount
4017
- @List = list
4476
+ def initialize(data=nil, requestid=nil)
4477
+ @Data = data
4478
+ @RequestId = requestid
4018
4479
  end
4019
4480
 
4020
4481
  def deserialize(params)
4021
- @PageNumber = params['PageNumber']
4022
- @PageSize = params['PageSize']
4023
- @TotalCount = params['TotalCount']
4024
- unless params['List'].nil?
4025
- @List = RecordPlanChannelInfo.new
4026
- @List.deserialize(params['List'])
4482
+ unless params['Data'].nil?
4483
+ @Data = ListOrganizationChannelsData.new
4484
+ @Data.deserialize(params['Data'])
4027
4485
  end
4486
+ @RequestId = params['RequestId']
4028
4487
  end
4029
4488
  end
4030
4489
 
4031
4490
  # 查询录像上云计划列表返回数据
4032
- class ListRecordBackupPlanResponse < TencentCloud::Common::AbstractModel
4491
+ class ListRecordBackupPlanData < TencentCloud::Common::AbstractModel
4033
4492
  # @param PlanId: 录像上云计划ID
4034
4493
  # @type PlanId: String
4035
4494
  # @param PlanName: 录像上云计划名称
@@ -4079,21 +4538,81 @@ module TencentCloud
4079
4538
  end
4080
4539
  end
4081
4540
 
4082
- # ListRecordBackupPlans请求参数结构体
4083
- class ListRecordBackupPlansRequest < TencentCloud::Common::AbstractModel
4541
+ # 查询录像上云计划关联通道的返回数据
4542
+ class ListRecordBackupPlanDevicesData < TencentCloud::Common::AbstractModel
4543
+ # @param PageNumber: 第几页
4544
+ # 注意:此字段可能返回 null,表示取不到有效值。
4545
+ # @type PageNumber: Integer
4546
+ # @param PageSize: 当前页的设备数量
4547
+ # 注意:此字段可能返回 null,表示取不到有效值。
4548
+ # @type PageSize: Integer
4549
+ # @param TotalCount: 本次查询的设备通道总数
4550
+ # 注意:此字段可能返回 null,表示取不到有效值。
4551
+ # @type TotalCount: Integer
4552
+ # @param List: 设备通道信息列表
4553
+ # 注意:此字段可能返回 null,表示取不到有效值。
4554
+ # @type List: :class:`Tencentcloud::Iss.v20230517.models.RecordPlanChannelInfo`
4084
4555
 
4556
+ attr_accessor :PageNumber, :PageSize, :TotalCount, :List
4085
4557
 
4086
- def initialize()
4558
+ def initialize(pagenumber=nil, pagesize=nil, totalcount=nil, list=nil)
4559
+ @PageNumber = pagenumber
4560
+ @PageSize = pagesize
4561
+ @TotalCount = totalcount
4562
+ @List = list
4087
4563
  end
4088
4564
 
4089
4565
  def deserialize(params)
4566
+ @PageNumber = params['PageNumber']
4567
+ @PageSize = params['PageSize']
4568
+ @TotalCount = params['TotalCount']
4569
+ unless params['List'].nil?
4570
+ @List = RecordPlanChannelInfo.new
4571
+ @List.deserialize(params['List'])
4572
+ end
4090
4573
  end
4091
4574
  end
4092
4575
 
4093
- # ListRecordBackupPlans返回参数结构体
4094
- class ListRecordBackupPlansResponse < TencentCloud::Common::AbstractModel
4576
+ # ListRecordBackupPlanDevices请求参数结构体
4577
+ class ListRecordBackupPlanDevicesRequest < TencentCloud::Common::AbstractModel
4578
+ # @param PlanId: 录像计划ID(从查询录像上云计划列表接口ListRecordBackupPlans中获取)
4579
+ # @type PlanId: String
4580
+ # @param DeviceName: 按照设备名称查询(为空时,不参考该参数)
4581
+ # @type DeviceName: String
4582
+ # @param ChannelName: 按照通道名称查询(为空时,不参考该参数)
4583
+ # @type ChannelName: String
4584
+ # @param OrganizationName: 按照组织名称查询(为空时,不参考该参数)
4585
+ # @type OrganizationName: String
4586
+ # @param PageSize: 每页最大数量
4587
+ # @type PageSize: String
4588
+ # @param PageNumber: 第几页
4589
+ # @type PageNumber: String
4590
+
4591
+ attr_accessor :PlanId, :DeviceName, :ChannelName, :OrganizationName, :PageSize, :PageNumber
4592
+
4593
+ def initialize(planid=nil, devicename=nil, channelname=nil, organizationname=nil, pagesize=nil, pagenumber=nil)
4594
+ @PlanId = planid
4595
+ @DeviceName = devicename
4596
+ @ChannelName = channelname
4597
+ @OrganizationName = organizationname
4598
+ @PageSize = pagesize
4599
+ @PageNumber = pagenumber
4600
+ end
4601
+
4602
+ def deserialize(params)
4603
+ @PlanId = params['PlanId']
4604
+ @DeviceName = params['DeviceName']
4605
+ @ChannelName = params['ChannelName']
4606
+ @OrganizationName = params['OrganizationName']
4607
+ @PageSize = params['PageSize']
4608
+ @PageNumber = params['PageNumber']
4609
+ end
4610
+ end
4611
+
4612
+ # ListRecordBackupPlanDevices返回参数结构体
4613
+ class ListRecordBackupPlanDevicesResponse < TencentCloud::Common::AbstractModel
4095
4614
  # @param Data: 返回数据
4096
- # @type Data: Array
4615
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.ListRecordBackupPlanDevicesData`
4097
4616
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4098
4617
  # @type RequestId: String
4099
4618
 
@@ -4106,19 +4625,15 @@ module TencentCloud
4106
4625
 
4107
4626
  def deserialize(params)
4108
4627
  unless params['Data'].nil?
4109
- @Data = []
4110
- params['Data'].each do |i|
4111
- listrecordbackupplanresponse_tmp = ListRecordBackupPlanResponse.new
4112
- listrecordbackupplanresponse_tmp.deserialize(i)
4113
- @Data << listrecordbackupplanresponse_tmp
4114
- end
4628
+ @Data = ListRecordBackupPlanDevicesData.new
4629
+ @Data.deserialize(params['Data'])
4115
4630
  end
4116
4631
  @RequestId = params['RequestId']
4117
4632
  end
4118
4633
  end
4119
4634
 
4120
- # ListRecordBackupTemplates请求参数结构体
4121
- class ListRecordBackupTemplatesRequest < TencentCloud::Common::AbstractModel
4635
+ # ListRecordBackupPlans请求参数结构体
4636
+ class ListRecordBackupPlansRequest < TencentCloud::Common::AbstractModel
4122
4637
 
4123
4638
 
4124
4639
  def initialize()
@@ -4128,8 +4643,35 @@ module TencentCloud
4128
4643
  end
4129
4644
  end
4130
4645
 
4646
+ # ListRecordBackupPlans返回参数结构体
4647
+ class ListRecordBackupPlansResponse < TencentCloud::Common::AbstractModel
4648
+ # @param Data: 返回数据
4649
+ # @type Data: Array
4650
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4651
+ # @type RequestId: String
4652
+
4653
+ attr_accessor :Data, :RequestId
4654
+
4655
+ def initialize(data=nil, requestid=nil)
4656
+ @Data = data
4657
+ @RequestId = requestid
4658
+ end
4659
+
4660
+ def deserialize(params)
4661
+ unless params['Data'].nil?
4662
+ @Data = []
4663
+ params['Data'].each do |i|
4664
+ listrecordbackupplandata_tmp = ListRecordBackupPlanData.new
4665
+ listrecordbackupplandata_tmp.deserialize(i)
4666
+ @Data << listrecordbackupplandata_tmp
4667
+ end
4668
+ end
4669
+ @RequestId = params['RequestId']
4670
+ end
4671
+ end
4672
+
4131
4673
  # 查询录像上云模板列表返回数据
4132
- class ListRecordBackupTemplatesResponse < TencentCloud::Common::AbstractModel
4674
+ class ListRecordBackupTemplatesData < TencentCloud::Common::AbstractModel
4133
4675
  # @param TemplateId: 模板ID
4134
4676
  # 注意:此字段可能返回 null,表示取不到有效值。
4135
4677
  # @type TemplateId: String
@@ -4150,42 +4692,97 @@ module TencentCloud
4150
4692
  # @type CreateAt: String
4151
4693
  # @param UpdateAt: 更新时间
4152
4694
  # 注意:此字段可能返回 null,表示取不到有效值。
4153
- # @type UpdateAt: String
4695
+ # @type UpdateAt: String
4696
+
4697
+ attr_accessor :TemplateId, :TemplateName, :TimeSections, :DevTimeSections, :Scale, :CreateAt, :UpdateAt
4698
+
4699
+ def initialize(templateid=nil, templatename=nil, timesections=nil, devtimesections=nil, scale=nil, createat=nil, updateat=nil)
4700
+ @TemplateId = templateid
4701
+ @TemplateName = templatename
4702
+ @TimeSections = timesections
4703
+ @DevTimeSections = devtimesections
4704
+ @Scale = scale
4705
+ @CreateAt = createat
4706
+ @UpdateAt = updateat
4707
+ end
4708
+
4709
+ def deserialize(params)
4710
+ @TemplateId = params['TemplateId']
4711
+ @TemplateName = params['TemplateName']
4712
+ unless params['TimeSections'].nil?
4713
+ @TimeSections = []
4714
+ params['TimeSections'].each do |i|
4715
+ recordtemplatetimesections_tmp = RecordTemplateTimeSections.new
4716
+ recordtemplatetimesections_tmp.deserialize(i)
4717
+ @TimeSections << recordtemplatetimesections_tmp
4718
+ end
4719
+ end
4720
+ unless params['DevTimeSections'].nil?
4721
+ @DevTimeSections = []
4722
+ params['DevTimeSections'].each do |i|
4723
+ recordtemplatetimesections_tmp = RecordTemplateTimeSections.new
4724
+ recordtemplatetimesections_tmp.deserialize(i)
4725
+ @DevTimeSections << recordtemplatetimesections_tmp
4726
+ end
4727
+ end
4728
+ @Scale = params['Scale']
4729
+ @CreateAt = params['CreateAt']
4730
+ @UpdateAt = params['UpdateAt']
4731
+ end
4732
+ end
4733
+
4734
+ # ListRecordBackupTemplates请求参数结构体
4735
+ class ListRecordBackupTemplatesRequest < TencentCloud::Common::AbstractModel
4736
+
4737
+
4738
+ def initialize()
4739
+ end
4740
+
4741
+ def deserialize(params)
4742
+ end
4743
+ end
4744
+
4745
+ # ListRecordBackupTemplates返回参数结构体
4746
+ class ListRecordBackupTemplatesResponse < TencentCloud::Common::AbstractModel
4747
+ # @param Data: 返回数据
4748
+ # @type Data: Array
4749
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4750
+ # @type RequestId: String
4751
+
4752
+ attr_accessor :Data, :RequestId
4753
+
4754
+ def initialize(data=nil, requestid=nil)
4755
+ @Data = data
4756
+ @RequestId = requestid
4757
+ end
4758
+
4759
+ def deserialize(params)
4760
+ unless params['Data'].nil?
4761
+ @Data = []
4762
+ params['Data'].each do |i|
4763
+ listrecordbackuptemplatesdata_tmp = ListRecordBackupTemplatesData.new
4764
+ listrecordbackuptemplatesdata_tmp.deserialize(i)
4765
+ @Data << listrecordbackuptemplatesdata_tmp
4766
+ end
4767
+ end
4768
+ @RequestId = params['RequestId']
4769
+ end
4770
+ end
4771
+
4772
+ # 用户下所有实时上云计划中的通道id列表返回数据
4773
+ class ListRecordPlanChannelsData < TencentCloud::Common::AbstractModel
4774
+ # @param List: 用户所有计划下通道id,存在通道是为数组格式,不存在时,字段数据为空
4775
+ # 注意:此字段可能返回 null,表示取不到有效值。
4776
+ # @type List: Array
4154
4777
 
4155
- attr_accessor :TemplateId, :TemplateName, :TimeSections, :DevTimeSections, :Scale, :CreateAt, :UpdateAt
4778
+ attr_accessor :List
4156
4779
 
4157
- def initialize(templateid=nil, templatename=nil, timesections=nil, devtimesections=nil, scale=nil, createat=nil, updateat=nil)
4158
- @TemplateId = templateid
4159
- @TemplateName = templatename
4160
- @TimeSections = timesections
4161
- @DevTimeSections = devtimesections
4162
- @Scale = scale
4163
- @CreateAt = createat
4164
- @UpdateAt = updateat
4780
+ def initialize(list=nil)
4781
+ @List = list
4165
4782
  end
4166
4783
 
4167
4784
  def deserialize(params)
4168
- @TemplateId = params['TemplateId']
4169
- @TemplateName = params['TemplateName']
4170
- unless params['TimeSections'].nil?
4171
- @TimeSections = []
4172
- params['TimeSections'].each do |i|
4173
- recordtemplatetimesections_tmp = RecordTemplateTimeSections.new
4174
- recordtemplatetimesections_tmp.deserialize(i)
4175
- @TimeSections << recordtemplatetimesections_tmp
4176
- end
4177
- end
4178
- unless params['DevTimeSections'].nil?
4179
- @DevTimeSections = []
4180
- params['DevTimeSections'].each do |i|
4181
- recordtemplatetimesections_tmp = RecordTemplateTimeSections.new
4182
- recordtemplatetimesections_tmp.deserialize(i)
4183
- @DevTimeSections << recordtemplatetimesections_tmp
4184
- end
4185
- end
4186
- @Scale = params['Scale']
4187
- @CreateAt = params['CreateAt']
4188
- @UpdateAt = params['UpdateAt']
4785
+ @List = params['List']
4189
4786
  end
4190
4787
  end
4191
4788
 
@@ -4200,20 +4797,62 @@ module TencentCloud
4200
4797
  end
4201
4798
  end
4202
4799
 
4203
- # 用户下所有实时上云计划中的通道id列表返回数据
4800
+ # ListRecordPlanChannels返回参数结构体
4204
4801
  class ListRecordPlanChannelsResponse < TencentCloud::Common::AbstractModel
4205
- # @param List: 用户所有计划下通道id,存在通道是为数组格式,不存在时,字段数据为空
4802
+ # @param Data: 返回结果
4803
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.ListRecordPlanChannelsData`
4804
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4805
+ # @type RequestId: String
4806
+
4807
+ attr_accessor :Data, :RequestId
4808
+
4809
+ def initialize(data=nil, requestid=nil)
4810
+ @Data = data
4811
+ @RequestId = requestid
4812
+ end
4813
+
4814
+ def deserialize(params)
4815
+ unless params['Data'].nil?
4816
+ @Data = ListRecordPlanChannelsData.new
4817
+ @Data.deserialize(params['Data'])
4818
+ end
4819
+ @RequestId = params['RequestId']
4820
+ end
4821
+ end
4822
+
4823
+ # 云计划下的设备通道列表返回数据
4824
+ class ListRecordPlanDevicesData < TencentCloud::Common::AbstractModel
4825
+ # @param PageNumber: 第几页
4826
+ # @type PageNumber: Integer
4827
+ # @param PageSize: 当前页的设备数量
4828
+ # @type PageSize: Integer
4829
+ # @param TotalCount: 本次查询的设备通道总数
4830
+ # @type TotalCount: Integer
4831
+ # @param List: 设备通道信息列表
4206
4832
  # 注意:此字段可能返回 null,表示取不到有效值。
4207
4833
  # @type List: Array
4208
4834
 
4209
- attr_accessor :List
4835
+ attr_accessor :PageNumber, :PageSize, :TotalCount, :List
4210
4836
 
4211
- def initialize(list=nil)
4837
+ def initialize(pagenumber=nil, pagesize=nil, totalcount=nil, list=nil)
4838
+ @PageNumber = pagenumber
4839
+ @PageSize = pagesize
4840
+ @TotalCount = totalcount
4212
4841
  @List = list
4213
4842
  end
4214
4843
 
4215
4844
  def deserialize(params)
4216
- @List = params['List']
4845
+ @PageNumber = params['PageNumber']
4846
+ @PageSize = params['PageSize']
4847
+ @TotalCount = params['TotalCount']
4848
+ unless params['List'].nil?
4849
+ @List = []
4850
+ params['List'].each do |i|
4851
+ recordplanchannelinfo_tmp = RecordPlanChannelInfo.new
4852
+ recordplanchannelinfo_tmp.deserialize(i)
4853
+ @List << recordplanchannelinfo_tmp
4854
+ end
4855
+ end
4217
4856
  end
4218
4857
  end
4219
4858
 
@@ -4256,39 +4895,26 @@ module TencentCloud
4256
4895
  end
4257
4896
  end
4258
4897
 
4259
- # 云计划下的设备通道列表返回数据
4898
+ # ListRecordPlanDevices返回参数结构体
4260
4899
  class ListRecordPlanDevicesResponse < TencentCloud::Common::AbstractModel
4261
- # @param PageNumber: 第几页
4262
- # @type PageNumber: Integer
4263
- # @param PageSize: 当前页的设备数量
4264
- # @type PageSize: Integer
4265
- # @param TotalCount: 本次查询的设备通道总数
4266
- # @type TotalCount: Integer
4267
- # @param List: 设备通道信息列表
4268
- # 注意:此字段可能返回 null,表示取不到有效值。
4269
- # @type List: Array
4900
+ # @param Data: 返回结果
4901
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.ListRecordPlanDevicesData`
4902
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4903
+ # @type RequestId: String
4270
4904
 
4271
- attr_accessor :PageNumber, :PageSize, :TotalCount, :List
4905
+ attr_accessor :Data, :RequestId
4272
4906
 
4273
- def initialize(pagenumber=nil, pagesize=nil, totalcount=nil, list=nil)
4274
- @PageNumber = pagenumber
4275
- @PageSize = pagesize
4276
- @TotalCount = totalcount
4277
- @List = list
4907
+ def initialize(data=nil, requestid=nil)
4908
+ @Data = data
4909
+ @RequestId = requestid
4278
4910
  end
4279
4911
 
4280
4912
  def deserialize(params)
4281
- @PageNumber = params['PageNumber']
4282
- @PageSize = params['PageSize']
4283
- @TotalCount = params['TotalCount']
4284
- unless params['List'].nil?
4285
- @List = []
4286
- params['List'].each do |i|
4287
- recordplanchannelinfo_tmp = RecordPlanChannelInfo.new
4288
- recordplanchannelinfo_tmp.deserialize(i)
4289
- @List << recordplanchannelinfo_tmp
4290
- end
4913
+ unless params['Data'].nil?
4914
+ @Data = ListRecordPlanDevicesData.new
4915
+ @Data.deserialize(params['Data'])
4291
4916
  end
4917
+ @RequestId = params['RequestId']
4292
4918
  end
4293
4919
  end
4294
4920
 
@@ -4584,6 +5210,23 @@ module TencentCloud
4584
5210
  end
4585
5211
  end
4586
5212
 
5213
+ # 本地录像播放url数据结构
5214
+ class PlayRecordData < TencentCloud::Common::AbstractModel
5215
+ # @param Flv: 录像播放地址
5216
+ # 注意:此字段可能返回 null,表示取不到有效值。
5217
+ # @type Flv: String
5218
+
5219
+ attr_accessor :Flv
5220
+
5221
+ def initialize(flv=nil)
5222
+ @Flv = flv
5223
+ end
5224
+
5225
+ def deserialize(params)
5226
+ @Flv = params['Flv']
5227
+ end
5228
+ end
5229
+
4587
5230
  # PlayRecord请求参数结构体
4588
5231
  class PlayRecordRequest < TencentCloud::Common::AbstractModel
4589
5232
  # @param ChannelId: 通道 ID(从查询通道DescribeDeviceChannel接口中获取)
@@ -4616,20 +5259,26 @@ module TencentCloud
4616
5259
  end
4617
5260
  end
4618
5261
 
4619
- # 本地录像播放url数据结构
5262
+ # PlayRecord返回参数结构体
4620
5263
  class PlayRecordResponse < TencentCloud::Common::AbstractModel
4621
- # @param Flv: 录像播放地址
4622
- # 注意:此字段可能返回 null,表示取不到有效值。
4623
- # @type Flv: String
5264
+ # @param Data: 返回结果
5265
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.PlayRecordData`
5266
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5267
+ # @type RequestId: String
4624
5268
 
4625
- attr_accessor :Flv
5269
+ attr_accessor :Data, :RequestId
4626
5270
 
4627
- def initialize(flv=nil)
4628
- @Flv = flv
5271
+ def initialize(data=nil, requestid=nil)
5272
+ @Data = data
5273
+ @RequestId = requestid
4629
5274
  end
4630
5275
 
4631
5276
  def deserialize(params)
4632
- @Flv = params['Flv']
5277
+ unless params['Data'].nil?
5278
+ @Data = PlayRecordData.new
5279
+ @Data.deserialize(params['Data'])
5280
+ end
5281
+ @RequestId = params['RequestId']
4633
5282
  end
4634
5283
  end
4635
5284
 
@@ -4718,7 +5367,7 @@ module TencentCloud
4718
5367
  end
4719
5368
 
4720
5369
  # 实时上云计划添加和修改的返回数据
4721
- class RecordPlanOptResponse < TencentCloud::Common::AbstractModel
5370
+ class RecordPlanOptData < TencentCloud::Common::AbstractModel
4722
5371
  # @param PlanId: 上云计划ID
4723
5372
  # @type PlanId: String
4724
5373
  # @param PlanName: 上云计划名称
@@ -5153,44 +5802,8 @@ module TencentCloud
5153
5802
  end
5154
5803
  end
5155
5804
 
5156
- # UpdateDeviceOrganization请求参数结构体
5157
- class UpdateDeviceOrganizationRequest < TencentCloud::Common::AbstractModel
5158
- # @param DeviceIds: 设备 ID 数组(从获取设备列表接口ListDevices中获取)
5159
- # @type DeviceIds: Array
5160
- # @param OrganizationId: 组织 ID(从查询组织接口DescribeOrganization中获取)
5161
- # @type OrganizationId: String
5162
-
5163
- attr_accessor :DeviceIds, :OrganizationId
5164
-
5165
- def initialize(deviceids=nil, organizationid=nil)
5166
- @DeviceIds = deviceids
5167
- @OrganizationId = organizationid
5168
- end
5169
-
5170
- def deserialize(params)
5171
- @DeviceIds = params['DeviceIds']
5172
- @OrganizationId = params['OrganizationId']
5173
- end
5174
- end
5175
-
5176
- # UpdateDeviceOrganization返回参数结构体
5177
- class UpdateDeviceOrganizationResponse < TencentCloud::Common::AbstractModel
5178
- # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5179
- # @type RequestId: String
5180
-
5181
- attr_accessor :RequestId
5182
-
5183
- def initialize(requestid=nil)
5184
- @RequestId = requestid
5185
- end
5186
-
5187
- def deserialize(params)
5188
- @RequestId = params['RequestId']
5189
- end
5190
- end
5191
-
5192
5805
  # 修改设备接口返回数据
5193
- class UpdateDeviceResponse < TencentCloud::Common::AbstractModel
5806
+ class UpdateDeviceData < TencentCloud::Common::AbstractModel
5194
5807
  # @param DeviceId: 设备ID
5195
5808
  # 注意:此字段可能返回 null,表示取不到有效值。
5196
5809
  # @type DeviceId: String
@@ -5292,28 +5905,28 @@ module TencentCloud
5292
5905
  end
5293
5906
  end
5294
5907
 
5295
- # UpdateDeviceStatus请求参数结构体
5296
- class UpdateDeviceStatusRequest < TencentCloud::Common::AbstractModel
5297
- # @param DeviceId: 设备 ID(从获取设备列表接口ListDevices中获取)
5298
- # @type DeviceId: String
5299
- # @param Status: 禁用启用状态码(2:启用,3:禁用)
5300
- # @type Status: Integer
5908
+ # UpdateDeviceOrganization请求参数结构体
5909
+ class UpdateDeviceOrganizationRequest < TencentCloud::Common::AbstractModel
5910
+ # @param DeviceIds: 设备 ID 数组(从获取设备列表接口ListDevices中获取)
5911
+ # @type DeviceIds: Array
5912
+ # @param OrganizationId: 组织 ID(从查询组织接口DescribeOrganization中获取)
5913
+ # @type OrganizationId: String
5301
5914
 
5302
- attr_accessor :DeviceId, :Status
5915
+ attr_accessor :DeviceIds, :OrganizationId
5303
5916
 
5304
- def initialize(deviceid=nil, status=nil)
5305
- @DeviceId = deviceid
5306
- @Status = status
5917
+ def initialize(deviceids=nil, organizationid=nil)
5918
+ @DeviceIds = deviceids
5919
+ @OrganizationId = organizationid
5307
5920
  end
5308
5921
 
5309
5922
  def deserialize(params)
5310
- @DeviceId = params['DeviceId']
5311
- @Status = params['Status']
5923
+ @DeviceIds = params['DeviceIds']
5924
+ @OrganizationId = params['OrganizationId']
5312
5925
  end
5313
5926
  end
5314
5927
 
5315
- # UpdateDeviceStatus返回参数结构体
5316
- class UpdateDeviceStatusResponse < TencentCloud::Common::AbstractModel
5928
+ # UpdateDeviceOrganization返回参数结构体
5929
+ class UpdateDeviceOrganizationResponse < TencentCloud::Common::AbstractModel
5317
5930
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5318
5931
  # @type RequestId: String
5319
5932
 
@@ -5328,32 +5941,44 @@ module TencentCloud
5328
5941
  end
5329
5942
  end
5330
5943
 
5331
- # UpdateGateway请求参数结构体
5332
- class UpdateGatewayRequest < TencentCloud::Common::AbstractModel
5333
- # @param GatewayId: 网关索引ID(从获取网关列表ListGateways接口中获取)
5334
- # @type GatewayId: String
5335
- # @param Name: 仅支持中文、英文、数网关名称,字、_、-,长度不超过32个字符
5336
- # @type Name: String
5337
- # @param Description: 网关描述,仅支持中文、英文、数字、_、-,长度不超过128个字符
5338
- # @type Description: String
5944
+ # UpdateDeviceStatus请求参数结构体
5945
+ class UpdateDeviceStatusRequest < TencentCloud::Common::AbstractModel
5946
+ # @param DeviceId: 设备 ID(从获取设备列表接口ListDevices中获取)
5947
+ # @type DeviceId: String
5948
+ # @param Status: 禁用启用状态码(2:启用,3:禁用)
5949
+ # @type Status: Integer
5339
5950
 
5340
- attr_accessor :GatewayId, :Name, :Description
5951
+ attr_accessor :DeviceId, :Status
5341
5952
 
5342
- def initialize(gatewayid=nil, name=nil, description=nil)
5343
- @GatewayId = gatewayid
5344
- @Name = name
5345
- @Description = description
5953
+ def initialize(deviceid=nil, status=nil)
5954
+ @DeviceId = deviceid
5955
+ @Status = status
5956
+ end
5957
+
5958
+ def deserialize(params)
5959
+ @DeviceId = params['DeviceId']
5960
+ @Status = params['Status']
5961
+ end
5962
+ end
5963
+
5964
+ # UpdateDeviceStatus返回参数结构体
5965
+ class UpdateDeviceStatusResponse < TencentCloud::Common::AbstractModel
5966
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5967
+ # @type RequestId: String
5968
+
5969
+ attr_accessor :RequestId
5970
+
5971
+ def initialize(requestid=nil)
5972
+ @RequestId = requestid
5346
5973
  end
5347
5974
 
5348
5975
  def deserialize(params)
5349
- @GatewayId = params['GatewayId']
5350
- @Name = params['Name']
5351
- @Description = params['Description']
5976
+ @RequestId = params['RequestId']
5352
5977
  end
5353
5978
  end
5354
5979
 
5355
5980
  # 修改网关信息返回结果
5356
- class UpdateGatewayResponse < TencentCloud::Common::AbstractModel
5981
+ class UpdateGatewayData < TencentCloud::Common::AbstractModel
5357
5982
  # @param GatewayId: 网关索引ID
5358
5983
  # 注意:此字段可能返回 null,表示取不到有效值。
5359
5984
  # @type GatewayId: String
@@ -5414,8 +6039,55 @@ module TencentCloud
5414
6039
  end
5415
6040
  end
5416
6041
 
6042
+ # UpdateGateway请求参数结构体
6043
+ class UpdateGatewayRequest < TencentCloud::Common::AbstractModel
6044
+ # @param GatewayId: 网关索引ID(从获取网关列表ListGateways接口中获取)
6045
+ # @type GatewayId: String
6046
+ # @param Name: 仅支持中文、英文、数网关名称,字、_、-,长度不超过32个字符
6047
+ # @type Name: String
6048
+ # @param Description: 网关描述,仅支持中文、英文、数字、_、-,长度不超过128个字符
6049
+ # @type Description: String
6050
+
6051
+ attr_accessor :GatewayId, :Name, :Description
6052
+
6053
+ def initialize(gatewayid=nil, name=nil, description=nil)
6054
+ @GatewayId = gatewayid
6055
+ @Name = name
6056
+ @Description = description
6057
+ end
6058
+
6059
+ def deserialize(params)
6060
+ @GatewayId = params['GatewayId']
6061
+ @Name = params['Name']
6062
+ @Description = params['Description']
6063
+ end
6064
+ end
6065
+
6066
+ # UpdateGateway返回参数结构体
6067
+ class UpdateGatewayResponse < TencentCloud::Common::AbstractModel
6068
+ # @param Data: 返回数据
6069
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.UpdateGatewayData`
6070
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6071
+ # @type RequestId: String
6072
+
6073
+ attr_accessor :Data, :RequestId
6074
+
6075
+ def initialize(data=nil, requestid=nil)
6076
+ @Data = data
6077
+ @RequestId = requestid
6078
+ end
6079
+
6080
+ def deserialize(params)
6081
+ unless params['Data'].nil?
6082
+ @Data = UpdateGatewayData.new
6083
+ @Data.deserialize(params['Data'])
6084
+ end
6085
+ @RequestId = params['RequestId']
6086
+ end
6087
+ end
6088
+
5417
6089
  # 修改组织接口返回数据
5418
- class UpdateOrgResponse < TencentCloud::Common::AbstractModel
6090
+ class UpdateOrgData < TencentCloud::Common::AbstractModel
5419
6091
  # @param OrganizationId: 组织 ID
5420
6092
  # 注意:此字段可能返回 null,表示取不到有效值。
5421
6093
  # @type OrganizationId: String
@@ -5489,7 +6161,7 @@ module TencentCloud
5489
6161
  # UpdateOrganization返回参数结构体
5490
6162
  class UpdateOrganizationResponse < TencentCloud::Common::AbstractModel
5491
6163
  # @param Data: 返回结果
5492
- # @type Data: :class:`Tencentcloud::Iss.v20230517.models.UpdateOrgResponse`
6164
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.UpdateOrgData`
5493
6165
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5494
6166
  # @type RequestId: String
5495
6167
 
@@ -5502,13 +6174,64 @@ module TencentCloud
5502
6174
 
5503
6175
  def deserialize(params)
5504
6176
  unless params['Data'].nil?
5505
- @Data = UpdateOrgResponse.new
6177
+ @Data = UpdateOrgData.new
5506
6178
  @Data.deserialize(params['Data'])
5507
6179
  end
5508
6180
  @RequestId = params['RequestId']
5509
6181
  end
5510
6182
  end
5511
6183
 
6184
+ # 修改录像上云计划返回数据
6185
+ class UpdateRecordBackupPlanData < TencentCloud::Common::AbstractModel
6186
+ # @param PlanId: 录像上云计划ID
6187
+ # @type PlanId: String
6188
+ # @param PlanName: 录像上云计划名称
6189
+ # @type PlanName: String
6190
+ # @param TemplateId: 录像上云模板ID
6191
+ # @type TemplateId: String
6192
+ # @param Describe: 录像上云计划描述
6193
+ # @type Describe: String
6194
+ # @param LifeCycle: 云文件生命周期
6195
+ # @type LifeCycle: :class:`Tencentcloud::Iss.v20230517.models.LifeCycleData`
6196
+ # @param Status: 录像上云计划状态,1:正常使用中,0:删除中,无法使用
6197
+ # @type Status: Integer
6198
+ # @param ChannelCount: 通道数量
6199
+ # @type ChannelCount: Integer
6200
+ # @param CreateAt: 创建时间
6201
+ # @type CreateAt: String
6202
+ # @param UpdateAt: 修改时间
6203
+ # @type UpdateAt: String
6204
+
6205
+ attr_accessor :PlanId, :PlanName, :TemplateId, :Describe, :LifeCycle, :Status, :ChannelCount, :CreateAt, :UpdateAt
6206
+
6207
+ def initialize(planid=nil, planname=nil, templateid=nil, describe=nil, lifecycle=nil, status=nil, channelcount=nil, createat=nil, updateat=nil)
6208
+ @PlanId = planid
6209
+ @PlanName = planname
6210
+ @TemplateId = templateid
6211
+ @Describe = describe
6212
+ @LifeCycle = lifecycle
6213
+ @Status = status
6214
+ @ChannelCount = channelcount
6215
+ @CreateAt = createat
6216
+ @UpdateAt = updateat
6217
+ end
6218
+
6219
+ def deserialize(params)
6220
+ @PlanId = params['PlanId']
6221
+ @PlanName = params['PlanName']
6222
+ @TemplateId = params['TemplateId']
6223
+ @Describe = params['Describe']
6224
+ unless params['LifeCycle'].nil?
6225
+ @LifeCycle = LifeCycleData.new
6226
+ @LifeCycle.deserialize(params['LifeCycle'])
6227
+ end
6228
+ @Status = params['Status']
6229
+ @ChannelCount = params['ChannelCount']
6230
+ @CreateAt = params['CreateAt']
6231
+ @UpdateAt = params['UpdateAt']
6232
+ end
6233
+ end
6234
+
5512
6235
  # 修改录像上云计划数据结构
5513
6236
  class UpdateRecordBackupPlanModify < TencentCloud::Common::AbstractModel
5514
6237
  # @param PlanName: 录像计划名称(仅支持中文、英文、数字、_、-,长度不超过32个字符,计划名称全局唯一,不能为空,不能重复,不修改名称时,不需要该字段)
@@ -5575,52 +6298,85 @@ module TencentCloud
5575
6298
  end
5576
6299
  end
5577
6300
 
5578
- # 修改录像上云计划返回数据
6301
+ # UpdateRecordBackupPlan返回参数结构体
5579
6302
  class UpdateRecordBackupPlanResponse < TencentCloud::Common::AbstractModel
5580
- # @param PlanId: 录像上云计划ID
5581
- # @type PlanId: String
5582
- # @param PlanName: 录像上云计划名称
5583
- # @type PlanName: String
5584
- # @param TemplateId: 录像上云模板ID
6303
+ # @param Data: 返回数据
6304
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.UpdateRecordBackupPlanData`
6305
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6306
+ # @type RequestId: String
6307
+
6308
+ attr_accessor :Data, :RequestId
6309
+
6310
+ def initialize(data=nil, requestid=nil)
6311
+ @Data = data
6312
+ @RequestId = requestid
6313
+ end
6314
+
6315
+ def deserialize(params)
6316
+ unless params['Data'].nil?
6317
+ @Data = UpdateRecordBackupPlanData.new
6318
+ @Data.deserialize(params['Data'])
6319
+ end
6320
+ @RequestId = params['RequestId']
6321
+ end
6322
+ end
6323
+
6324
+ # 修改录像上云模版返回数据
6325
+ class UpdateRecordBackupTemplateData < TencentCloud::Common::AbstractModel
6326
+ # @param TemplateId: 模板ID
6327
+ # 注意:此字段可能返回 null,表示取不到有效值。
5585
6328
  # @type TemplateId: String
5586
- # @param Describe: 录像上云计划描述
5587
- # @type Describe: String
5588
- # @param LifeCycle: 云文件生命周期
5589
- # @type LifeCycle: :class:`Tencentcloud::Iss.v20230517.models.LifeCycleData`
5590
- # @param Status: 录像上云计划状态,1:正常使用中,0:删除中,无法使用
5591
- # @type Status: Integer
5592
- # @param ChannelCount: 通道数量
5593
- # @type ChannelCount: Integer
6329
+ # @param TemplateName: 模板名称
6330
+ # 注意:此字段可能返回 null,表示取不到有效值。
6331
+ # @type TemplateName: String
6332
+ # @param TimeSections: 上云时间段(按周进行设置,支持一天设置多个时间段,每个时间段不小于10分钟)
6333
+ # 注意:此字段可能返回 null,表示取不到有效值。
6334
+ # @type TimeSections: Array
6335
+ # @param DevTimeSections: 录像时间段(按周进行设置,支持一天设置多个时间段,每个时间段不小于10分钟)
6336
+ # 注意:此字段可能返回 null,表示取不到有效值。
6337
+ # @type DevTimeSections: Array
6338
+ # @param Scale: 上云倍速(支持1,2,4倍速)
6339
+ # 注意:此字段可能返回 null,表示取不到有效值。
6340
+ # @type Scale: Integer
5594
6341
  # @param CreateAt: 创建时间
6342
+ # 注意:此字段可能返回 null,表示取不到有效值。
5595
6343
  # @type CreateAt: String
5596
- # @param UpdateAt: 修改时间
6344
+ # @param UpdateAt: 更新时间
6345
+ # 注意:此字段可能返回 null,表示取不到有效值。
5597
6346
  # @type UpdateAt: String
5598
6347
 
5599
- attr_accessor :PlanId, :PlanName, :TemplateId, :Describe, :LifeCycle, :Status, :ChannelCount, :CreateAt, :UpdateAt
6348
+ attr_accessor :TemplateId, :TemplateName, :TimeSections, :DevTimeSections, :Scale, :CreateAt, :UpdateAt
5600
6349
 
5601
- def initialize(planid=nil, planname=nil, templateid=nil, describe=nil, lifecycle=nil, status=nil, channelcount=nil, createat=nil, updateat=nil)
5602
- @PlanId = planid
5603
- @PlanName = planname
6350
+ def initialize(templateid=nil, templatename=nil, timesections=nil, devtimesections=nil, scale=nil, createat=nil, updateat=nil)
5604
6351
  @TemplateId = templateid
5605
- @Describe = describe
5606
- @LifeCycle = lifecycle
5607
- @Status = status
5608
- @ChannelCount = channelcount
6352
+ @TemplateName = templatename
6353
+ @TimeSections = timesections
6354
+ @DevTimeSections = devtimesections
6355
+ @Scale = scale
5609
6356
  @CreateAt = createat
5610
6357
  @UpdateAt = updateat
5611
6358
  end
5612
6359
 
5613
6360
  def deserialize(params)
5614
- @PlanId = params['PlanId']
5615
- @PlanName = params['PlanName']
5616
6361
  @TemplateId = params['TemplateId']
5617
- @Describe = params['Describe']
5618
- unless params['LifeCycle'].nil?
5619
- @LifeCycle = LifeCycleData.new
5620
- @LifeCycle.deserialize(params['LifeCycle'])
6362
+ @TemplateName = params['TemplateName']
6363
+ unless params['TimeSections'].nil?
6364
+ @TimeSections = []
6365
+ params['TimeSections'].each do |i|
6366
+ recordtemplatetimesections_tmp = RecordTemplateTimeSections.new
6367
+ recordtemplatetimesections_tmp.deserialize(i)
6368
+ @TimeSections << recordtemplatetimesections_tmp
6369
+ end
5621
6370
  end
5622
- @Status = params['Status']
5623
- @ChannelCount = params['ChannelCount']
6371
+ unless params['DevTimeSections'].nil?
6372
+ @DevTimeSections = []
6373
+ params['DevTimeSections'].each do |i|
6374
+ recordtemplatetimesections_tmp = RecordTemplateTimeSections.new
6375
+ recordtemplatetimesections_tmp.deserialize(i)
6376
+ @DevTimeSections << recordtemplatetimesections_tmp
6377
+ end
6378
+ end
6379
+ @Scale = params['Scale']
5624
6380
  @CreateAt = params['CreateAt']
5625
6381
  @UpdateAt = params['UpdateAt']
5626
6382
  end
@@ -5691,64 +6447,26 @@ module TencentCloud
5691
6447
  end
5692
6448
  end
5693
6449
 
5694
- # 修改录像上云模版返回数据
6450
+ # UpdateRecordBackupTemplate返回参数结构体
5695
6451
  class UpdateRecordBackupTemplateResponse < TencentCloud::Common::AbstractModel
5696
- # @param TemplateId: 模板ID
5697
- # 注意:此字段可能返回 null,表示取不到有效值。
5698
- # @type TemplateId: String
5699
- # @param TemplateName: 模板名称
5700
- # 注意:此字段可能返回 null,表示取不到有效值。
5701
- # @type TemplateName: String
5702
- # @param TimeSections: 上云时间段(按周进行设置,支持一天设置多个时间段,每个时间段不小于10分钟)
5703
- # 注意:此字段可能返回 null,表示取不到有效值。
5704
- # @type TimeSections: Array
5705
- # @param DevTimeSections: 录像时间段(按周进行设置,支持一天设置多个时间段,每个时间段不小于10分钟)
5706
- # 注意:此字段可能返回 null,表示取不到有效值。
5707
- # @type DevTimeSections: Array
5708
- # @param Scale: 上云倍速(支持1,2,4倍速)
5709
- # 注意:此字段可能返回 null,表示取不到有效值。
5710
- # @type Scale: Integer
5711
- # @param CreateAt: 创建时间
5712
- # 注意:此字段可能返回 null,表示取不到有效值。
5713
- # @type CreateAt: String
5714
- # @param UpdateAt: 更新时间
5715
- # 注意:此字段可能返回 null,表示取不到有效值。
5716
- # @type UpdateAt: String
6452
+ # @param Data: 返回数据
6453
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.UpdateRecordBackupTemplateData`
6454
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6455
+ # @type RequestId: String
5717
6456
 
5718
- attr_accessor :TemplateId, :TemplateName, :TimeSections, :DevTimeSections, :Scale, :CreateAt, :UpdateAt
6457
+ attr_accessor :Data, :RequestId
5719
6458
 
5720
- def initialize(templateid=nil, templatename=nil, timesections=nil, devtimesections=nil, scale=nil, createat=nil, updateat=nil)
5721
- @TemplateId = templateid
5722
- @TemplateName = templatename
5723
- @TimeSections = timesections
5724
- @DevTimeSections = devtimesections
5725
- @Scale = scale
5726
- @CreateAt = createat
5727
- @UpdateAt = updateat
6459
+ def initialize(data=nil, requestid=nil)
6460
+ @Data = data
6461
+ @RequestId = requestid
5728
6462
  end
5729
6463
 
5730
6464
  def deserialize(params)
5731
- @TemplateId = params['TemplateId']
5732
- @TemplateName = params['TemplateName']
5733
- unless params['TimeSections'].nil?
5734
- @TimeSections = []
5735
- params['TimeSections'].each do |i|
5736
- recordtemplatetimesections_tmp = RecordTemplateTimeSections.new
5737
- recordtemplatetimesections_tmp.deserialize(i)
5738
- @TimeSections << recordtemplatetimesections_tmp
5739
- end
5740
- end
5741
- unless params['DevTimeSections'].nil?
5742
- @DevTimeSections = []
5743
- params['DevTimeSections'].each do |i|
5744
- recordtemplatetimesections_tmp = RecordTemplateTimeSections.new
5745
- recordtemplatetimesections_tmp.deserialize(i)
5746
- @DevTimeSections << recordtemplatetimesections_tmp
5747
- end
6465
+ unless params['Data'].nil?
6466
+ @Data = UpdateRecordBackupTemplateData.new
6467
+ @Data.deserialize(params['Data'])
5748
6468
  end
5749
- @Scale = params['Scale']
5750
- @CreateAt = params['CreateAt']
5751
- @UpdateAt = params['UpdateAt']
6469
+ @RequestId = params['RequestId']
5752
6470
  end
5753
6471
  end
5754
6472
 
@@ -5832,7 +6550,7 @@ module TencentCloud
5832
6550
  # UpdateRecordPlan返回参数结构体
5833
6551
  class UpdateRecordPlanResponse < TencentCloud::Common::AbstractModel
5834
6552
  # @param Data: 返回结果
5835
- # @type Data: :class:`Tencentcloud::Iss.v20230517.models.RecordPlanOptResponse`
6553
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.RecordPlanOptData`
5836
6554
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5837
6555
  # @type RequestId: String
5838
6556
 
@@ -5845,7 +6563,7 @@ module TencentCloud
5845
6563
 
5846
6564
  def deserialize(params)
5847
6565
  unless params['Data'].nil?
5848
- @Data = RecordPlanOptResponse.new
6566
+ @Data = RecordPlanOptData.new
5849
6567
  @Data.deserialize(params['Data'])
5850
6568
  end
5851
6569
  @RequestId = params['RequestId']
@@ -5972,7 +6690,7 @@ module TencentCloud
5972
6690
  # UpdateUserDevice返回参数结构体
5973
6691
  class UpdateUserDeviceResponse < TencentCloud::Common::AbstractModel
5974
6692
  # @param Data: 返回数据
5975
- # @type Data: :class:`Tencentcloud::Iss.v20230517.models.UpdateDeviceResponse`
6693
+ # @type Data: :class:`Tencentcloud::Iss.v20230517.models.UpdateDeviceData`
5976
6694
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5977
6695
  # @type RequestId: String
5978
6696
 
@@ -5985,7 +6703,7 @@ module TencentCloud
5985
6703
 
5986
6704
  def deserialize(params)
5987
6705
  unless params['Data'].nil?
5988
- @Data = UpdateDeviceResponse.new
6706
+ @Data = UpdateDeviceData.new
5989
6707
  @Data.deserialize(params['Data'])
5990
6708
  end
5991
6709
  @RequestId = params['RequestId']