tencentcloud-sdk-nodejs-intl-en 3.0.409 → 3.0.412
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/batch/v20170312/batch_client.js +0 -14
- package/tencentcloud/batch/v20170312/models.js +0 -206
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/es/v20180416/es_client.js +13 -0
- package/tencentcloud/es/v20180416/models.js +100 -0
- package/tencentcloud/live/v20180801/live_client.js +2 -29
- package/tencentcloud/live/v20180801/models.js +68 -476
- package/tencentcloud/ocr/v20181119/models.js +14 -0
- package/tencentcloud/privatedns/v20201028/models.js +199 -808
- package/tencentcloud/privatedns/v20201028/privatedns_client.js +26 -92
- package/tencentcloud/redis/v20180412/models.js +838 -8348
- package/tencentcloud/redis/v20180412/redis_client.js +85 -819
- package/tencentcloud/ses/v20201002/models.js +66 -619
- package/tencentcloud/ses/v20201002/ses_client.js +109 -163
- package/tencentcloud/vpc/v20170312/models.js +288 -1824
- package/tencentcloud/vpc/v20170312/vpc_client.js +58 -245
|
@@ -394,84 +394,6 @@ class DeleteLiveTranscodeTemplateResponse extends AbstractModel {
|
|
|
394
394
|
}
|
|
395
395
|
}
|
|
396
396
|
|
|
397
|
-
/**
|
|
398
|
-
* DescribeBillBandwidthAndFluxList response structure.
|
|
399
|
-
* @class
|
|
400
|
-
*/
|
|
401
|
-
class DescribeBillBandwidthAndFluxListResponse extends AbstractModel {
|
|
402
|
-
constructor(){
|
|
403
|
-
super();
|
|
404
|
-
|
|
405
|
-
/**
|
|
406
|
-
* Time point of peak bandwidth value in the format of `yyyy-mm-dd HH:MM:SS`.
|
|
407
|
-
* @type {string || null}
|
|
408
|
-
*/
|
|
409
|
-
this.PeakBandwidthTime = null;
|
|
410
|
-
|
|
411
|
-
/**
|
|
412
|
-
* Peak bandwidth in Mbps.
|
|
413
|
-
* @type {number || null}
|
|
414
|
-
*/
|
|
415
|
-
this.PeakBandwidth = null;
|
|
416
|
-
|
|
417
|
-
/**
|
|
418
|
-
* Time point of 95th percentile bandwidth value in the format of `yyyy-mm-dd HH:MM:SS`.
|
|
419
|
-
* @type {string || null}
|
|
420
|
-
*/
|
|
421
|
-
this.P95PeakBandwidthTime = null;
|
|
422
|
-
|
|
423
|
-
/**
|
|
424
|
-
* 95th percentile bandwidth in Mbps.
|
|
425
|
-
* @type {number || null}
|
|
426
|
-
*/
|
|
427
|
-
this.P95PeakBandwidth = null;
|
|
428
|
-
|
|
429
|
-
/**
|
|
430
|
-
* Total traffic in MB.
|
|
431
|
-
* @type {number || null}
|
|
432
|
-
*/
|
|
433
|
-
this.SumFlux = null;
|
|
434
|
-
|
|
435
|
-
/**
|
|
436
|
-
* Detailed data information.
|
|
437
|
-
* @type {Array.<BillDataInfo> || null}
|
|
438
|
-
*/
|
|
439
|
-
this.DataInfoList = null;
|
|
440
|
-
|
|
441
|
-
/**
|
|
442
|
-
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
443
|
-
* @type {string || null}
|
|
444
|
-
*/
|
|
445
|
-
this.RequestId = null;
|
|
446
|
-
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
/**
|
|
450
|
-
* @private
|
|
451
|
-
*/
|
|
452
|
-
deserialize(params) {
|
|
453
|
-
if (!params) {
|
|
454
|
-
return;
|
|
455
|
-
}
|
|
456
|
-
this.PeakBandwidthTime = 'PeakBandwidthTime' in params ? params.PeakBandwidthTime : null;
|
|
457
|
-
this.PeakBandwidth = 'PeakBandwidth' in params ? params.PeakBandwidth : null;
|
|
458
|
-
this.P95PeakBandwidthTime = 'P95PeakBandwidthTime' in params ? params.P95PeakBandwidthTime : null;
|
|
459
|
-
this.P95PeakBandwidth = 'P95PeakBandwidth' in params ? params.P95PeakBandwidth : null;
|
|
460
|
-
this.SumFlux = 'SumFlux' in params ? params.SumFlux : null;
|
|
461
|
-
|
|
462
|
-
if (params.DataInfoList) {
|
|
463
|
-
this.DataInfoList = new Array();
|
|
464
|
-
for (let z in params.DataInfoList) {
|
|
465
|
-
let obj = new BillDataInfo();
|
|
466
|
-
obj.deserialize(params.DataInfoList[z]);
|
|
467
|
-
this.DataInfoList.push(obj);
|
|
468
|
-
}
|
|
469
|
-
}
|
|
470
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
471
|
-
|
|
472
|
-
}
|
|
473
|
-
}
|
|
474
|
-
|
|
475
397
|
/**
|
|
476
398
|
* Transcoding template information.
|
|
477
399
|
* @class
|
|
@@ -1117,167 +1039,6 @@ class DescribeLiveStreamOnlineListResponse extends AbstractModel {
|
|
|
1117
1039
|
}
|
|
1118
1040
|
}
|
|
1119
1041
|
|
|
1120
|
-
/**
|
|
1121
|
-
* Push quality data of a stream.
|
|
1122
|
-
* @class
|
|
1123
|
-
*/
|
|
1124
|
-
class PushQualityData extends AbstractModel {
|
|
1125
|
-
constructor(){
|
|
1126
|
-
super();
|
|
1127
|
-
|
|
1128
|
-
/**
|
|
1129
|
-
* Data time in the format of `%Y-%m-%d %H:%M:%S.%ms` and accurate down to the millisecond level.
|
|
1130
|
-
* @type {string || null}
|
|
1131
|
-
*/
|
|
1132
|
-
this.Time = null;
|
|
1133
|
-
|
|
1134
|
-
/**
|
|
1135
|
-
* Push domain name.
|
|
1136
|
-
* @type {string || null}
|
|
1137
|
-
*/
|
|
1138
|
-
this.PushDomain = null;
|
|
1139
|
-
|
|
1140
|
-
/**
|
|
1141
|
-
* Push path.
|
|
1142
|
-
* @type {string || null}
|
|
1143
|
-
*/
|
|
1144
|
-
this.AppName = null;
|
|
1145
|
-
|
|
1146
|
-
/**
|
|
1147
|
-
* Push client IP.
|
|
1148
|
-
* @type {string || null}
|
|
1149
|
-
*/
|
|
1150
|
-
this.ClientIp = null;
|
|
1151
|
-
|
|
1152
|
-
/**
|
|
1153
|
-
* Push start time in the format of `%Y-%m-%d %H:%M:%S.%ms` and accurate down to the millisecond level.
|
|
1154
|
-
* @type {string || null}
|
|
1155
|
-
*/
|
|
1156
|
-
this.BeginPushTime = null;
|
|
1157
|
-
|
|
1158
|
-
/**
|
|
1159
|
-
* Resolution information.
|
|
1160
|
-
* @type {string || null}
|
|
1161
|
-
*/
|
|
1162
|
-
this.Resolution = null;
|
|
1163
|
-
|
|
1164
|
-
/**
|
|
1165
|
-
* Video codec.
|
|
1166
|
-
* @type {string || null}
|
|
1167
|
-
*/
|
|
1168
|
-
this.VCodec = null;
|
|
1169
|
-
|
|
1170
|
-
/**
|
|
1171
|
-
* Audio codec.
|
|
1172
|
-
* @type {string || null}
|
|
1173
|
-
*/
|
|
1174
|
-
this.ACodec = null;
|
|
1175
|
-
|
|
1176
|
-
/**
|
|
1177
|
-
* Push serial number, which uniquely identifies a push.
|
|
1178
|
-
* @type {string || null}
|
|
1179
|
-
*/
|
|
1180
|
-
this.Sequence = null;
|
|
1181
|
-
|
|
1182
|
-
/**
|
|
1183
|
-
* Video frame rate.
|
|
1184
|
-
* @type {number || null}
|
|
1185
|
-
*/
|
|
1186
|
-
this.VideoFps = null;
|
|
1187
|
-
|
|
1188
|
-
/**
|
|
1189
|
-
* Video bitrate in bps.
|
|
1190
|
-
* @type {number || null}
|
|
1191
|
-
*/
|
|
1192
|
-
this.VideoRate = null;
|
|
1193
|
-
|
|
1194
|
-
/**
|
|
1195
|
-
* Audio frame rate.
|
|
1196
|
-
* @type {number || null}
|
|
1197
|
-
*/
|
|
1198
|
-
this.AudioFps = null;
|
|
1199
|
-
|
|
1200
|
-
/**
|
|
1201
|
-
* Audio bitrate in bps.
|
|
1202
|
-
* @type {number || null}
|
|
1203
|
-
*/
|
|
1204
|
-
this.AudioRate = null;
|
|
1205
|
-
|
|
1206
|
-
/**
|
|
1207
|
-
* Local elapsed time in milliseconds. The greater the difference between audio/video elapsed time and local elapsed time, the poorer the push quality and the more serious the upstream lag.
|
|
1208
|
-
* @type {number || null}
|
|
1209
|
-
*/
|
|
1210
|
-
this.LocalTs = null;
|
|
1211
|
-
|
|
1212
|
-
/**
|
|
1213
|
-
* Video elapsed time in milliseconds.
|
|
1214
|
-
* @type {number || null}
|
|
1215
|
-
*/
|
|
1216
|
-
this.VideoTs = null;
|
|
1217
|
-
|
|
1218
|
-
/**
|
|
1219
|
-
* Audio elapsed time in milliseconds.
|
|
1220
|
-
* @type {number || null}
|
|
1221
|
-
*/
|
|
1222
|
-
this.AudioTs = null;
|
|
1223
|
-
|
|
1224
|
-
/**
|
|
1225
|
-
* Video bitrate in `metadata` in Kbps.
|
|
1226
|
-
* @type {number || null}
|
|
1227
|
-
*/
|
|
1228
|
-
this.MetaVideoRate = null;
|
|
1229
|
-
|
|
1230
|
-
/**
|
|
1231
|
-
* Audio bitrate in `metadata` in Kbps.
|
|
1232
|
-
* @type {number || null}
|
|
1233
|
-
*/
|
|
1234
|
-
this.MetaAudioRate = null;
|
|
1235
|
-
|
|
1236
|
-
/**
|
|
1237
|
-
* Frame rate in `metadata`.
|
|
1238
|
-
* @type {number || null}
|
|
1239
|
-
*/
|
|
1240
|
-
this.MateFps = null;
|
|
1241
|
-
|
|
1242
|
-
/**
|
|
1243
|
-
* Push parameter
|
|
1244
|
-
* @type {string || null}
|
|
1245
|
-
*/
|
|
1246
|
-
this.StreamParam = null;
|
|
1247
|
-
|
|
1248
|
-
}
|
|
1249
|
-
|
|
1250
|
-
/**
|
|
1251
|
-
* @private
|
|
1252
|
-
*/
|
|
1253
|
-
deserialize(params) {
|
|
1254
|
-
if (!params) {
|
|
1255
|
-
return;
|
|
1256
|
-
}
|
|
1257
|
-
this.Time = 'Time' in params ? params.Time : null;
|
|
1258
|
-
this.PushDomain = 'PushDomain' in params ? params.PushDomain : null;
|
|
1259
|
-
this.AppName = 'AppName' in params ? params.AppName : null;
|
|
1260
|
-
this.ClientIp = 'ClientIp' in params ? params.ClientIp : null;
|
|
1261
|
-
this.BeginPushTime = 'BeginPushTime' in params ? params.BeginPushTime : null;
|
|
1262
|
-
this.Resolution = 'Resolution' in params ? params.Resolution : null;
|
|
1263
|
-
this.VCodec = 'VCodec' in params ? params.VCodec : null;
|
|
1264
|
-
this.ACodec = 'ACodec' in params ? params.ACodec : null;
|
|
1265
|
-
this.Sequence = 'Sequence' in params ? params.Sequence : null;
|
|
1266
|
-
this.VideoFps = 'VideoFps' in params ? params.VideoFps : null;
|
|
1267
|
-
this.VideoRate = 'VideoRate' in params ? params.VideoRate : null;
|
|
1268
|
-
this.AudioFps = 'AudioFps' in params ? params.AudioFps : null;
|
|
1269
|
-
this.AudioRate = 'AudioRate' in params ? params.AudioRate : null;
|
|
1270
|
-
this.LocalTs = 'LocalTs' in params ? params.LocalTs : null;
|
|
1271
|
-
this.VideoTs = 'VideoTs' in params ? params.VideoTs : null;
|
|
1272
|
-
this.AudioTs = 'AudioTs' in params ? params.AudioTs : null;
|
|
1273
|
-
this.MetaVideoRate = 'MetaVideoRate' in params ? params.MetaVideoRate : null;
|
|
1274
|
-
this.MetaAudioRate = 'MetaAudioRate' in params ? params.MetaAudioRate : null;
|
|
1275
|
-
this.MateFps = 'MateFps' in params ? params.MateFps : null;
|
|
1276
|
-
this.StreamParam = 'StreamParam' in params ? params.StreamParam : null;
|
|
1277
|
-
|
|
1278
|
-
}
|
|
1279
|
-
}
|
|
1280
|
-
|
|
1281
1042
|
/**
|
|
1282
1043
|
* UnBindLiveDomainCert response structure.
|
|
1283
1044
|
* @class
|
|
@@ -1559,6 +1320,13 @@ class RecordTemplateInfo extends AbstractModel {
|
|
|
1559
1320
|
*/
|
|
1560
1321
|
this.Mp3Param = null;
|
|
1561
1322
|
|
|
1323
|
+
/**
|
|
1324
|
+
* Whether the watermark is removed.
|
|
1325
|
+
Note: This field may return `null`, indicating that no valid value was found.
|
|
1326
|
+
* @type {boolean || null}
|
|
1327
|
+
*/
|
|
1328
|
+
this.RemoveWatermark = null;
|
|
1329
|
+
|
|
1562
1330
|
}
|
|
1563
1331
|
|
|
1564
1332
|
/**
|
|
@@ -1608,6 +1376,7 @@ class RecordTemplateInfo extends AbstractModel {
|
|
|
1608
1376
|
obj.deserialize(params.Mp3Param)
|
|
1609
1377
|
this.Mp3Param = obj;
|
|
1610
1378
|
}
|
|
1379
|
+
this.RemoveWatermark = 'RemoveWatermark' in params ? params.RemoveWatermark : null;
|
|
1611
1380
|
|
|
1612
1381
|
}
|
|
1613
1382
|
}
|
|
@@ -2244,71 +2013,19 @@ Note: `EndTime` and `StartTime` only support querying data for the last day.
|
|
|
2244
2013
|
}
|
|
2245
2014
|
|
|
2246
2015
|
/**
|
|
2247
|
-
*
|
|
2016
|
+
* Push time.
|
|
2248
2017
|
* @class
|
|
2249
2018
|
*/
|
|
2250
|
-
class
|
|
2019
|
+
class PublishTime extends AbstractModel {
|
|
2251
2020
|
constructor(){
|
|
2252
2021
|
super();
|
|
2253
2022
|
|
|
2254
2023
|
/**
|
|
2255
|
-
*
|
|
2256
|
-
|
|
2257
|
-
*/
|
|
2258
|
-
this.StartTime = null;
|
|
2259
|
-
|
|
2260
|
-
/**
|
|
2261
|
-
* End time point in the format of yyyy-mm-dd HH:MM:SS. The difference between the start time and end time cannot be greater than 31 days. Data in the last 3 years can be queried.
|
|
2262
|
-
* @type {string || null}
|
|
2263
|
-
*/
|
|
2264
|
-
this.EndTime = null;
|
|
2265
|
-
|
|
2266
|
-
/**
|
|
2267
|
-
* LVB playback domain name. If this parameter is left empty, full data will be queried.
|
|
2268
|
-
* @type {Array.<string> || null}
|
|
2269
|
-
*/
|
|
2270
|
-
this.PlayDomains = null;
|
|
2271
|
-
|
|
2272
|
-
/**
|
|
2273
|
-
* Valid values:
|
|
2274
|
-
Mainland: query data for Mainland China,
|
|
2275
|
-
Oversea: query data for regions outside Mainland China,
|
|
2276
|
-
Default: query data for all regions.
|
|
2277
|
-
Note: LEB only supports querying data for all regions.
|
|
2278
|
-
* @type {string || null}
|
|
2279
|
-
*/
|
|
2280
|
-
this.MainlandOrOversea = null;
|
|
2281
|
-
|
|
2282
|
-
/**
|
|
2283
|
-
* Data granularity. Valid values:
|
|
2284
|
-
5: 5-minute granularity (the query time span should be within 1 day),
|
|
2285
|
-
60: 1-hour granularity (the query time span should be within one month),
|
|
2286
|
-
1440: 1-day granularity (the query time span should be within one month).
|
|
2287
|
-
Default value: 5.
|
|
2288
|
-
* @type {number || null}
|
|
2289
|
-
*/
|
|
2290
|
-
this.Granularity = null;
|
|
2291
|
-
|
|
2292
|
-
/**
|
|
2293
|
-
* Service name. Valid values: LVB, LEB. The sum of LVB and LEB usage will be returned if this parameter is left empty.
|
|
2024
|
+
* Push time.
|
|
2025
|
+
In UTC format, such as 2018-06-29T19:00:00Z.
|
|
2294
2026
|
* @type {string || null}
|
|
2295
2027
|
*/
|
|
2296
|
-
this.
|
|
2297
|
-
|
|
2298
|
-
/**
|
|
2299
|
-
* Region. Valid values:
|
|
2300
|
-
China Mainland
|
|
2301
|
-
Asia Pacific I
|
|
2302
|
-
Asia Pacific II
|
|
2303
|
-
Asia Pacific III
|
|
2304
|
-
Europe
|
|
2305
|
-
North America
|
|
2306
|
-
South America
|
|
2307
|
-
Middle East
|
|
2308
|
-
Africa
|
|
2309
|
-
* @type {Array.<string> || null}
|
|
2310
|
-
*/
|
|
2311
|
-
this.RegionNames = null;
|
|
2028
|
+
this.PublishTime = null;
|
|
2312
2029
|
|
|
2313
2030
|
}
|
|
2314
2031
|
|
|
@@ -2319,13 +2036,7 @@ Africa
|
|
|
2319
2036
|
if (!params) {
|
|
2320
2037
|
return;
|
|
2321
2038
|
}
|
|
2322
|
-
this.
|
|
2323
|
-
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
2324
|
-
this.PlayDomains = 'PlayDomains' in params ? params.PlayDomains : null;
|
|
2325
|
-
this.MainlandOrOversea = 'MainlandOrOversea' in params ? params.MainlandOrOversea : null;
|
|
2326
|
-
this.Granularity = 'Granularity' in params ? params.Granularity : null;
|
|
2327
|
-
this.ServiceName = 'ServiceName' in params ? params.ServiceName : null;
|
|
2328
|
-
this.RegionNames = 'RegionNames' in params ? params.RegionNames : null;
|
|
2039
|
+
this.PublishTime = 'PublishTime' in params ? params.PublishTime : null;
|
|
2329
2040
|
|
|
2330
2041
|
}
|
|
2331
2042
|
}
|
|
@@ -4572,80 +4283,6 @@ class PlayDataInfoByStream extends AbstractModel {
|
|
|
4572
4283
|
}
|
|
4573
4284
|
}
|
|
4574
4285
|
|
|
4575
|
-
/**
|
|
4576
|
-
* DescribeVisitTopSumInfoList request structure.
|
|
4577
|
-
* @class
|
|
4578
|
-
*/
|
|
4579
|
-
class DescribeVisitTopSumInfoListRequest extends AbstractModel {
|
|
4580
|
-
constructor(){
|
|
4581
|
-
super();
|
|
4582
|
-
|
|
4583
|
-
/**
|
|
4584
|
-
* Start point in time in the format of `yyyy-mm-dd HH:MM:SS`.
|
|
4585
|
-
* @type {string || null}
|
|
4586
|
-
*/
|
|
4587
|
-
this.StartTime = null;
|
|
4588
|
-
|
|
4589
|
-
/**
|
|
4590
|
-
* End point in time in the format of `yyyy-mm-dd HH:MM:SS`
|
|
4591
|
-
The time span is (0,4 hours]. Data for the last day can be queried.
|
|
4592
|
-
* @type {string || null}
|
|
4593
|
-
*/
|
|
4594
|
-
this.EndTime = null;
|
|
4595
|
-
|
|
4596
|
-
/**
|
|
4597
|
-
* Bandwidth metric. Valid values: "Domain", "StreamId".
|
|
4598
|
-
* @type {string || null}
|
|
4599
|
-
*/
|
|
4600
|
-
this.TopIndex = null;
|
|
4601
|
-
|
|
4602
|
-
/**
|
|
4603
|
-
* Playback domain name. If this parameter is left empty, full data will be queried by default.
|
|
4604
|
-
* @type {Array.<string> || null}
|
|
4605
|
-
*/
|
|
4606
|
-
this.PlayDomains = null;
|
|
4607
|
-
|
|
4608
|
-
/**
|
|
4609
|
-
* Page number,
|
|
4610
|
-
Value range: [1,1000],
|
|
4611
|
-
Default value: 1.
|
|
4612
|
-
* @type {number || null}
|
|
4613
|
-
*/
|
|
4614
|
-
this.PageNum = null;
|
|
4615
|
-
|
|
4616
|
-
/**
|
|
4617
|
-
* Number of entries per page. Value range: [1,1000].
|
|
4618
|
-
Default value: 20.
|
|
4619
|
-
* @type {number || null}
|
|
4620
|
-
*/
|
|
4621
|
-
this.PageSize = null;
|
|
4622
|
-
|
|
4623
|
-
/**
|
|
4624
|
-
* Sorting metric. Valid values: "AvgFluxPerSecond", "TotalRequest" (default), "TotalFlux".
|
|
4625
|
-
* @type {string || null}
|
|
4626
|
-
*/
|
|
4627
|
-
this.OrderParam = null;
|
|
4628
|
-
|
|
4629
|
-
}
|
|
4630
|
-
|
|
4631
|
-
/**
|
|
4632
|
-
* @private
|
|
4633
|
-
*/
|
|
4634
|
-
deserialize(params) {
|
|
4635
|
-
if (!params) {
|
|
4636
|
-
return;
|
|
4637
|
-
}
|
|
4638
|
-
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
4639
|
-
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
4640
|
-
this.TopIndex = 'TopIndex' in params ? params.TopIndex : null;
|
|
4641
|
-
this.PlayDomains = 'PlayDomains' in params ? params.PlayDomains : null;
|
|
4642
|
-
this.PageNum = 'PageNum' in params ? params.PageNum : null;
|
|
4643
|
-
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
4644
|
-
this.OrderParam = 'OrderParam' in params ? params.OrderParam : null;
|
|
4645
|
-
|
|
4646
|
-
}
|
|
4647
|
-
}
|
|
4648
|
-
|
|
4649
4286
|
/**
|
|
4650
4287
|
* Stream playback information
|
|
4651
4288
|
* @class
|
|
@@ -5862,7 +5499,7 @@ class PushDataInfo extends AbstractModel {
|
|
|
5862
5499
|
this.VideoFps = null;
|
|
5863
5500
|
|
|
5864
5501
|
/**
|
|
5865
|
-
* Video bitrate (
|
|
5502
|
+
* Video bitrate (bps) for publishing
|
|
5866
5503
|
* @type {number || null}
|
|
5867
5504
|
*/
|
|
5868
5505
|
this.VideoSpeed = null;
|
|
@@ -5874,7 +5511,7 @@ class PushDataInfo extends AbstractModel {
|
|
|
5874
5511
|
this.AudioFps = null;
|
|
5875
5512
|
|
|
5876
5513
|
/**
|
|
5877
|
-
* Audio bitrate (
|
|
5514
|
+
* Audio bitrate (bps) for publishing
|
|
5878
5515
|
* @type {number || null}
|
|
5879
5516
|
*/
|
|
5880
5517
|
this.AudioSpeed = null;
|
|
@@ -5918,13 +5555,13 @@ Example: H.264.
|
|
|
5918
5555
|
this.AsampleRate = null;
|
|
5919
5556
|
|
|
5920
5557
|
/**
|
|
5921
|
-
* Audio bitrate in
|
|
5558
|
+
* Audio bitrate (bps) in metadata
|
|
5922
5559
|
* @type {number || null}
|
|
5923
5560
|
*/
|
|
5924
5561
|
this.MetaAudioSpeed = null;
|
|
5925
5562
|
|
|
5926
5563
|
/**
|
|
5927
|
-
* Video bitrate in
|
|
5564
|
+
* Video bitrate (bps) in metadata
|
|
5928
5565
|
* @type {number || null}
|
|
5929
5566
|
*/
|
|
5930
5567
|
this.MetaVideoSpeed = null;
|
|
@@ -6952,42 +6589,58 @@ class DescribeLiveForbidStreamListResponse extends AbstractModel {
|
|
|
6952
6589
|
}
|
|
6953
6590
|
|
|
6954
6591
|
/**
|
|
6955
|
-
*
|
|
6592
|
+
* DescribeVisitTopSumInfoList request structure.
|
|
6956
6593
|
* @class
|
|
6957
6594
|
*/
|
|
6958
|
-
class
|
|
6595
|
+
class DescribeVisitTopSumInfoListRequest extends AbstractModel {
|
|
6959
6596
|
constructor(){
|
|
6960
6597
|
super();
|
|
6961
6598
|
|
|
6962
6599
|
/**
|
|
6963
|
-
*
|
|
6600
|
+
* Start point in time in the format of `yyyy-mm-dd HH:MM:SS`.
|
|
6964
6601
|
* @type {string || null}
|
|
6965
6602
|
*/
|
|
6966
|
-
this.
|
|
6603
|
+
this.StartTime = null;
|
|
6967
6604
|
|
|
6968
6605
|
/**
|
|
6969
|
-
*
|
|
6606
|
+
* End point in time in the format of `yyyy-mm-dd HH:MM:SS`
|
|
6607
|
+
The time span is (0,4 hours]. Data for the last day can be queried.
|
|
6970
6608
|
* @type {string || null}
|
|
6971
6609
|
*/
|
|
6972
|
-
this.
|
|
6610
|
+
this.EndTime = null;
|
|
6973
6611
|
|
|
6974
6612
|
/**
|
|
6975
|
-
*
|
|
6613
|
+
* Bandwidth metric. Valid values: "Domain", "StreamId".
|
|
6976
6614
|
* @type {string || null}
|
|
6977
6615
|
*/
|
|
6978
|
-
this.
|
|
6616
|
+
this.TopIndex = null;
|
|
6979
6617
|
|
|
6980
6618
|
/**
|
|
6981
|
-
*
|
|
6982
|
-
* @type {string || null}
|
|
6619
|
+
* Playback domain name. If this parameter is left empty, full data will be queried by default.
|
|
6620
|
+
* @type {Array.<string> || null}
|
|
6983
6621
|
*/
|
|
6984
|
-
this.
|
|
6622
|
+
this.PlayDomains = null;
|
|
6985
6623
|
|
|
6986
6624
|
/**
|
|
6987
|
-
*
|
|
6625
|
+
* Page number,
|
|
6626
|
+
Value range: [1,1000],
|
|
6627
|
+
Default value: 1.
|
|
6628
|
+
* @type {number || null}
|
|
6629
|
+
*/
|
|
6630
|
+
this.PageNum = null;
|
|
6631
|
+
|
|
6632
|
+
/**
|
|
6633
|
+
* Number of entries per page. Value range: [1,1000].
|
|
6634
|
+
Default value: 20.
|
|
6635
|
+
* @type {number || null}
|
|
6636
|
+
*/
|
|
6637
|
+
this.PageSize = null;
|
|
6638
|
+
|
|
6639
|
+
/**
|
|
6640
|
+
* Sorting metric. Valid values: "AvgFluxPerSecond", "TotalRequest" (default), "TotalFlux".
|
|
6988
6641
|
* @type {string || null}
|
|
6989
6642
|
*/
|
|
6990
|
-
this.
|
|
6643
|
+
this.OrderParam = null;
|
|
6991
6644
|
|
|
6992
6645
|
}
|
|
6993
6646
|
|
|
@@ -6998,11 +6651,13 @@ class DescribeStreamPushInfoListRequest extends AbstractModel {
|
|
|
6998
6651
|
if (!params) {
|
|
6999
6652
|
return;
|
|
7000
6653
|
}
|
|
7001
|
-
this.StreamName = 'StreamName' in params ? params.StreamName : null;
|
|
7002
6654
|
this.StartTime = 'StartTime' in params ? params.StartTime : null;
|
|
7003
6655
|
this.EndTime = 'EndTime' in params ? params.EndTime : null;
|
|
7004
|
-
this.
|
|
7005
|
-
this.
|
|
6656
|
+
this.TopIndex = 'TopIndex' in params ? params.TopIndex : null;
|
|
6657
|
+
this.PlayDomains = 'PlayDomains' in params ? params.PlayDomains : null;
|
|
6658
|
+
this.PageNum = 'PageNum' in params ? params.PageNum : null;
|
|
6659
|
+
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
6660
|
+
this.OrderParam = 'OrderParam' in params ? params.OrderParam : null;
|
|
7006
6661
|
|
|
7007
6662
|
}
|
|
7008
6663
|
}
|
|
@@ -7180,6 +6835,12 @@ class ModifyLiveRecordTemplateRequest extends AbstractModel {
|
|
|
7180
6835
|
*/
|
|
7181
6836
|
this.Mp3Param = null;
|
|
7182
6837
|
|
|
6838
|
+
/**
|
|
6839
|
+
* Whether to remove the watermark. This parameter is invalid if `IsDelayLive` is `1`.
|
|
6840
|
+
* @type {boolean || null}
|
|
6841
|
+
*/
|
|
6842
|
+
this.RemoveWatermark = null;
|
|
6843
|
+
|
|
7183
6844
|
}
|
|
7184
6845
|
|
|
7185
6846
|
/**
|
|
@@ -7228,49 +6889,7 @@ class ModifyLiveRecordTemplateRequest extends AbstractModel {
|
|
|
7228
6889
|
obj.deserialize(params.Mp3Param)
|
|
7229
6890
|
this.Mp3Param = obj;
|
|
7230
6891
|
}
|
|
7231
|
-
|
|
7232
|
-
}
|
|
7233
|
-
}
|
|
7234
|
-
|
|
7235
|
-
/**
|
|
7236
|
-
* DescribeStreamPushInfoList response structure.
|
|
7237
|
-
* @class
|
|
7238
|
-
*/
|
|
7239
|
-
class DescribeStreamPushInfoListResponse extends AbstractModel {
|
|
7240
|
-
constructor(){
|
|
7241
|
-
super();
|
|
7242
|
-
|
|
7243
|
-
/**
|
|
7244
|
-
* Returned data list.
|
|
7245
|
-
* @type {Array.<PushQualityData> || null}
|
|
7246
|
-
*/
|
|
7247
|
-
this.DataInfoList = null;
|
|
7248
|
-
|
|
7249
|
-
/**
|
|
7250
|
-
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
7251
|
-
* @type {string || null}
|
|
7252
|
-
*/
|
|
7253
|
-
this.RequestId = null;
|
|
7254
|
-
|
|
7255
|
-
}
|
|
7256
|
-
|
|
7257
|
-
/**
|
|
7258
|
-
* @private
|
|
7259
|
-
*/
|
|
7260
|
-
deserialize(params) {
|
|
7261
|
-
if (!params) {
|
|
7262
|
-
return;
|
|
7263
|
-
}
|
|
7264
|
-
|
|
7265
|
-
if (params.DataInfoList) {
|
|
7266
|
-
this.DataInfoList = new Array();
|
|
7267
|
-
for (let z in params.DataInfoList) {
|
|
7268
|
-
let obj = new PushQualityData();
|
|
7269
|
-
obj.deserialize(params.DataInfoList[z]);
|
|
7270
|
-
this.DataInfoList.push(obj);
|
|
7271
|
-
}
|
|
7272
|
-
}
|
|
7273
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6892
|
+
this.RemoveWatermark = 'RemoveWatermark' in params ? params.RemoveWatermark : null;
|
|
7274
6893
|
|
|
7275
6894
|
}
|
|
7276
6895
|
}
|
|
@@ -7724,35 +7343,6 @@ class DeleteLiveWatermarkRuleResponse extends AbstractModel {
|
|
|
7724
7343
|
}
|
|
7725
7344
|
}
|
|
7726
7345
|
|
|
7727
|
-
/**
|
|
7728
|
-
* Push time.
|
|
7729
|
-
* @class
|
|
7730
|
-
*/
|
|
7731
|
-
class PublishTime extends AbstractModel {
|
|
7732
|
-
constructor(){
|
|
7733
|
-
super();
|
|
7734
|
-
|
|
7735
|
-
/**
|
|
7736
|
-
* Push time.
|
|
7737
|
-
In UTC format, such as 2018-06-29T19:00:00Z.
|
|
7738
|
-
* @type {string || null}
|
|
7739
|
-
*/
|
|
7740
|
-
this.PublishTime = null;
|
|
7741
|
-
|
|
7742
|
-
}
|
|
7743
|
-
|
|
7744
|
-
/**
|
|
7745
|
-
* @private
|
|
7746
|
-
*/
|
|
7747
|
-
deserialize(params) {
|
|
7748
|
-
if (!params) {
|
|
7749
|
-
return;
|
|
7750
|
-
}
|
|
7751
|
-
this.PublishTime = 'PublishTime' in params ? params.PublishTime : null;
|
|
7752
|
-
|
|
7753
|
-
}
|
|
7754
|
-
}
|
|
7755
|
-
|
|
7756
7346
|
/**
|
|
7757
7347
|
* ModifyLiveCert response structure.
|
|
7758
7348
|
* @class
|
|
@@ -12936,6 +12526,12 @@ class CreateLiveRecordTemplateRequest extends AbstractModel {
|
|
|
12936
12526
|
*/
|
|
12937
12527
|
this.Mp3Param = null;
|
|
12938
12528
|
|
|
12529
|
+
/**
|
|
12530
|
+
* Whether to remove the watermark. This parameter is invalid if `IsDelayLive` is `1`.
|
|
12531
|
+
* @type {boolean || null}
|
|
12532
|
+
*/
|
|
12533
|
+
this.RemoveWatermark = null;
|
|
12534
|
+
|
|
12939
12535
|
}
|
|
12940
12536
|
|
|
12941
12537
|
/**
|
|
@@ -12984,6 +12580,7 @@ class CreateLiveRecordTemplateRequest extends AbstractModel {
|
|
|
12984
12580
|
obj.deserialize(params.Mp3Param)
|
|
12985
12581
|
this.Mp3Param = obj;
|
|
12986
12582
|
}
|
|
12583
|
+
this.RemoveWatermark = 'RemoveWatermark' in params ? params.RemoveWatermark : null;
|
|
12987
12584
|
|
|
12988
12585
|
}
|
|
12989
12586
|
}
|
|
@@ -13196,7 +12793,6 @@ module.exports = {
|
|
|
13196
12793
|
DeleteLiveRecordRuleRequest: DeleteLiveRecordRuleRequest,
|
|
13197
12794
|
ResumeLiveStreamRequest: ResumeLiveStreamRequest,
|
|
13198
12795
|
DeleteLiveTranscodeTemplateResponse: DeleteLiveTranscodeTemplateResponse,
|
|
13199
|
-
DescribeBillBandwidthAndFluxListResponse: DescribeBillBandwidthAndFluxListResponse,
|
|
13200
12796
|
TemplateInfo: TemplateInfo,
|
|
13201
12797
|
DeleteLiveCallbackRuleResponse: DeleteLiveCallbackRuleResponse,
|
|
13202
12798
|
ResumeDelayLiveStreamRequest: ResumeDelayLiveStreamRequest,
|
|
@@ -13209,7 +12805,6 @@ module.exports = {
|
|
|
13209
12805
|
DeleteLiveRecordTemplateRequest: DeleteLiveRecordTemplateRequest,
|
|
13210
12806
|
DeleteLiveCallbackTemplateResponse: DeleteLiveCallbackTemplateResponse,
|
|
13211
12807
|
DescribeLiveStreamOnlineListResponse: DescribeLiveStreamOnlineListResponse,
|
|
13212
|
-
PushQualityData: PushQualityData,
|
|
13213
12808
|
UnBindLiveDomainCertResponse: UnBindLiveDomainCertResponse,
|
|
13214
12809
|
ModifyLivePlayAuthKeyRequest: ModifyLivePlayAuthKeyRequest,
|
|
13215
12810
|
DescribeLiveDelayInfoListRequest: DescribeLiveDelayInfoListRequest,
|
|
@@ -13229,7 +12824,7 @@ module.exports = {
|
|
|
13229
12824
|
DescribeLiveTranscodeRulesRequest: DescribeLiveTranscodeRulesRequest,
|
|
13230
12825
|
DeleteLiveSnapshotRuleRequest: DeleteLiveSnapshotRuleRequest,
|
|
13231
12826
|
DescribePlayErrorCodeDetailInfoListRequest: DescribePlayErrorCodeDetailInfoListRequest,
|
|
13232
|
-
|
|
12827
|
+
PublishTime: PublishTime,
|
|
13233
12828
|
CommonMixOutputParams: CommonMixOutputParams,
|
|
13234
12829
|
DescribeUploadStreamNumsRequest: DescribeUploadStreamNumsRequest,
|
|
13235
12830
|
DescribeLiveSnapshotRulesResponse: DescribeLiveSnapshotRulesResponse,
|
|
@@ -13274,7 +12869,6 @@ module.exports = {
|
|
|
13274
12869
|
CreateLiveTranscodeTemplateResponse: CreateLiveTranscodeTemplateResponse,
|
|
13275
12870
|
BillAreaInfo: BillAreaInfo,
|
|
13276
12871
|
PlayDataInfoByStream: PlayDataInfoByStream,
|
|
13277
|
-
DescribeVisitTopSumInfoListRequest: DescribeVisitTopSumInfoListRequest,
|
|
13278
12872
|
DayStreamPlayInfo: DayStreamPlayInfo,
|
|
13279
12873
|
ModifyLivePlayDomainResponse: ModifyLivePlayDomainResponse,
|
|
13280
12874
|
CancelCommonMixStreamResponse: CancelCommonMixStreamResponse,
|
|
@@ -13319,12 +12913,11 @@ module.exports = {
|
|
|
13319
12913
|
DescribeProvinceIspPlayInfoListRequest: DescribeProvinceIspPlayInfoListRequest,
|
|
13320
12914
|
DescribeLivePlayAuthKeyRequest: DescribeLivePlayAuthKeyRequest,
|
|
13321
12915
|
DescribeLiveForbidStreamListResponse: DescribeLiveForbidStreamListResponse,
|
|
13322
|
-
|
|
12916
|
+
DescribeVisitTopSumInfoListRequest: DescribeVisitTopSumInfoListRequest,
|
|
13323
12917
|
DomainInfoList: DomainInfoList,
|
|
13324
12918
|
DescribeLiveWatermarkResponse: DescribeLiveWatermarkResponse,
|
|
13325
12919
|
ResumeLiveStreamResponse: ResumeLiveStreamResponse,
|
|
13326
12920
|
ModifyLiveRecordTemplateRequest: ModifyLiveRecordTemplateRequest,
|
|
13327
|
-
DescribeStreamPushInfoListResponse: DescribeStreamPushInfoListResponse,
|
|
13328
12921
|
DescribeLiveStreamPushInfoListRequest: DescribeLiveStreamPushInfoListRequest,
|
|
13329
12922
|
DescribeLiveWatermarksResponse: DescribeLiveWatermarksResponse,
|
|
13330
12923
|
WatermarkInfo: WatermarkInfo,
|
|
@@ -13334,7 +12927,6 @@ module.exports = {
|
|
|
13334
12927
|
DescribeTopClientIpSumInfoListRequest: DescribeTopClientIpSumInfoListRequest,
|
|
13335
12928
|
CreateLiveCallbackRuleRequest: CreateLiveCallbackRuleRequest,
|
|
13336
12929
|
DeleteLiveWatermarkRuleResponse: DeleteLiveWatermarkRuleResponse,
|
|
13337
|
-
PublishTime: PublishTime,
|
|
13338
12930
|
ModifyLiveCertResponse: ModifyLiveCertResponse,
|
|
13339
12931
|
MonitorStreamPlayInfo: MonitorStreamPlayInfo,
|
|
13340
12932
|
DescribeLiveTranscodeDetailInfoRequest: DescribeLiveTranscodeDetailInfoRequest,
|