tencentcloud-sdk-nodejs-intl-en 3.0.1265 → 3.0.1266

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.
@@ -37,6 +37,7 @@ const InputStreamInfo = models.InputStreamInfo;
37
37
  const FrameCaptureTemplate = models.FrameCaptureTemplate;
38
38
  const PipelineInputSettingsInfo = models.PipelineInputSettingsInfo;
39
39
  const DescribeStreamLiveChannelOutputStatisticsRequest = models.DescribeStreamLiveChannelOutputStatisticsRequest;
40
+ const TimedRecordSettings = models.TimedRecordSettings;
40
41
  const GetAbWatermarkPlayUrlResponse = models.GetAbWatermarkPlayUrlResponse;
41
42
  const ChannelPipelineAlerts = models.ChannelPipelineAlerts;
42
43
  const InputInfo = models.InputInfo;
@@ -97,7 +98,7 @@ const QueryInputStreamStateRequest = models.QueryInputStreamStateRequest;
97
98
  const PlanReq = models.PlanReq;
98
99
  const DeleteStreamLiveWatermarkRequest = models.DeleteStreamLiveWatermarkRequest;
99
100
  const CreateStreamLiveChannelRequest = models.CreateStreamLiveChannelRequest;
100
- const TimedRecordSettings = models.TimedRecordSettings;
101
+ const MotionGraphicsSetting = models.MotionGraphicsSetting;
101
102
  const CosSettings = models.CosSettings;
102
103
  const StreamLiveRegionInfo = models.StreamLiveRegionInfo;
103
104
  const DescribeStreamLiveChannelRequest = models.DescribeStreamLiveChannelRequest;
@@ -109,6 +110,7 @@ const CreateStreamLiveWatermarkResponse = models.CreateStreamLiveWatermarkRespon
109
110
  const DescribeStreamLiveInputsResponse = models.DescribeStreamLiveInputsResponse;
110
111
  const ModifyStreamLiveInputResponse = models.ModifyStreamLiveInputResponse;
111
112
  const DescribeStreamLiveChannelAlertsResponse = models.DescribeStreamLiveChannelAlertsResponse;
113
+ const ThumbnailSettings = models.ThumbnailSettings;
112
114
  const PlanResp = models.PlanResp;
113
115
  const AudioNormalizationSettings = models.AudioNormalizationSettings;
114
116
  const DescribeStreamLivePlansResponse = models.DescribeStreamLivePlansResponse;
@@ -139,10 +141,11 @@ const ChannelOutputsStatistics = models.ChannelOutputsStatistics;
139
141
  const AdditionalRateSetting = models.AdditionalRateSetting;
140
142
  const PlanSettings = models.PlanSettings;
141
143
  const DescribeStreamLiveInputSecurityGroupsResponse = models.DescribeStreamLiveInputSecurityGroupsResponse;
144
+ const StartStreamLiveChannelRequest = models.StartStreamLiveChannelRequest;
142
145
  const AbWatermarkSettingsReq = models.AbWatermarkSettingsReq;
143
146
  const EventNotifySetting = models.EventNotifySetting;
144
147
  const DeleteStreamLiveInputResponse = models.DeleteStreamLiveInputResponse;
145
- const StartStreamLiveChannelRequest = models.StartStreamLiveChannelRequest;
148
+ const MotionGraphicsActivateSetting = models.MotionGraphicsActivateSetting;
146
149
  const TimingSettingsResp = models.TimingSettingsResp;
147
150
  const DescribeStreamLiveWatermarkResponse = models.DescribeStreamLiveWatermarkResponse;
148
151
  const StreamScte35Info = models.StreamScte35Info;
@@ -1052,6 +1052,36 @@ UTC time, such as `2020-01-01T12:00:00Z`
1052
1052
  }
1053
1053
  }
1054
1054
 
