tencentcloud-sdk-nodejs-live 4.0.659 → 4.0.661
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/CHANGELOG.md +690 -0
- package/SERVICE_CHANGELOG.md +873 -214
- package/package.json +1 -1
- package/products.md +28 -28
- package/src/services/live/v20180801/live_client.ts +43 -30
- package/src/services/live/v20180801/live_models.ts +123 -82
- package/tencentcloud/services/live/v20180801/live_client.d.ts +43 -30
- package/tencentcloud/services/live/v20180801/live_client.js +43 -30
- package/tencentcloud/services/live/v20180801/live_models.d.ts +123 -82
|
@@ -102,13 +102,17 @@ export interface DescribeLiveSnapshotTemplateRequest {
|
|
|
102
102
|
*/
|
|
103
103
|
export interface DescribePlayErrorCodeDetailInfoListRequest {
|
|
104
104
|
/**
|
|
105
|
-
*
|
|
106
|
-
|
|
105
|
+
* 起始时间,
|
|
106
|
+
使用UTC格式时间,
|
|
107
|
+
例如:2019-01-08T10:00:00Z。
|
|
108
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
107
109
|
*/
|
|
108
110
|
StartTime: string
|
|
109
111
|
/**
|
|
110
|
-
*
|
|
111
|
-
|
|
112
|
+
* 结束时间,
|
|
113
|
+
使用UTC格式时间,
|
|
114
|
+
例如:2019-01-08T10:00:00Z。
|
|
115
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
112
116
|
注:EndTime 和 StartTime 只支持最近1天的数据查询。
|
|
113
117
|
*/
|
|
114
118
|
EndTime: string
|
|
@@ -246,23 +250,23 @@ export interface DescribeLiveTranscodeDetailInfoResponse {
|
|
|
246
250
|
/**
|
|
247
251
|
* 统计数据列表。
|
|
248
252
|
*/
|
|
249
|
-
DataInfoList
|
|
253
|
+
DataInfoList?: Array<TranscodeDetailInfo>
|
|
250
254
|
/**
|
|
251
255
|
* 页码。
|
|
252
256
|
*/
|
|
253
|
-
PageNum
|
|
257
|
+
PageNum?: number
|
|
254
258
|
/**
|
|
255
259
|
* 每页个数。
|
|
256
260
|
*/
|
|
257
|
-
PageSize
|
|
261
|
+
PageSize?: number
|
|
258
262
|
/**
|
|
259
263
|
* 总个数。
|
|
260
264
|
*/
|
|
261
|
-
TotalNum
|
|
265
|
+
TotalNum?: number
|
|
262
266
|
/**
|
|
263
267
|
* 总页数。
|
|
264
268
|
*/
|
|
265
|
-
TotalPage
|
|
269
|
+
TotalPage?: number
|
|
266
270
|
/**
|
|
267
271
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
268
272
|
*/
|
|
@@ -319,7 +323,7 @@ export interface DescribeGroupProIspPlayInfoListResponse {
|
|
|
319
323
|
/**
|
|
320
324
|
* 数据内容。
|
|
321
325
|
*/
|
|
322
|
-
DataInfoList
|
|
326
|
+
DataInfoList?: Array<GroupProIspDataInfo>
|
|
323
327
|
/**
|
|
324
328
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
325
329
|
*/
|
|
@@ -782,27 +786,27 @@ export interface DescribeTopClientIpSumInfoListResponse {
|
|
|
782
786
|
/**
|
|
783
787
|
* 页号,范围是[1,1000],默认值是1。
|
|
784
788
|
*/
|
|
785
|
-
PageNum
|
|
789
|
+
PageNum?: number
|
|
786
790
|
/**
|
|
787
791
|
* 每页个数,范围是[1,1000],默认值是20。
|
|
788
792
|
*/
|
|
789
|
-
PageSize
|
|
793
|
+
PageSize?: number
|
|
790
794
|
/**
|
|
791
795
|
* 排序指标,可选值包括”TotalRequest”,”FailedRequest”,“TotalFlux”。
|
|
792
796
|
*/
|
|
793
|
-
OrderParam
|
|
797
|
+
OrderParam?: string
|
|
794
798
|
/**
|
|
795
799
|
* 记录总数。
|
|
796
800
|
*/
|
|
797
|
-
TotalNum
|
|
801
|
+
TotalNum?: number
|
|
798
802
|
/**
|
|
799
803
|
* 记录总页数。
|
|
800
804
|
*/
|
|
801
|
-
TotalPage
|
|
805
|
+
TotalPage?: number
|
|
802
806
|
/**
|
|
803
807
|
* 数据内容。
|
|
804
808
|
*/
|
|
805
|
-
DataInfoList
|
|
809
|
+
DataInfoList?: Array<ClientIpPlaySumInfo>
|
|
806
810
|
/**
|
|
807
811
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
808
812
|
*/
|
|
@@ -1161,7 +1165,7 @@ export interface DescribeStreamPushInfoListResponse {
|
|
|
1161
1165
|
/**
|
|
1162
1166
|
* 返回的数据列表。
|
|
1163
1167
|
*/
|
|
1164
|
-
DataInfoList
|
|
1168
|
+
DataInfoList?: Array<PushQualityData>
|
|
1165
1169
|
/**
|
|
1166
1170
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1167
1171
|
*/
|
|
@@ -1941,27 +1945,27 @@ export interface DescribeLiveDomainPlayInfoListResponse {
|
|
|
1941
1945
|
/**
|
|
1942
1946
|
* 数据时间,格式为yyyy-mm-dd HH:MM:SS。
|
|
1943
1947
|
*/
|
|
1944
|
-
Time
|
|
1948
|
+
Time?: string
|
|
1945
1949
|
/**
|
|
1946
1950
|
* 实时总带宽。
|
|
1947
1951
|
*/
|
|
1948
|
-
TotalBandwidth
|
|
1952
|
+
TotalBandwidth?: number
|
|
1949
1953
|
/**
|
|
1950
1954
|
* 实时总流量。
|
|
1951
1955
|
*/
|
|
1952
|
-
TotalFlux
|
|
1956
|
+
TotalFlux?: number
|
|
1953
1957
|
/**
|
|
1954
1958
|
* 总请求数。
|
|
1955
1959
|
*/
|
|
1956
|
-
TotalRequest
|
|
1960
|
+
TotalRequest?: number
|
|
1957
1961
|
/**
|
|
1958
1962
|
* 实时总连接数。
|
|
1959
1963
|
*/
|
|
1960
|
-
TotalOnline
|
|
1964
|
+
TotalOnline?: number
|
|
1961
1965
|
/**
|
|
1962
1966
|
* 分域名的数据情况。
|
|
1963
1967
|
*/
|
|
1964
|
-
DomainInfoList
|
|
1968
|
+
DomainInfoList?: Array<DomainInfoList>
|
|
1965
1969
|
/**
|
|
1966
1970
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1967
1971
|
*/
|
|
@@ -1973,7 +1977,10 @@ export interface DescribeLiveDomainPlayInfoListResponse {
|
|
|
1973
1977
|
*/
|
|
1974
1978
|
export interface HttpCodeValue {
|
|
1975
1979
|
/**
|
|
1976
|
-
*
|
|
1980
|
+
* 时间,
|
|
1981
|
+
使用UTC格式时间,
|
|
1982
|
+
例如:2019-01-08T10:00:00Z。
|
|
1983
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
1977
1984
|
*/
|
|
1978
1985
|
Time: string
|
|
1979
1986
|
/**
|
|
@@ -2208,23 +2215,23 @@ export interface DescribeStreamDayPlayInfoListResponse {
|
|
|
2208
2215
|
/**
|
|
2209
2216
|
* 播放数据信息列表。
|
|
2210
2217
|
*/
|
|
2211
|
-
DataInfoList
|
|
2218
|
+
DataInfoList?: Array<PlayDataInfoByStream>
|
|
2212
2219
|
/**
|
|
2213
2220
|
* 总数量。
|
|
2214
2221
|
*/
|
|
2215
|
-
TotalNum
|
|
2222
|
+
TotalNum?: number
|
|
2216
2223
|
/**
|
|
2217
2224
|
* 总页数。
|
|
2218
2225
|
*/
|
|
2219
|
-
TotalPage
|
|
2226
|
+
TotalPage?: number
|
|
2220
2227
|
/**
|
|
2221
2228
|
* 当前数据所处页码。
|
|
2222
2229
|
*/
|
|
2223
|
-
PageNum
|
|
2230
|
+
PageNum?: number
|
|
2224
2231
|
/**
|
|
2225
2232
|
* 每页个数。
|
|
2226
2233
|
*/
|
|
2227
|
-
PageSize
|
|
2234
|
+
PageSize?: number
|
|
2228
2235
|
/**
|
|
2229
2236
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2230
2237
|
*/
|
|
@@ -3408,11 +3415,17 @@ URL中禁止包含的字符:
|
|
|
3408
3415
|
*/
|
|
3409
3416
|
export interface DescribeGroupProIspPlayInfoListRequest {
|
|
3410
3417
|
/**
|
|
3411
|
-
*
|
|
3418
|
+
* 起始时间点,
|
|
3419
|
+
使用UTC格式时间,
|
|
3420
|
+
例如:2019-01-08T10:00:00Z。
|
|
3421
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
3412
3422
|
*/
|
|
3413
3423
|
StartTime: string
|
|
3414
3424
|
/**
|
|
3415
|
-
*
|
|
3425
|
+
* 结束时间点,
|
|
3426
|
+
使用UTC格式时间,
|
|
3427
|
+
例如:2019-01-08T10:00:00Z。
|
|
3428
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
3416
3429
|
时间跨度在(0,3小时],支持最近1个月数据查询。
|
|
3417
3430
|
*/
|
|
3418
3431
|
EndTime: string
|
|
@@ -3467,11 +3480,18 @@ export interface DescribeStreamPushInfoListRequest {
|
|
|
3467
3480
|
*/
|
|
3468
3481
|
StreamName: string
|
|
3469
3482
|
/**
|
|
3470
|
-
*
|
|
3483
|
+
* 起始时间点,
|
|
3484
|
+
使用UTC格式时间,
|
|
3485
|
+
例如:2019-01-08T10:00:00Z。
|
|
3486
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
3471
3487
|
*/
|
|
3472
3488
|
StartTime: string
|
|
3473
3489
|
/**
|
|
3474
|
-
*
|
|
3490
|
+
* 结束时间点,
|
|
3491
|
+
使用UTC格式时间,
|
|
3492
|
+
例如:2019-01-08T10:00:00Z。
|
|
3493
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
3494
|
+
支持查询最近7天数据,建议查询时间跨度在3小时之内。
|
|
3475
3495
|
*/
|
|
3476
3496
|
EndTime: string
|
|
3477
3497
|
/**
|
|
@@ -3553,11 +3573,17 @@ export interface ModifyLivePadTemplateResponse {
|
|
|
3553
3573
|
*/
|
|
3554
3574
|
export interface DescribeTopClientIpSumInfoListRequest {
|
|
3555
3575
|
/**
|
|
3556
|
-
*
|
|
3576
|
+
* 起始时间点,
|
|
3577
|
+
使用UTC格式时间,
|
|
3578
|
+
例如:2019-01-08T10:00:00Z。
|
|
3579
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
3557
3580
|
*/
|
|
3558
3581
|
StartTime: string
|
|
3559
3582
|
/**
|
|
3560
|
-
*
|
|
3583
|
+
* 结束时间点,
|
|
3584
|
+
使用UTC格式时间,
|
|
3585
|
+
例如:2019-01-08T10:00:00Z。
|
|
3586
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
3561
3587
|
时间跨度在[0,4小时],支持最近1天数据查询。
|
|
3562
3588
|
*/
|
|
3563
3589
|
EndTime: string
|
|
@@ -3870,23 +3896,23 @@ export interface DescribeLiveStreamPushInfoListResponse {
|
|
|
3870
3896
|
/**
|
|
3871
3897
|
* 直播流的统计信息列表。
|
|
3872
3898
|
*/
|
|
3873
|
-
DataInfoList
|
|
3899
|
+
DataInfoList?: Array<PushDataInfo>
|
|
3874
3900
|
/**
|
|
3875
3901
|
* 所有在线流的总数量。
|
|
3876
3902
|
*/
|
|
3877
|
-
TotalNum
|
|
3903
|
+
TotalNum?: number
|
|
3878
3904
|
/**
|
|
3879
3905
|
* 总页数。
|
|
3880
3906
|
*/
|
|
3881
|
-
TotalPage
|
|
3907
|
+
TotalPage?: number
|
|
3882
3908
|
/**
|
|
3883
3909
|
* 当前数据所在页码。
|
|
3884
3910
|
*/
|
|
3885
|
-
PageNum
|
|
3911
|
+
PageNum?: number
|
|
3886
3912
|
/**
|
|
3887
3913
|
* 每页的在线流的个数。
|
|
3888
3914
|
*/
|
|
3889
|
-
PageSize
|
|
3915
|
+
PageSize?: number
|
|
3890
3916
|
/**
|
|
3891
3917
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3892
3918
|
*/
|
|
@@ -3977,13 +4003,17 @@ export interface CreateLiveSnapshotTemplateResponse {
|
|
|
3977
4003
|
*/
|
|
3978
4004
|
export interface DescribeProIspPlaySumInfoListRequest {
|
|
3979
4005
|
/**
|
|
3980
|
-
*
|
|
3981
|
-
|
|
4006
|
+
* 起始时间,
|
|
4007
|
+
使用UTC格式时间,
|
|
4008
|
+
例如:2019-01-08T10:00:00Z。
|
|
4009
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
3982
4010
|
*/
|
|
3983
4011
|
StartTime: string
|
|
3984
4012
|
/**
|
|
3985
|
-
*
|
|
3986
|
-
|
|
4013
|
+
* 结束时间,
|
|
4014
|
+
使用UTC格式时间,
|
|
4015
|
+
例如:2019-01-08T10:00:00Z。
|
|
4016
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
3987
4017
|
注:EndTime 和 StartTime 只支持最近1天的数据查询。
|
|
3988
4018
|
*/
|
|
3989
4019
|
EndTime: string
|
|
@@ -4061,11 +4091,11 @@ export interface DescribePlayErrorCodeDetailInfoListResponse {
|
|
|
4061
4091
|
/**
|
|
4062
4092
|
* 统计信息列表。
|
|
4063
4093
|
*/
|
|
4064
|
-
HttpCodeList
|
|
4094
|
+
HttpCodeList?: Array<HttpCodeInfo>
|
|
4065
4095
|
/**
|
|
4066
4096
|
* 统计类型。
|
|
4067
4097
|
*/
|
|
4068
|
-
StatType
|
|
4098
|
+
StatType?: string
|
|
4069
4099
|
/**
|
|
4070
4100
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4071
4101
|
*/
|
|
@@ -5161,39 +5191,39 @@ export interface DescribeProIspPlaySumInfoListResponse {
|
|
|
5161
5191
|
/**
|
|
5162
5192
|
* 总流量。
|
|
5163
5193
|
*/
|
|
5164
|
-
TotalFlux
|
|
5194
|
+
TotalFlux?: number
|
|
5165
5195
|
/**
|
|
5166
5196
|
* 总请求数。
|
|
5167
5197
|
*/
|
|
5168
|
-
TotalRequest
|
|
5198
|
+
TotalRequest?: number
|
|
5169
5199
|
/**
|
|
5170
5200
|
* 统计的类型。
|
|
5171
5201
|
*/
|
|
5172
|
-
StatType
|
|
5202
|
+
StatType?: string
|
|
5173
5203
|
/**
|
|
5174
5204
|
* 每页的记录数。
|
|
5175
5205
|
*/
|
|
5176
|
-
PageSize
|
|
5206
|
+
PageSize?: number
|
|
5177
5207
|
/**
|
|
5178
5208
|
* 页号。
|
|
5179
5209
|
*/
|
|
5180
|
-
PageNum
|
|
5210
|
+
PageNum?: number
|
|
5181
5211
|
/**
|
|
5182
5212
|
* 总记录数。
|
|
5183
5213
|
*/
|
|
5184
|
-
TotalNum
|
|
5214
|
+
TotalNum?: number
|
|
5185
5215
|
/**
|
|
5186
5216
|
* 总页数。
|
|
5187
5217
|
*/
|
|
5188
|
-
TotalPage
|
|
5218
|
+
TotalPage?: number
|
|
5189
5219
|
/**
|
|
5190
5220
|
* 省份,运营商,国家或地区汇总数据列表。
|
|
5191
5221
|
*/
|
|
5192
|
-
DataInfoList
|
|
5222
|
+
DataInfoList?: Array<ProIspPlaySumInfo>
|
|
5193
5223
|
/**
|
|
5194
5224
|
* 下载速度,单位:MB/s,计算方式:总流量/总时长。
|
|
5195
5225
|
*/
|
|
5196
|
-
AvgFluxPerSecond
|
|
5226
|
+
AvgFluxPerSecond?: number
|
|
5197
5227
|
/**
|
|
5198
5228
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5199
5229
|
*/
|
|
@@ -6022,14 +6052,17 @@ export interface DescribeLiveDomainRefererResponse {
|
|
|
6022
6052
|
*/
|
|
6023
6053
|
export interface DescribeHttpStatusInfoListRequest {
|
|
6024
6054
|
/**
|
|
6025
|
-
*
|
|
6026
|
-
|
|
6055
|
+
* 起始时间,
|
|
6056
|
+
使用UTC格式时间,
|
|
6057
|
+
例如:2019-01-08T10:00:00Z。
|
|
6058
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
6027
6059
|
*/
|
|
6028
6060
|
StartTime: string
|
|
6029
6061
|
/**
|
|
6030
|
-
*
|
|
6031
|
-
|
|
6032
|
-
|
|
6062
|
+
* 结束时间,
|
|
6063
|
+
使用UTC格式时间,
|
|
6064
|
+
例如:2019-01-08T10:00:00Z。
|
|
6065
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
6033
6066
|
*/
|
|
6034
6067
|
EndTime: string
|
|
6035
6068
|
/**
|
|
@@ -6170,11 +6203,11 @@ export interface DescribeProvinceIspPlayInfoListResponse {
|
|
|
6170
6203
|
/**
|
|
6171
6204
|
* 播放信息列表。
|
|
6172
6205
|
*/
|
|
6173
|
-
DataInfoList
|
|
6206
|
+
DataInfoList?: Array<PlayStatInfo>
|
|
6174
6207
|
/**
|
|
6175
6208
|
* 统计的类型,和输入参数保持一致。
|
|
6176
6209
|
*/
|
|
6177
|
-
StatType
|
|
6210
|
+
StatType?: string
|
|
6178
6211
|
/**
|
|
6179
6212
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6180
6213
|
*/
|
|
@@ -6565,11 +6598,11 @@ export interface DescribeAllStreamPlayInfoListResponse {
|
|
|
6565
6598
|
/**
|
|
6566
6599
|
* 查询时间点,回传的输入参数中的查询时间。
|
|
6567
6600
|
*/
|
|
6568
|
-
QueryTime
|
|
6601
|
+
QueryTime?: string
|
|
6569
6602
|
/**
|
|
6570
6603
|
* 数据信息列表。
|
|
6571
6604
|
*/
|
|
6572
|
-
DataInfoList
|
|
6605
|
+
DataInfoList?: Array<MonitorStreamPlayInfo>
|
|
6573
6606
|
/**
|
|
6574
6607
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6575
6608
|
*/
|
|
@@ -7282,7 +7315,7 @@ export interface DescribeHttpStatusInfoListResponse {
|
|
|
7282
7315
|
/**
|
|
7283
7316
|
* 播放状态码列表。
|
|
7284
7317
|
*/
|
|
7285
|
-
DataInfoList
|
|
7318
|
+
DataInfoList?: Array<HttpStatusData>
|
|
7286
7319
|
/**
|
|
7287
7320
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7288
7321
|
*/
|
|
@@ -7677,47 +7710,47 @@ export interface DescribePlayErrorCodeSumInfoListResponse {
|
|
|
7677
7710
|
/**
|
|
7678
7711
|
* 分省份分运营商错误码为2或3或4或5开头的状态码数据信息。
|
|
7679
7712
|
*/
|
|
7680
|
-
ProIspInfoList
|
|
7713
|
+
ProIspInfoList?: Array<ProIspPlayCodeDataInfo>
|
|
7681
7714
|
/**
|
|
7682
7715
|
* 所有状态码的加和的次数。
|
|
7683
7716
|
*/
|
|
7684
|
-
TotalCodeAll
|
|
7717
|
+
TotalCodeAll?: number
|
|
7685
7718
|
/**
|
|
7686
7719
|
* 状态码为4开头的总次数。
|
|
7687
7720
|
*/
|
|
7688
|
-
TotalCode4xx
|
|
7721
|
+
TotalCode4xx?: number
|
|
7689
7722
|
/**
|
|
7690
7723
|
* 状态码为5开头的总次数。
|
|
7691
7724
|
*/
|
|
7692
|
-
TotalCode5xx
|
|
7725
|
+
TotalCode5xx?: number
|
|
7693
7726
|
/**
|
|
7694
7727
|
* 各状态码的总次数。
|
|
7695
7728
|
*/
|
|
7696
|
-
TotalCodeList
|
|
7729
|
+
TotalCodeList?: Array<PlayCodeTotalInfo>
|
|
7697
7730
|
/**
|
|
7698
7731
|
* 页号。
|
|
7699
7732
|
*/
|
|
7700
|
-
PageNum
|
|
7733
|
+
PageNum?: number
|
|
7701
7734
|
/**
|
|
7702
7735
|
* 每页大小。
|
|
7703
7736
|
*/
|
|
7704
|
-
PageSize
|
|
7737
|
+
PageSize?: number
|
|
7705
7738
|
/**
|
|
7706
7739
|
* 总页数。
|
|
7707
7740
|
*/
|
|
7708
|
-
TotalPage
|
|
7741
|
+
TotalPage?: number
|
|
7709
7742
|
/**
|
|
7710
7743
|
* 总记录数。
|
|
7711
7744
|
*/
|
|
7712
|
-
TotalNum
|
|
7745
|
+
TotalNum?: number
|
|
7713
7746
|
/**
|
|
7714
7747
|
* 状态码为2开头的总次数。
|
|
7715
7748
|
*/
|
|
7716
|
-
TotalCode2xx
|
|
7749
|
+
TotalCode2xx?: number
|
|
7717
7750
|
/**
|
|
7718
7751
|
* 状态码为3开头的总次数。
|
|
7719
7752
|
*/
|
|
7720
|
-
TotalCode3xx
|
|
7753
|
+
TotalCode3xx?: number
|
|
7721
7754
|
/**
|
|
7722
7755
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
7723
7756
|
*/
|
|
@@ -7902,7 +7935,9 @@ export interface DescribeLiveTimeShiftBillInfoListRequest {
|
|
|
7902
7935
|
*/
|
|
7903
7936
|
export interface PushQualityData {
|
|
7904
7937
|
/**
|
|
7905
|
-
*
|
|
7938
|
+
* 数据时间,使用UTC格式时间,
|
|
7939
|
+
例如:2019-01-08T10:00:00Z。
|
|
7940
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
7906
7941
|
*/
|
|
7907
7942
|
Time: string
|
|
7908
7943
|
/**
|
|
@@ -8328,13 +8363,17 @@ export interface ModifyPullStreamConfigResponse {
|
|
|
8328
8363
|
*/
|
|
8329
8364
|
export interface DescribeProvinceIspPlayInfoListRequest {
|
|
8330
8365
|
/**
|
|
8331
|
-
*
|
|
8332
|
-
|
|
8366
|
+
* 起始时间点,
|
|
8367
|
+
使用UTC格式时间,
|
|
8368
|
+
例如:2019-01-08T10:00:00Z。
|
|
8369
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
8333
8370
|
*/
|
|
8334
8371
|
StartTime: string
|
|
8335
8372
|
/**
|
|
8336
|
-
*
|
|
8337
|
-
|
|
8373
|
+
* 结束时间点,
|
|
8374
|
+
使用UTC格式时间,
|
|
8375
|
+
例如:2019-01-08T10:00:00Z。
|
|
8376
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
8338
8377
|
注:EndTime 和 StartTime 只支持最近1天的数据查询。
|
|
8339
8378
|
*/
|
|
8340
8379
|
EndTime: string
|
|
@@ -8914,7 +8953,9 @@ export interface DescribeLiveDomainRefererRequest {
|
|
|
8914
8953
|
export interface HttpStatusData {
|
|
8915
8954
|
/**
|
|
8916
8955
|
* 数据时间点,
|
|
8917
|
-
|
|
8956
|
+
使用UTC格式时间,
|
|
8957
|
+
例如:2019-01-08T10:00:00Z。
|
|
8958
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
8918
8959
|
*/
|
|
8919
8960
|
Time: string
|
|
8920
8961
|
/**
|
|
@@ -73,21 +73,24 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
73
73
|
*/
|
|
74
74
|
CreateCommonMixStream(req: CreateCommonMixStreamRequest, cb?: (error: string, rep: CreateCommonMixStreamResponse) => void): Promise<CreateCommonMixStreamResponse>;
|
|
75
75
|
/**
|
|
76
|
-
*
|
|
76
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
77
|
+
查询某段时间内5分钟粒度的各播放http状态码的个数。
|
|
77
78
|
备注:数据延迟1小时,如10:00-10:59点的数据12点才能查到。
|
|
78
79
|
*/
|
|
79
80
|
DescribeHttpStatusInfoList(req: DescribeHttpStatusInfoListRequest, cb?: (error: string, rep: DescribeHttpStatusInfoListResponse) => void): Promise<DescribeHttpStatusInfoListResponse>;
|
|
80
81
|
/**
|
|
81
|
-
|
|
82
|
-
|
|
82
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
83
|
+
查询某省份某运营商下行播放数据,包括带宽,流量,请求数,并发连接数信息。
|
|
84
|
+
*/
|
|
83
85
|
DescribeProvinceIspPlayInfoList(req: DescribeProvinceIspPlayInfoListRequest, cb?: (error: string, rep: DescribeProvinceIspPlayInfoListResponse) => void): Promise<DescribeProvinceIspPlayInfoListResponse>;
|
|
84
86
|
/**
|
|
85
87
|
* 修改播放域名信息。
|
|
86
88
|
*/
|
|
87
89
|
ModifyLivePlayDomain(req: ModifyLivePlayDomainRequest, cb?: (error: string, rep: ModifyLivePlayDomainResponse) => void): Promise<ModifyLivePlayDomainResponse>;
|
|
88
90
|
/**
|
|
89
|
-
|
|
90
|
-
|
|
91
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
92
|
+
查询流id的上行推流质量数据,包括音视频的帧率,码率,流逝时间,编码格式等。
|
|
93
|
+
*/
|
|
91
94
|
DescribeStreamPushInfoList(req: DescribeStreamPushInfoListRequest, cb?: (error: string, rep: DescribeStreamPushInfoListResponse) => void): Promise<DescribeStreamPushInfoListResponse>;
|
|
92
95
|
/**
|
|
93
96
|
* 该接口用来启动直播流监播任务。
|
|
@@ -119,8 +122,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
119
122
|
*/
|
|
120
123
|
DescribeLiveDomainReferer(req: DescribeLiveDomainRefererRequest, cb?: (error: string, rep: DescribeLiveDomainRefererResponse) => void): Promise<DescribeLiveDomainRefererResponse>;
|
|
121
124
|
/**
|
|
122
|
-
|
|
123
|
-
|
|
125
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
126
|
+
查询某段时间top n客户端ip汇总信息(暂支持top 1000)
|
|
127
|
+
*/
|
|
124
128
|
DescribeTopClientIpSumInfoList(req: DescribeTopClientIpSumInfoListRequest, cb?: (error: string, rep: DescribeTopClientIpSumInfoListResponse) => void): Promise<DescribeTopClientIpSumInfoListResponse>;
|
|
125
129
|
/**
|
|
126
130
|
* 修改直播拉流配置的状态。该接口已下线,请使用新接口 ModifyLivePullStreamTask。
|
|
@@ -247,8 +251,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
247
251
|
*/
|
|
248
252
|
DescribeLiveDomainCertBindings(req: DescribeLiveDomainCertBindingsRequest, cb?: (error: string, rep: DescribeLiveDomainCertBindingsResponse) => void): Promise<DescribeLiveDomainCertBindingsResponse>;
|
|
249
253
|
/**
|
|
250
|
-
|
|
251
|
-
|
|
254
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
255
|
+
查询下行播放错误码信息。
|
|
256
|
+
*/
|
|
252
257
|
DescribePlayErrorCodeSumInfoList(req: DescribePlayErrorCodeSumInfoListRequest, cb?: (error: string, rep: DescribePlayErrorCodeSumInfoListResponse) => void): Promise<DescribePlayErrorCodeSumInfoListResponse>;
|
|
253
258
|
/**
|
|
254
259
|
* 针对大型活动直播,通过对直播流设置延时来控制现场与观众播放画面的时间间隔,避免突发状况造成影响。
|
|
@@ -261,8 +266,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
261
266
|
*/
|
|
262
267
|
DescribeUploadStreamNums(req: DescribeUploadStreamNumsRequest, cb?: (error: string, rep: DescribeUploadStreamNumsResponse) => void): Promise<DescribeUploadStreamNumsResponse>;
|
|
263
268
|
/**
|
|
264
|
-
|
|
265
|
-
|
|
269
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
270
|
+
查询天维度每条流的播放数据,包括总流量等。
|
|
271
|
+
*/
|
|
266
272
|
DescribeStreamDayPlayInfoList(req: DescribeStreamDayPlayInfoListRequest, cb?: (error: string, rep: DescribeStreamDayPlayInfoListResponse) => void): Promise<DescribeStreamDayPlayInfoListResponse>;
|
|
267
273
|
/**
|
|
268
274
|
* 修改直播推流鉴权key
|
|
@@ -356,12 +362,14 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
356
362
|
*/
|
|
357
363
|
DescribeLivePullStreamTasks(req: DescribeLivePullStreamTasksRequest, cb?: (error: string, rep: DescribeLivePullStreamTasksResponse) => void): Promise<DescribeLivePullStreamTasksResponse>;
|
|
358
364
|
/**
|
|
359
|
-
|
|
360
|
-
|
|
365
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
366
|
+
查询按省份和运营商分组的下行播放数据。
|
|
367
|
+
*/
|
|
361
368
|
DescribeGroupProIspPlayInfoList(req: DescribeGroupProIspPlayInfoListRequest, cb?: (error: string, rep: DescribeGroupProIspPlayInfoListResponse) => void): Promise<DescribeGroupProIspPlayInfoListResponse>;
|
|
362
369
|
/**
|
|
363
|
-
|
|
364
|
-
|
|
370
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
371
|
+
查询播放数据,支持按流名称查询详细播放数据,也可按播放域名查询详细总数据,数据延迟4分钟左右。
|
|
372
|
+
*/
|
|
365
373
|
DescribeStreamPlayInfoList(req: DescribeStreamPlayInfoListRequest, cb?: (error: string, rep: DescribeStreamPlayInfoListResponse) => void): Promise<DescribeStreamPlayInfoListResponse>;
|
|
366
374
|
/**
|
|
367
375
|
* 查询直播拉流任务状态信息。
|
|
@@ -416,8 +424,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
416
424
|
*/
|
|
417
425
|
DeleteRecordTask(req: DeleteRecordTaskRequest, cb?: (error: string, rep: DeleteRecordTaskResponse) => void): Promise<DeleteRecordTaskResponse>;
|
|
418
426
|
/**
|
|
419
|
-
|
|
420
|
-
|
|
427
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
428
|
+
支持查询某天或某段时间的转码详细信息。由于转码数据量较大,如果查询时间跨度太长可能会拉不到数据,可以尝试将查询时间范围缩小些再重试。
|
|
429
|
+
*/
|
|
421
430
|
DescribeLiveTranscodeDetailInfo(req: DescribeLiveTranscodeDetailInfoRequest, cb?: (error: string, rep: DescribeLiveTranscodeDetailInfoResponse) => void): Promise<DescribeLiveTranscodeDetailInfoResponse>;
|
|
422
431
|
/**
|
|
423
432
|
* 批量获取日志URL。
|
|
@@ -465,9 +474,8 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
465
474
|
*/
|
|
466
475
|
DescribeLiveCallbackRules(req?: DescribeLiveCallbackRulesRequest, cb?: (error: string, rep: DescribeLiveCallbackRulesResponse) => void): Promise<DescribeLiveCallbackRulesResponse>;
|
|
467
476
|
/**
|
|
468
|
-
*
|
|
469
|
-
|
|
470
|
-
|
|
477
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
478
|
+
查询下行播放错误码信息,某段时间内1分钟粒度的各http错误码出现的次数,包括4xx,5xx。
|
|
471
479
|
*/
|
|
472
480
|
DescribePlayErrorCodeDetailInfoList(req: DescribePlayErrorCodeDetailInfoListRequest, cb?: (error: string, rep: DescribePlayErrorCodeDetailInfoListResponse) => void): Promise<DescribePlayErrorCodeDetailInfoListResponse>;
|
|
473
481
|
/**
|
|
@@ -512,8 +520,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
512
520
|
*/
|
|
513
521
|
DescribeDeliverBandwidthList(req: DescribeDeliverBandwidthListRequest, cb?: (error: string, rep: DescribeDeliverBandwidthListResponse) => void): Promise<DescribeDeliverBandwidthListResponse>;
|
|
514
522
|
/**
|
|
515
|
-
|
|
516
|
-
|
|
523
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
524
|
+
查询实时的域名维度下行播放数据,由于数据处理有耗时,接口默认查询4分钟前的准实时数据。
|
|
525
|
+
*/
|
|
517
526
|
DescribeLiveDomainPlayInfoList(req: DescribeLiveDomainPlayInfoListRequest, cb?: (error: string, rep: DescribeLiveDomainPlayInfoListResponse) => void): Promise<DescribeLiveDomainPlayInfoListResponse>;
|
|
518
527
|
/**
|
|
519
528
|
* 创建直播时移规则,需要先调用[CreateLiveTimeShiftTemplate](/document/product/267/86169)接口创建直播时移模板,将返回的模板id绑定到流使用。
|
|
@@ -521,8 +530,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
521
530
|
*/
|
|
522
531
|
CreateLiveTimeShiftRule(req: CreateLiveTimeShiftRuleRequest, cb?: (error: string, rep: CreateLiveTimeShiftRuleResponse) => void): Promise<CreateLiveTimeShiftRuleResponse>;
|
|
523
532
|
/**
|
|
524
|
-
|
|
525
|
-
|
|
533
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
534
|
+
用于查询回调事件。
|
|
535
|
+
*/
|
|
526
536
|
DescribeCallbackRecordsList(req: DescribeCallbackRecordsListRequest, cb?: (error: string, rep: DescribeCallbackRecordsListResponse) => void): Promise<DescribeCallbackRecordsListResponse>;
|
|
527
537
|
/**
|
|
528
538
|
* 创建录制规则,需要先调用[CreateLiveRecordTemplate](/document/product/267/32614)接口创建录制模板,将返回的模板id绑定到流使用。
|
|
@@ -617,12 +627,14 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
617
627
|
*/
|
|
618
628
|
DeleteLiveTimeShiftTemplate(req: DeleteLiveTimeShiftTemplateRequest, cb?: (error: string, rep: DeleteLiveTimeShiftTemplateResponse) => void): Promise<DeleteLiveTimeShiftTemplateResponse>;
|
|
619
629
|
/**
|
|
620
|
-
|
|
621
|
-
|
|
630
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
631
|
+
查询某段时间内每个国家地区每个省份每个运营商的平均每秒流量,总流量,总请求数信息。
|
|
632
|
+
*/
|
|
622
633
|
DescribeProIspPlaySumInfoList(req: DescribeProIspPlaySumInfoListRequest, cb?: (error: string, rep: DescribeProIspPlaySumInfoListResponse) => void): Promise<DescribeProIspPlaySumInfoListResponse>;
|
|
623
634
|
/**
|
|
624
|
-
|
|
625
|
-
|
|
635
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
636
|
+
输入某个时间点(1分钟维度),查询该时间点所有流的下行信息。
|
|
637
|
+
*/
|
|
626
638
|
DescribeAllStreamPlayInfoList(req: DescribeAllStreamPlayInfoListRequest, cb?: (error: string, rep: DescribeAllStreamPlayInfoListResponse) => void): Promise<DescribeAllStreamPlayInfoListResponse>;
|
|
627
639
|
/**
|
|
628
640
|
* 查询播放鉴权key。
|
|
@@ -705,8 +717,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
705
717
|
*/
|
|
706
718
|
DescribeTranscodeTaskNum(req: DescribeTranscodeTaskNumRequest, cb?: (error: string, rep: DescribeTranscodeTaskNumResponse) => void): Promise<DescribeTranscodeTaskNumResponse>;
|
|
707
719
|
/**
|
|
708
|
-
|
|
709
|
-
|
|
720
|
+
* 该接口为监控数据接口,数据采集及统计方式与计费数据不同,仅供运营分析使用,不能用于计费对账参考。
|
|
721
|
+
查询所有实时流的推流信息,包括客户端IP,服务端IP,帧率,码率,域名,开始推流时间。
|
|
722
|
+
*/
|
|
710
723
|
DescribeLiveStreamPushInfoList(req: DescribeLiveStreamPushInfoListRequest, cb?: (error: string, rep: DescribeLiveStreamPushInfoListResponse) => void): Promise<DescribeLiveStreamPushInfoListResponse>;
|
|
711
724
|
/**
|
|
712
725
|
* 删除截图模板
|