tencentcloud-sdk-nodejs-intl-en 3.0.1153 → 3.0.1155
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tencentcloud/captcha/v20190722/models.js +2 -3
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/cvm/v20170312/cvm_client.js +0 -1
- package/tencentcloud/dbbrain/index.js +1 -1
- package/tencentcloud/mdl/v20200326/mdl_client.js +13 -27
- package/tencentcloud/mdl/v20200326/models.js +190 -390
- package/tencentcloud/mdp/v20200527/models.js +14 -0
- package/tencentcloud/monitor/v20180724/models.js +1 -1
- package/tencentcloud/mps/v20190612/models.js +40 -33
- package/tencentcloud/rum/v20210622/models.js +15 -1
- package/tencentcloud/sms/index.js +1 -1
- package/tencentcloud/sqlserver/v20180328/models.js +79 -0
- package/tencentcloud/sqlserver/v20180328/sqlserver_client.js +13 -0
- package/tencentcloud/tke/index.js +1 -1
- package/tencentcloud/vm/index.js +1 -1
- package/tencentcloud/wedata/v20210820/models.js +1568 -130
- package/tencentcloud/wedata/v20210820/wedata_client.js +60 -16
|
@@ -1168,13 +1168,13 @@ class AVTemplate extends AbstractModel {
|
|
|
1168
1168
|
this.Vcodec = null;
|
|
1169
1169
|
|
|
1170
1170
|
/**
|
|
1171
|
-
* Video width. Value range: (0,
|
|
1171
|
+
* Video width. Value range: (0, 4096]. The value must be an integer multiple of 2. If this parameter is left empty, the original video width will be used.
|
|
1172
1172
|
* @type {number || null}
|
|
1173
1173
|
*/
|
|
1174
1174
|
this.Width = null;
|
|
1175
1175
|
|
|
1176
1176
|
/**
|
|
1177
|
-
* Video height. Value range: (0,
|
|
1177
|
+
* Video height. Value range: (0, 4096]. The value must be an integer multiple of 2. If this parameter is left empty, the original video height will be used.
|
|
1178
1178
|
* @type {number || null}
|
|
1179
1179
|
*/
|
|
1180
1180
|
this.Height = null;
|
|
@@ -2937,13 +2937,13 @@ class VideoTemplateInfo extends AbstractModel {
|
|
|
2937
2937
|
this.VideoBitrate = null;
|
|
2938
2938
|
|
|
2939
2939
|
/**
|
|
2940
|
-
* Video width. Value range: (0,
|
|
2940
|
+
* Video width. Value range: (0,4096]. The value can only be a multiple of 2. If this parameter is left empty, the original value will be used.
|
|
2941
2941
|
* @type {number || null}
|
|
2942
2942
|
*/
|
|
2943
2943
|
this.Width = null;
|
|
2944
2944
|
|
|
2945
2945
|
/**
|
|
2946
|
-
* Video height. Value range: (0,
|
|
2946
|
+
* Video height. Value range: (0,4096]. The value can only be a multiple of 2. If this parameter is left empty, the original value will be used.
|
|
2947
2947
|
* @type {number || null}
|
|
2948
2948
|
*/
|
|
2949
2949
|
this.Height = null;
|
|
@@ -3823,6 +3823,12 @@ Currently, fMP4 segments do not support DRM or time shifting.
|
|
|
3823
3823
|
*/
|
|
3824
3824
|
this.EndListTag = null;
|
|
3825
3825
|
|
|
3826
|
+
/**
|
|
3827
|
+
* Optional: `ENHANCED_SCTE35`, `DATERANGE`; default value: `ENHANCED_SCTE35`.
|
|
3828
|
+
* @type {string || null}
|
|
3829
|
+
*/
|
|
3830
|
+
this.AdMarkupType = null;
|
|
3831
|
+
|
|
3826
3832
|
}
|
|
3827
3833
|
|
|
3828
3834
|
/**
|
|
@@ -3845,6 +3851,7 @@ Currently, fMP4 segments do not support DRM or time shifting.
|
|
|
3845
3851
|
this.StreamOrder = 'StreamOrder' in params ? params.StreamOrder : null;
|
|
3846
3852
|
this.VideoResolution = 'VideoResolution' in params ? params.VideoResolution : null;
|
|
3847
3853
|
this.EndListTag = 'EndListTag' in params ? params.EndListTag : null;
|
|
3854
|
+
this.AdMarkupType = 'AdMarkupType' in params ? params.AdMarkupType : null;
|
|
3848
3855
|
|
|
3849
3856
|
}
|
|
3850
3857
|
}
|
|
@@ -4967,291 +4974,6 @@ Note: this field may return `null`, indicating that no valid value was found.
|
|
|
4967
4974
|
}
|
|
4968
4975
|
}
|
|
4969
4976
|
|
|
4970
|
-
/**
|
|
4971
|
-
* Highlight results information.
|
|
4972
|
-
* @class
|
|
4973
|
-
*/
|
|
4974
|
-
class HighlightResInfoResp extends AbstractModel {
|
|
4975
|
-
constructor(){
|
|
4976
|
-
super();
|
|
4977
|
-
|
|
4978
|
-
/**
|
|
4979
|
-
* MPS task ID.
|
|
4980
|
-
* @type {string || null}
|
|
4981
|
-
*/
|
|
4982
|
-
this.TaskId = null;
|
|
4983
|
-
|
|
4984
|
-
/**
|
|
4985
|
-
* Highlights video link.
|
|
4986
|
-
* @type {string || null}
|
|
4987
|
-
*/
|
|
4988
|
-
this.SegmentUrl = null;
|
|
4989
|
-
|
|
4990
|
-
/**
|
|
4991
|
-
* Collection cover link.
|
|
4992
|
-
* @type {string || null}
|
|
4993
|
-
*/
|
|
4994
|
-
this.CovImgUrl = null;
|
|
4995
|
-
|
|
4996
|
-
/**
|
|
4997
|
-
* Generation time, UTC format.
|
|
4998
|
-
* @type {number || null}
|
|
4999
|
-
*/
|
|
5000
|
-
this.CreateTime = null;
|
|
5001
|
-
|
|
5002
|
-
/**
|
|
5003
|
-
* Starting pts.
|
|
5004
|
-
* @type {number || null}
|
|
5005
|
-
*/
|
|
5006
|
-
this.StartTime = null;
|
|
5007
|
-
|
|
5008
|
-
/**
|
|
5009
|
-
* End pts.
|
|
5010
|
-
* @type {number || null}
|
|
5011
|
-
*/
|
|
5012
|
-
this.EndTime = null;
|
|
5013
|
-
|
|
5014
|
-
/**
|
|
5015
|
-
* Duration in seconds.
|
|
5016
|
-
* @type {number || null}
|
|
5017
|
-
*/
|
|
5018
|
-
this.Duration = null;
|
|
5019
|
-
|
|
5020
|
-
}
|
|
5021
|
-
|
|
5022
|
-
/**
|
|
5023
|
-
* @private
|
|
5024
|
-
*/
|
|
5025
|
-
deserialize(params) {
|
|
5026
|
-
if (!params) {
|
|
5027
|
-
return;
|
|
5028
|
-
}
|
|
5029
|
-
this.TaskId = 'TaskId' in params ? params.TaskId : null;
|
|
5030
|
-
this.SegmentUrl = 'SegmentUrl' in params ? params.SegmentUrl : null;
|
|
5031
|
-
this.CovImgUrl = 'CovImgUrl' in params ? params.CovImgUrl : null;
|
|
5032
|
-
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
5033
|
-
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
5034
|
-
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
5035
|
-
this.Duration = 'Duration' in params ? params.Duration : null;
|
|
5036
|
-
|
|
5037
|
-
}
|
|
5038
|
-
}
|
|
5039
|
-
|
|
5040
|
-
/**
|
|
5041
|
-
* ModifyStreamLiveChannel request structure.
|
|
5042
|
-
* @class
|
|
5043
|
-
*/
|
|
5044
|
-
class ModifyStreamLiveChannelRequest extends AbstractModel {
|
|
5045
|
-
constructor(){
|
|
5046
|
-
super();
|
|
5047
|
-
|
|
5048
|
-
/**
|
|
5049
|
-
* Channel ID
|
|
5050
|
-
* @type {string || null}
|
|
5051
|
-
*/
|
|
5052
|
-
this.Id = null;
|
|
5053
|
-
|
|
5054
|
-
/**
|
|
5055
|
-
* Channel name, which can contain 1-32 case-sensitive letters, digits, and underscores and must be unique at the region level
|
|
5056
|
-
* @type {string || null}
|
|
5057
|
-
*/
|
|
5058
|
-
this.Name = null;
|
|
5059
|
-
|
|
5060
|
-
/**
|
|
5061
|
-
* Inputs to attach. You can attach 1 to 5 inputs.
|
|
5062
|
-
* @type {Array.<AttachedInput> || null}
|
|
5063
|
-
*/
|
|
5064
|
-
this.AttachedInputs = null;
|
|
5065
|
-
|
|
5066
|
-
/**
|
|
5067
|
-
* Configuration information of the channel's output groups. Quantity: [1, 10]
|
|
5068
|
-
* @type {Array.<StreamLiveOutputGroupsInfo> || null}
|
|
5069
|
-
*/
|
|
5070
|
-
this.OutputGroups = null;
|
|
5071
|
-
|
|
5072
|
-
/**
|
|
5073
|
-
* Audio transcoding templates. Quantity: [1, 20]
|
|
5074
|
-
* @type {Array.<AudioTemplateInfo> || null}
|
|
5075
|
-
*/
|
|
5076
|
-
this.AudioTemplates = null;
|
|
5077
|
-
|
|
5078
|
-
/**
|
|
5079
|
-
* Video transcoding templates. Quantity: [1, 10]
|
|
5080
|
-
* @type {Array.<VideoTemplateInfo> || null}
|
|
5081
|
-
*/
|
|
5082
|
-
this.VideoTemplates = null;
|
|
5083
|
-
|
|
5084
|
-
/**
|
|
5085
|
-
* Audio/Video transcoding templates. Quantity: [1, 10]
|
|
5086
|
-
* @type {Array.<AVTemplate> || null}
|
|
5087
|
-
*/
|
|
5088
|
-
this.AVTemplates = null;
|
|
5089
|
-
|
|
5090
|
-
/**
|
|
5091
|
-
* Subtitle template configuration, only AVTemplates are valid.
|
|
5092
|
-
* @type {Array.<SubtitleConf> || null}
|
|
5093
|
-
*/
|
|
5094
|
-
this.CaptionTemplates = null;
|
|
5095
|
-
|
|
5096
|
-
/**
|
|
5097
|
-
* Event settings
|
|
5098
|
-
* @type {PlanSettings || null}
|
|
5099
|
-
*/
|
|
5100
|
-
this.PlanSettings = null;
|
|
5101
|
-
|
|
5102
|
-
/**
|
|
5103
|
-
* The callback settings.
|
|
5104
|
-
* @type {EventNotifySetting || null}
|
|
5105
|
-
*/
|
|
5106
|
-
this.EventNotifySettings = null;
|
|
5107
|
-
|
|
5108
|
-
/**
|
|
5109
|
-
* Complement the last video frame settings.
|
|
5110
|
-
* @type {InputLossBehaviorInfo || null}
|
|
5111
|
-
*/
|
|
5112
|
-
this.InputLossBehavior = null;
|
|
5113
|
-
|
|
5114
|
-
/**
|
|
5115
|
-
* Pipeline configuration.
|
|
5116
|
-
* @type {PipelineInputSettingsInfo || null}
|
|
5117
|
-
*/
|
|
5118
|
-
this.PipelineInputSettings = null;
|
|
5119
|
-
|
|
5120
|
-
/**
|
|
5121
|
-
* Recognition configuration for input content.
|
|
5122
|
-
* @type {InputAnalysisInfo || null}
|
|
5123
|
-
*/
|
|
5124
|
-
this.InputAnalysisSettings = null;
|
|
5125
|
-
|
|
5126
|
-
/**
|
|
5127
|
-
* Console tag list.
|
|
5128
|
-
* @type {Array.<Tag> || null}
|
|
5129
|
-
*/
|
|
5130
|
-
this.Tags = null;
|
|
5131
|
-
|
|
5132
|
-
/**
|
|
5133
|
-
* Frame capture templates.
|
|
5134
|
-
* @type {Array.<FrameCaptureTemplate> || null}
|
|
5135
|
-
*/
|
|
5136
|
-
this.FrameCaptureTemplates = null;
|
|
5137
|
-
|
|
5138
|
-
}
|
|
5139
|
-
|
|
5140
|
-
/**
|
|
5141
|
-
* @private
|
|
5142
|
-
*/
|
|
5143
|
-
deserialize(params) {
|
|
5144
|
-
if (!params) {
|
|
5145
|
-
return;
|
|
5146
|
-
}
|
|
5147
|
-
this.Id = 'Id' in params ? params.Id : null;
|
|
5148
|
-
this.Name = 'Name' in params ? params.Name : null;
|
|
5149
|
-
|
|
5150
|
-
if (params.AttachedInputs) {
|
|
5151
|
-
this.AttachedInputs = new Array();
|
|
5152
|
-
for (let z in params.AttachedInputs) {
|
|
5153
|
-
let obj = new AttachedInput();
|
|
5154
|
-
obj.deserialize(params.AttachedInputs[z]);
|
|
5155
|
-
this.AttachedInputs.push(obj);
|
|
5156
|
-
}
|
|
5157
|
-
}
|
|
5158
|
-
|
|
5159
|
-
if (params.OutputGroups) {
|
|
5160
|
-
this.OutputGroups = new Array();
|
|
5161
|
-
for (let z in params.OutputGroups) {
|
|
5162
|
-
let obj = new StreamLiveOutputGroupsInfo();
|
|
5163
|
-
obj.deserialize(params.OutputGroups[z]);
|
|
5164
|
-
this.OutputGroups.push(obj);
|
|
5165
|
-
}
|
|
5166
|
-
}
|
|
5167
|
-
|
|
5168
|
-
if (params.AudioTemplates) {
|
|
5169
|
-
this.AudioTemplates = new Array();
|
|
5170
|
-
for (let z in params.AudioTemplates) {
|
|
5171
|
-
let obj = new AudioTemplateInfo();
|
|
5172
|
-
obj.deserialize(params.AudioTemplates[z]);
|
|
5173
|
-
this.AudioTemplates.push(obj);
|
|
5174
|
-
}
|
|
5175
|
-
}
|
|
5176
|
-
|
|
5177
|
-
if (params.VideoTemplates) {
|
|
5178
|
-
this.VideoTemplates = new Array();
|
|
5179
|
-
for (let z in params.VideoTemplates) {
|
|
5180
|
-
let obj = new VideoTemplateInfo();
|
|
5181
|
-
obj.deserialize(params.VideoTemplates[z]);
|
|
5182
|
-
this.VideoTemplates.push(obj);
|
|
5183
|
-
}
|
|
5184
|
-
}
|
|
5185
|
-
|
|
5186
|
-
if (params.AVTemplates) {
|
|
5187
|
-
this.AVTemplates = new Array();
|
|
5188
|
-
for (let z in params.AVTemplates) {
|
|
5189
|
-
let obj = new AVTemplate();
|
|
5190
|
-
obj.deserialize(params.AVTemplates[z]);
|
|
5191
|
-
this.AVTemplates.push(obj);
|
|
5192
|
-
}
|
|
5193
|
-
}
|
|
5194
|
-
|
|
5195
|
-
if (params.CaptionTemplates) {
|
|
5196
|
-
this.CaptionTemplates = new Array();
|
|
5197
|
-
for (let z in params.CaptionTemplates) {
|
|
5198
|
-
let obj = new SubtitleConf();
|
|
5199
|
-
obj.deserialize(params.CaptionTemplates[z]);
|
|
5200
|
-
this.CaptionTemplates.push(obj);
|
|
5201
|
-
}
|
|
5202
|
-
}
|
|
5203
|
-
|
|
5204
|
-
if (params.PlanSettings) {
|
|
5205
|
-
let obj = new PlanSettings();
|
|
5206
|
-
obj.deserialize(params.PlanSettings)
|
|
5207
|
-
this.PlanSettings = obj;
|
|
5208
|
-
}
|
|
5209
|
-
|
|
5210
|
-
if (params.EventNotifySettings) {
|
|
5211
|
-
let obj = new EventNotifySetting();
|
|
5212
|
-
obj.deserialize(params.EventNotifySettings)
|
|
5213
|
-
this.EventNotifySettings = obj;
|
|
5214
|
-
}
|
|
5215
|
-
|
|
5216
|
-
if (params.InputLossBehavior) {
|
|
5217
|
-
let obj = new InputLossBehaviorInfo();
|
|
5218
|
-
obj.deserialize(params.InputLossBehavior)
|
|
5219
|
-
this.InputLossBehavior = obj;
|
|
5220
|
-
}
|
|
5221
|
-
|
|
5222
|
-
if (params.PipelineInputSettings) {
|
|
5223
|
-
let obj = new PipelineInputSettingsInfo();
|
|
5224
|
-
obj.deserialize(params.PipelineInputSettings)
|
|
5225
|
-
this.PipelineInputSettings = obj;
|
|
5226
|
-
}
|
|
5227
|
-
|
|
5228
|
-
if (params.InputAnalysisSettings) {
|
|
5229
|
-
let obj = new InputAnalysisInfo();
|
|
5230
|
-
obj.deserialize(params.InputAnalysisSettings)
|
|
5231
|
-
this.InputAnalysisSettings = obj;
|
|
5232
|
-
}
|
|
5233
|
-
|
|
5234
|
-
if (params.Tags) {
|
|
5235
|
-
this.Tags = new Array();
|
|
5236
|
-
for (let z in params.Tags) {
|
|
5237
|
-
let obj = new Tag();
|
|
5238
|
-
obj.deserialize(params.Tags[z]);
|
|
5239
|
-
this.Tags.push(obj);
|
|
5240
|
-
}
|
|
5241
|
-
}
|
|
5242
|
-
|
|
5243
|
-
if (params.FrameCaptureTemplates) {
|
|
5244
|
-
this.FrameCaptureTemplates = new Array();
|
|
5245
|
-
for (let z in params.FrameCaptureTemplates) {
|
|
5246
|
-
let obj = new FrameCaptureTemplate();
|
|
5247
|
-
obj.deserialize(params.FrameCaptureTemplates[z]);
|
|
5248
|
-
this.FrameCaptureTemplates.push(obj);
|
|
5249
|
-
}
|
|
5250
|
-
}
|
|
5251
|
-
|
|
5252
|
-
}
|
|
5253
|
-
}
|
|
5254
|
-
|
|
5255
4977
|
/**
|
|
5256
4978
|
* ModifyStreamLiveInput response structure.
|
|
5257
4979
|
* @class
|
|
@@ -6186,84 +5908,6 @@ class DescribeStreamLiveChannelInputStatisticsResponse extends AbstractModel {
|
|
|
6186
5908
|
}
|
|
6187
5909
|
}
|
|
6188
5910
|
|
|
6189
|
-
/**
|
|
6190
|
-
* DescribeMediaLiveHighlightResult response structure.
|
|
6191
|
-
* @class
|
|
6192
|
-
*/
|
|
6193
|
-
class DescribeMediaLiveHighlightResultResponse extends AbstractModel {
|
|
6194
|
-
constructor(){
|
|
6195
|
-
super();
|
|
6196
|
-
|
|
6197
|
-
/**
|
|
6198
|
-
* Highlight results information.
|
|
6199
|
-
* @type {Array.<HighlightResInfoResp> || null}
|
|
6200
|
-
*/
|
|
6201
|
-
this.Info = null;
|
|
6202
|
-
|
|
6203
|
-
/**
|
|
6204
|
-
* Collection id.
|
|
6205
|
-
* @type {string || null}
|
|
6206
|
-
*/
|
|
6207
|
-
this.Id = null;
|
|
6208
|
-
|
|
6209
|
-
/**
|
|
6210
|
-
* Media live broadcast channel id.
|
|
6211
|
-
* @type {string || null}
|
|
6212
|
-
*/
|
|
6213
|
-
this.ChannelId = null;
|
|
6214
|
-
|
|
6215
|
-
/**
|
|
6216
|
-
* Number of pages.
|
|
6217
|
-
* @type {number || null}
|
|
6218
|
-
*/
|
|
6219
|
-
this.PageNum = null;
|
|
6220
|
-
|
|
6221
|
-
/**
|
|
6222
|
-
* Paging Size.
|
|
6223
|
-
* @type {number || null}
|
|
6224
|
-
*/
|
|
6225
|
-
this.PageSize = null;
|
|
6226
|
-
|
|
6227
|
-
/**
|
|
6228
|
-
* The total number of eligible entries in the background.
|
|
6229
|
-
* @type {number || null}
|
|
6230
|
-
*/
|
|
6231
|
-
this.TotalNum = null;
|
|
6232
|
-
|
|
6233
|
-
/**
|
|
6234
|
-
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
6235
|
-
* @type {string || null}
|
|
6236
|
-
*/
|
|
6237
|
-
this.RequestId = null;
|
|
6238
|
-
|
|
6239
|
-
}
|
|
6240
|
-
|
|
6241
|
-
/**
|
|
6242
|
-
* @private
|
|
6243
|
-
*/
|
|
6244
|
-
deserialize(params) {
|
|
6245
|
-
if (!params) {
|
|
6246
|
-
return;
|
|
6247
|
-
}
|
|
6248
|
-
|
|
6249
|
-
if (params.Info) {
|
|
6250
|
-
this.Info = new Array();
|
|
6251
|
-
for (let z in params.Info) {
|
|
6252
|
-
let obj = new HighlightResInfoResp();
|
|
6253
|
-
obj.deserialize(params.Info[z]);
|
|
6254
|
-
this.Info.push(obj);
|
|
6255
|
-
}
|
|
6256
|
-
}
|
|
6257
|
-
this.Id = 'Id' in params ? params.Id : null;
|
|
6258
|
-
this.ChannelId = 'ChannelId' in params ? params.ChannelId : null;
|
|
6259
|
-
this.PageNum = 'PageNum' in params ? params.PageNum : null;
|
|
6260
|
-
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
6261
|
-
this.TotalNum = 'TotalNum' in params ? params.TotalNum : null;
|
|
6262
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6263
|
-
|
|
6264
|
-
}
|
|
6265
|
-
}
|
|
6266
|
-
|
|
6267
5911
|
/**
|
|
6268
5912
|
* StopStreamLiveChannel response structure.
|
|
6269
5913
|
* @class
|
|
@@ -7614,42 +7258,102 @@ class ModifyStreamLiveWatermarkResponse extends AbstractModel {
|
|
|
7614
7258
|
}
|
|
7615
7259
|
|
|
7616
7260
|
/**
|
|
7617
|
-
*
|
|
7261
|
+
* ModifyStreamLiveChannel request structure.
|
|
7618
7262
|
* @class
|
|
7619
7263
|
*/
|
|
7620
|
-
class
|
|
7264
|
+
class ModifyStreamLiveChannelRequest extends AbstractModel {
|
|
7621
7265
|
constructor(){
|
|
7622
7266
|
super();
|
|
7623
7267
|
|
|
7624
7268
|
/**
|
|
7625
|
-
*
|
|
7269
|
+
* Channel ID
|
|
7626
7270
|
* @type {string || null}
|
|
7627
7271
|
*/
|
|
7628
7272
|
this.Id = null;
|
|
7629
7273
|
|
|
7630
7274
|
/**
|
|
7631
|
-
*
|
|
7632
|
-
* @type {
|
|
7275
|
+
* Channel name, which can contain 1-32 case-sensitive letters, digits, and underscores and must be unique at the region level
|
|
7276
|
+
* @type {string || null}
|
|
7633
7277
|
*/
|
|
7634
|
-
this.
|
|
7278
|
+
this.Name = null;
|
|
7635
7279
|
|
|
7636
7280
|
/**
|
|
7637
|
-
*
|
|
7638
|
-
* @type {
|
|
7281
|
+
* Inputs to attach. You can attach 1 to 5 inputs.
|
|
7282
|
+
* @type {Array.<AttachedInput> || null}
|
|
7639
7283
|
*/
|
|
7640
|
-
this.
|
|
7284
|
+
this.AttachedInputs = null;
|
|
7641
7285
|
|
|
7642
7286
|
/**
|
|
7643
|
-
*
|
|
7644
|
-
* @type {
|
|
7287
|
+
* Configuration information of the channel's output groups. Quantity: [1, 10]
|
|
7288
|
+
* @type {Array.<StreamLiveOutputGroupsInfo> || null}
|
|
7645
7289
|
*/
|
|
7646
|
-
this.
|
|
7290
|
+
this.OutputGroups = null;
|
|
7647
7291
|
|
|
7648
7292
|
/**
|
|
7649
|
-
*
|
|
7650
|
-
* @type {
|
|
7293
|
+
* Audio transcoding templates. Quantity: [1, 20]
|
|
7294
|
+
* @type {Array.<AudioTemplateInfo> || null}
|
|
7651
7295
|
*/
|
|
7652
|
-
this.
|
|
7296
|
+
this.AudioTemplates = null;
|
|
7297
|
+
|
|
7298
|
+
/**
|
|
7299
|
+
* Video transcoding templates. Quantity: [1, 10]
|
|
7300
|
+
* @type {Array.<VideoTemplateInfo> || null}
|
|
7301
|
+
*/
|
|
7302
|
+
this.VideoTemplates = null;
|
|
7303
|
+
|
|
7304
|
+
/**
|
|
7305
|
+
* Audio/Video transcoding templates. Quantity: [1, 10]
|
|
7306
|
+
* @type {Array.<AVTemplate> || null}
|
|
7307
|
+
*/
|
|
7308
|
+
this.AVTemplates = null;
|
|
7309
|
+
|
|
7310
|
+
/**
|
|
7311
|
+
* Subtitle template configuration, only AVTemplates are valid.
|
|
7312
|
+
* @type {Array.<SubtitleConf> || null}
|
|
7313
|
+
*/
|
|
7314
|
+
this.CaptionTemplates = null;
|
|
7315
|
+
|
|
7316
|
+
/**
|
|
7317
|
+
* Event settings
|
|
7318
|
+
* @type {PlanSettings || null}
|
|
7319
|
+
*/
|
|
7320
|
+
this.PlanSettings = null;
|
|
7321
|
+
|
|
7322
|
+
/**
|
|
7323
|
+
* The callback settings.
|
|
7324
|
+
* @type {EventNotifySetting || null}
|
|
7325
|
+
*/
|
|
7326
|
+
this.EventNotifySettings = null;
|
|
7327
|
+
|
|
7328
|
+
/**
|
|
7329
|
+
* Complement the last video frame settings.
|
|
7330
|
+
* @type {InputLossBehaviorInfo || null}
|
|
7331
|
+
*/
|
|
7332
|
+
this.InputLossBehavior = null;
|
|
7333
|
+
|
|
7334
|
+
/**
|
|
7335
|
+
* Pipeline configuration.
|
|
7336
|
+
* @type {PipelineInputSettingsInfo || null}
|
|
7337
|
+
*/
|
|
7338
|
+
this.PipelineInputSettings = null;
|
|
7339
|
+
|
|
7340
|
+
/**
|
|
7341
|
+
* Recognition configuration for input content.
|
|
7342
|
+
* @type {InputAnalysisInfo || null}
|
|
7343
|
+
*/
|
|
7344
|
+
this.InputAnalysisSettings = null;
|
|
7345
|
+
|
|
7346
|
+
/**
|
|
7347
|
+
* Console tag list.
|
|
7348
|
+
* @type {Array.<Tag> || null}
|
|
7349
|
+
*/
|
|
7350
|
+
this.Tags = null;
|
|
7351
|
+
|
|
7352
|
+
/**
|
|
7353
|
+
* Frame capture templates.
|
|
7354
|
+
* @type {Array.<FrameCaptureTemplate> || null}
|
|
7355
|
+
*/
|
|
7356
|
+
this.FrameCaptureTemplates = null;
|
|
7653
7357
|
|
|
7654
7358
|
}
|
|
7655
7359
|
|
|
@@ -7661,10 +7365,109 @@ class DescribeMediaLiveHighlightResultRequest extends AbstractModel {
|
|
|
7661
7365
|
return;
|
|
7662
7366
|
}
|
|
7663
7367
|
this.Id = 'Id' in params ? params.Id : null;
|
|
7664
|
-
this.
|
|
7665
|
-
|
|
7666
|
-
|
|
7667
|
-
|
|
7368
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
7369
|
+
|
|
7370
|
+
if (params.AttachedInputs) {
|
|
7371
|
+
this.AttachedInputs = new Array();
|
|
7372
|
+
for (let z in params.AttachedInputs) {
|
|
7373
|
+
let obj = new AttachedInput();
|
|
7374
|
+
obj.deserialize(params.AttachedInputs[z]);
|
|
7375
|
+
this.AttachedInputs.push(obj);
|
|
7376
|
+
}
|
|
7377
|
+
}
|
|
7378
|
+
|
|
7379
|
+
if (params.OutputGroups) {
|
|
7380
|
+
this.OutputGroups = new Array();
|
|
7381
|
+
for (let z in params.OutputGroups) {
|
|
7382
|
+
let obj = new StreamLiveOutputGroupsInfo();
|
|
7383
|
+
obj.deserialize(params.OutputGroups[z]);
|
|
7384
|
+
this.OutputGroups.push(obj);
|
|
7385
|
+
}
|
|
7386
|
+
}
|
|
7387
|
+
|
|
7388
|
+
if (params.AudioTemplates) {
|
|
7389
|
+
this.AudioTemplates = new Array();
|
|
7390
|
+
for (let z in params.AudioTemplates) {
|
|
7391
|
+
let obj = new AudioTemplateInfo();
|
|
7392
|
+
obj.deserialize(params.AudioTemplates[z]);
|
|
7393
|
+
this.AudioTemplates.push(obj);
|
|
7394
|
+
}
|
|
7395
|
+
}
|
|
7396
|
+
|
|
7397
|
+
if (params.VideoTemplates) {
|
|
7398
|
+
this.VideoTemplates = new Array();
|
|
7399
|
+
for (let z in params.VideoTemplates) {
|
|
7400
|
+
let obj = new VideoTemplateInfo();
|
|
7401
|
+
obj.deserialize(params.VideoTemplates[z]);
|
|
7402
|
+
this.VideoTemplates.push(obj);
|
|
7403
|
+
}
|
|
7404
|
+
}
|
|
7405
|
+
|
|
7406
|
+
if (params.AVTemplates) {
|
|
7407
|
+
this.AVTemplates = new Array();
|
|
7408
|
+
for (let z in params.AVTemplates) {
|
|
7409
|
+
let obj = new AVTemplate();
|
|
7410
|
+
obj.deserialize(params.AVTemplates[z]);
|
|
7411
|
+
this.AVTemplates.push(obj);
|
|
7412
|
+
}
|
|
7413
|
+
}
|
|
7414
|
+
|
|
7415
|
+
if (params.CaptionTemplates) {
|
|
7416
|
+
this.CaptionTemplates = new Array();
|
|
7417
|
+
for (let z in params.CaptionTemplates) {
|
|
7418
|
+
let obj = new SubtitleConf();
|
|
7419
|
+
obj.deserialize(params.CaptionTemplates[z]);
|
|
7420
|
+
this.CaptionTemplates.push(obj);
|
|
7421
|
+
}
|
|
7422
|
+
}
|
|
7423
|
+
|
|
7424
|
+
if (params.PlanSettings) {
|
|
7425
|
+
let obj = new PlanSettings();
|
|
7426
|
+
obj.deserialize(params.PlanSettings)
|
|
7427
|
+
this.PlanSettings = obj;
|
|
7428
|
+
}
|
|
7429
|
+
|
|
7430
|
+
if (params.EventNotifySettings) {
|
|
7431
|
+
let obj = new EventNotifySetting();
|
|
7432
|
+
obj.deserialize(params.EventNotifySettings)
|
|
7433
|
+
this.EventNotifySettings = obj;
|
|
7434
|
+
}
|
|
7435
|
+
|
|
7436
|
+
if (params.InputLossBehavior) {
|
|
7437
|
+
let obj = new InputLossBehaviorInfo();
|
|
7438
|
+
obj.deserialize(params.InputLossBehavior)
|
|
7439
|
+
this.InputLossBehavior = obj;
|
|
7440
|
+
}
|
|
7441
|
+
|
|
7442
|
+
if (params.PipelineInputSettings) {
|
|
7443
|
+
let obj = new PipelineInputSettingsInfo();
|
|
7444
|
+
obj.deserialize(params.PipelineInputSettings)
|
|
7445
|
+
this.PipelineInputSettings = obj;
|
|
7446
|
+
}
|
|
7447
|
+
|
|
7448
|
+
if (params.InputAnalysisSettings) {
|
|
7449
|
+
let obj = new InputAnalysisInfo();
|
|
7450
|
+
obj.deserialize(params.InputAnalysisSettings)
|
|
7451
|
+
this.InputAnalysisSettings = obj;
|
|
7452
|
+
}
|
|
7453
|
+
|
|
7454
|
+
if (params.Tags) {
|
|
7455
|
+
this.Tags = new Array();
|
|
7456
|
+
for (let z in params.Tags) {
|
|
7457
|
+
let obj = new Tag();
|
|
7458
|
+
obj.deserialize(params.Tags[z]);
|
|
7459
|
+
this.Tags.push(obj);
|
|
7460
|
+
}
|
|
7461
|
+
}
|
|
7462
|
+
|
|
7463
|
+
if (params.FrameCaptureTemplates) {
|
|
7464
|
+
this.FrameCaptureTemplates = new Array();
|
|
7465
|
+
for (let z in params.FrameCaptureTemplates) {
|
|
7466
|
+
let obj = new FrameCaptureTemplate();
|
|
7467
|
+
obj.deserialize(params.FrameCaptureTemplates[z]);
|
|
7468
|
+
this.FrameCaptureTemplates.push(obj);
|
|
7469
|
+
}
|
|
7470
|
+
}
|
|
7668
7471
|
|
|
7669
7472
|
}
|
|
7670
7473
|
}
|
|
@@ -8462,8 +8265,6 @@ module.exports = {
|
|
|
8462
8265
|
DescribeStreamLiveTranscodeDetailResponse: DescribeStreamLiveTranscodeDetailResponse,
|
|
8463
8266
|
CreateStreamLiveWatermarkResponse: CreateStreamLiveWatermarkResponse,
|
|
8464
8267
|
DescribeStreamLiveInputsResponse: DescribeStreamLiveInputsResponse,
|
|
8465
|
-
HighlightResInfoResp: HighlightResInfoResp,
|
|
8466
|
-
ModifyStreamLiveChannelRequest: ModifyStreamLiveChannelRequest,
|
|
8467
8268
|
ModifyStreamLiveInputResponse: ModifyStreamLiveInputResponse,
|
|
8468
8269
|
DescribeStreamLiveChannelAlertsResponse: DescribeStreamLiveChannelAlertsResponse,
|
|
8469
8270
|
PlanResp: PlanResp,
|
|
@@ -8483,7 +8284,6 @@ module.exports = {
|
|
|
8483
8284
|
VideoCodecDetail: VideoCodecDetail,
|
|
8484
8285
|
CreateStreamLiveChannelResponse: CreateStreamLiveChannelResponse,
|
|
8485
8286
|
DescribeStreamLiveChannelInputStatisticsResponse: DescribeStreamLiveChannelInputStatisticsResponse,
|
|
8486
|
-
DescribeMediaLiveHighlightResultResponse: DescribeMediaLiveHighlightResultResponse,
|
|
8487
8287
|
StopStreamLiveChannelResponse: StopStreamLiveChannelResponse,
|
|
8488
8288
|
PushEventSetting: PushEventSetting,
|
|
8489
8289
|
InputTrack: InputTrack,
|
|
@@ -8516,7 +8316,7 @@ module.exports = {
|
|
|
8516
8316
|
DescribeStreamLiveInputsRequest: DescribeStreamLiveInputsRequest,
|
|
8517
8317
|
Scte35SettingsInfo: Scte35SettingsInfo,
|
|
8518
8318
|
ModifyStreamLiveWatermarkResponse: ModifyStreamLiveWatermarkResponse,
|
|
8519
|
-
|
|
8319
|
+
ModifyStreamLiveChannelRequest: ModifyStreamLiveChannelRequest,
|
|
8520
8320
|
DescribeTextSettings: DescribeTextSettings,
|
|
8521
8321
|
DescribeStreamLiveInputSecurityGroupsRequest: DescribeStreamLiveInputSecurityGroupsRequest,
|
|
8522
8322
|
DeleteStreamLiveWatermarkResponse: DeleteStreamLiveWatermarkResponse,
|