1055
+ /**
1056
+ * Timed recording settings
1057
+ * @class
1058
+ */
1059
+ class TimedRecordSettings extends AbstractModel {
1060
+ constructor(){
1061
+ super();
1062
+
1063
+ /**
1064
+ * Whether to automatically delete finished recording events. Valid values: `CLOSE`, `OPEN`. If this parameter is left empty, `CLOSE` will be used.
1065
+ If it is set to `OPEN`, a recording event will be deleted 7 days after it is finished.
1066
+ Note: This field may return `null`, indicating that no valid value was found.
1067
+ * @type {string || null}
1068
+ */
1069
+ this.AutoClear = null;
1070
+
1071
+ }
1072
+
1073
+ /**
1074
+ * @private
1075
+ */
1076
+ deserialize(params) {
1077
+ if (!params) {
1078
+ return;
1079
+ }
1080
+ this.AutoClear = 'AutoClear' in params ? params.AutoClear : null;
1081
+
1082
+ }
1083
+ }
1084
+
1055
1085
  /**
1056
1086
  * GetAbWatermarkPlayUrl response structure.
1057
1087
  * @class
@@ -4108,6 +4138,12 @@ class EventSettingsResp extends AbstractModel {
4108
4138
  */
4109
4139
  this.StaticImageDeactivateSetting = null;
4110
4140
 
4141
+ /**
4142
+ * Dynamic graphic overlay activate configuration.
4143
+ * @type {MotionGraphicsActivateSetting || null}
4144
+ */
4145
+ this.MotionGraphicsActivateSetting = null;
4146
+
4111
4147
  }
4112
4148
 
4113
4149
  /**
@@ -4160,6 +4196,12 @@ class EventSettingsResp extends AbstractModel {
4160
4196
  this.StaticImageDeactivateSetting = obj;
4161
4197
  }
4162
4198
 
4199
+ if (params.MotionGraphicsActivateSetting) {
4200
+ let obj = new MotionGraphicsActivateSetting();
4201
+ obj.deserialize(params.MotionGraphicsActivateSetting)
4202
+ this.MotionGraphicsActivateSetting = obj;
4203
+ }
4204
+
4163
4205
  }
4164
4206
  }
4165
4207
 
@@ -4723,20 +4765,18 @@ class CreateStreamLiveChannelRequest extends AbstractModel {
4723
4765
  }
4724
4766
 
4725
4767
  /**
4726
- * Timed recording settings
4768
+ *
4727
4769
  * @class
4728
4770
  */
4729
- class TimedRecordSettings extends AbstractModel {
4771
+ class MotionGraphicsSetting extends AbstractModel {
4730
4772
  constructor(){
4731
4773
  super();
4732
4774
 
4733
4775
  /**
4734
- * Whether to automatically delete finished recording events. Valid values: `CLOSE`, `OPEN`. If this parameter is left empty, `CLOSE` will be used.
4735
- If it is set to `OPEN`, a recording event will be deleted 7 days after it is finished.
4736
- Note: This field may return `null`, indicating that no valid value was found.
4737
- * @type {string || null}
4776
+ * Whether to enable dynamic graphic overlay, '0' not enabled, '1' enabled; Default 0.
4777
+ * @type {number || null}
4738
4778
  */
4739
- this.AutoClear = null;
4779
+ this.MotionGraphicsOverlayEnabled = null;
4740
4780
 
4741
4781
  }
4742
4782
 
@@ -4747,7 +4787,7 @@ Note: This field may return `null`, indicating that no valid value was found.
4747
4787
  if (!params) {
4748
4788
  return;
4749
4789
  }
4750
- this.AutoClear = 'AutoClear' in params ? params.AutoClear : null;
4790
+ this.MotionGraphicsOverlayEnabled = 'MotionGraphicsOverlayEnabled' in params ? params.MotionGraphicsOverlayEnabled : null;
4751
4791
 
4752
4792
  }
4753
4793
  }
@@ -5263,6 +5303,34 @@ class DescribeStreamLiveChannelAlertsResponse extends AbstractModel {
5263
5303
  }
5264
5304
  }
5265
5305
 
5306
+ /**
5307
+ *
5308
+ * @class
5309
+ */
5310
+ class ThumbnailSettings extends AbstractModel {
5311
+ constructor(){
5312
+ super();
5313
+
5314
+ /**
5315
+ * Generate thumbnail ,0: Disabled ,1: Enabled , Default: 0
5316
+ * @type {number || null}
5317
+ */
5318
+ this.ThumbnailEnabled = null;
5319
+
5320
+ }
5321
+
5322
+ /**
5323
+ * @private
5324
+ */
5325
+ deserialize(params) {
5326
+ if (!params) {
5327
+ return;
5328
+ }
5329
+ this.ThumbnailEnabled = 'ThumbnailEnabled' in params ? params.ThumbnailEnabled : null;
5330
+
5331
+ }
5332
+ }
5333
+
5266
5334
  /**
5267
5335
  * Event configuration information
5268
5336
  * @class
@@ -5487,6 +5555,18 @@ class GeneralSetting extends AbstractModel {
5487
5555
  */
