tencentcloud-sdk-nodejs-live 4.0.1046 → 4.1.6
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/README.md +27 -5
- package/es/index.js +1 -0
- package/es/services/index.js +1 -0
- package/es/services/live/index.js +4 -0
- package/es/services/live/v20180801/index.js +6 -0
- package/es/services/live/v20180801/live_client.js +591 -0
- package/es/services/live/v20180801/live_models.js +0 -0
- package/package.json +26 -8
- package/tencentcloud/services/live/v20180801/index.js +2 -1
- package/tencentcloud/services/live/v20180801/live_client.js +2 -1
- package/tencentcloud/services/live/v20180801/live_models.d.ts +4 -12
- package/index.d.ts +0 -2
- package/index.js +0 -6
- package/prettier.config.js +0 -38
- package/src/index.ts +0 -1
- package/src/services/index.ts +0 -1
- package/src/services/live/index.ts +0 -5
- package/src/services/live/v20180801/index.ts +0 -6
- package/src/services/live/v20180801/live_client.ts +0 -2603
- package/src/services/live/v20180801/live_models.ts +0 -11670
- package/tsconfig.json +0 -33
- package/typings/index.d.ts +0 -2
package/README.md
CHANGED
|
@@ -44,18 +44,40 @@ npm install tencentcloud-sdk-nodejs-vpc --save
|
|
|
44
44
|
|
|
45
45
|
### 安装全产品 SDK
|
|
46
46
|
|
|
47
|
+
如果项目依赖的云产品较多,可以引入全产品 SDK。
|
|
48
|
+
|
|
47
49
|
```
|
|
48
50
|
npm install tencentcloud-sdk-nodejs --save
|
|
49
51
|
```
|
|
50
52
|
|
|
51
|
-
全产品 SDK
|
|
53
|
+
全产品 SDK 包含所有云产品调用代码和 TypeScript 类型文件,体积偏大。对于体积敏感的场景,推荐安装指定产品 SDK。
|
|
54
|
+
|
|
55
|
+
如果既希望全产品调用,又对包体积比较敏感,可以使用 Slim 版本 SDK。Slim SDK 移除类型文件,并进行了代码压缩,适合体积敏感场景使用:
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
npm install tencentcloud-sdk-slim-nodejs --save
|
|
59
|
+
```
|
|
52
60
|
|
|
53
61
|
## 通过源码包安装
|
|
54
62
|
|
|
55
|
-
1.
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
63
|
+
1. clone 代码到本地:
|
|
64
|
+
```
|
|
65
|
+
git clone https://github.com/tencentcloud/tencentcloud-sdk-nodejs
|
|
66
|
+
# 或者
|
|
67
|
+
git clone https://gitee.com/tencentcloud/tencentcloud-sdk-nodejs
|
|
68
|
+
```
|
|
69
|
+
2. 在项目根目录执行以下命令完成构建:
|
|
70
|
+
```
|
|
71
|
+
npm install && npm run build
|
|
72
|
+
```
|
|
73
|
+
3. 打包 NPM 压缩文件,例如 `tencentcloud-sdk-nodejs-4.0.0.tgz`
|
|
74
|
+
```
|
|
75
|
+
npm pack
|
|
76
|
+
```
|
|
77
|
+
4. 安装包到你的项目里:
|
|
78
|
+
```
|
|
79
|
+
npm install /path/to/tencentcloud-sdk-nodejs/tencentcloud-sdk-nodejs-4.0.0.tgz
|
|
80
|
+
```
|
|
59
81
|
|
|
60
82
|
# 示例
|
|
61
83
|
|
package/es/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./services";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { live } from "./live";
|
|
@@ -0,0 +1,591 @@
|
|
|
1
|
+
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
|
2
|
+
export class Client extends TencentCloudCommon.AbstractClient {
|
|
3
|
+
constructor(clientConfig) {
|
|
4
|
+
super("live.tencentcloudapi.com", "2018-08-01", clientConfig);
|
|
5
|
+
}
|
|
6
|
+
async DescribeCasterList(req, cb) {
|
|
7
|
+
return this.request("DescribeCasterList", req, cb);
|
|
8
|
+
}
|
|
9
|
+
async DropLiveStream(req, cb) {
|
|
10
|
+
return this.request("DropLiveStream", req, cb);
|
|
11
|
+
}
|
|
12
|
+
async DescribeLiveWatermarks(req, cb) {
|
|
13
|
+
return this.request("DescribeLiveWatermarks", req, cb);
|
|
14
|
+
}
|
|
15
|
+
async DescribeConcurrentRecordStreamNum(req, cb) {
|
|
16
|
+
return this.request("DescribeConcurrentRecordStreamNum", req, cb);
|
|
17
|
+
}
|
|
18
|
+
async CreateLiveRecord(req, cb) {
|
|
19
|
+
return this.request("CreateLiveRecord", req, cb);
|
|
20
|
+
}
|
|
21
|
+
async UpdateLiveWatermark(req, cb) {
|
|
22
|
+
return this.request("UpdateLiveWatermark", req, cb);
|
|
23
|
+
}
|
|
24
|
+
async ModifyLiveRecordTemplate(req, cb) {
|
|
25
|
+
return this.request("ModifyLiveRecordTemplate", req, cb);
|
|
26
|
+
}
|
|
27
|
+
async DescribeRecordTask(req, cb) {
|
|
28
|
+
return this.request("DescribeRecordTask", req, cb);
|
|
29
|
+
}
|
|
30
|
+
async StopCasterPvw(req, cb) {
|
|
31
|
+
return this.request("StopCasterPvw", req, cb);
|
|
32
|
+
}
|
|
33
|
+
async CreateLiveWatermarkRule(req, cb) {
|
|
34
|
+
return this.request("CreateLiveWatermarkRule", req, cb);
|
|
35
|
+
}
|
|
36
|
+
async DescribeLiveStreamEventList(req, cb) {
|
|
37
|
+
return this.request("DescribeLiveStreamEventList", req, cb);
|
|
38
|
+
}
|
|
39
|
+
async CreateCommonMixStream(req, cb) {
|
|
40
|
+
return this.request("CreateCommonMixStream", req, cb);
|
|
41
|
+
}
|
|
42
|
+
async DescribeHttpStatusInfoList(req, cb) {
|
|
43
|
+
return this.request("DescribeHttpStatusInfoList", req, cb);
|
|
44
|
+
}
|
|
45
|
+
async DescribeProvinceIspPlayInfoList(req, cb) {
|
|
46
|
+
return this.request("DescribeProvinceIspPlayInfoList", req, cb);
|
|
47
|
+
}
|
|
48
|
+
async ModifyLivePlayDomain(req, cb) {
|
|
49
|
+
return this.request("ModifyLivePlayDomain", req, cb);
|
|
50
|
+
}
|
|
51
|
+
async DescribeStreamPushInfoList(req, cb) {
|
|
52
|
+
return this.request("DescribeStreamPushInfoList", req, cb);
|
|
53
|
+
}
|
|
54
|
+
async StartLiveStreamMonitor(req, cb) {
|
|
55
|
+
return this.request("StartLiveStreamMonitor", req, cb);
|
|
56
|
+
}
|
|
57
|
+
async DescribeLiveSnapshotRules(req, cb) {
|
|
58
|
+
return this.request("DescribeLiveSnapshotRules", req, cb);
|
|
59
|
+
}
|
|
60
|
+
async ReleaseCaster(req, cb) {
|
|
61
|
+
return this.request("ReleaseCaster", req, cb);
|
|
62
|
+
}
|
|
63
|
+
async DescribeTimeShiftStreamList(req, cb) {
|
|
64
|
+
return this.request("DescribeTimeShiftStreamList", req, cb);
|
|
65
|
+
}
|
|
66
|
+
async AddCasterInputInfo(req, cb) {
|
|
67
|
+
return this.request("AddCasterInputInfo", req, cb);
|
|
68
|
+
}
|
|
69
|
+
async CreateLivePadTemplate(req, cb) {
|
|
70
|
+
return this.request("CreateLivePadTemplate", req, cb);
|
|
71
|
+
}
|
|
72
|
+
async DescribeLiveSnapshotTemplates(req, cb) {
|
|
73
|
+
return this.request("DescribeLiveSnapshotTemplates", req, cb);
|
|
74
|
+
}
|
|
75
|
+
async DescribeLiveDomainReferer(req, cb) {
|
|
76
|
+
return this.request("DescribeLiveDomainReferer", req, cb);
|
|
77
|
+
}
|
|
78
|
+
async DescribeLiveTranscodeTemplate(req, cb) {
|
|
79
|
+
return this.request("DescribeLiveTranscodeTemplate", req, cb);
|
|
80
|
+
}
|
|
81
|
+
async DescribeLiveTimeShiftWriteSizeInfoList(req, cb) {
|
|
82
|
+
return this.request("DescribeLiveTimeShiftWriteSizeInfoList", req, cb);
|
|
83
|
+
}
|
|
84
|
+
async ModifyLiveDomainReferer(req, cb) {
|
|
85
|
+
return this.request("ModifyLiveDomainReferer", req, cb);
|
|
86
|
+
}
|
|
87
|
+
async DescribeTopClientIpSumInfoList(req, cb) {
|
|
88
|
+
return this.request("DescribeTopClientIpSumInfoList", req, cb);
|
|
89
|
+
}
|
|
90
|
+
async CreateCasterInputPushUrl(req, cb) {
|
|
91
|
+
return this.request("CreateCasterInputPushUrl", req, cb);
|
|
92
|
+
}
|
|
93
|
+
async DescribeCasterOutputInfos(req, cb) {
|
|
94
|
+
return this.request("DescribeCasterOutputInfos", req, cb);
|
|
95
|
+
}
|
|
96
|
+
async CreateScreenshotTask(req, cb) {
|
|
97
|
+
return this.request("CreateScreenshotTask", req, cb);
|
|
98
|
+
}
|
|
99
|
+
async DescribeLiveRecordTemplates(req, cb) {
|
|
100
|
+
return this.request("DescribeLiveRecordTemplates", req, cb);
|
|
101
|
+
}
|
|
102
|
+
async StopLiveStreamMonitor(req, cb) {
|
|
103
|
+
return this.request("StopLiveStreamMonitor", req, cb);
|
|
104
|
+
}
|
|
105
|
+
async AuthenticateDomainOwner(req, cb) {
|
|
106
|
+
return this.request("AuthenticateDomainOwner", req, cb);
|
|
107
|
+
}
|
|
108
|
+
async ModifyLiveSnapshotTemplate(req, cb) {
|
|
109
|
+
return this.request("ModifyLiveSnapshotTemplate", req, cb);
|
|
110
|
+
}
|
|
111
|
+
async DescribeVisitTopSumInfoList(req, cb) {
|
|
112
|
+
return this.request("DescribeVisitTopSumInfoList", req, cb);
|
|
113
|
+
}
|
|
114
|
+
async ModifyCasterMarkWordInfo(req, cb) {
|
|
115
|
+
return this.request("ModifyCasterMarkWordInfo", req, cb);
|
|
116
|
+
}
|
|
117
|
+
async AddCasterLayoutInfo(req, cb) {
|
|
118
|
+
return this.request("AddCasterLayoutInfo", req, cb);
|
|
119
|
+
}
|
|
120
|
+
async DescribeLiveDomainCert(req, cb) {
|
|
121
|
+
return this.request("DescribeLiveDomainCert", req, cb);
|
|
122
|
+
}
|
|
123
|
+
async AddLiveWatermark(req, cb) {
|
|
124
|
+
return this.request("AddLiveWatermark", req, cb);
|
|
125
|
+
}
|
|
126
|
+
async DescribeAreaBillBandwidthAndFluxList(req, cb) {
|
|
127
|
+
return this.request("DescribeAreaBillBandwidthAndFluxList", req, cb);
|
|
128
|
+
}
|
|
129
|
+
async DescribeCasterMarkWordInfos(req, cb) {
|
|
130
|
+
return this.request("DescribeCasterMarkWordInfos", req, cb);
|
|
131
|
+
}
|
|
132
|
+
async DeleteCasterLayoutInfo(req, cb) {
|
|
133
|
+
return this.request("DeleteCasterLayoutInfo", req, cb);
|
|
134
|
+
}
|
|
135
|
+
async DeleteLiveWatermarkRule(req, cb) {
|
|
136
|
+
return this.request("DeleteLiveWatermarkRule", req, cb);
|
|
137
|
+
}
|
|
138
|
+
async DeleteLivePadTemplate(req, cb) {
|
|
139
|
+
return this.request("DeleteLivePadTemplate", req, cb);
|
|
140
|
+
}
|
|
141
|
+
async DeleteLiveCallbackRule(req, cb) {
|
|
142
|
+
return this.request("DeleteLiveCallbackRule", req, cb);
|
|
143
|
+
}
|
|
144
|
+
async ModifyPullStreamConfig(req, cb) {
|
|
145
|
+
return this.request("ModifyPullStreamConfig", req, cb);
|
|
146
|
+
}
|
|
147
|
+
async CreateLiveSnapshotTemplate(req, cb) {
|
|
148
|
+
return this.request("CreateLiveSnapshotTemplate", req, cb);
|
|
149
|
+
}
|
|
150
|
+
async DescribeLiveStreamOnlineList(req, cb) {
|
|
151
|
+
return this.request("DescribeLiveStreamOnlineList", req, cb);
|
|
152
|
+
}
|
|
153
|
+
async EnableOptimalSwitching(req, cb) {
|
|
154
|
+
return this.request("EnableOptimalSwitching", req, cb);
|
|
155
|
+
}
|
|
156
|
+
async DeleteLiveCallbackTemplate(req, cb) {
|
|
157
|
+
return this.request("DeleteLiveCallbackTemplate", req, cb);
|
|
158
|
+
}
|
|
159
|
+
async ModifyCasterMarkPicInfo(req, cb) {
|
|
160
|
+
return this.request("ModifyCasterMarkPicInfo", req, cb);
|
|
161
|
+
}
|
|
162
|
+
async DescribeCasterPlayUrl(req, cb) {
|
|
163
|
+
return this.request("DescribeCasterPlayUrl", req, cb);
|
|
164
|
+
}
|
|
165
|
+
async DescribeLivePushAuthKey(req, cb) {
|
|
166
|
+
return this.request("DescribeLivePushAuthKey", req, cb);
|
|
167
|
+
}
|
|
168
|
+
async DeletePullStreamConfig(req, cb) {
|
|
169
|
+
return this.request("DeletePullStreamConfig", req, cb);
|
|
170
|
+
}
|
|
171
|
+
async DescribeTimeShiftRecordDetail(req, cb) {
|
|
172
|
+
return this.request("DescribeTimeShiftRecordDetail", req, cb);
|
|
173
|
+
}
|
|
174
|
+
async DescribeLiveRecordTemplate(req, cb) {
|
|
175
|
+
return this.request("DescribeLiveRecordTemplate", req, cb);
|
|
176
|
+
}
|
|
177
|
+
async DescribeLivePadTemplate(req, cb) {
|
|
178
|
+
return this.request("DescribeLivePadTemplate", req, cb);
|
|
179
|
+
}
|
|
180
|
+
async StopScreenshotTask(req, cb) {
|
|
181
|
+
return this.request("StopScreenshotTask", req, cb);
|
|
182
|
+
}
|
|
183
|
+
async AddCasterMarkWordInfo(req, cb) {
|
|
184
|
+
return this.request("AddCasterMarkWordInfo", req, cb);
|
|
185
|
+
}
|
|
186
|
+
async DescribeMonitorReport(req, cb) {
|
|
187
|
+
return this.request("DescribeMonitorReport", req, cb);
|
|
188
|
+
}
|
|
189
|
+
async DescribePullStreamConfigs(req, cb) {
|
|
190
|
+
return this.request("DescribePullStreamConfigs", req, cb);
|
|
191
|
+
}
|
|
192
|
+
async DescribeLiveStreamMonitor(req, cb) {
|
|
193
|
+
return this.request("DescribeLiveStreamMonitor", req, cb);
|
|
194
|
+
}
|
|
195
|
+
async DeleteLiveWatermark(req, cb) {
|
|
196
|
+
return this.request("DeleteLiveWatermark", req, cb);
|
|
197
|
+
}
|
|
198
|
+
async ModifyCaster(req, cb) {
|
|
199
|
+
return this.request("ModifyCaster", req, cb);
|
|
200
|
+
}
|
|
201
|
+
async DescribeLiveDomainCertBindings(req, cb) {
|
|
202
|
+
return this.request("DescribeLiveDomainCertBindings", req, cb);
|
|
203
|
+
}
|
|
204
|
+
async DescribePlayErrorCodeSumInfoList(req, cb) {
|
|
205
|
+
return this.request("DescribePlayErrorCodeSumInfoList", req, cb);
|
|
206
|
+
}
|
|
207
|
+
async AddDelayLiveStream(req, cb) {
|
|
208
|
+
return this.request("AddDelayLiveStream", req, cb);
|
|
209
|
+
}
|
|
210
|
+
async DescribeUploadStreamNums(req, cb) {
|
|
211
|
+
return this.request("DescribeUploadStreamNums", req, cb);
|
|
212
|
+
}
|
|
213
|
+
async DescribeStreamDayPlayInfoList(req, cb) {
|
|
214
|
+
return this.request("DescribeStreamDayPlayInfoList", req, cb);
|
|
215
|
+
}
|
|
216
|
+
async ModifyLivePushAuthKey(req, cb) {
|
|
217
|
+
return this.request("ModifyLivePushAuthKey", req, cb);
|
|
218
|
+
}
|
|
219
|
+
async ModifyLiveTranscodeTemplate(req, cb) {
|
|
220
|
+
return this.request("ModifyLiveTranscodeTemplate", req, cb);
|
|
221
|
+
}
|
|
222
|
+
async DeleteLiveTranscodeRule(req, cb) {
|
|
223
|
+
return this.request("DeleteLiveTranscodeRule", req, cb);
|
|
224
|
+
}
|
|
225
|
+
async DescribeLiveTranscodeTotalInfo(req, cb) {
|
|
226
|
+
return this.request("DescribeLiveTranscodeTotalInfo", req, cb);
|
|
227
|
+
}
|
|
228
|
+
async DeleteLiveSnapshotRule(req, cb) {
|
|
229
|
+
return this.request("DeleteLiveSnapshotRule", req, cb);
|
|
230
|
+
}
|
|
231
|
+
async DeleteLivePullStreamTask(req, cb) {
|
|
232
|
+
return this.request("DeleteLivePullStreamTask", req, cb);
|
|
233
|
+
}
|
|
234
|
+
async DescribeLiveForbidStreamList(req, cb) {
|
|
235
|
+
return this.request("DescribeLiveForbidStreamList", req, cb);
|
|
236
|
+
}
|
|
237
|
+
async ModifyLivePadTemplate(req, cb) {
|
|
238
|
+
return this.request("ModifyLivePadTemplate", req, cb);
|
|
239
|
+
}
|
|
240
|
+
async DescribeLiveWatermark(req, cb) {
|
|
241
|
+
return this.request("DescribeLiveWatermark", req, cb);
|
|
242
|
+
}
|
|
243
|
+
async DescribeLiveCert(req, cb) {
|
|
244
|
+
return this.request("DescribeLiveCert", req, cb);
|
|
245
|
+
}
|
|
246
|
+
async ModifyLiveDomainCertBindings(req, cb) {
|
|
247
|
+
return this.request("ModifyLiveDomainCertBindings", req, cb);
|
|
248
|
+
}
|
|
249
|
+
async DescribeDeliverLogDownList(req, cb) {
|
|
250
|
+
return this.request("DescribeDeliverLogDownList", req, cb);
|
|
251
|
+
}
|
|
252
|
+
async CreateCasterPgm(req, cb) {
|
|
253
|
+
return this.request("CreateCasterPgm", req, cb);
|
|
254
|
+
}
|
|
255
|
+
async ModifyLivePullStreamTask(req, cb) {
|
|
256
|
+
return this.request("ModifyLivePullStreamTask", req, cb);
|
|
257
|
+
}
|
|
258
|
+
async DescribeLiveEnhanceInfoList(req, cb) {
|
|
259
|
+
return this.request("DescribeLiveEnhanceInfoList", req, cb);
|
|
260
|
+
}
|
|
261
|
+
async DescribePullTransformPushInfo(req, cb) {
|
|
262
|
+
return this.request("DescribePullTransformPushInfo", req, cb);
|
|
263
|
+
}
|
|
264
|
+
async CreateLiveCallbackTemplate(req, cb) {
|
|
265
|
+
return this.request("CreateLiveCallbackTemplate", req, cb);
|
|
266
|
+
}
|
|
267
|
+
async DescribeLiveDomains(req, cb) {
|
|
268
|
+
return this.request("DescribeLiveDomains", req, cb);
|
|
269
|
+
}
|
|
270
|
+
async ModifyCasterOutputInfo(req, cb) {
|
|
271
|
+
return this.request("ModifyCasterOutputInfo", req, cb);
|
|
272
|
+
}
|
|
273
|
+
async CreateCasterPvw(req, cb) {
|
|
274
|
+
return this.request("CreateCasterPvw", req, cb);
|
|
275
|
+
}
|
|
276
|
+
async ResumeLiveStream(req, cb) {
|
|
277
|
+
return this.request("ResumeLiveStream", req, cb);
|
|
278
|
+
}
|
|
279
|
+
async DescribeCasterMarkPicInfos(req, cb) {
|
|
280
|
+
return this.request("DescribeCasterMarkPicInfos", req, cb);
|
|
281
|
+
}
|
|
282
|
+
async DescribeLiveCallbackTemplate(req, cb) {
|
|
283
|
+
return this.request("DescribeLiveCallbackTemplate", req, cb);
|
|
284
|
+
}
|
|
285
|
+
async DeleteLiveDomain(req, cb) {
|
|
286
|
+
return this.request("DeleteLiveDomain", req, cb);
|
|
287
|
+
}
|
|
288
|
+
async ModifyLiveCallbackTemplate(req, cb) {
|
|
289
|
+
return this.request("ModifyLiveCallbackTemplate", req, cb);
|
|
290
|
+
}
|
|
291
|
+
async AddCasterMarkPicInfo(req, cb) {
|
|
292
|
+
return this.request("AddCasterMarkPicInfo", req, cb);
|
|
293
|
+
}
|
|
294
|
+
async DeleteLiveTimeShiftTemplate(req, cb) {
|
|
295
|
+
return this.request("DeleteLiveTimeShiftTemplate", req, cb);
|
|
296
|
+
}
|
|
297
|
+
async DescribeGroupProIspPlayInfoList(req, cb) {
|
|
298
|
+
return this.request("DescribeGroupProIspPlayInfoList", req, cb);
|
|
299
|
+
}
|
|
300
|
+
async DescribeStreamPlayInfoList(req, cb) {
|
|
301
|
+
return this.request("DescribeStreamPlayInfoList", req, cb);
|
|
302
|
+
}
|
|
303
|
+
async CreateCaster(req, cb) {
|
|
304
|
+
return this.request("CreateCaster", req, cb);
|
|
305
|
+
}
|
|
306
|
+
async DescribeCasterLayoutInfos(req, cb) {
|
|
307
|
+
return this.request("DescribeCasterLayoutInfos", req, cb);
|
|
308
|
+
}
|
|
309
|
+
async DescribeLivePullStreamTaskStatus(req, cb) {
|
|
310
|
+
return this.request("DescribeLivePullStreamTaskStatus", req, cb);
|
|
311
|
+
}
|
|
312
|
+
async DescribeLiveSnapshotTemplate(req, cb) {
|
|
313
|
+
return this.request("DescribeLiveSnapshotTemplate", req, cb);
|
|
314
|
+
}
|
|
315
|
+
async DescribeLiveCallbackTemplates(req, cb) {
|
|
316
|
+
return this.request("DescribeLiveCallbackTemplates", req, cb);
|
|
317
|
+
}
|
|
318
|
+
async StopRecordTask(req, cb) {
|
|
319
|
+
return this.request("StopRecordTask", req, cb);
|
|
320
|
+
}
|
|
321
|
+
async ModifyLiveTimeShiftTemplate(req, cb) {
|
|
322
|
+
return this.request("ModifyLiveTimeShiftTemplate", req, cb);
|
|
323
|
+
}
|
|
324
|
+
async CreateLiveStreamMonitor(req, cb) {
|
|
325
|
+
return this.request("CreateLiveStreamMonitor", req, cb);
|
|
326
|
+
}
|
|
327
|
+
async CreateLivePadRule(req, cb) {
|
|
328
|
+
return this.request("CreateLivePadRule", req, cb);
|
|
329
|
+
}
|
|
330
|
+
async StopLiveRecord(req, cb) {
|
|
331
|
+
return this.request("StopLiveRecord", req, cb);
|
|
332
|
+
}
|
|
333
|
+
async ModifyLivePlayAuthKey(req, cb) {
|
|
334
|
+
return this.request("ModifyLivePlayAuthKey", req, cb);
|
|
335
|
+
}
|
|
336
|
+
async DeleteCaster(req, cb) {
|
|
337
|
+
return this.request("DeleteCaster", req, cb);
|
|
338
|
+
}
|
|
339
|
+
async DeleteLiveTranscodeTemplate(req, cb) {
|
|
340
|
+
return this.request("DeleteLiveTranscodeTemplate", req, cb);
|
|
341
|
+
}
|
|
342
|
+
async DescribeScreenShotSheetNumList(req, cb) {
|
|
343
|
+
return this.request("DescribeScreenShotSheetNumList", req, cb);
|
|
344
|
+
}
|
|
345
|
+
async UnBindLiveDomainCert(req, cb) {
|
|
346
|
+
return this.request("UnBindLiveDomainCert", req, cb);
|
|
347
|
+
}
|
|
348
|
+
async DeleteRecordTask(req, cb) {
|
|
349
|
+
return this.request("DeleteRecordTask", req, cb);
|
|
350
|
+
}
|
|
351
|
+
async DescribeLiveTranscodeDetailInfo(req, cb) {
|
|
352
|
+
return this.request("DescribeLiveTranscodeDetailInfo", req, cb);
|
|
353
|
+
}
|
|
354
|
+
async DescribeLogDownloadList(req, cb) {
|
|
355
|
+
return this.request("DescribeLogDownloadList", req, cb);
|
|
356
|
+
}
|
|
357
|
+
async DescribeLiveTimeShiftTemplates(req, cb) {
|
|
358
|
+
return this.request("DescribeLiveTimeShiftTemplates", req, cb);
|
|
359
|
+
}
|
|
360
|
+
async DescribeLiveRecordRules(req, cb) {
|
|
361
|
+
return this.request("DescribeLiveRecordRules", req, cb);
|
|
362
|
+
}
|
|
363
|
+
async DeleteCasterOutputInfo(req, cb) {
|
|
364
|
+
return this.request("DeleteCasterOutputInfo", req, cb);
|
|
365
|
+
}
|
|
366
|
+
async ModifyCasterLayoutInfo(req, cb) {
|
|
367
|
+
return this.request("ModifyCasterLayoutInfo", req, cb);
|
|
368
|
+
}
|
|
369
|
+
async AddCasterOutputInfo(req, cb) {
|
|
370
|
+
return this.request("AddCasterOutputInfo", req, cb);
|
|
371
|
+
}
|
|
372
|
+
async DescribeLiveXP2PDetailInfoList(req, cb) {
|
|
373
|
+
return this.request("DescribeLiveXP2PDetailInfoList", req, cb);
|
|
374
|
+
}
|
|
375
|
+
async DescribeLiveDelayInfoList(req, cb) {
|
|
376
|
+
return this.request("DescribeLiveDelayInfoList", req, cb);
|
|
377
|
+
}
|
|
378
|
+
async DescribeLiveTimeShiftRules(req, cb) {
|
|
379
|
+
return this.request("DescribeLiveTimeShiftRules", req, cb);
|
|
380
|
+
}
|
|
381
|
+
async DeleteLiveRecordRule(req, cb) {
|
|
382
|
+
return this.request("DeleteLiveRecordRule", req, cb);
|
|
383
|
+
}
|
|
384
|
+
async DescribeLiveDomain(req, cb) {
|
|
385
|
+
return this.request("DescribeLiveDomain", req, cb);
|
|
386
|
+
}
|
|
387
|
+
async DeleteLivePadRule(req, cb) {
|
|
388
|
+
return this.request("DeleteLivePadRule", req, cb);
|
|
389
|
+
}
|
|
390
|
+
async CreateLiveCallbackRule(req, cb) {
|
|
391
|
+
return this.request("CreateLiveCallbackRule", req, cb);
|
|
392
|
+
}
|
|
393
|
+
async DescribeLiveCallbackRules(req, cb) {
|
|
394
|
+
return this.request("DescribeLiveCallbackRules", req, cb);
|
|
395
|
+
}
|
|
396
|
+
async DescribePlayErrorCodeDetailInfoList(req, cb) {
|
|
397
|
+
return this.request("DescribePlayErrorCodeDetailInfoList", req, cb);
|
|
398
|
+
}
|
|
399
|
+
async DescribeLiveTimeShiftBillInfoList(req, cb) {
|
|
400
|
+
return this.request("DescribeLiveTimeShiftBillInfoList", req, cb);
|
|
401
|
+
}
|
|
402
|
+
async DescribeLiveStreamPublishedList(req, cb) {
|
|
403
|
+
return this.request("DescribeLiveStreamPublishedList", req, cb);
|
|
404
|
+
}
|
|
405
|
+
async DescribeScreenshotTask(req, cb) {
|
|
406
|
+
return this.request("DescribeScreenshotTask", req, cb);
|
|
407
|
+
}
|
|
408
|
+
async DescribeLivePadProcessorList(req, cb) {
|
|
409
|
+
return this.request("DescribeLivePadProcessorList", req, cb);
|
|
410
|
+
}
|
|
411
|
+
async DescribePushBandwidthAndFluxList(req, cb) {
|
|
412
|
+
return this.request("DescribePushBandwidthAndFluxList", req, cb);
|
|
413
|
+
}
|
|
414
|
+
async DeleteScreenshotTask(req, cb) {
|
|
415
|
+
return this.request("DeleteScreenshotTask", req, cb);
|
|
416
|
+
}
|
|
417
|
+
async ForbidLiveStream(req, cb) {
|
|
418
|
+
return this.request("ForbidLiveStream", req, cb);
|
|
419
|
+
}
|
|
420
|
+
async AddLiveDomain(req, cb) {
|
|
421
|
+
return this.request("AddLiveDomain", req, cb);
|
|
422
|
+
}
|
|
423
|
+
async ModifyPullStreamStatus(req, cb) {
|
|
424
|
+
return this.request("ModifyPullStreamStatus", req, cb);
|
|
425
|
+
}
|
|
426
|
+
async DescribeDeliverBandwidthList(req, cb) {
|
|
427
|
+
return this.request("DescribeDeliverBandwidthList", req, cb);
|
|
428
|
+
}
|
|
429
|
+
async SwitchBackupStream(req, cb) {
|
|
430
|
+
return this.request("SwitchBackupStream", req, cb);
|
|
431
|
+
}
|
|
432
|
+
async DescribeLiveDomainPlayInfoList(req, cb) {
|
|
433
|
+
return this.request("DescribeLiveDomainPlayInfoList", req, cb);
|
|
434
|
+
}
|
|
435
|
+
async CreateLiveTimeShiftRule(req, cb) {
|
|
436
|
+
return this.request("CreateLiveTimeShiftRule", req, cb);
|
|
437
|
+
}
|
|
438
|
+
async DescribeCallbackRecordsList(req, cb) {
|
|
439
|
+
return this.request("DescribeCallbackRecordsList", req, cb);
|
|
440
|
+
}
|
|
441
|
+
async CreateLiveRecordRule(req, cb) {
|
|
442
|
+
return this.request("CreateLiveRecordRule", req, cb);
|
|
443
|
+
}
|
|
444
|
+
async CreateLivePullStreamTask(req, cb) {
|
|
445
|
+
return this.request("CreateLivePullStreamTask", req, cb);
|
|
446
|
+
}
|
|
447
|
+
async DescribeLiveTranscodeTemplates(req, cb) {
|
|
448
|
+
return this.request("DescribeLiveTranscodeTemplates", req, cb);
|
|
449
|
+
}
|
|
450
|
+
async CreateLiveRecordTemplate(req, cb) {
|
|
451
|
+
return this.request("CreateLiveRecordTemplate", req, cb);
|
|
452
|
+
}
|
|
453
|
+
async DescribeBillBandwidthAndFluxList(req, cb) {
|
|
454
|
+
return this.request("DescribeBillBandwidthAndFluxList", req, cb);
|
|
455
|
+
}
|
|
456
|
+
async ForbidLiveDomain(req, cb) {
|
|
457
|
+
return this.request("ForbidLiveDomain", req, cb);
|
|
458
|
+
}
|
|
459
|
+
async CreateLiveTranscodeRule(req, cb) {
|
|
460
|
+
return this.request("CreateLiveTranscodeRule", req, cb);
|
|
461
|
+
}
|
|
462
|
+
async DeleteLiveTimeShiftRule(req, cb) {
|
|
463
|
+
return this.request("DeleteLiveTimeShiftRule", req, cb);
|
|
464
|
+
}
|
|
465
|
+
async RestartLivePullStreamTask(req, cb) {
|
|
466
|
+
return this.request("RestartLivePullStreamTask", req, cb);
|
|
467
|
+
}
|
|
468
|
+
async DescribeLivePadTemplates(req, cb) {
|
|
469
|
+
return this.request("DescribeLivePadTemplates", req, cb);
|
|
470
|
+
}
|
|
471
|
+
async DescribeLiveWatermarkRules(req, cb) {
|
|
472
|
+
return this.request("DescribeLiveWatermarkRules", req, cb);
|
|
473
|
+
}
|
|
474
|
+
async DescribeLivePadRules(req, cb) {
|
|
475
|
+
return this.request("DescribeLivePadRules", req, cb);
|
|
476
|
+
}
|
|
477
|
+
async DeleteCasterInputInfo(req, cb) {
|
|
478
|
+
return this.request("DeleteCasterInputInfo", req, cb);
|
|
479
|
+
}
|
|
480
|
+
async DeleteLiveRecord(req, cb) {
|
|
481
|
+
return this.request("DeleteLiveRecord", req, cb);
|
|
482
|
+
}
|
|
483
|
+
async DescribeLiveStreamMonitorList(req, cb) {
|
|
484
|
+
return this.request("DescribeLiveStreamMonitorList", req, cb);
|
|
485
|
+
}
|
|
486
|
+
async CreateLiveSnapshotRule(req, cb) {
|
|
487
|
+
return this.request("CreateLiveSnapshotRule", req, cb);
|
|
488
|
+
}
|
|
489
|
+
async CreateLiveTimeShiftTemplate(req, cb) {
|
|
490
|
+
return this.request("CreateLiveTimeShiftTemplate", req, cb);
|
|
491
|
+
}
|
|
492
|
+
async DeleteLiveStreamMonitor(req, cb) {
|
|
493
|
+
return this.request("DeleteLiveStreamMonitor", req, cb);
|
|
494
|
+
}
|
|
495
|
+
async DescribeCaster(req, cb) {
|
|
496
|
+
return this.request("DescribeCaster", req, cb);
|
|
497
|
+
}
|
|
498
|
+
async DescribeLivePullStreamTasks(req, cb) {
|
|
499
|
+
return this.request("DescribeLivePullStreamTasks", req, cb);
|
|
500
|
+
}
|
|
501
|
+
async StopCasterPgm(req, cb) {
|
|
502
|
+
return this.request("StopCasterPgm", req, cb);
|
|
503
|
+
}
|
|
504
|
+
async DescribeProIspPlaySumInfoList(req, cb) {
|
|
505
|
+
return this.request("DescribeProIspPlaySumInfoList", req, cb);
|
|
506
|
+
}
|
|
507
|
+
async DescribeAllStreamPlayInfoList(req, cb) {
|
|
508
|
+
return this.request("DescribeAllStreamPlayInfoList", req, cb);
|
|
509
|
+
}
|
|
510
|
+
async DescribeLivePlayAuthKey(req, cb) {
|
|
511
|
+
return this.request("DescribeLivePlayAuthKey", req, cb);
|
|
512
|
+
}
|
|
513
|
+
async CreateCasterPgmFromPvw(req, cb) {
|
|
514
|
+
return this.request("CreateCasterPgmFromPvw", req, cb);
|
|
515
|
+
}
|
|
516
|
+
async DescribeCasterTransitionTypes(req, cb) {
|
|
517
|
+
return this.request("DescribeCasterTransitionTypes", req, cb);
|
|
518
|
+
}
|
|
519
|
+
async DescribeCasterDisplayInfo(req, cb) {
|
|
520
|
+
return this.request("DescribeCasterDisplayInfo", req, cb);
|
|
521
|
+
}
|
|
522
|
+
async ModifyLiveStreamMonitor(req, cb) {
|
|
523
|
+
return this.request("ModifyLiveStreamMonitor", req, cb);
|
|
524
|
+
}
|
|
525
|
+
async DescribeCasterUserStatus(req, cb) {
|
|
526
|
+
return this.request("DescribeCasterUserStatus", req, cb);
|
|
527
|
+
}
|
|
528
|
+
async DescribeLiveStreamState(req, cb) {
|
|
529
|
+
return this.request("DescribeLiveStreamState", req, cb);
|
|
530
|
+
}
|
|
531
|
+
async DescribeCasterInputInfos(req, cb) {
|
|
532
|
+
return this.request("DescribeCasterInputInfos", req, cb);
|
|
533
|
+
}
|
|
534
|
+
async DeleteLiveRecordTemplate(req, cb) {
|
|
535
|
+
return this.request("DeleteLiveRecordTemplate", req, cb);
|
|
536
|
+
}
|
|
537
|
+
async CopyCaster(req, cb) {
|
|
538
|
+
return this.request("CopyCaster", req, cb);
|
|
539
|
+
}
|
|
540
|
+
async ModifyCasterInputInfo(req, cb) {
|
|
541
|
+
return this.request("ModifyCasterInputInfo", req, cb);
|
|
542
|
+
}
|
|
543
|
+
async DeleteCasterMarkPicInfo(req, cb) {
|
|
544
|
+
return this.request("DeleteCasterMarkPicInfo", req, cb);
|
|
545
|
+
}
|
|
546
|
+
async DeleteCasterMarkWordInfo(req, cb) {
|
|
547
|
+
return this.request("DeleteCasterMarkWordInfo", req, cb);
|
|
548
|
+
}
|
|
549
|
+
async DescribeBackupStreamList(req, cb) {
|
|
550
|
+
return this.request("DescribeBackupStreamList", req, cb);
|
|
551
|
+
}
|
|
552
|
+
async ResumeDelayLiveStream(req, cb) {
|
|
553
|
+
return this.request("ResumeDelayLiveStream", req, cb);
|
|
554
|
+
}
|
|
555
|
+
async CreateRecordTask(req, cb) {
|
|
556
|
+
return this.request("CreateRecordTask", req, cb);
|
|
557
|
+
}
|
|
558
|
+
async CreateLiveTranscodeTemplate(req, cb) {
|
|
559
|
+
return this.request("CreateLiveTranscodeTemplate", req, cb);
|
|
560
|
+
}
|
|
561
|
+
async DescribeLiveCerts(req, cb) {
|
|
562
|
+
return this.request("DescribeLiveCerts", req, cb);
|
|
563
|
+
}
|
|
564
|
+
async DescribeLiveTranscodeRules(req, cb) {
|
|
565
|
+
return this.request("DescribeLiveTranscodeRules", req, cb);
|
|
566
|
+
}
|
|
567
|
+
async EnableLiveDomain(req, cb) {
|
|
568
|
+
return this.request("EnableLiveDomain", req, cb);
|
|
569
|
+
}
|
|
570
|
+
async CancelCommonMixStream(req, cb) {
|
|
571
|
+
return this.request("CancelCommonMixStream", req, cb);
|
|
572
|
+
}
|
|
573
|
+
async StopLivePadProcessor(req, cb) {
|
|
574
|
+
return this.request("StopLivePadProcessor", req, cb);
|
|
575
|
+
}
|
|
576
|
+
async DescribeLivePackageInfo(req, cb) {
|
|
577
|
+
return this.request("DescribeLivePackageInfo", req, cb);
|
|
578
|
+
}
|
|
579
|
+
async CreatePullStreamConfig(req, cb) {
|
|
580
|
+
return this.request("CreatePullStreamConfig", req, cb);
|
|
581
|
+
}
|
|
582
|
+
async DescribeTranscodeTaskNum(req, cb) {
|
|
583
|
+
return this.request("DescribeTranscodeTaskNum", req, cb);
|
|
584
|
+
}
|
|
585
|
+
async DescribeLiveStreamPushInfoList(req, cb) {
|
|
586
|
+
return this.request("DescribeLiveStreamPushInfoList", req, cb);
|
|
587
|
+
}
|
|
588
|
+
async DeleteLiveSnapshotTemplate(req, cb) {
|
|
589
|
+
return this.request("DeleteLiveSnapshotTemplate", req, cb);
|
|
590
|
+
}
|
|
591
|
+
}
|
|
File without changes
|