tencentcloud-sdk-nodejs-live 4.0.359 → 4.0.362
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 +580 -0
- package/SERVICE_CHANGELOG.md +691 -50
- package/package.json +1 -1
- package/products.md +28 -27
- package/src/services/live/v20180801/live_client.ts +16 -3
- package/src/services/live/v20180801/live_models.ts +105 -37
- package/tencentcloud/services/live/v20180801/live_client.d.ts +6 -2
- package/tencentcloud/services/live/v20180801/live_client.js +7 -1
- package/tencentcloud/services/live/v20180801/live_models.d.ts +91 -32
|
@@ -858,6 +858,15 @@ export interface DescribeScreenShotSheetNumListResponse {
|
|
|
858
858
|
*/
|
|
859
859
|
RequestId?: string;
|
|
860
860
|
}
|
|
861
|
+
/**
|
|
862
|
+
* ForbidLiveStream返回参数结构体
|
|
863
|
+
*/
|
|
864
|
+
export interface ForbidLiveStreamResponse {
|
|
865
|
+
/**
|
|
866
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
867
|
+
*/
|
|
868
|
+
RequestId?: string;
|
|
869
|
+
}
|
|
861
870
|
/**
|
|
862
871
|
* DescribeLiveCert请求参数结构体
|
|
863
872
|
*/
|
|
@@ -2494,6 +2503,31 @@ export interface DescribeConcurrentRecordStreamNumResponse {
|
|
|
2494
2503
|
*/
|
|
2495
2504
|
RequestId?: string;
|
|
2496
2505
|
}
|
|
2506
|
+
/**
|
|
2507
|
+
* DescribeLiveTimeShiftBillInfoList请求参数结构体
|
|
2508
|
+
*/
|
|
2509
|
+
export interface DescribeLiveTimeShiftBillInfoListRequest {
|
|
2510
|
+
/**
|
|
2511
|
+
* UTC开始时间,支持最近三个月的查询,查询时间最长跨度为一个月。
|
|
2512
|
+
|
|
2513
|
+
使用 UTC 格式时间,
|
|
2514
|
+
例如:2019-01-08T10:00:00Z。
|
|
2515
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
2516
|
+
*/
|
|
2517
|
+
StartTime: string;
|
|
2518
|
+
/**
|
|
2519
|
+
* UTC结束时间,支持最近三个月的查询,查询时间最长跨度为一个月。
|
|
2520
|
+
|
|
2521
|
+
使用 UTC 格式时间,
|
|
2522
|
+
例如:2019-01-08T10:00:00Z。
|
|
2523
|
+
注意:北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
2524
|
+
*/
|
|
2525
|
+
EndTime: string;
|
|
2526
|
+
/**
|
|
2527
|
+
* 推流域名列表,若不传递此参数,则表示查询总体数据。
|
|
2528
|
+
*/
|
|
2529
|
+
PushDomains?: Array<string>;
|
|
2530
|
+
}
|
|
2497
2531
|
/**
|
|
2498
2532
|
* 录制任务
|
|
2499
2533
|
*/
|
|
@@ -2563,6 +2597,47 @@ export interface CommonMixInputParam {
|
|
|
2563
2597
|
*/
|
|
2564
2598
|
CropParams?: CommonMixCropParams;
|
|
2565
2599
|
}
|
|
2600
|
+
/**
|
|
2601
|
+
* 水印信息。
|
|
2602
|
+
*/
|
|
2603
|
+
export interface WatermarkInfo {
|
|
2604
|
+
/**
|
|
2605
|
+
* 水印 ID。
|
|
2606
|
+
*/
|
|
2607
|
+
WatermarkId: number;
|
|
2608
|
+
/**
|
|
2609
|
+
* 水印图片 URL。
|
|
2610
|
+
*/
|
|
2611
|
+
PictureUrl: string;
|
|
2612
|
+
/**
|
|
2613
|
+
* 显示位置,X 轴偏移。
|
|
2614
|
+
*/
|
|
2615
|
+
XPosition: number;
|
|
2616
|
+
/**
|
|
2617
|
+
* 显示位置,Y 轴偏移。
|
|
2618
|
+
*/
|
|
2619
|
+
YPosition: number;
|
|
2620
|
+
/**
|
|
2621
|
+
* 水印名称。
|
|
2622
|
+
*/
|
|
2623
|
+
WatermarkName: string;
|
|
2624
|
+
/**
|
|
2625
|
+
* 当前状态。0:未使用,1:使用中。
|
|
2626
|
+
*/
|
|
2627
|
+
Status: number;
|
|
2628
|
+
/**
|
|
2629
|
+
* 添加时间。
|
|
2630
|
+
*/
|
|
2631
|
+
CreateTime: string;
|
|
2632
|
+
/**
|
|
2633
|
+
* 水印宽。
|
|
2634
|
+
*/
|
|
2635
|
+
Width: number;
|
|
2636
|
+
/**
|
|
2637
|
+
* 水印高。
|
|
2638
|
+
*/
|
|
2639
|
+
Height: number;
|
|
2640
|
+
}
|
|
2566
2641
|
/**
|
|
2567
2642
|
* DescribeProvinceIspPlayInfoList返回参数结构体
|
|
2568
2643
|
*/
|
|
@@ -4108,45 +4183,25 @@ export interface DescribeLiveWatermarksResponse {
|
|
|
4108
4183
|
RequestId?: string;
|
|
4109
4184
|
}
|
|
4110
4185
|
/**
|
|
4111
|
-
*
|
|
4186
|
+
* 时移计费明细数据。
|
|
4112
4187
|
*/
|
|
4113
|
-
export interface
|
|
4114
|
-
/**
|
|
4115
|
-
* 水印 ID。
|
|
4116
|
-
*/
|
|
4117
|
-
WatermarkId: number;
|
|
4118
|
-
/**
|
|
4119
|
-
* 水印图片 URL。
|
|
4120
|
-
*/
|
|
4121
|
-
PictureUrl: string;
|
|
4122
|
-
/**
|
|
4123
|
-
* 显示位置,X 轴偏移。
|
|
4124
|
-
*/
|
|
4125
|
-
XPosition: number;
|
|
4126
|
-
/**
|
|
4127
|
-
* 显示位置,Y 轴偏移。
|
|
4128
|
-
*/
|
|
4129
|
-
YPosition: number;
|
|
4188
|
+
export interface TimeShiftBillData {
|
|
4130
4189
|
/**
|
|
4131
|
-
*
|
|
4132
|
-
*/
|
|
4133
|
-
WatermarkName: string;
|
|
4134
|
-
/**
|
|
4135
|
-
* 当前状态。0:未使用,1:使用中。
|
|
4190
|
+
* 推流域名。
|
|
4136
4191
|
*/
|
|
4137
|
-
|
|
4192
|
+
Domain: string;
|
|
4138
4193
|
/**
|
|
4139
|
-
*
|
|
4194
|
+
* 时移文件时长,单位分钟。
|
|
4140
4195
|
*/
|
|
4141
|
-
|
|
4196
|
+
Duration: number;
|
|
4142
4197
|
/**
|
|
4143
|
-
*
|
|
4198
|
+
* 时移配置天数,单位天。
|
|
4144
4199
|
*/
|
|
4145
|
-
|
|
4200
|
+
StoragePeriod: number;
|
|
4146
4201
|
/**
|
|
4147
|
-
*
|
|
4202
|
+
* 时间点,格式: yyyy-mm-ddTHH:MM:SSZ。
|
|
4148
4203
|
*/
|
|
4149
|
-
|
|
4204
|
+
Time: string;
|
|
4150
4205
|
}
|
|
4151
4206
|
/**
|
|
4152
4207
|
* DescribeLiveForbidStreamList请求参数结构体
|
|
@@ -4638,9 +4693,13 @@ export interface CreateLiveRecordRequest {
|
|
|
4638
4693
|
StreamParam?: string;
|
|
4639
4694
|
}
|
|
4640
4695
|
/**
|
|
4641
|
-
*
|
|
4696
|
+
* DescribeLiveTimeShiftBillInfoList返回参数结构体
|
|
4642
4697
|
*/
|
|
4643
|
-
export interface
|
|
4698
|
+
export interface DescribeLiveTimeShiftBillInfoListResponse {
|
|
4699
|
+
/**
|
|
4700
|
+
* 时移计费明细数据。
|
|
4701
|
+
*/
|
|
4702
|
+
DataInfoList: Array<TimeShiftBillData>;
|
|
4644
4703
|
/**
|
|
4645
4704
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4646
4705
|
*/
|