5488
5556
  this.StaticImageSettings = null;
5489
5557
 
5558
+ /**
5559
+ * Dynamic graphic overlay configuration.
5560
+ * @type {MotionGraphicsSetting || null}
5561
+ */
5562
+ this.MotionGraphicsSettings = null;
5563
+
5564
+ /**
5565
+ * Thumbnail Configuration.
5566
+ * @type {ThumbnailSettings || null}
5567
+ */
5568
+ this.ThumbnailSettings = null;
5569
+
5490
5570
  }
5491
5571
 
5492
5572
  /**
@@ -5503,6 +5583,18 @@ class GeneralSetting extends AbstractModel {
5503
5583
  this.StaticImageSettings = obj;
5504
5584
  }
5505
5585
 
5586
+ if (params.MotionGraphicsSettings) {
5587
+ let obj = new MotionGraphicsSetting();
5588
+ obj.deserialize(params.MotionGraphicsSettings)
5589
+ this.MotionGraphicsSettings = obj;
5590
+ }
5591
+
5592
+ if (params.ThumbnailSettings) {
5593
+ let obj = new ThumbnailSettings();
5594
+ obj.deserialize(params.ThumbnailSettings)
5595
+ this.ThumbnailSettings = obj;
5596
+ }
5597
+
5506
5598
  }
5507
5599
  }
5508
5600
 
@@ -5819,6 +5911,12 @@ class EventSettingsReq extends AbstractModel {
5819
5911
  */
5820
5912
  this.StaticImageDeactivateSetting = null;
5821
5913
 
5914
+ /**
5915
+ * Dynamic graphic overlay activate configuration
5916
+ * @type {MotionGraphicsActivateSetting || null}
5917
+ */
5918
+ this.MotionGraphicsActivateSetting = null;
5919
+
5822
5920
  }
5823
5921
 
5824
5922
  /**
@@ -5871,6 +5969,12 @@ class EventSettingsReq extends AbstractModel {
5871
5969
  this.StaticImageDeactivateSetting = obj;
5872
5970
  }
5873
5971
 
5972
+ if (params.MotionGraphicsActivateSetting) {
5973
+ let obj = new MotionGraphicsActivateSetting();
5974
+ obj.deserialize(params.MotionGraphicsActivateSetting)
5975
+ this.MotionGraphicsActivateSetting = obj;
5976
+ }
5977
+
5874
5978
  }
5875
5979
  }
5876
5980
 
@@ -6750,6 +6854,34 @@ class DescribeStreamLiveInputSecurityGroupsResponse extends AbstractModel {
6750
6854
  }
6751
6855
  }
6752
6856
 
6857
+ /**
6858
+ * StartStreamLiveChannel request structure.
6859
+ * @class
6860
+ */
6861
+ class StartStreamLiveChannelRequest extends AbstractModel {
6862
+ constructor(){
6863
+ super();
6864
+
6865
+ /**
6866
+ * Channel ID
6867
+ * @type {string || null}
6868
+ */
6869
+ this.Id = null;
6870
+
6871
+ }
6872
+
6873
+ /**
6874
+ * @private
6875
+ */
6876
+ deserialize(params) {
6877
+ if (!params) {
6878
+ return;
6879
+ }
6880
+ this.Id = 'Id' in params ? params.Id : null;
6881
+
6882
+ }
6883
+ }
6884
+
6753
6885
  /**
6754
6886
  *
6755
6887
  * @class
@@ -6840,18 +6972,24 @@ class DeleteStreamLiveInputResponse extends AbstractModel {
6840
6972
  }
6841
6973
 
6842
6974
  /**
6843
- * StartStreamLiveChannel request structure.
6975
+ *
6844
6976
  * @class
6845
6977
  */
6846
- class StartStreamLiveChannelRequest extends AbstractModel {
6978
+ class MotionGraphicsActivateSetting extends AbstractModel {
6847
6979
  constructor(){
6848
6980
  super();
6849
6981
 
6850
6982
  /**
6851
- * Channel ID
6983
+ * Duration in ms, valid when MOTION_Graphics_ACTIVATE, required; An integer in the range of 0-86400000, where 0 represents the duration until the end of the live stream.
6984
+ * @type {number || null}
6985
+ */
6986
+ this.Duration = null;
6987
+
6988
+ /**
6989
+ * The address of HTML5 needs to comply with the format specification of http/https.
6852
6990
  * @type {string || null}
6853
6991
  */
6854
- this.Id = null;
6992
+ this.Url = null;
6855
6993
 
6856
6994
  }
6857
6995
 
@@ -6862,7 +7000,8 @@ class StartStreamLiveChannelRequest extends AbstractModel {
6862
7000
  if (!params) {
6863
7001
  return;
6864
7002
  }
6865
- this.Id = 'Id' in params ? params.Id : null;
7003
+ this.Duration = 'Duration' in params ? params.Duration : null;
7004
+ this.Url = 'Url' in params ? params.Url : null;
6866
7005
 
6867
7006
  }
6868
7007
  }
@@ -8605,6 +8744,7 @@ module.exports = {
8605
8744
  FrameCaptureTemplate: FrameCaptureTemplate,
8606
8745
  PipelineInputSettingsInfo: PipelineInputSettingsInfo,
8607
8746
  DescribeStreamLiveChannelOutputStatisticsRequest: DescribeStreamLiveChannelOutputStatisticsRequest,
8747
+ TimedRecordSettings: TimedRecordSettings,
8608
8748
  GetAbWatermarkPlayUrlResponse: GetAbWatermarkPlayUrlResponse,
8609
8749
  ChannelPipelineAlerts: ChannelPipelineAlerts,
8610
8750
  InputInfo: InputInfo,
@@ -8665,7 +8805,7 @@ module.exports = {
8665
8805
  PlanReq: PlanReq,
8666
8806
  DeleteStreamLiveWatermarkRequest: DeleteStreamLiveWatermarkRequest,
8667
8807
  CreateStreamLiveChannelRequest: CreateStreamLiveChannelRequest,
8668
- TimedRecordSettings: TimedRecordSettings,
8808
+ MotionGraphicsSetting: MotionGraphicsSetting,
8669
8809
  CosSettings: CosSettings,
8670
8810
  StreamLiveRegionInfo: StreamLiveRegionInfo,
8671
8811
  DescribeStreamLiveChannelRequest: DescribeStreamLiveChannelRequest,
@@ -8677,6 +8817,7 @@ module.exports = {
8677
8817
  DescribeStreamLiveInputsResponse: DescribeStreamLiveInputsResponse,
8678
8818
  ModifyStreamLiveInputResponse: ModifyStreamLiveInputResponse,
8679
8819
  DescribeStreamLiveChannelAlertsResponse: DescribeStreamLiveChannelAlertsResponse,
8820
+ ThumbnailSettings: ThumbnailSettings,
8680
8821
  PlanResp: PlanResp,
8681
8822
  AudioNormalizationSettings: AudioNormalizationSettings,
8682
8823
  DescribeStreamLivePlansResponse: DescribeStreamLivePlansResponse,
@@ -8707,10 +8848,11 @@ module.exports = {
8707
8848
  AdditionalRateSetting: AdditionalRateSetting,
8708
8849
  PlanSettings: PlanSettings,
8709
8850
  DescribeStreamLiveInputSecurityGroupsResponse: DescribeStreamLiveInputSecurityGroupsResponse,
8851
+ StartStreamLiveChannelRequest: StartStreamLiveChannelRequest,
8710
8852
  AbWatermarkSettingsReq: AbWatermarkSettingsReq,
8711
8853
  EventNotifySetting: EventNotifySetting,
8712
8854
  DeleteStreamLiveInputResponse: DeleteStreamLiveInputResponse,
8713
- StartStreamLiveChannelRequest: StartStreamLiveChannelRequest,
8855
+ MotionGraphicsActivateSetting: MotionGraphicsActivateSetting,
8714
8856
  TimingSettingsResp: TimingSettingsResp,
8715
8857
  DescribeStreamLiveWatermarkResponse: DescribeStreamLiveWatermarkResponse,
8716
8858
  StreamScte35Info: StreamScte35Info,