@alicloud/live20161101 1.0.2 → 1.1.1
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/dist/client.d.ts +1138 -153
- package/dist/client.js +2167 -294
- package/dist/client.js.map +1 -1
- package/package.json +4 -4
- package/src/client.ts +2552 -241
package/dist/client.js
CHANGED
|
@@ -1357,6 +1357,66 @@ class AddLiveSnapshotDetectPornConfigResponse extends $tea.Model {
|
|
|
1357
1357
|
}
|
|
1358
1358
|
}
|
|
1359
1359
|
exports.AddLiveSnapshotDetectPornConfigResponse = AddLiveSnapshotDetectPornConfigResponse;
|
|
1360
|
+
class AddLiveSnapshotNotifyConfigRequest extends $tea.Model {
|
|
1361
|
+
constructor(map) {
|
|
1362
|
+
super(map);
|
|
1363
|
+
}
|
|
1364
|
+
static names() {
|
|
1365
|
+
return {
|
|
1366
|
+
domainName: 'DomainName',
|
|
1367
|
+
notifyAuthKey: 'NotifyAuthKey',
|
|
1368
|
+
notifyReqAuth: 'NotifyReqAuth',
|
|
1369
|
+
notifyUrl: 'NotifyUrl',
|
|
1370
|
+
ownerId: 'OwnerId',
|
|
1371
|
+
};
|
|
1372
|
+
}
|
|
1373
|
+
static types() {
|
|
1374
|
+
return {
|
|
1375
|
+
domainName: 'string',
|
|
1376
|
+
notifyAuthKey: 'string',
|
|
1377
|
+
notifyReqAuth: 'string',
|
|
1378
|
+
notifyUrl: 'string',
|
|
1379
|
+
ownerId: 'number',
|
|
1380
|
+
};
|
|
1381
|
+
}
|
|
1382
|
+
}
|
|
1383
|
+
exports.AddLiveSnapshotNotifyConfigRequest = AddLiveSnapshotNotifyConfigRequest;
|
|
1384
|
+
class AddLiveSnapshotNotifyConfigResponseBody extends $tea.Model {
|
|
1385
|
+
constructor(map) {
|
|
1386
|
+
super(map);
|
|
1387
|
+
}
|
|
1388
|
+
static names() {
|
|
1389
|
+
return {
|
|
1390
|
+
requestId: 'RequestId',
|
|
1391
|
+
};
|
|
1392
|
+
}
|
|
1393
|
+
static types() {
|
|
1394
|
+
return {
|
|
1395
|
+
requestId: 'string',
|
|
1396
|
+
};
|
|
1397
|
+
}
|
|
1398
|
+
}
|
|
1399
|
+
exports.AddLiveSnapshotNotifyConfigResponseBody = AddLiveSnapshotNotifyConfigResponseBody;
|
|
1400
|
+
class AddLiveSnapshotNotifyConfigResponse extends $tea.Model {
|
|
1401
|
+
constructor(map) {
|
|
1402
|
+
super(map);
|
|
1403
|
+
}
|
|
1404
|
+
static names() {
|
|
1405
|
+
return {
|
|
1406
|
+
headers: 'headers',
|
|
1407
|
+
statusCode: 'statusCode',
|
|
1408
|
+
body: 'body',
|
|
1409
|
+
};
|
|
1410
|
+
}
|
|
1411
|
+
static types() {
|
|
1412
|
+
return {
|
|
1413
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1414
|
+
statusCode: 'number',
|
|
1415
|
+
body: AddLiveSnapshotNotifyConfigResponseBody,
|
|
1416
|
+
};
|
|
1417
|
+
}
|
|
1418
|
+
}
|
|
1419
|
+
exports.AddLiveSnapshotNotifyConfigResponse = AddLiveSnapshotNotifyConfigResponse;
|
|
1360
1420
|
class AddLiveStreamTranscodeRequest extends $tea.Model {
|
|
1361
1421
|
constructor(map) {
|
|
1362
1422
|
super(map);
|
|
@@ -2293,62 +2353,6 @@ class CloseLiveShiftResponse extends $tea.Model {
|
|
|
2293
2353
|
}
|
|
2294
2354
|
}
|
|
2295
2355
|
exports.CloseLiveShiftResponse = CloseLiveShiftResponse;
|
|
2296
|
-
class CloseMessageGroupRequest extends $tea.Model {
|
|
2297
|
-
constructor(map) {
|
|
2298
|
-
super(map);
|
|
2299
|
-
}
|
|
2300
|
-
static names() {
|
|
2301
|
-
return {
|
|
2302
|
-
appId: 'AppId',
|
|
2303
|
-
groupId: 'GroupId',
|
|
2304
|
-
};
|
|
2305
|
-
}
|
|
2306
|
-
static types() {
|
|
2307
|
-
return {
|
|
2308
|
-
appId: 'string',
|
|
2309
|
-
groupId: 'string',
|
|
2310
|
-
};
|
|
2311
|
-
}
|
|
2312
|
-
}
|
|
2313
|
-
exports.CloseMessageGroupRequest = CloseMessageGroupRequest;
|
|
2314
|
-
class CloseMessageGroupResponseBody extends $tea.Model {
|
|
2315
|
-
constructor(map) {
|
|
2316
|
-
super(map);
|
|
2317
|
-
}
|
|
2318
|
-
static names() {
|
|
2319
|
-
return {
|
|
2320
|
-
requestId: 'RequestId',
|
|
2321
|
-
result: 'Result',
|
|
2322
|
-
};
|
|
2323
|
-
}
|
|
2324
|
-
static types() {
|
|
2325
|
-
return {
|
|
2326
|
-
requestId: 'string',
|
|
2327
|
-
result: CloseMessageGroupResponseBodyResult,
|
|
2328
|
-
};
|
|
2329
|
-
}
|
|
2330
|
-
}
|
|
2331
|
-
exports.CloseMessageGroupResponseBody = CloseMessageGroupResponseBody;
|
|
2332
|
-
class CloseMessageGroupResponse extends $tea.Model {
|
|
2333
|
-
constructor(map) {
|
|
2334
|
-
super(map);
|
|
2335
|
-
}
|
|
2336
|
-
static names() {
|
|
2337
|
-
return {
|
|
2338
|
-
headers: 'headers',
|
|
2339
|
-
statusCode: 'statusCode',
|
|
2340
|
-
body: 'body',
|
|
2341
|
-
};
|
|
2342
|
-
}
|
|
2343
|
-
static types() {
|
|
2344
|
-
return {
|
|
2345
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2346
|
-
statusCode: 'number',
|
|
2347
|
-
body: CloseMessageGroupResponseBody,
|
|
2348
|
-
};
|
|
2349
|
-
}
|
|
2350
|
-
}
|
|
2351
|
-
exports.CloseMessageGroupResponse = CloseMessageGroupResponse;
|
|
2352
2356
|
class CopyCasterRequest extends $tea.Model {
|
|
2353
2357
|
constructor(map) {
|
|
2354
2358
|
super(map);
|
|
@@ -2849,6 +2853,84 @@ class CreateLiveTranscodeTemplateResponse extends $tea.Model {
|
|
|
2849
2853
|
}
|
|
2850
2854
|
}
|
|
2851
2855
|
exports.CreateLiveTranscodeTemplateResponse = CreateLiveTranscodeTemplateResponse;
|
|
2856
|
+
class CreateMessageAppRequest extends $tea.Model {
|
|
2857
|
+
constructor(map) {
|
|
2858
|
+
super(map);
|
|
2859
|
+
}
|
|
2860
|
+
static names() {
|
|
2861
|
+
return {
|
|
2862
|
+
appConfig: 'AppConfig',
|
|
2863
|
+
appName: 'AppName',
|
|
2864
|
+
extension: 'Extension',
|
|
2865
|
+
};
|
|
2866
|
+
}
|
|
2867
|
+
static types() {
|
|
2868
|
+
return {
|
|
2869
|
+
appConfig: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2870
|
+
appName: 'string',
|
|
2871
|
+
extension: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2872
|
+
};
|
|
2873
|
+
}
|
|
2874
|
+
}
|
|
2875
|
+
exports.CreateMessageAppRequest = CreateMessageAppRequest;
|
|
2876
|
+
class CreateMessageAppShrinkRequest extends $tea.Model {
|
|
2877
|
+
constructor(map) {
|
|
2878
|
+
super(map);
|
|
2879
|
+
}
|
|
2880
|
+
static names() {
|
|
2881
|
+
return {
|
|
2882
|
+
appConfigShrink: 'AppConfig',
|
|
2883
|
+
appName: 'AppName',
|
|
2884
|
+
extensionShrink: 'Extension',
|
|
2885
|
+
};
|
|
2886
|
+
}
|
|
2887
|
+
static types() {
|
|
2888
|
+
return {
|
|
2889
|
+
appConfigShrink: 'string',
|
|
2890
|
+
appName: 'string',
|
|
2891
|
+
extensionShrink: 'string',
|
|
2892
|
+
};
|
|
2893
|
+
}
|
|
2894
|
+
}
|
|
2895
|
+
exports.CreateMessageAppShrinkRequest = CreateMessageAppShrinkRequest;
|
|
2896
|
+
class CreateMessageAppResponseBody extends $tea.Model {
|
|
2897
|
+
constructor(map) {
|
|
2898
|
+
super(map);
|
|
2899
|
+
}
|
|
2900
|
+
static names() {
|
|
2901
|
+
return {
|
|
2902
|
+
requestId: 'RequestId',
|
|
2903
|
+
result: 'Result',
|
|
2904
|
+
};
|
|
2905
|
+
}
|
|
2906
|
+
static types() {
|
|
2907
|
+
return {
|
|
2908
|
+
requestId: 'string',
|
|
2909
|
+
result: CreateMessageAppResponseBodyResult,
|
|
2910
|
+
};
|
|
2911
|
+
}
|
|
2912
|
+
}
|
|
2913
|
+
exports.CreateMessageAppResponseBody = CreateMessageAppResponseBody;
|
|
2914
|
+
class CreateMessageAppResponse extends $tea.Model {
|
|
2915
|
+
constructor(map) {
|
|
2916
|
+
super(map);
|
|
2917
|
+
}
|
|
2918
|
+
static names() {
|
|
2919
|
+
return {
|
|
2920
|
+
headers: 'headers',
|
|
2921
|
+
statusCode: 'statusCode',
|
|
2922
|
+
body: 'body',
|
|
2923
|
+
};
|
|
2924
|
+
}
|
|
2925
|
+
static types() {
|
|
2926
|
+
return {
|
|
2927
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2928
|
+
statusCode: 'number',
|
|
2929
|
+
body: CreateMessageAppResponseBody,
|
|
2930
|
+
};
|
|
2931
|
+
}
|
|
2932
|
+
}
|
|
2933
|
+
exports.CreateMessageAppResponse = CreateMessageAppResponse;
|
|
2852
2934
|
class CreateMessageGroupRequest extends $tea.Model {
|
|
2853
2935
|
constructor(map) {
|
|
2854
2936
|
super(map);
|
|
@@ -4421,6 +4503,60 @@ class DeleteLiveSnapshotDetectPornConfigResponse extends $tea.Model {
|
|
|
4421
4503
|
}
|
|
4422
4504
|
}
|
|
4423
4505
|
exports.DeleteLiveSnapshotDetectPornConfigResponse = DeleteLiveSnapshotDetectPornConfigResponse;
|
|
4506
|
+
class DeleteLiveSnapshotNotifyConfigRequest extends $tea.Model {
|
|
4507
|
+
constructor(map) {
|
|
4508
|
+
super(map);
|
|
4509
|
+
}
|
|
4510
|
+
static names() {
|
|
4511
|
+
return {
|
|
4512
|
+
domainName: 'DomainName',
|
|
4513
|
+
ownerId: 'OwnerId',
|
|
4514
|
+
};
|
|
4515
|
+
}
|
|
4516
|
+
static types() {
|
|
4517
|
+
return {
|
|
4518
|
+
domainName: 'string',
|
|
4519
|
+
ownerId: 'number',
|
|
4520
|
+
};
|
|
4521
|
+
}
|
|
4522
|
+
}
|
|
4523
|
+
exports.DeleteLiveSnapshotNotifyConfigRequest = DeleteLiveSnapshotNotifyConfigRequest;
|
|
4524
|
+
class DeleteLiveSnapshotNotifyConfigResponseBody extends $tea.Model {
|
|
4525
|
+
constructor(map) {
|
|
4526
|
+
super(map);
|
|
4527
|
+
}
|
|
4528
|
+
static names() {
|
|
4529
|
+
return {
|
|
4530
|
+
requestId: 'RequestId',
|
|
4531
|
+
};
|
|
4532
|
+
}
|
|
4533
|
+
static types() {
|
|
4534
|
+
return {
|
|
4535
|
+
requestId: 'string',
|
|
4536
|
+
};
|
|
4537
|
+
}
|
|
4538
|
+
}
|
|
4539
|
+
exports.DeleteLiveSnapshotNotifyConfigResponseBody = DeleteLiveSnapshotNotifyConfigResponseBody;
|
|
4540
|
+
class DeleteLiveSnapshotNotifyConfigResponse extends $tea.Model {
|
|
4541
|
+
constructor(map) {
|
|
4542
|
+
super(map);
|
|
4543
|
+
}
|
|
4544
|
+
static names() {
|
|
4545
|
+
return {
|
|
4546
|
+
headers: 'headers',
|
|
4547
|
+
statusCode: 'statusCode',
|
|
4548
|
+
body: 'body',
|
|
4549
|
+
};
|
|
4550
|
+
}
|
|
4551
|
+
static types() {
|
|
4552
|
+
return {
|
|
4553
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4554
|
+
statusCode: 'number',
|
|
4555
|
+
body: DeleteLiveSnapshotNotifyConfigResponseBody,
|
|
4556
|
+
};
|
|
4557
|
+
}
|
|
4558
|
+
}
|
|
4559
|
+
exports.DeleteLiveSnapshotNotifyConfigResponse = DeleteLiveSnapshotNotifyConfigResponse;
|
|
4424
4560
|
class DeleteLiveSpecificStagingConfigRequest extends $tea.Model {
|
|
4425
4561
|
constructor(map) {
|
|
4426
4562
|
super(map);
|
|
@@ -6138,6 +6274,7 @@ class DescribeDomainUsageDataRequest extends $tea.Model {
|
|
|
6138
6274
|
static names() {
|
|
6139
6275
|
return {
|
|
6140
6276
|
area: 'Area',
|
|
6277
|
+
dataProtocol: 'DataProtocol',
|
|
6141
6278
|
domainName: 'DomainName',
|
|
6142
6279
|
endTime: 'EndTime',
|
|
6143
6280
|
field: 'Field',
|
|
@@ -6150,6 +6287,7 @@ class DescribeDomainUsageDataRequest extends $tea.Model {
|
|
|
6150
6287
|
static types() {
|
|
6151
6288
|
return {
|
|
6152
6289
|
area: 'string',
|
|
6290
|
+
dataProtocol: 'string',
|
|
6153
6291
|
domainName: 'string',
|
|
6154
6292
|
endTime: 'string',
|
|
6155
6293
|
field: 'string',
|
|
@@ -6171,9 +6309,9 @@ class DescribeDomainUsageDataResponseBody extends $tea.Model {
|
|
|
6171
6309
|
dataInterval: 'DataInterval',
|
|
6172
6310
|
domainName: 'DomainName',
|
|
6173
6311
|
endTime: 'EndTime',
|
|
6174
|
-
field: 'Field',
|
|
6175
6312
|
requestId: 'RequestId',
|
|
6176
6313
|
startTime: 'StartTime',
|
|
6314
|
+
type: 'Type',
|
|
6177
6315
|
usageDataPerInterval: 'UsageDataPerInterval',
|
|
6178
6316
|
};
|
|
6179
6317
|
}
|
|
@@ -6183,9 +6321,9 @@ class DescribeDomainUsageDataResponseBody extends $tea.Model {
|
|
|
6183
6321
|
dataInterval: 'string',
|
|
6184
6322
|
domainName: 'string',
|
|
6185
6323
|
endTime: 'string',
|
|
6186
|
-
field: 'string',
|
|
6187
6324
|
requestId: 'string',
|
|
6188
6325
|
startTime: 'string',
|
|
6326
|
+
type: 'string',
|
|
6189
6327
|
usageDataPerInterval: DescribeDomainUsageDataResponseBodyUsageDataPerInterval,
|
|
6190
6328
|
};
|
|
6191
6329
|
}
|
|
@@ -9297,109 +9435,49 @@ class DescribeLiveSnapshotDetectPornConfigResponse extends $tea.Model {
|
|
|
9297
9435
|
}
|
|
9298
9436
|
}
|
|
9299
9437
|
exports.DescribeLiveSnapshotDetectPornConfigResponse = DescribeLiveSnapshotDetectPornConfigResponse;
|
|
9300
|
-
class
|
|
9438
|
+
class DescribeLiveSnapshotNotifyConfigRequest extends $tea.Model {
|
|
9301
9439
|
constructor(map) {
|
|
9302
9440
|
super(map);
|
|
9303
9441
|
}
|
|
9304
9442
|
static names() {
|
|
9305
9443
|
return {
|
|
9306
|
-
appName: 'AppName',
|
|
9307
9444
|
domainName: 'DomainName',
|
|
9308
|
-
endTime: 'EndTime',
|
|
9309
9445
|
ownerId: 'OwnerId',
|
|
9310
|
-
securityToken: 'SecurityToken',
|
|
9311
|
-
startTime: 'StartTime',
|
|
9312
|
-
streamName: 'StreamName',
|
|
9313
9446
|
};
|
|
9314
9447
|
}
|
|
9315
9448
|
static types() {
|
|
9316
9449
|
return {
|
|
9317
|
-
appName: 'string',
|
|
9318
9450
|
domainName: 'string',
|
|
9319
|
-
endTime: 'string',
|
|
9320
9451
|
ownerId: 'number',
|
|
9321
|
-
securityToken: 'string',
|
|
9322
|
-
startTime: 'string',
|
|
9323
|
-
streamName: 'string',
|
|
9324
|
-
};
|
|
9325
|
-
}
|
|
9326
|
-
}
|
|
9327
|
-
exports.DescribeLiveStreamBitRateDataRequest = DescribeLiveStreamBitRateDataRequest;
|
|
9328
|
-
class DescribeLiveStreamBitRateDataResponseBody extends $tea.Model {
|
|
9329
|
-
constructor(map) {
|
|
9330
|
-
super(map);
|
|
9331
|
-
}
|
|
9332
|
-
static names() {
|
|
9333
|
-
return {
|
|
9334
|
-
frameRateAndBitRateInfos: 'FrameRateAndBitRateInfos',
|
|
9335
|
-
requestId: 'RequestId',
|
|
9336
|
-
};
|
|
9337
|
-
}
|
|
9338
|
-
static types() {
|
|
9339
|
-
return {
|
|
9340
|
-
frameRateAndBitRateInfos: DescribeLiveStreamBitRateDataResponseBodyFrameRateAndBitRateInfos,
|
|
9341
|
-
requestId: 'string',
|
|
9342
|
-
};
|
|
9343
|
-
}
|
|
9344
|
-
}
|
|
9345
|
-
exports.DescribeLiveStreamBitRateDataResponseBody = DescribeLiveStreamBitRateDataResponseBody;
|
|
9346
|
-
class DescribeLiveStreamBitRateDataResponse extends $tea.Model {
|
|
9347
|
-
constructor(map) {
|
|
9348
|
-
super(map);
|
|
9349
|
-
}
|
|
9350
|
-
static names() {
|
|
9351
|
-
return {
|
|
9352
|
-
headers: 'headers',
|
|
9353
|
-
statusCode: 'statusCode',
|
|
9354
|
-
body: 'body',
|
|
9355
|
-
};
|
|
9356
|
-
}
|
|
9357
|
-
static types() {
|
|
9358
|
-
return {
|
|
9359
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9360
|
-
statusCode: 'number',
|
|
9361
|
-
body: DescribeLiveStreamBitRateDataResponseBody,
|
|
9362
9452
|
};
|
|
9363
9453
|
}
|
|
9364
9454
|
}
|
|
9365
|
-
exports.
|
|
9366
|
-
class
|
|
9455
|
+
exports.DescribeLiveSnapshotNotifyConfigRequest = DescribeLiveSnapshotNotifyConfigRequest;
|
|
9456
|
+
class DescribeLiveSnapshotNotifyConfigResponseBody extends $tea.Model {
|
|
9367
9457
|
constructor(map) {
|
|
9368
9458
|
super(map);
|
|
9369
9459
|
}
|
|
9370
9460
|
static names() {
|
|
9371
9461
|
return {
|
|
9372
9462
|
domainName: 'DomainName',
|
|
9373
|
-
|
|
9374
|
-
|
|
9375
|
-
|
|
9376
|
-
static types() {
|
|
9377
|
-
return {
|
|
9378
|
-
domainName: 'string',
|
|
9379
|
-
ownerId: 'number',
|
|
9380
|
-
};
|
|
9381
|
-
}
|
|
9382
|
-
}
|
|
9383
|
-
exports.DescribeLiveStreamCountRequest = DescribeLiveStreamCountRequest;
|
|
9384
|
-
class DescribeLiveStreamCountResponseBody extends $tea.Model {
|
|
9385
|
-
constructor(map) {
|
|
9386
|
-
super(map);
|
|
9387
|
-
}
|
|
9388
|
-
static names() {
|
|
9389
|
-
return {
|
|
9463
|
+
notifyAuthKey: 'NotifyAuthKey',
|
|
9464
|
+
notifyReqAuth: 'NotifyReqAuth',
|
|
9465
|
+
notifyUrl: 'NotifyUrl',
|
|
9390
9466
|
requestId: 'RequestId',
|
|
9391
|
-
streamCountInfos: 'StreamCountInfos',
|
|
9392
9467
|
};
|
|
9393
9468
|
}
|
|
9394
9469
|
static types() {
|
|
9395
9470
|
return {
|
|
9471
|
+
domainName: 'string',
|
|
9472
|
+
notifyAuthKey: 'string',
|
|
9473
|
+
notifyReqAuth: 'string',
|
|
9474
|
+
notifyUrl: 'string',
|
|
9396
9475
|
requestId: 'string',
|
|
9397
|
-
streamCountInfos: DescribeLiveStreamCountResponseBodyStreamCountInfos,
|
|
9398
9476
|
};
|
|
9399
9477
|
}
|
|
9400
9478
|
}
|
|
9401
|
-
exports.
|
|
9402
|
-
class
|
|
9479
|
+
exports.DescribeLiveSnapshotNotifyConfigResponseBody = DescribeLiveSnapshotNotifyConfigResponseBody;
|
|
9480
|
+
class DescribeLiveSnapshotNotifyConfigResponse extends $tea.Model {
|
|
9403
9481
|
constructor(map) {
|
|
9404
9482
|
super(map);
|
|
9405
9483
|
}
|
|
@@ -9414,12 +9492,12 @@ class DescribeLiveStreamCountResponse extends $tea.Model {
|
|
|
9414
9492
|
return {
|
|
9415
9493
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9416
9494
|
statusCode: 'number',
|
|
9417
|
-
body:
|
|
9495
|
+
body: DescribeLiveSnapshotNotifyConfigResponseBody,
|
|
9418
9496
|
};
|
|
9419
9497
|
}
|
|
9420
9498
|
}
|
|
9421
|
-
exports.
|
|
9422
|
-
class
|
|
9499
|
+
exports.DescribeLiveSnapshotNotifyConfigResponse = DescribeLiveSnapshotNotifyConfigResponse;
|
|
9500
|
+
class DescribeLiveStreamAuthCheckingRequest extends $tea.Model {
|
|
9423
9501
|
constructor(map) {
|
|
9424
9502
|
super(map);
|
|
9425
9503
|
}
|
|
@@ -9427,39 +9505,39 @@ class DescribeLiveStreamDelayConfigRequest extends $tea.Model {
|
|
|
9427
9505
|
return {
|
|
9428
9506
|
domainName: 'DomainName',
|
|
9429
9507
|
ownerId: 'OwnerId',
|
|
9508
|
+
url: 'Url',
|
|
9430
9509
|
};
|
|
9431
9510
|
}
|
|
9432
9511
|
static types() {
|
|
9433
9512
|
return {
|
|
9434
9513
|
domainName: 'string',
|
|
9435
9514
|
ownerId: 'number',
|
|
9515
|
+
url: 'string',
|
|
9436
9516
|
};
|
|
9437
9517
|
}
|
|
9438
9518
|
}
|
|
9439
|
-
exports.
|
|
9440
|
-
class
|
|
9519
|
+
exports.DescribeLiveStreamAuthCheckingRequest = DescribeLiveStreamAuthCheckingRequest;
|
|
9520
|
+
class DescribeLiveStreamAuthCheckingResponseBody extends $tea.Model {
|
|
9441
9521
|
constructor(map) {
|
|
9442
9522
|
super(map);
|
|
9443
9523
|
}
|
|
9444
9524
|
static names() {
|
|
9445
9525
|
return {
|
|
9446
|
-
|
|
9447
|
-
liveStreamHlsDelayConfig: 'LiveStreamHlsDelayConfig',
|
|
9448
|
-
liveStreamRtmpDelayConfig: 'LiveStreamRtmpDelayConfig',
|
|
9526
|
+
description: 'Description',
|
|
9449
9527
|
requestId: 'RequestId',
|
|
9528
|
+
status: 'Status',
|
|
9450
9529
|
};
|
|
9451
9530
|
}
|
|
9452
9531
|
static types() {
|
|
9453
9532
|
return {
|
|
9454
|
-
|
|
9455
|
-
liveStreamHlsDelayConfig: DescribeLiveStreamDelayConfigResponseBodyLiveStreamHlsDelayConfig,
|
|
9456
|
-
liveStreamRtmpDelayConfig: DescribeLiveStreamDelayConfigResponseBodyLiveStreamRtmpDelayConfig,
|
|
9533
|
+
description: 'string',
|
|
9457
9534
|
requestId: 'string',
|
|
9535
|
+
status: 'string',
|
|
9458
9536
|
};
|
|
9459
9537
|
}
|
|
9460
9538
|
}
|
|
9461
|
-
exports.
|
|
9462
|
-
class
|
|
9539
|
+
exports.DescribeLiveStreamAuthCheckingResponseBody = DescribeLiveStreamAuthCheckingResponseBody;
|
|
9540
|
+
class DescribeLiveStreamAuthCheckingResponse extends $tea.Model {
|
|
9463
9541
|
constructor(map) {
|
|
9464
9542
|
super(map);
|
|
9465
9543
|
}
|
|
@@ -9474,12 +9552,194 @@ class DescribeLiveStreamDelayConfigResponse extends $tea.Model {
|
|
|
9474
9552
|
return {
|
|
9475
9553
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9476
9554
|
statusCode: 'number',
|
|
9477
|
-
body:
|
|
9555
|
+
body: DescribeLiveStreamAuthCheckingResponseBody,
|
|
9478
9556
|
};
|
|
9479
9557
|
}
|
|
9480
9558
|
}
|
|
9481
|
-
exports.
|
|
9482
|
-
class
|
|
9559
|
+
exports.DescribeLiveStreamAuthCheckingResponse = DescribeLiveStreamAuthCheckingResponse;
|
|
9560
|
+
class DescribeLiveStreamBitRateDataRequest extends $tea.Model {
|
|
9561
|
+
constructor(map) {
|
|
9562
|
+
super(map);
|
|
9563
|
+
}
|
|
9564
|
+
static names() {
|
|
9565
|
+
return {
|
|
9566
|
+
appName: 'AppName',
|
|
9567
|
+
domainName: 'DomainName',
|
|
9568
|
+
endTime: 'EndTime',
|
|
9569
|
+
ownerId: 'OwnerId',
|
|
9570
|
+
securityToken: 'SecurityToken',
|
|
9571
|
+
startTime: 'StartTime',
|
|
9572
|
+
streamName: 'StreamName',
|
|
9573
|
+
};
|
|
9574
|
+
}
|
|
9575
|
+
static types() {
|
|
9576
|
+
return {
|
|
9577
|
+
appName: 'string',
|
|
9578
|
+
domainName: 'string',
|
|
9579
|
+
endTime: 'string',
|
|
9580
|
+
ownerId: 'number',
|
|
9581
|
+
securityToken: 'string',
|
|
9582
|
+
startTime: 'string',
|
|
9583
|
+
streamName: 'string',
|
|
9584
|
+
};
|
|
9585
|
+
}
|
|
9586
|
+
}
|
|
9587
|
+
exports.DescribeLiveStreamBitRateDataRequest = DescribeLiveStreamBitRateDataRequest;
|
|
9588
|
+
class DescribeLiveStreamBitRateDataResponseBody extends $tea.Model {
|
|
9589
|
+
constructor(map) {
|
|
9590
|
+
super(map);
|
|
9591
|
+
}
|
|
9592
|
+
static names() {
|
|
9593
|
+
return {
|
|
9594
|
+
frameRateAndBitRateInfos: 'FrameRateAndBitRateInfos',
|
|
9595
|
+
requestId: 'RequestId',
|
|
9596
|
+
};
|
|
9597
|
+
}
|
|
9598
|
+
static types() {
|
|
9599
|
+
return {
|
|
9600
|
+
frameRateAndBitRateInfos: DescribeLiveStreamBitRateDataResponseBodyFrameRateAndBitRateInfos,
|
|
9601
|
+
requestId: 'string',
|
|
9602
|
+
};
|
|
9603
|
+
}
|
|
9604
|
+
}
|
|
9605
|
+
exports.DescribeLiveStreamBitRateDataResponseBody = DescribeLiveStreamBitRateDataResponseBody;
|
|
9606
|
+
class DescribeLiveStreamBitRateDataResponse extends $tea.Model {
|
|
9607
|
+
constructor(map) {
|
|
9608
|
+
super(map);
|
|
9609
|
+
}
|
|
9610
|
+
static names() {
|
|
9611
|
+
return {
|
|
9612
|
+
headers: 'headers',
|
|
9613
|
+
statusCode: 'statusCode',
|
|
9614
|
+
body: 'body',
|
|
9615
|
+
};
|
|
9616
|
+
}
|
|
9617
|
+
static types() {
|
|
9618
|
+
return {
|
|
9619
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9620
|
+
statusCode: 'number',
|
|
9621
|
+
body: DescribeLiveStreamBitRateDataResponseBody,
|
|
9622
|
+
};
|
|
9623
|
+
}
|
|
9624
|
+
}
|
|
9625
|
+
exports.DescribeLiveStreamBitRateDataResponse = DescribeLiveStreamBitRateDataResponse;
|
|
9626
|
+
class DescribeLiveStreamCountRequest extends $tea.Model {
|
|
9627
|
+
constructor(map) {
|
|
9628
|
+
super(map);
|
|
9629
|
+
}
|
|
9630
|
+
static names() {
|
|
9631
|
+
return {
|
|
9632
|
+
domainName: 'DomainName',
|
|
9633
|
+
ownerId: 'OwnerId',
|
|
9634
|
+
};
|
|
9635
|
+
}
|
|
9636
|
+
static types() {
|
|
9637
|
+
return {
|
|
9638
|
+
domainName: 'string',
|
|
9639
|
+
ownerId: 'number',
|
|
9640
|
+
};
|
|
9641
|
+
}
|
|
9642
|
+
}
|
|
9643
|
+
exports.DescribeLiveStreamCountRequest = DescribeLiveStreamCountRequest;
|
|
9644
|
+
class DescribeLiveStreamCountResponseBody extends $tea.Model {
|
|
9645
|
+
constructor(map) {
|
|
9646
|
+
super(map);
|
|
9647
|
+
}
|
|
9648
|
+
static names() {
|
|
9649
|
+
return {
|
|
9650
|
+
requestId: 'RequestId',
|
|
9651
|
+
streamCountInfos: 'StreamCountInfos',
|
|
9652
|
+
};
|
|
9653
|
+
}
|
|
9654
|
+
static types() {
|
|
9655
|
+
return {
|
|
9656
|
+
requestId: 'string',
|
|
9657
|
+
streamCountInfos: DescribeLiveStreamCountResponseBodyStreamCountInfos,
|
|
9658
|
+
};
|
|
9659
|
+
}
|
|
9660
|
+
}
|
|
9661
|
+
exports.DescribeLiveStreamCountResponseBody = DescribeLiveStreamCountResponseBody;
|
|
9662
|
+
class DescribeLiveStreamCountResponse extends $tea.Model {
|
|
9663
|
+
constructor(map) {
|
|
9664
|
+
super(map);
|
|
9665
|
+
}
|
|
9666
|
+
static names() {
|
|
9667
|
+
return {
|
|
9668
|
+
headers: 'headers',
|
|
9669
|
+
statusCode: 'statusCode',
|
|
9670
|
+
body: 'body',
|
|
9671
|
+
};
|
|
9672
|
+
}
|
|
9673
|
+
static types() {
|
|
9674
|
+
return {
|
|
9675
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9676
|
+
statusCode: 'number',
|
|
9677
|
+
body: DescribeLiveStreamCountResponseBody,
|
|
9678
|
+
};
|
|
9679
|
+
}
|
|
9680
|
+
}
|
|
9681
|
+
exports.DescribeLiveStreamCountResponse = DescribeLiveStreamCountResponse;
|
|
9682
|
+
class DescribeLiveStreamDelayConfigRequest extends $tea.Model {
|
|
9683
|
+
constructor(map) {
|
|
9684
|
+
super(map);
|
|
9685
|
+
}
|
|
9686
|
+
static names() {
|
|
9687
|
+
return {
|
|
9688
|
+
domainName: 'DomainName',
|
|
9689
|
+
ownerId: 'OwnerId',
|
|
9690
|
+
};
|
|
9691
|
+
}
|
|
9692
|
+
static types() {
|
|
9693
|
+
return {
|
|
9694
|
+
domainName: 'string',
|
|
9695
|
+
ownerId: 'number',
|
|
9696
|
+
};
|
|
9697
|
+
}
|
|
9698
|
+
}
|
|
9699
|
+
exports.DescribeLiveStreamDelayConfigRequest = DescribeLiveStreamDelayConfigRequest;
|
|
9700
|
+
class DescribeLiveStreamDelayConfigResponseBody extends $tea.Model {
|
|
9701
|
+
constructor(map) {
|
|
9702
|
+
super(map);
|
|
9703
|
+
}
|
|
9704
|
+
static names() {
|
|
9705
|
+
return {
|
|
9706
|
+
liveStreamFlvDelayConfig: 'LiveStreamFlvDelayConfig',
|
|
9707
|
+
liveStreamHlsDelayConfig: 'LiveStreamHlsDelayConfig',
|
|
9708
|
+
liveStreamRtmpDelayConfig: 'LiveStreamRtmpDelayConfig',
|
|
9709
|
+
requestId: 'RequestId',
|
|
9710
|
+
};
|
|
9711
|
+
}
|
|
9712
|
+
static types() {
|
|
9713
|
+
return {
|
|
9714
|
+
liveStreamFlvDelayConfig: DescribeLiveStreamDelayConfigResponseBodyLiveStreamFlvDelayConfig,
|
|
9715
|
+
liveStreamHlsDelayConfig: DescribeLiveStreamDelayConfigResponseBodyLiveStreamHlsDelayConfig,
|
|
9716
|
+
liveStreamRtmpDelayConfig: DescribeLiveStreamDelayConfigResponseBodyLiveStreamRtmpDelayConfig,
|
|
9717
|
+
requestId: 'string',
|
|
9718
|
+
};
|
|
9719
|
+
}
|
|
9720
|
+
}
|
|
9721
|
+
exports.DescribeLiveStreamDelayConfigResponseBody = DescribeLiveStreamDelayConfigResponseBody;
|
|
9722
|
+
class DescribeLiveStreamDelayConfigResponse extends $tea.Model {
|
|
9723
|
+
constructor(map) {
|
|
9724
|
+
super(map);
|
|
9725
|
+
}
|
|
9726
|
+
static names() {
|
|
9727
|
+
return {
|
|
9728
|
+
headers: 'headers',
|
|
9729
|
+
statusCode: 'statusCode',
|
|
9730
|
+
body: 'body',
|
|
9731
|
+
};
|
|
9732
|
+
}
|
|
9733
|
+
static types() {
|
|
9734
|
+
return {
|
|
9735
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9736
|
+
statusCode: 'number',
|
|
9737
|
+
body: DescribeLiveStreamDelayConfigResponseBody,
|
|
9738
|
+
};
|
|
9739
|
+
}
|
|
9740
|
+
}
|
|
9741
|
+
exports.DescribeLiveStreamDelayConfigResponse = DescribeLiveStreamDelayConfigResponse;
|
|
9742
|
+
class DescribeLiveStreamHistoryUserNumRequest extends $tea.Model {
|
|
9483
9743
|
constructor(map) {
|
|
9484
9744
|
super(map);
|
|
9485
9745
|
}
|
|
@@ -10461,6 +10721,84 @@ class DescribeLiveStreamsControlHistoryResponse extends $tea.Model {
|
|
|
10461
10721
|
}
|
|
10462
10722
|
}
|
|
10463
10723
|
exports.DescribeLiveStreamsControlHistoryResponse = DescribeLiveStreamsControlHistoryResponse;
|
|
10724
|
+
class DescribeLiveStreamsNotifyRecordsRequest extends $tea.Model {
|
|
10725
|
+
constructor(map) {
|
|
10726
|
+
super(map);
|
|
10727
|
+
}
|
|
10728
|
+
static names() {
|
|
10729
|
+
return {
|
|
10730
|
+
appName: 'AppName',
|
|
10731
|
+
domainName: 'DomainName',
|
|
10732
|
+
endTime: 'EndTime',
|
|
10733
|
+
ownerId: 'OwnerId',
|
|
10734
|
+
pageNumber: 'PageNumber',
|
|
10735
|
+
pageSize: 'PageSize',
|
|
10736
|
+
startTime: 'StartTime',
|
|
10737
|
+
status: 'Status',
|
|
10738
|
+
streamName: 'StreamName',
|
|
10739
|
+
};
|
|
10740
|
+
}
|
|
10741
|
+
static types() {
|
|
10742
|
+
return {
|
|
10743
|
+
appName: 'string',
|
|
10744
|
+
domainName: 'string',
|
|
10745
|
+
endTime: 'string',
|
|
10746
|
+
ownerId: 'number',
|
|
10747
|
+
pageNumber: 'number',
|
|
10748
|
+
pageSize: 'number',
|
|
10749
|
+
startTime: 'string',
|
|
10750
|
+
status: 'string',
|
|
10751
|
+
streamName: 'string',
|
|
10752
|
+
};
|
|
10753
|
+
}
|
|
10754
|
+
}
|
|
10755
|
+
exports.DescribeLiveStreamsNotifyRecordsRequest = DescribeLiveStreamsNotifyRecordsRequest;
|
|
10756
|
+
class DescribeLiveStreamsNotifyRecordsResponseBody extends $tea.Model {
|
|
10757
|
+
constructor(map) {
|
|
10758
|
+
super(map);
|
|
10759
|
+
}
|
|
10760
|
+
static names() {
|
|
10761
|
+
return {
|
|
10762
|
+
notifyRecordsInfo: 'NotifyRecordsInfo',
|
|
10763
|
+
pageNum: 'PageNum',
|
|
10764
|
+
pageSize: 'PageSize',
|
|
10765
|
+
requestId: 'RequestId',
|
|
10766
|
+
totalNum: 'TotalNum',
|
|
10767
|
+
totalPage: 'TotalPage',
|
|
10768
|
+
};
|
|
10769
|
+
}
|
|
10770
|
+
static types() {
|
|
10771
|
+
return {
|
|
10772
|
+
notifyRecordsInfo: DescribeLiveStreamsNotifyRecordsResponseBodyNotifyRecordsInfo,
|
|
10773
|
+
pageNum: 'number',
|
|
10774
|
+
pageSize: 'number',
|
|
10775
|
+
requestId: 'string',
|
|
10776
|
+
totalNum: 'number',
|
|
10777
|
+
totalPage: 'number',
|
|
10778
|
+
};
|
|
10779
|
+
}
|
|
10780
|
+
}
|
|
10781
|
+
exports.DescribeLiveStreamsNotifyRecordsResponseBody = DescribeLiveStreamsNotifyRecordsResponseBody;
|
|
10782
|
+
class DescribeLiveStreamsNotifyRecordsResponse extends $tea.Model {
|
|
10783
|
+
constructor(map) {
|
|
10784
|
+
super(map);
|
|
10785
|
+
}
|
|
10786
|
+
static names() {
|
|
10787
|
+
return {
|
|
10788
|
+
headers: 'headers',
|
|
10789
|
+
statusCode: 'statusCode',
|
|
10790
|
+
body: 'body',
|
|
10791
|
+
};
|
|
10792
|
+
}
|
|
10793
|
+
static types() {
|
|
10794
|
+
return {
|
|
10795
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10796
|
+
statusCode: 'number',
|
|
10797
|
+
body: DescribeLiveStreamsNotifyRecordsResponseBody,
|
|
10798
|
+
};
|
|
10799
|
+
}
|
|
10800
|
+
}
|
|
10801
|
+
exports.DescribeLiveStreamsNotifyRecordsResponse = DescribeLiveStreamsNotifyRecordsResponse;
|
|
10464
10802
|
class DescribeLiveStreamsNotifyUrlConfigRequest extends $tea.Model {
|
|
10465
10803
|
constructor(map) {
|
|
10466
10804
|
super(map);
|
|
@@ -12939,6 +13277,60 @@ class GetEditingJobInfoResponse extends $tea.Model {
|
|
|
12939
13277
|
}
|
|
12940
13278
|
}
|
|
12941
13279
|
exports.GetEditingJobInfoResponse = GetEditingJobInfoResponse;
|
|
13280
|
+
class GetMessageAppRequest extends $tea.Model {
|
|
13281
|
+
constructor(map) {
|
|
13282
|
+
super(map);
|
|
13283
|
+
}
|
|
13284
|
+
static names() {
|
|
13285
|
+
return {
|
|
13286
|
+
appId: 'AppId',
|
|
13287
|
+
};
|
|
13288
|
+
}
|
|
13289
|
+
static types() {
|
|
13290
|
+
return {
|
|
13291
|
+
appId: 'string',
|
|
13292
|
+
};
|
|
13293
|
+
}
|
|
13294
|
+
}
|
|
13295
|
+
exports.GetMessageAppRequest = GetMessageAppRequest;
|
|
13296
|
+
class GetMessageAppResponseBody extends $tea.Model {
|
|
13297
|
+
constructor(map) {
|
|
13298
|
+
super(map);
|
|
13299
|
+
}
|
|
13300
|
+
static names() {
|
|
13301
|
+
return {
|
|
13302
|
+
requestId: 'RequestId',
|
|
13303
|
+
result: 'Result',
|
|
13304
|
+
};
|
|
13305
|
+
}
|
|
13306
|
+
static types() {
|
|
13307
|
+
return {
|
|
13308
|
+
requestId: 'string',
|
|
13309
|
+
result: GetMessageAppResponseBodyResult,
|
|
13310
|
+
};
|
|
13311
|
+
}
|
|
13312
|
+
}
|
|
13313
|
+
exports.GetMessageAppResponseBody = GetMessageAppResponseBody;
|
|
13314
|
+
class GetMessageAppResponse extends $tea.Model {
|
|
13315
|
+
constructor(map) {
|
|
13316
|
+
super(map);
|
|
13317
|
+
}
|
|
13318
|
+
static names() {
|
|
13319
|
+
return {
|
|
13320
|
+
headers: 'headers',
|
|
13321
|
+
statusCode: 'statusCode',
|
|
13322
|
+
body: 'body',
|
|
13323
|
+
};
|
|
13324
|
+
}
|
|
13325
|
+
static types() {
|
|
13326
|
+
return {
|
|
13327
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
13328
|
+
statusCode: 'number',
|
|
13329
|
+
body: GetMessageAppResponseBody,
|
|
13330
|
+
};
|
|
13331
|
+
}
|
|
13332
|
+
}
|
|
13333
|
+
exports.GetMessageAppResponse = GetMessageAppResponse;
|
|
12942
13334
|
class GetMessageGroupRequest extends $tea.Model {
|
|
12943
13335
|
constructor(map) {
|
|
12944
13336
|
super(map);
|
|
@@ -13055,60 +13447,6 @@ class GetMessageTokenResponse extends $tea.Model {
|
|
|
13055
13447
|
}
|
|
13056
13448
|
}
|
|
13057
13449
|
exports.GetMessageTokenResponse = GetMessageTokenResponse;
|
|
13058
|
-
class GetMessageUserInfoRequest extends $tea.Model {
|
|
13059
|
-
constructor(map) {
|
|
13060
|
-
super(map);
|
|
13061
|
-
}
|
|
13062
|
-
static names() {
|
|
13063
|
-
return {
|
|
13064
|
-
cloudUid: 'CloudUid',
|
|
13065
|
-
};
|
|
13066
|
-
}
|
|
13067
|
-
static types() {
|
|
13068
|
-
return {
|
|
13069
|
-
cloudUid: 'string',
|
|
13070
|
-
};
|
|
13071
|
-
}
|
|
13072
|
-
}
|
|
13073
|
-
exports.GetMessageUserInfoRequest = GetMessageUserInfoRequest;
|
|
13074
|
-
class GetMessageUserInfoResponseBody extends $tea.Model {
|
|
13075
|
-
constructor(map) {
|
|
13076
|
-
super(map);
|
|
13077
|
-
}
|
|
13078
|
-
static names() {
|
|
13079
|
-
return {
|
|
13080
|
-
requestId: 'RequestId',
|
|
13081
|
-
result: 'Result',
|
|
13082
|
-
};
|
|
13083
|
-
}
|
|
13084
|
-
static types() {
|
|
13085
|
-
return {
|
|
13086
|
-
requestId: 'string',
|
|
13087
|
-
result: GetMessageUserInfoResponseBodyResult,
|
|
13088
|
-
};
|
|
13089
|
-
}
|
|
13090
|
-
}
|
|
13091
|
-
exports.GetMessageUserInfoResponseBody = GetMessageUserInfoResponseBody;
|
|
13092
|
-
class GetMessageUserInfoResponse extends $tea.Model {
|
|
13093
|
-
constructor(map) {
|
|
13094
|
-
super(map);
|
|
13095
|
-
}
|
|
13096
|
-
static names() {
|
|
13097
|
-
return {
|
|
13098
|
-
headers: 'headers',
|
|
13099
|
-
statusCode: 'statusCode',
|
|
13100
|
-
body: 'body',
|
|
13101
|
-
};
|
|
13102
|
-
}
|
|
13103
|
-
static types() {
|
|
13104
|
-
return {
|
|
13105
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
13106
|
-
statusCode: 'number',
|
|
13107
|
-
body: GetMessageUserInfoResponseBody,
|
|
13108
|
-
};
|
|
13109
|
-
}
|
|
13110
|
-
}
|
|
13111
|
-
exports.GetMessageUserInfoResponse = GetMessageUserInfoResponse;
|
|
13112
13450
|
class GetMultiRateConfigRequest extends $tea.Model {
|
|
13113
13451
|
constructor(map) {
|
|
13114
13452
|
super(map);
|
|
@@ -13685,6 +14023,7 @@ class ListMessageRequest extends $tea.Model {
|
|
|
13685
14023
|
}
|
|
13686
14024
|
static names() {
|
|
13687
14025
|
return {
|
|
14026
|
+
appId: 'AppId',
|
|
13688
14027
|
groupId: 'GroupId',
|
|
13689
14028
|
pageNum: 'PageNum',
|
|
13690
14029
|
pageSize: 'PageSize',
|
|
@@ -13694,6 +14033,7 @@ class ListMessageRequest extends $tea.Model {
|
|
|
13694
14033
|
}
|
|
13695
14034
|
static types() {
|
|
13696
14035
|
return {
|
|
14036
|
+
appId: 'string',
|
|
13697
14037
|
groupId: 'string',
|
|
13698
14038
|
pageNum: 'number',
|
|
13699
14039
|
pageSize: 'number',
|
|
@@ -13741,12 +14081,71 @@ class ListMessageResponse extends $tea.Model {
|
|
|
13741
14081
|
}
|
|
13742
14082
|
}
|
|
13743
14083
|
exports.ListMessageResponse = ListMessageResponse;
|
|
14084
|
+
class ListMessageAppRequest extends $tea.Model {
|
|
14085
|
+
constructor(map) {
|
|
14086
|
+
super(map);
|
|
14087
|
+
}
|
|
14088
|
+
static names() {
|
|
14089
|
+
return {
|
|
14090
|
+
pageNum: 'PageNum',
|
|
14091
|
+
pageSize: 'PageSize',
|
|
14092
|
+
sortType: 'SortType',
|
|
14093
|
+
};
|
|
14094
|
+
}
|
|
14095
|
+
static types() {
|
|
14096
|
+
return {
|
|
14097
|
+
pageNum: 'number',
|
|
14098
|
+
pageSize: 'number',
|
|
14099
|
+
sortType: 'number',
|
|
14100
|
+
};
|
|
14101
|
+
}
|
|
14102
|
+
}
|
|
14103
|
+
exports.ListMessageAppRequest = ListMessageAppRequest;
|
|
14104
|
+
class ListMessageAppResponseBody extends $tea.Model {
|
|
14105
|
+
constructor(map) {
|
|
14106
|
+
super(map);
|
|
14107
|
+
}
|
|
14108
|
+
static names() {
|
|
14109
|
+
return {
|
|
14110
|
+
requestId: 'RequestId',
|
|
14111
|
+
result: 'Result',
|
|
14112
|
+
};
|
|
14113
|
+
}
|
|
14114
|
+
static types() {
|
|
14115
|
+
return {
|
|
14116
|
+
requestId: 'string',
|
|
14117
|
+
result: ListMessageAppResponseBodyResult,
|
|
14118
|
+
};
|
|
14119
|
+
}
|
|
14120
|
+
}
|
|
14121
|
+
exports.ListMessageAppResponseBody = ListMessageAppResponseBody;
|
|
14122
|
+
class ListMessageAppResponse extends $tea.Model {
|
|
14123
|
+
constructor(map) {
|
|
14124
|
+
super(map);
|
|
14125
|
+
}
|
|
14126
|
+
static names() {
|
|
14127
|
+
return {
|
|
14128
|
+
headers: 'headers',
|
|
14129
|
+
statusCode: 'statusCode',
|
|
14130
|
+
body: 'body',
|
|
14131
|
+
};
|
|
14132
|
+
}
|
|
14133
|
+
static types() {
|
|
14134
|
+
return {
|
|
14135
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
14136
|
+
statusCode: 'number',
|
|
14137
|
+
body: ListMessageAppResponseBody,
|
|
14138
|
+
};
|
|
14139
|
+
}
|
|
14140
|
+
}
|
|
14141
|
+
exports.ListMessageAppResponse = ListMessageAppResponse;
|
|
13744
14142
|
class ListMessageGroupRequest extends $tea.Model {
|
|
13745
14143
|
constructor(map) {
|
|
13746
14144
|
super(map);
|
|
13747
14145
|
}
|
|
13748
14146
|
static names() {
|
|
13749
14147
|
return {
|
|
14148
|
+
appId: 'AppId',
|
|
13750
14149
|
pageNum: 'PageNum',
|
|
13751
14150
|
pageSize: 'PageSize',
|
|
13752
14151
|
sortType: 'SortType',
|
|
@@ -13755,6 +14154,7 @@ class ListMessageGroupRequest extends $tea.Model {
|
|
|
13755
14154
|
}
|
|
13756
14155
|
static types() {
|
|
13757
14156
|
return {
|
|
14157
|
+
appId: 'string',
|
|
13758
14158
|
pageNum: 'number',
|
|
13759
14159
|
pageSize: 'number',
|
|
13760
14160
|
sortType: 'number',
|
|
@@ -13812,7 +14212,6 @@ class ListMessageGroupUserRequest extends $tea.Model {
|
|
|
13812
14212
|
pageNum: 'PageNum',
|
|
13813
14213
|
pageSize: 'PageSize',
|
|
13814
14214
|
sortType: 'SortType',
|
|
13815
|
-
type: 'Type',
|
|
13816
14215
|
};
|
|
13817
14216
|
}
|
|
13818
14217
|
static types() {
|
|
@@ -13822,7 +14221,6 @@ class ListMessageGroupUserRequest extends $tea.Model {
|
|
|
13822
14221
|
pageNum: 'number',
|
|
13823
14222
|
pageSize: 'number',
|
|
13824
14223
|
sortType: 'number',
|
|
13825
|
-
type: 'number',
|
|
13826
14224
|
};
|
|
13827
14225
|
}
|
|
13828
14226
|
}
|
|
@@ -13865,6 +14263,84 @@ class ListMessageGroupUserResponse extends $tea.Model {
|
|
|
13865
14263
|
}
|
|
13866
14264
|
}
|
|
13867
14265
|
exports.ListMessageGroupUserResponse = ListMessageGroupUserResponse;
|
|
14266
|
+
class ListMessageGroupUserByIdRequest extends $tea.Model {
|
|
14267
|
+
constructor(map) {
|
|
14268
|
+
super(map);
|
|
14269
|
+
}
|
|
14270
|
+
static names() {
|
|
14271
|
+
return {
|
|
14272
|
+
appId: 'AppId',
|
|
14273
|
+
groupId: 'GroupId',
|
|
14274
|
+
userIdList: 'UserIdList',
|
|
14275
|
+
};
|
|
14276
|
+
}
|
|
14277
|
+
static types() {
|
|
14278
|
+
return {
|
|
14279
|
+
appId: 'string',
|
|
14280
|
+
groupId: 'string',
|
|
14281
|
+
userIdList: { 'type': 'array', 'itemType': 'string' },
|
|
14282
|
+
};
|
|
14283
|
+
}
|
|
14284
|
+
}
|
|
14285
|
+
exports.ListMessageGroupUserByIdRequest = ListMessageGroupUserByIdRequest;
|
|
14286
|
+
class ListMessageGroupUserByIdShrinkRequest extends $tea.Model {
|
|
14287
|
+
constructor(map) {
|
|
14288
|
+
super(map);
|
|
14289
|
+
}
|
|
14290
|
+
static names() {
|
|
14291
|
+
return {
|
|
14292
|
+
appId: 'AppId',
|
|
14293
|
+
groupId: 'GroupId',
|
|
14294
|
+
userIdListShrink: 'UserIdList',
|
|
14295
|
+
};
|
|
14296
|
+
}
|
|
14297
|
+
static types() {
|
|
14298
|
+
return {
|
|
14299
|
+
appId: 'string',
|
|
14300
|
+
groupId: 'string',
|
|
14301
|
+
userIdListShrink: 'string',
|
|
14302
|
+
};
|
|
14303
|
+
}
|
|
14304
|
+
}
|
|
14305
|
+
exports.ListMessageGroupUserByIdShrinkRequest = ListMessageGroupUserByIdShrinkRequest;
|
|
14306
|
+
class ListMessageGroupUserByIdResponseBody extends $tea.Model {
|
|
14307
|
+
constructor(map) {
|
|
14308
|
+
super(map);
|
|
14309
|
+
}
|
|
14310
|
+
static names() {
|
|
14311
|
+
return {
|
|
14312
|
+
requestId: 'RequestId',
|
|
14313
|
+
result: 'Result',
|
|
14314
|
+
};
|
|
14315
|
+
}
|
|
14316
|
+
static types() {
|
|
14317
|
+
return {
|
|
14318
|
+
requestId: 'string',
|
|
14319
|
+
result: ListMessageGroupUserByIdResponseBodyResult,
|
|
14320
|
+
};
|
|
14321
|
+
}
|
|
14322
|
+
}
|
|
14323
|
+
exports.ListMessageGroupUserByIdResponseBody = ListMessageGroupUserByIdResponseBody;
|
|
14324
|
+
class ListMessageGroupUserByIdResponse extends $tea.Model {
|
|
14325
|
+
constructor(map) {
|
|
14326
|
+
super(map);
|
|
14327
|
+
}
|
|
14328
|
+
static names() {
|
|
14329
|
+
return {
|
|
14330
|
+
headers: 'headers',
|
|
14331
|
+
statusCode: 'statusCode',
|
|
14332
|
+
body: 'body',
|
|
14333
|
+
};
|
|
14334
|
+
}
|
|
14335
|
+
static types() {
|
|
14336
|
+
return {
|
|
14337
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
14338
|
+
statusCode: 'number',
|
|
14339
|
+
body: ListMessageGroupUserByIdResponseBody,
|
|
14340
|
+
};
|
|
14341
|
+
}
|
|
14342
|
+
}
|
|
14343
|
+
exports.ListMessageGroupUserByIdResponse = ListMessageGroupUserByIdResponse;
|
|
13868
14344
|
class ListPlaylistRequest extends $tea.Model {
|
|
13869
14345
|
constructor(map) {
|
|
13870
14346
|
super(map);
|
|
@@ -14757,6 +15233,68 @@ class PublishLiveStagingConfigToProductionResponse extends $tea.Model {
|
|
|
14757
15233
|
}
|
|
14758
15234
|
}
|
|
14759
15235
|
exports.PublishLiveStagingConfigToProductionResponse = PublishLiveStagingConfigToProductionResponse;
|
|
15236
|
+
class QueryMessageAppRequest extends $tea.Model {
|
|
15237
|
+
constructor(map) {
|
|
15238
|
+
super(map);
|
|
15239
|
+
}
|
|
15240
|
+
static names() {
|
|
15241
|
+
return {
|
|
15242
|
+
appId: 'AppId',
|
|
15243
|
+
appName: 'AppName',
|
|
15244
|
+
pageNum: 'PageNum',
|
|
15245
|
+
pageSize: 'PageSize',
|
|
15246
|
+
sortType: 'SortType',
|
|
15247
|
+
};
|
|
15248
|
+
}
|
|
15249
|
+
static types() {
|
|
15250
|
+
return {
|
|
15251
|
+
appId: 'string',
|
|
15252
|
+
appName: 'string',
|
|
15253
|
+
pageNum: 'number',
|
|
15254
|
+
pageSize: 'number',
|
|
15255
|
+
sortType: 'number',
|
|
15256
|
+
};
|
|
15257
|
+
}
|
|
15258
|
+
}
|
|
15259
|
+
exports.QueryMessageAppRequest = QueryMessageAppRequest;
|
|
15260
|
+
class QueryMessageAppResponseBody extends $tea.Model {
|
|
15261
|
+
constructor(map) {
|
|
15262
|
+
super(map);
|
|
15263
|
+
}
|
|
15264
|
+
static names() {
|
|
15265
|
+
return {
|
|
15266
|
+
requestId: 'RequestId',
|
|
15267
|
+
result: 'Result',
|
|
15268
|
+
};
|
|
15269
|
+
}
|
|
15270
|
+
static types() {
|
|
15271
|
+
return {
|
|
15272
|
+
requestId: 'string',
|
|
15273
|
+
result: { 'type': 'array', 'itemType': QueryMessageAppResponseBodyResult },
|
|
15274
|
+
};
|
|
15275
|
+
}
|
|
15276
|
+
}
|
|
15277
|
+
exports.QueryMessageAppResponseBody = QueryMessageAppResponseBody;
|
|
15278
|
+
class QueryMessageAppResponse extends $tea.Model {
|
|
15279
|
+
constructor(map) {
|
|
15280
|
+
super(map);
|
|
15281
|
+
}
|
|
15282
|
+
static names() {
|
|
15283
|
+
return {
|
|
15284
|
+
headers: 'headers',
|
|
15285
|
+
statusCode: 'statusCode',
|
|
15286
|
+
body: 'body',
|
|
15287
|
+
};
|
|
15288
|
+
}
|
|
15289
|
+
static types() {
|
|
15290
|
+
return {
|
|
15291
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
15292
|
+
statusCode: 'number',
|
|
15293
|
+
body: QueryMessageAppResponseBody,
|
|
15294
|
+
};
|
|
15295
|
+
}
|
|
15296
|
+
}
|
|
15297
|
+
exports.QueryMessageAppResponse = QueryMessageAppResponse;
|
|
14760
15298
|
class QuerySnapshotCallbackAuthRequest extends $tea.Model {
|
|
14761
15299
|
constructor(map) {
|
|
14762
15300
|
super(map);
|
|
@@ -15009,6 +15547,60 @@ class RemoveShowFromShowListResponse extends $tea.Model {
|
|
|
15009
15547
|
}
|
|
15010
15548
|
}
|
|
15011
15549
|
exports.RemoveShowFromShowListResponse = RemoveShowFromShowListResponse;
|
|
15550
|
+
class RestartCasterRequest extends $tea.Model {
|
|
15551
|
+
constructor(map) {
|
|
15552
|
+
super(map);
|
|
15553
|
+
}
|
|
15554
|
+
static names() {
|
|
15555
|
+
return {
|
|
15556
|
+
casterId: 'CasterId',
|
|
15557
|
+
ownerId: 'OwnerId',
|
|
15558
|
+
};
|
|
15559
|
+
}
|
|
15560
|
+
static types() {
|
|
15561
|
+
return {
|
|
15562
|
+
casterId: 'string',
|
|
15563
|
+
ownerId: 'number',
|
|
15564
|
+
};
|
|
15565
|
+
}
|
|
15566
|
+
}
|
|
15567
|
+
exports.RestartCasterRequest = RestartCasterRequest;
|
|
15568
|
+
class RestartCasterResponseBody extends $tea.Model {
|
|
15569
|
+
constructor(map) {
|
|
15570
|
+
super(map);
|
|
15571
|
+
}
|
|
15572
|
+
static names() {
|
|
15573
|
+
return {
|
|
15574
|
+
requestId: 'RequestId',
|
|
15575
|
+
};
|
|
15576
|
+
}
|
|
15577
|
+
static types() {
|
|
15578
|
+
return {
|
|
15579
|
+
requestId: 'string',
|
|
15580
|
+
};
|
|
15581
|
+
}
|
|
15582
|
+
}
|
|
15583
|
+
exports.RestartCasterResponseBody = RestartCasterResponseBody;
|
|
15584
|
+
class RestartCasterResponse extends $tea.Model {
|
|
15585
|
+
constructor(map) {
|
|
15586
|
+
super(map);
|
|
15587
|
+
}
|
|
15588
|
+
static names() {
|
|
15589
|
+
return {
|
|
15590
|
+
headers: 'headers',
|
|
15591
|
+
statusCode: 'statusCode',
|
|
15592
|
+
body: 'body',
|
|
15593
|
+
};
|
|
15594
|
+
}
|
|
15595
|
+
static types() {
|
|
15596
|
+
return {
|
|
15597
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
15598
|
+
statusCode: 'number',
|
|
15599
|
+
body: RestartCasterResponseBody,
|
|
15600
|
+
};
|
|
15601
|
+
}
|
|
15602
|
+
}
|
|
15603
|
+
exports.RestartCasterResponse = RestartCasterResponse;
|
|
15012
15604
|
class ResumeLiveStreamRequest extends $tea.Model {
|
|
15013
15605
|
constructor(map) {
|
|
15014
15606
|
super(map);
|
|
@@ -15127,6 +15719,220 @@ class RollbackLiveStagingConfigResponse extends $tea.Model {
|
|
|
15127
15719
|
}
|
|
15128
15720
|
}
|
|
15129
15721
|
exports.RollbackLiveStagingConfigResponse = RollbackLiveStagingConfigResponse;
|
|
15722
|
+
class SendLikeRequest extends $tea.Model {
|
|
15723
|
+
constructor(map) {
|
|
15724
|
+
super(map);
|
|
15725
|
+
}
|
|
15726
|
+
static names() {
|
|
15727
|
+
return {
|
|
15728
|
+
appId: 'AppId',
|
|
15729
|
+
broadCastType: 'BroadCastType',
|
|
15730
|
+
count: 'Count',
|
|
15731
|
+
groupId: 'GroupId',
|
|
15732
|
+
operatorUserId: 'OperatorUserId',
|
|
15733
|
+
};
|
|
15734
|
+
}
|
|
15735
|
+
static types() {
|
|
15736
|
+
return {
|
|
15737
|
+
appId: 'string',
|
|
15738
|
+
broadCastType: 'number',
|
|
15739
|
+
count: 'string',
|
|
15740
|
+
groupId: 'string',
|
|
15741
|
+
operatorUserId: 'string',
|
|
15742
|
+
};
|
|
15743
|
+
}
|
|
15744
|
+
}
|
|
15745
|
+
exports.SendLikeRequest = SendLikeRequest;
|
|
15746
|
+
class SendLikeResponseBody extends $tea.Model {
|
|
15747
|
+
constructor(map) {
|
|
15748
|
+
super(map);
|
|
15749
|
+
}
|
|
15750
|
+
static names() {
|
|
15751
|
+
return {
|
|
15752
|
+
requestId: 'RequestId',
|
|
15753
|
+
result: 'Result',
|
|
15754
|
+
};
|
|
15755
|
+
}
|
|
15756
|
+
static types() {
|
|
15757
|
+
return {
|
|
15758
|
+
requestId: 'string',
|
|
15759
|
+
result: SendLikeResponseBodyResult,
|
|
15760
|
+
};
|
|
15761
|
+
}
|
|
15762
|
+
}
|
|
15763
|
+
exports.SendLikeResponseBody = SendLikeResponseBody;
|
|
15764
|
+
class SendLikeResponse extends $tea.Model {
|
|
15765
|
+
constructor(map) {
|
|
15766
|
+
super(map);
|
|
15767
|
+
}
|
|
15768
|
+
static names() {
|
|
15769
|
+
return {
|
|
15770
|
+
headers: 'headers',
|
|
15771
|
+
statusCode: 'statusCode',
|
|
15772
|
+
body: 'body',
|
|
15773
|
+
};
|
|
15774
|
+
}
|
|
15775
|
+
static types() {
|
|
15776
|
+
return {
|
|
15777
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
15778
|
+
statusCode: 'number',
|
|
15779
|
+
body: SendLikeResponseBody,
|
|
15780
|
+
};
|
|
15781
|
+
}
|
|
15782
|
+
}
|
|
15783
|
+
exports.SendLikeResponse = SendLikeResponse;
|
|
15784
|
+
class SendMessageToGroupRequest extends $tea.Model {
|
|
15785
|
+
constructor(map) {
|
|
15786
|
+
super(map);
|
|
15787
|
+
}
|
|
15788
|
+
static names() {
|
|
15789
|
+
return {
|
|
15790
|
+
appId: 'AppId',
|
|
15791
|
+
data: 'Data',
|
|
15792
|
+
groupId: 'GroupId',
|
|
15793
|
+
operatorUserId: 'OperatorUserId',
|
|
15794
|
+
type: 'Type',
|
|
15795
|
+
};
|
|
15796
|
+
}
|
|
15797
|
+
static types() {
|
|
15798
|
+
return {
|
|
15799
|
+
appId: 'string',
|
|
15800
|
+
data: 'string',
|
|
15801
|
+
groupId: 'string',
|
|
15802
|
+
operatorUserId: 'string',
|
|
15803
|
+
type: 'number',
|
|
15804
|
+
};
|
|
15805
|
+
}
|
|
15806
|
+
}
|
|
15807
|
+
exports.SendMessageToGroupRequest = SendMessageToGroupRequest;
|
|
15808
|
+
class SendMessageToGroupResponseBody extends $tea.Model {
|
|
15809
|
+
constructor(map) {
|
|
15810
|
+
super(map);
|
|
15811
|
+
}
|
|
15812
|
+
static names() {
|
|
15813
|
+
return {
|
|
15814
|
+
requestId: 'RequestId',
|
|
15815
|
+
result: 'Result',
|
|
15816
|
+
};
|
|
15817
|
+
}
|
|
15818
|
+
static types() {
|
|
15819
|
+
return {
|
|
15820
|
+
requestId: 'string',
|
|
15821
|
+
result: SendMessageToGroupResponseBodyResult,
|
|
15822
|
+
};
|
|
15823
|
+
}
|
|
15824
|
+
}
|
|
15825
|
+
exports.SendMessageToGroupResponseBody = SendMessageToGroupResponseBody;
|
|
15826
|
+
class SendMessageToGroupResponse extends $tea.Model {
|
|
15827
|
+
constructor(map) {
|
|
15828
|
+
super(map);
|
|
15829
|
+
}
|
|
15830
|
+
static names() {
|
|
15831
|
+
return {
|
|
15832
|
+
headers: 'headers',
|
|
15833
|
+
statusCode: 'statusCode',
|
|
15834
|
+
body: 'body',
|
|
15835
|
+
};
|
|
15836
|
+
}
|
|
15837
|
+
static types() {
|
|
15838
|
+
return {
|
|
15839
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
15840
|
+
statusCode: 'number',
|
|
15841
|
+
body: SendMessageToGroupResponseBody,
|
|
15842
|
+
};
|
|
15843
|
+
}
|
|
15844
|
+
}
|
|
15845
|
+
exports.SendMessageToGroupResponse = SendMessageToGroupResponse;
|
|
15846
|
+
class SendMessageToGroupUsersRequest extends $tea.Model {
|
|
15847
|
+
constructor(map) {
|
|
15848
|
+
super(map);
|
|
15849
|
+
}
|
|
15850
|
+
static names() {
|
|
15851
|
+
return {
|
|
15852
|
+
appId: 'AppId',
|
|
15853
|
+
data: 'Data',
|
|
15854
|
+
groupId: 'GroupId',
|
|
15855
|
+
operatorUserId: 'OperatorUserId',
|
|
15856
|
+
receiverIdList: 'ReceiverIdList',
|
|
15857
|
+
type: 'Type',
|
|
15858
|
+
};
|
|
15859
|
+
}
|
|
15860
|
+
static types() {
|
|
15861
|
+
return {
|
|
15862
|
+
appId: 'string',
|
|
15863
|
+
data: 'string',
|
|
15864
|
+
groupId: 'string',
|
|
15865
|
+
operatorUserId: 'string',
|
|
15866
|
+
receiverIdList: { 'type': 'array', 'itemType': 'string' },
|
|
15867
|
+
type: 'number',
|
|
15868
|
+
};
|
|
15869
|
+
}
|
|
15870
|
+
}
|
|
15871
|
+
exports.SendMessageToGroupUsersRequest = SendMessageToGroupUsersRequest;
|
|
15872
|
+
class SendMessageToGroupUsersShrinkRequest extends $tea.Model {
|
|
15873
|
+
constructor(map) {
|
|
15874
|
+
super(map);
|
|
15875
|
+
}
|
|
15876
|
+
static names() {
|
|
15877
|
+
return {
|
|
15878
|
+
appId: 'AppId',
|
|
15879
|
+
data: 'Data',
|
|
15880
|
+
groupId: 'GroupId',
|
|
15881
|
+
operatorUserId: 'OperatorUserId',
|
|
15882
|
+
receiverIdListShrink: 'ReceiverIdList',
|
|
15883
|
+
type: 'Type',
|
|
15884
|
+
};
|
|
15885
|
+
}
|
|
15886
|
+
static types() {
|
|
15887
|
+
return {
|
|
15888
|
+
appId: 'string',
|
|
15889
|
+
data: 'string',
|
|
15890
|
+
groupId: 'string',
|
|
15891
|
+
operatorUserId: 'string',
|
|
15892
|
+
receiverIdListShrink: 'string',
|
|
15893
|
+
type: 'number',
|
|
15894
|
+
};
|
|
15895
|
+
}
|
|
15896
|
+
}
|
|
15897
|
+
exports.SendMessageToGroupUsersShrinkRequest = SendMessageToGroupUsersShrinkRequest;
|
|
15898
|
+
class SendMessageToGroupUsersResponseBody extends $tea.Model {
|
|
15899
|
+
constructor(map) {
|
|
15900
|
+
super(map);
|
|
15901
|
+
}
|
|
15902
|
+
static names() {
|
|
15903
|
+
return {
|
|
15904
|
+
requestId: 'RequestId',
|
|
15905
|
+
result: 'Result',
|
|
15906
|
+
};
|
|
15907
|
+
}
|
|
15908
|
+
static types() {
|
|
15909
|
+
return {
|
|
15910
|
+
requestId: 'string',
|
|
15911
|
+
result: SendMessageToGroupUsersResponseBodyResult,
|
|
15912
|
+
};
|
|
15913
|
+
}
|
|
15914
|
+
}
|
|
15915
|
+
exports.SendMessageToGroupUsersResponseBody = SendMessageToGroupUsersResponseBody;
|
|
15916
|
+
class SendMessageToGroupUsersResponse extends $tea.Model {
|
|
15917
|
+
constructor(map) {
|
|
15918
|
+
super(map);
|
|
15919
|
+
}
|
|
15920
|
+
static names() {
|
|
15921
|
+
return {
|
|
15922
|
+
headers: 'headers',
|
|
15923
|
+
statusCode: 'statusCode',
|
|
15924
|
+
body: 'body',
|
|
15925
|
+
};
|
|
15926
|
+
}
|
|
15927
|
+
static types() {
|
|
15928
|
+
return {
|
|
15929
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
15930
|
+
statusCode: 'number',
|
|
15931
|
+
body: SendMessageToGroupUsersResponseBody,
|
|
15932
|
+
};
|
|
15933
|
+
}
|
|
15934
|
+
}
|
|
15935
|
+
exports.SendMessageToGroupUsersResponse = SendMessageToGroupUsersResponse;
|
|
15130
15936
|
class SendRoomNotificationRequest extends $tea.Model {
|
|
15131
15937
|
constructor(map) {
|
|
15132
15938
|
super(map);
|
|
@@ -17325,6 +18131,66 @@ class UpdateLiveSnapshotDetectPornConfigResponse extends $tea.Model {
|
|
|
17325
18131
|
}
|
|
17326
18132
|
}
|
|
17327
18133
|
exports.UpdateLiveSnapshotDetectPornConfigResponse = UpdateLiveSnapshotDetectPornConfigResponse;
|
|
18134
|
+
class UpdateLiveSnapshotNotifyConfigRequest extends $tea.Model {
|
|
18135
|
+
constructor(map) {
|
|
18136
|
+
super(map);
|
|
18137
|
+
}
|
|
18138
|
+
static names() {
|
|
18139
|
+
return {
|
|
18140
|
+
domainName: 'DomainName',
|
|
18141
|
+
notifyAuthKey: 'NotifyAuthKey',
|
|
18142
|
+
notifyReqAuth: 'NotifyReqAuth',
|
|
18143
|
+
notifyUrl: 'NotifyUrl',
|
|
18144
|
+
ownerId: 'OwnerId',
|
|
18145
|
+
};
|
|
18146
|
+
}
|
|
18147
|
+
static types() {
|
|
18148
|
+
return {
|
|
18149
|
+
domainName: 'string',
|
|
18150
|
+
notifyAuthKey: 'string',
|
|
18151
|
+
notifyReqAuth: 'string',
|
|
18152
|
+
notifyUrl: 'string',
|
|
18153
|
+
ownerId: 'number',
|
|
18154
|
+
};
|
|
18155
|
+
}
|
|
18156
|
+
}
|
|
18157
|
+
exports.UpdateLiveSnapshotNotifyConfigRequest = UpdateLiveSnapshotNotifyConfigRequest;
|
|
18158
|
+
class UpdateLiveSnapshotNotifyConfigResponseBody extends $tea.Model {
|
|
18159
|
+
constructor(map) {
|
|
18160
|
+
super(map);
|
|
18161
|
+
}
|
|
18162
|
+
static names() {
|
|
18163
|
+
return {
|
|
18164
|
+
requestId: 'RequestId',
|
|
18165
|
+
};
|
|
18166
|
+
}
|
|
18167
|
+
static types() {
|
|
18168
|
+
return {
|
|
18169
|
+
requestId: 'string',
|
|
18170
|
+
};
|
|
18171
|
+
}
|
|
18172
|
+
}
|
|
18173
|
+
exports.UpdateLiveSnapshotNotifyConfigResponseBody = UpdateLiveSnapshotNotifyConfigResponseBody;
|
|
18174
|
+
class UpdateLiveSnapshotNotifyConfigResponse extends $tea.Model {
|
|
18175
|
+
constructor(map) {
|
|
18176
|
+
super(map);
|
|
18177
|
+
}
|
|
18178
|
+
static names() {
|
|
18179
|
+
return {
|
|
18180
|
+
headers: 'headers',
|
|
18181
|
+
statusCode: 'statusCode',
|
|
18182
|
+
body: 'body',
|
|
18183
|
+
};
|
|
18184
|
+
}
|
|
18185
|
+
static types() {
|
|
18186
|
+
return {
|
|
18187
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
18188
|
+
statusCode: 'number',
|
|
18189
|
+
body: UpdateLiveSnapshotNotifyConfigResponseBody,
|
|
18190
|
+
};
|
|
18191
|
+
}
|
|
18192
|
+
}
|
|
18193
|
+
exports.UpdateLiveSnapshotNotifyConfigResponse = UpdateLiveSnapshotNotifyConfigResponse;
|
|
17328
18194
|
class UpdateLiveStreamMonitorRequest extends $tea.Model {
|
|
17329
18195
|
constructor(map) {
|
|
17330
18196
|
super(map);
|
|
@@ -17581,6 +18447,166 @@ class UpdateLiveTopLevelDomainResponse extends $tea.Model {
|
|
|
17581
18447
|
}
|
|
17582
18448
|
}
|
|
17583
18449
|
exports.UpdateLiveTopLevelDomainResponse = UpdateLiveTopLevelDomainResponse;
|
|
18450
|
+
class UpdateMessageAppRequest extends $tea.Model {
|
|
18451
|
+
constructor(map) {
|
|
18452
|
+
super(map);
|
|
18453
|
+
}
|
|
18454
|
+
static names() {
|
|
18455
|
+
return {
|
|
18456
|
+
appConfig: 'AppConfig',
|
|
18457
|
+
appId: 'AppId',
|
|
18458
|
+
appName: 'AppName',
|
|
18459
|
+
extension: 'Extension',
|
|
18460
|
+
};
|
|
18461
|
+
}
|
|
18462
|
+
static types() {
|
|
18463
|
+
return {
|
|
18464
|
+
appConfig: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
18465
|
+
appId: 'string',
|
|
18466
|
+
appName: 'string',
|
|
18467
|
+
extension: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
18468
|
+
};
|
|
18469
|
+
}
|
|
18470
|
+
}
|
|
18471
|
+
exports.UpdateMessageAppRequest = UpdateMessageAppRequest;
|
|
18472
|
+
class UpdateMessageAppShrinkRequest extends $tea.Model {
|
|
18473
|
+
constructor(map) {
|
|
18474
|
+
super(map);
|
|
18475
|
+
}
|
|
18476
|
+
static names() {
|
|
18477
|
+
return {
|
|
18478
|
+
appConfigShrink: 'AppConfig',
|
|
18479
|
+
appId: 'AppId',
|
|
18480
|
+
appName: 'AppName',
|
|
18481
|
+
extensionShrink: 'Extension',
|
|
18482
|
+
};
|
|
18483
|
+
}
|
|
18484
|
+
static types() {
|
|
18485
|
+
return {
|
|
18486
|
+
appConfigShrink: 'string',
|
|
18487
|
+
appId: 'string',
|
|
18488
|
+
appName: 'string',
|
|
18489
|
+
extensionShrink: 'string',
|
|
18490
|
+
};
|
|
18491
|
+
}
|
|
18492
|
+
}
|
|
18493
|
+
exports.UpdateMessageAppShrinkRequest = UpdateMessageAppShrinkRequest;
|
|
18494
|
+
class UpdateMessageAppResponseBody extends $tea.Model {
|
|
18495
|
+
constructor(map) {
|
|
18496
|
+
super(map);
|
|
18497
|
+
}
|
|
18498
|
+
static names() {
|
|
18499
|
+
return {
|
|
18500
|
+
requestId: 'RequestId',
|
|
18501
|
+
result: 'Result',
|
|
18502
|
+
};
|
|
18503
|
+
}
|
|
18504
|
+
static types() {
|
|
18505
|
+
return {
|
|
18506
|
+
requestId: 'string',
|
|
18507
|
+
result: UpdateMessageAppResponseBodyResult,
|
|
18508
|
+
};
|
|
18509
|
+
}
|
|
18510
|
+
}
|
|
18511
|
+
exports.UpdateMessageAppResponseBody = UpdateMessageAppResponseBody;
|
|
18512
|
+
class UpdateMessageAppResponse extends $tea.Model {
|
|
18513
|
+
constructor(map) {
|
|
18514
|
+
super(map);
|
|
18515
|
+
}
|
|
18516
|
+
static names() {
|
|
18517
|
+
return {
|
|
18518
|
+
headers: 'headers',
|
|
18519
|
+
statusCode: 'statusCode',
|
|
18520
|
+
body: 'body',
|
|
18521
|
+
};
|
|
18522
|
+
}
|
|
18523
|
+
static types() {
|
|
18524
|
+
return {
|
|
18525
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
18526
|
+
statusCode: 'number',
|
|
18527
|
+
body: UpdateMessageAppResponseBody,
|
|
18528
|
+
};
|
|
18529
|
+
}
|
|
18530
|
+
}
|
|
18531
|
+
exports.UpdateMessageAppResponse = UpdateMessageAppResponse;
|
|
18532
|
+
class UpdateMessageGroupRequest extends $tea.Model {
|
|
18533
|
+
constructor(map) {
|
|
18534
|
+
super(map);
|
|
18535
|
+
}
|
|
18536
|
+
static names() {
|
|
18537
|
+
return {
|
|
18538
|
+
appId: 'AppId',
|
|
18539
|
+
extension: 'Extension',
|
|
18540
|
+
groupId: 'GroupId',
|
|
18541
|
+
};
|
|
18542
|
+
}
|
|
18543
|
+
static types() {
|
|
18544
|
+
return {
|
|
18545
|
+
appId: 'string',
|
|
18546
|
+
extension: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
18547
|
+
groupId: 'string',
|
|
18548
|
+
};
|
|
18549
|
+
}
|
|
18550
|
+
}
|
|
18551
|
+
exports.UpdateMessageGroupRequest = UpdateMessageGroupRequest;
|
|
18552
|
+
class UpdateMessageGroupShrinkRequest extends $tea.Model {
|
|
18553
|
+
constructor(map) {
|
|
18554
|
+
super(map);
|
|
18555
|
+
}
|
|
18556
|
+
static names() {
|
|
18557
|
+
return {
|
|
18558
|
+
appId: 'AppId',
|
|
18559
|
+
extensionShrink: 'Extension',
|
|
18560
|
+
groupId: 'GroupId',
|
|
18561
|
+
};
|
|
18562
|
+
}
|
|
18563
|
+
static types() {
|
|
18564
|
+
return {
|
|
18565
|
+
appId: 'string',
|
|
18566
|
+
extensionShrink: 'string',
|
|
18567
|
+
groupId: 'string',
|
|
18568
|
+
};
|
|
18569
|
+
}
|
|
18570
|
+
}
|
|
18571
|
+
exports.UpdateMessageGroupShrinkRequest = UpdateMessageGroupShrinkRequest;
|
|
18572
|
+
class UpdateMessageGroupResponseBody extends $tea.Model {
|
|
18573
|
+
constructor(map) {
|
|
18574
|
+
super(map);
|
|
18575
|
+
}
|
|
18576
|
+
static names() {
|
|
18577
|
+
return {
|
|
18578
|
+
requestId: 'RequestId',
|
|
18579
|
+
result: 'Result',
|
|
18580
|
+
};
|
|
18581
|
+
}
|
|
18582
|
+
static types() {
|
|
18583
|
+
return {
|
|
18584
|
+
requestId: 'string',
|
|
18585
|
+
result: UpdateMessageGroupResponseBodyResult,
|
|
18586
|
+
};
|
|
18587
|
+
}
|
|
18588
|
+
}
|
|
18589
|
+
exports.UpdateMessageGroupResponseBody = UpdateMessageGroupResponseBody;
|
|
18590
|
+
class UpdateMessageGroupResponse extends $tea.Model {
|
|
18591
|
+
constructor(map) {
|
|
18592
|
+
super(map);
|
|
18593
|
+
}
|
|
18594
|
+
static names() {
|
|
18595
|
+
return {
|
|
18596
|
+
headers: 'headers',
|
|
18597
|
+
statusCode: 'statusCode',
|
|
18598
|
+
body: 'body',
|
|
18599
|
+
};
|
|
18600
|
+
}
|
|
18601
|
+
static types() {
|
|
18602
|
+
return {
|
|
18603
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
18604
|
+
statusCode: 'number',
|
|
18605
|
+
body: UpdateMessageGroupResponseBody,
|
|
18606
|
+
};
|
|
18607
|
+
}
|
|
18608
|
+
}
|
|
18609
|
+
exports.UpdateMessageGroupResponse = UpdateMessageGroupResponse;
|
|
17584
18610
|
class UpdateMixStreamRequest extends $tea.Model {
|
|
17585
18611
|
constructor(map) {
|
|
17586
18612
|
super(map);
|
|
@@ -18061,22 +19087,6 @@ class CancelMuteAllGroupUserResponseBodyResult extends $tea.Model {
|
|
|
18061
19087
|
}
|
|
18062
19088
|
}
|
|
18063
19089
|
exports.CancelMuteAllGroupUserResponseBodyResult = CancelMuteAllGroupUserResponseBodyResult;
|
|
18064
|
-
class CloseMessageGroupResponseBodyResult extends $tea.Model {
|
|
18065
|
-
constructor(map) {
|
|
18066
|
-
super(map);
|
|
18067
|
-
}
|
|
18068
|
-
static names() {
|
|
18069
|
-
return {
|
|
18070
|
-
success: 'Success',
|
|
18071
|
-
};
|
|
18072
|
-
}
|
|
18073
|
-
static types() {
|
|
18074
|
-
return {
|
|
18075
|
-
success: 'boolean',
|
|
18076
|
-
};
|
|
18077
|
-
}
|
|
18078
|
-
}
|
|
18079
|
-
exports.CloseMessageGroupResponseBodyResult = CloseMessageGroupResponseBodyResult;
|
|
18080
19090
|
class CreateLiveStreamRecordIndexFilesResponseBodyRecordInfo extends $tea.Model {
|
|
18081
19091
|
constructor(map) {
|
|
18082
19092
|
super(map);
|
|
@@ -18119,6 +19129,22 @@ class CreateLiveStreamRecordIndexFilesResponseBodyRecordInfo extends $tea.Model
|
|
|
18119
19129
|
}
|
|
18120
19130
|
}
|
|
18121
19131
|
exports.CreateLiveStreamRecordIndexFilesResponseBodyRecordInfo = CreateLiveStreamRecordIndexFilesResponseBodyRecordInfo;
|
|
19132
|
+
class CreateMessageAppResponseBodyResult extends $tea.Model {
|
|
19133
|
+
constructor(map) {
|
|
19134
|
+
super(map);
|
|
19135
|
+
}
|
|
19136
|
+
static names() {
|
|
19137
|
+
return {
|
|
19138
|
+
appId: 'AppId',
|
|
19139
|
+
};
|
|
19140
|
+
}
|
|
19141
|
+
static types() {
|
|
19142
|
+
return {
|
|
19143
|
+
appId: 'string',
|
|
19144
|
+
};
|
|
19145
|
+
}
|
|
19146
|
+
}
|
|
19147
|
+
exports.CreateMessageAppResponseBodyResult = CreateMessageAppResponseBodyResult;
|
|
18122
19148
|
class CreateMessageGroupResponseBodyResult extends $tea.Model {
|
|
18123
19149
|
constructor(map) {
|
|
18124
19150
|
super(map);
|
|
@@ -22101,6 +23127,54 @@ class DescribeLiveStreamsControlHistoryResponseBodyControlInfo extends $tea.Mode
|
|
|
22101
23127
|
}
|
|
22102
23128
|
}
|
|
22103
23129
|
exports.DescribeLiveStreamsControlHistoryResponseBodyControlInfo = DescribeLiveStreamsControlHistoryResponseBodyControlInfo;
|
|
23130
|
+
class DescribeLiveStreamsNotifyRecordsResponseBodyNotifyRecordsInfoLiveStreamNotifyRecordsInfo extends $tea.Model {
|
|
23131
|
+
constructor(map) {
|
|
23132
|
+
super(map);
|
|
23133
|
+
}
|
|
23134
|
+
static names() {
|
|
23135
|
+
return {
|
|
23136
|
+
appName: 'AppName',
|
|
23137
|
+
description: 'Description',
|
|
23138
|
+
domainName: 'DomainName',
|
|
23139
|
+
notifyContent: 'NotifyContent',
|
|
23140
|
+
notifyResult: 'NotifyResult',
|
|
23141
|
+
notifyTime: 'NotifyTime',
|
|
23142
|
+
notifyType: 'NotifyType',
|
|
23143
|
+
notifyUrl: 'NotifyUrl',
|
|
23144
|
+
streamName: 'StreamName',
|
|
23145
|
+
};
|
|
23146
|
+
}
|
|
23147
|
+
static types() {
|
|
23148
|
+
return {
|
|
23149
|
+
appName: 'string',
|
|
23150
|
+
description: 'string',
|
|
23151
|
+
domainName: 'string',
|
|
23152
|
+
notifyContent: 'string',
|
|
23153
|
+
notifyResult: 'string',
|
|
23154
|
+
notifyTime: 'string',
|
|
23155
|
+
notifyType: 'string',
|
|
23156
|
+
notifyUrl: 'string',
|
|
23157
|
+
streamName: 'string',
|
|
23158
|
+
};
|
|
23159
|
+
}
|
|
23160
|
+
}
|
|
23161
|
+
exports.DescribeLiveStreamsNotifyRecordsResponseBodyNotifyRecordsInfoLiveStreamNotifyRecordsInfo = DescribeLiveStreamsNotifyRecordsResponseBodyNotifyRecordsInfoLiveStreamNotifyRecordsInfo;
|
|
23162
|
+
class DescribeLiveStreamsNotifyRecordsResponseBodyNotifyRecordsInfo extends $tea.Model {
|
|
23163
|
+
constructor(map) {
|
|
23164
|
+
super(map);
|
|
23165
|
+
}
|
|
23166
|
+
static names() {
|
|
23167
|
+
return {
|
|
23168
|
+
liveStreamNotifyRecordsInfo: 'LiveStreamNotifyRecordsInfo',
|
|
23169
|
+
};
|
|
23170
|
+
}
|
|
23171
|
+
static types() {
|
|
23172
|
+
return {
|
|
23173
|
+
liveStreamNotifyRecordsInfo: { 'type': 'array', 'itemType': DescribeLiveStreamsNotifyRecordsResponseBodyNotifyRecordsInfoLiveStreamNotifyRecordsInfo },
|
|
23174
|
+
};
|
|
23175
|
+
}
|
|
23176
|
+
}
|
|
23177
|
+
exports.DescribeLiveStreamsNotifyRecordsResponseBodyNotifyRecordsInfo = DescribeLiveStreamsNotifyRecordsResponseBodyNotifyRecordsInfo;
|
|
22104
23178
|
class DescribeLiveStreamsNotifyUrlConfigResponseBodyLiveStreamsNotifyConfig extends $tea.Model {
|
|
22105
23179
|
constructor(map) {
|
|
22106
23180
|
super(map);
|
|
@@ -23163,6 +24237,32 @@ class EditPlaylistResponseBodyItems extends $tea.Model {
|
|
|
23163
24237
|
}
|
|
23164
24238
|
}
|
|
23165
24239
|
exports.EditPlaylistResponseBodyItems = EditPlaylistResponseBodyItems;
|
|
24240
|
+
class GetMessageAppResponseBodyResult extends $tea.Model {
|
|
24241
|
+
constructor(map) {
|
|
24242
|
+
super(map);
|
|
24243
|
+
}
|
|
24244
|
+
static names() {
|
|
24245
|
+
return {
|
|
24246
|
+
appConfig: 'AppConfig',
|
|
24247
|
+
appId: 'AppId',
|
|
24248
|
+
appName: 'AppName',
|
|
24249
|
+
createTime: 'CreateTime',
|
|
24250
|
+
extension: 'Extension',
|
|
24251
|
+
status: 'Status',
|
|
24252
|
+
};
|
|
24253
|
+
}
|
|
24254
|
+
static types() {
|
|
24255
|
+
return {
|
|
24256
|
+
appConfig: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
24257
|
+
appId: 'string',
|
|
24258
|
+
appName: 'string',
|
|
24259
|
+
createTime: 'number',
|
|
24260
|
+
extension: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
24261
|
+
status: 'number',
|
|
24262
|
+
};
|
|
24263
|
+
}
|
|
24264
|
+
}
|
|
24265
|
+
exports.GetMessageAppResponseBodyResult = GetMessageAppResponseBodyResult;
|
|
23166
24266
|
class GetMessageGroupResponseBodyResult extends $tea.Model {
|
|
23167
24267
|
constructor(map) {
|
|
23168
24268
|
super(map);
|
|
@@ -23209,24 +24309,6 @@ class GetMessageTokenResponseBodyResult extends $tea.Model {
|
|
|
23209
24309
|
}
|
|
23210
24310
|
}
|
|
23211
24311
|
exports.GetMessageTokenResponseBodyResult = GetMessageTokenResponseBodyResult;
|
|
23212
|
-
class GetMessageUserInfoResponseBodyResult extends $tea.Model {
|
|
23213
|
-
constructor(map) {
|
|
23214
|
-
super(map);
|
|
23215
|
-
}
|
|
23216
|
-
static names() {
|
|
23217
|
-
return {
|
|
23218
|
-
hasOrderedIM: 'HasOrderedIM',
|
|
23219
|
-
isNewIMUser: 'IsNewIMUser',
|
|
23220
|
-
};
|
|
23221
|
-
}
|
|
23222
|
-
static types() {
|
|
23223
|
-
return {
|
|
23224
|
-
hasOrderedIM: 'boolean',
|
|
23225
|
-
isNewIMUser: 'boolean',
|
|
23226
|
-
};
|
|
23227
|
-
}
|
|
23228
|
-
}
|
|
23229
|
-
exports.GetMessageUserInfoResponseBodyResult = GetMessageUserInfoResponseBodyResult;
|
|
23230
24312
|
class GetMultiRateConfigResponseBodyTemplatesInfoDetail extends $tea.Model {
|
|
23231
24313
|
constructor(map) {
|
|
23232
24314
|
super(map);
|
|
@@ -23509,12 +24591,59 @@ class ListMessageResponseBodyResult extends $tea.Model {
|
|
|
23509
24591
|
}
|
|
23510
24592
|
}
|
|
23511
24593
|
exports.ListMessageResponseBodyResult = ListMessageResponseBodyResult;
|
|
24594
|
+
class ListMessageAppResponseBodyResultAppList extends $tea.Model {
|
|
24595
|
+
constructor(map) {
|
|
24596
|
+
super(map);
|
|
24597
|
+
}
|
|
24598
|
+
static names() {
|
|
24599
|
+
return {
|
|
24600
|
+
appConfig: 'AppConfig',
|
|
24601
|
+
appId: 'AppId',
|
|
24602
|
+
appName: 'AppName',
|
|
24603
|
+
createTime: 'CreateTime',
|
|
24604
|
+
extension: 'Extension',
|
|
24605
|
+
status: 'Status',
|
|
24606
|
+
};
|
|
24607
|
+
}
|
|
24608
|
+
static types() {
|
|
24609
|
+
return {
|
|
24610
|
+
appConfig: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
24611
|
+
appId: 'string',
|
|
24612
|
+
appName: 'string',
|
|
24613
|
+
createTime: 'number',
|
|
24614
|
+
extension: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
24615
|
+
status: 'number',
|
|
24616
|
+
};
|
|
24617
|
+
}
|
|
24618
|
+
}
|
|
24619
|
+
exports.ListMessageAppResponseBodyResultAppList = ListMessageAppResponseBodyResultAppList;
|
|
24620
|
+
class ListMessageAppResponseBodyResult extends $tea.Model {
|
|
24621
|
+
constructor(map) {
|
|
24622
|
+
super(map);
|
|
24623
|
+
}
|
|
24624
|
+
static names() {
|
|
24625
|
+
return {
|
|
24626
|
+
appList: 'AppList',
|
|
24627
|
+
hasMore: 'HasMore',
|
|
24628
|
+
total: 'Total',
|
|
24629
|
+
};
|
|
24630
|
+
}
|
|
24631
|
+
static types() {
|
|
24632
|
+
return {
|
|
24633
|
+
appList: { 'type': 'array', 'itemType': ListMessageAppResponseBodyResultAppList },
|
|
24634
|
+
hasMore: 'boolean',
|
|
24635
|
+
total: 'number',
|
|
24636
|
+
};
|
|
24637
|
+
}
|
|
24638
|
+
}
|
|
24639
|
+
exports.ListMessageAppResponseBodyResult = ListMessageAppResponseBodyResult;
|
|
23512
24640
|
class ListMessageGroupResponseBodyResultGroupList extends $tea.Model {
|
|
23513
24641
|
constructor(map) {
|
|
23514
24642
|
super(map);
|
|
23515
24643
|
}
|
|
23516
24644
|
static names() {
|
|
23517
24645
|
return {
|
|
24646
|
+
appId: 'AppId',
|
|
23518
24647
|
createTime: 'CreateTime',
|
|
23519
24648
|
creatorId: 'CreatorId',
|
|
23520
24649
|
extension: 'Extension',
|
|
@@ -23524,6 +24653,7 @@ class ListMessageGroupResponseBodyResultGroupList extends $tea.Model {
|
|
|
23524
24653
|
}
|
|
23525
24654
|
static types() {
|
|
23526
24655
|
return {
|
|
24656
|
+
appId: 'string',
|
|
23527
24657
|
createTime: 'number',
|
|
23528
24658
|
creatorId: 'string',
|
|
23529
24659
|
extension: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
@@ -23591,6 +24721,52 @@ class ListMessageGroupUserResponseBodyResult extends $tea.Model {
|
|
|
23591
24721
|
}
|
|
23592
24722
|
}
|
|
23593
24723
|
exports.ListMessageGroupUserResponseBodyResult = ListMessageGroupUserResponseBodyResult;
|
|
24724
|
+
class ListMessageGroupUserByIdResponseBodyResultUserList extends $tea.Model {
|
|
24725
|
+
constructor(map) {
|
|
24726
|
+
super(map);
|
|
24727
|
+
}
|
|
24728
|
+
static names() {
|
|
24729
|
+
return {
|
|
24730
|
+
isMute: 'IsMute',
|
|
24731
|
+
muteBy: 'MuteBy',
|
|
24732
|
+
userAvatar: 'UserAvatar',
|
|
24733
|
+
userExtension: 'UserExtension',
|
|
24734
|
+
userId: 'UserId',
|
|
24735
|
+
userNick: 'UserNick',
|
|
24736
|
+
};
|
|
24737
|
+
}
|
|
24738
|
+
static types() {
|
|
24739
|
+
return {
|
|
24740
|
+
isMute: 'boolean',
|
|
24741
|
+
muteBy: { 'type': 'array', 'itemType': 'string' },
|
|
24742
|
+
userAvatar: 'string',
|
|
24743
|
+
userExtension: 'string',
|
|
24744
|
+
userId: 'string',
|
|
24745
|
+
userNick: 'string',
|
|
24746
|
+
};
|
|
24747
|
+
}
|
|
24748
|
+
}
|
|
24749
|
+
exports.ListMessageGroupUserByIdResponseBodyResultUserList = ListMessageGroupUserByIdResponseBodyResultUserList;
|
|
24750
|
+
class ListMessageGroupUserByIdResponseBodyResult extends $tea.Model {
|
|
24751
|
+
constructor(map) {
|
|
24752
|
+
super(map);
|
|
24753
|
+
}
|
|
24754
|
+
static names() {
|
|
24755
|
+
return {
|
|
24756
|
+
hasMore: 'HasMore',
|
|
24757
|
+
total: 'Total',
|
|
24758
|
+
userList: 'UserList',
|
|
24759
|
+
};
|
|
24760
|
+
}
|
|
24761
|
+
static types() {
|
|
24762
|
+
return {
|
|
24763
|
+
hasMore: 'boolean',
|
|
24764
|
+
total: 'number',
|
|
24765
|
+
userList: { 'type': 'array', 'itemType': ListMessageGroupUserByIdResponseBodyResultUserList },
|
|
24766
|
+
};
|
|
24767
|
+
}
|
|
24768
|
+
}
|
|
24769
|
+
exports.ListMessageGroupUserByIdResponseBodyResult = ListMessageGroupUserByIdResponseBodyResult;
|
|
23594
24770
|
class ListPlaylistResponseBodyProgramList extends $tea.Model {
|
|
23595
24771
|
constructor(map) {
|
|
23596
24772
|
super(map);
|
|
@@ -23719,6 +24895,100 @@ class ModifyCasterProgramRequestEpisode extends $tea.Model {
|
|
|
23719
24895
|
}
|
|
23720
24896
|
}
|
|
23721
24897
|
exports.ModifyCasterProgramRequestEpisode = ModifyCasterProgramRequestEpisode;
|
|
24898
|
+
class QueryMessageAppResponseBodyResultAppList extends $tea.Model {
|
|
24899
|
+
constructor(map) {
|
|
24900
|
+
super(map);
|
|
24901
|
+
}
|
|
24902
|
+
static names() {
|
|
24903
|
+
return {
|
|
24904
|
+
appConfig: 'AppConfig',
|
|
24905
|
+
appId: 'AppId',
|
|
24906
|
+
appName: 'AppName',
|
|
24907
|
+
createTime: 'CreateTime',
|
|
24908
|
+
extension: 'Extension',
|
|
24909
|
+
status: 'Status',
|
|
24910
|
+
};
|
|
24911
|
+
}
|
|
24912
|
+
static types() {
|
|
24913
|
+
return {
|
|
24914
|
+
appConfig: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
24915
|
+
appId: 'string',
|
|
24916
|
+
appName: 'string',
|
|
24917
|
+
createTime: 'number',
|
|
24918
|
+
extension: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
24919
|
+
status: 'number',
|
|
24920
|
+
};
|
|
24921
|
+
}
|
|
24922
|
+
}
|
|
24923
|
+
exports.QueryMessageAppResponseBodyResultAppList = QueryMessageAppResponseBodyResultAppList;
|
|
24924
|
+
class QueryMessageAppResponseBodyResult extends $tea.Model {
|
|
24925
|
+
constructor(map) {
|
|
24926
|
+
super(map);
|
|
24927
|
+
}
|
|
24928
|
+
static names() {
|
|
24929
|
+
return {
|
|
24930
|
+
appList: 'AppList',
|
|
24931
|
+
hasMore: 'HasMore',
|
|
24932
|
+
totalCount: 'TotalCount',
|
|
24933
|
+
};
|
|
24934
|
+
}
|
|
24935
|
+
static types() {
|
|
24936
|
+
return {
|
|
24937
|
+
appList: { 'type': 'array', 'itemType': QueryMessageAppResponseBodyResultAppList },
|
|
24938
|
+
hasMore: 'boolean',
|
|
24939
|
+
totalCount: 'number',
|
|
24940
|
+
};
|
|
24941
|
+
}
|
|
24942
|
+
}
|
|
24943
|
+
exports.QueryMessageAppResponseBodyResult = QueryMessageAppResponseBodyResult;
|
|
24944
|
+
class SendLikeResponseBodyResult extends $tea.Model {
|
|
24945
|
+
constructor(map) {
|
|
24946
|
+
super(map);
|
|
24947
|
+
}
|
|
24948
|
+
static names() {
|
|
24949
|
+
return {
|
|
24950
|
+
likeCount: 'LikeCount',
|
|
24951
|
+
};
|
|
24952
|
+
}
|
|
24953
|
+
static types() {
|
|
24954
|
+
return {
|
|
24955
|
+
likeCount: 'number',
|
|
24956
|
+
};
|
|
24957
|
+
}
|
|
24958
|
+
}
|
|
24959
|
+
exports.SendLikeResponseBodyResult = SendLikeResponseBodyResult;
|
|
24960
|
+
class SendMessageToGroupResponseBodyResult extends $tea.Model {
|
|
24961
|
+
constructor(map) {
|
|
24962
|
+
super(map);
|
|
24963
|
+
}
|
|
24964
|
+
static names() {
|
|
24965
|
+
return {
|
|
24966
|
+
messageId: 'MessageId',
|
|
24967
|
+
};
|
|
24968
|
+
}
|
|
24969
|
+
static types() {
|
|
24970
|
+
return {
|
|
24971
|
+
messageId: 'string',
|
|
24972
|
+
};
|
|
24973
|
+
}
|
|
24974
|
+
}
|
|
24975
|
+
exports.SendMessageToGroupResponseBodyResult = SendMessageToGroupResponseBodyResult;
|
|
24976
|
+
class SendMessageToGroupUsersResponseBodyResult extends $tea.Model {
|
|
24977
|
+
constructor(map) {
|
|
24978
|
+
super(map);
|
|
24979
|
+
}
|
|
24980
|
+
static names() {
|
|
24981
|
+
return {
|
|
24982
|
+
messageId: 'MessageId',
|
|
24983
|
+
};
|
|
24984
|
+
}
|
|
24985
|
+
static types() {
|
|
24986
|
+
return {
|
|
24987
|
+
messageId: 'string',
|
|
24988
|
+
};
|
|
24989
|
+
}
|
|
24990
|
+
}
|
|
24991
|
+
exports.SendMessageToGroupUsersResponseBodyResult = SendMessageToGroupUsersResponseBodyResult;
|
|
23722
24992
|
class SetCasterSyncGroupRequestSyncGroup extends $tea.Model {
|
|
23723
24993
|
constructor(map) {
|
|
23724
24994
|
super(map);
|
|
@@ -23947,6 +25217,38 @@ class UpdateCasterSceneAudioRequestAudioLayer extends $tea.Model {
|
|
|
23947
25217
|
}
|
|
23948
25218
|
}
|
|
23949
25219
|
exports.UpdateCasterSceneAudioRequestAudioLayer = UpdateCasterSceneAudioRequestAudioLayer;
|
|
25220
|
+
class UpdateMessageAppResponseBodyResult extends $tea.Model {
|
|
25221
|
+
constructor(map) {
|
|
25222
|
+
super(map);
|
|
25223
|
+
}
|
|
25224
|
+
static names() {
|
|
25225
|
+
return {
|
|
25226
|
+
success: 'Success',
|
|
25227
|
+
};
|
|
25228
|
+
}
|
|
25229
|
+
static types() {
|
|
25230
|
+
return {
|
|
25231
|
+
success: 'boolean',
|
|
25232
|
+
};
|
|
25233
|
+
}
|
|
25234
|
+
}
|
|
25235
|
+
exports.UpdateMessageAppResponseBodyResult = UpdateMessageAppResponseBodyResult;
|
|
25236
|
+
class UpdateMessageGroupResponseBodyResult extends $tea.Model {
|
|
25237
|
+
constructor(map) {
|
|
25238
|
+
super(map);
|
|
25239
|
+
}
|
|
25240
|
+
static names() {
|
|
25241
|
+
return {
|
|
25242
|
+
success: 'Success',
|
|
25243
|
+
};
|
|
25244
|
+
}
|
|
25245
|
+
static types() {
|
|
25246
|
+
return {
|
|
25247
|
+
success: 'boolean',
|
|
25248
|
+
};
|
|
25249
|
+
}
|
|
25250
|
+
}
|
|
25251
|
+
exports.UpdateMessageGroupResponseBodyResult = UpdateMessageGroupResponseBodyResult;
|
|
23950
25252
|
class Client extends openapi_client_1.default {
|
|
23951
25253
|
constructor(config) {
|
|
23952
25254
|
super(config);
|
|
@@ -24962,6 +26264,44 @@ class Client extends openapi_client_1.default {
|
|
|
24962
26264
|
let runtime = new $Util.RuntimeOptions({});
|
|
24963
26265
|
return await this.addLiveSnapshotDetectPornConfigWithOptions(request, runtime);
|
|
24964
26266
|
}
|
|
26267
|
+
async addLiveSnapshotNotifyConfigWithOptions(request, runtime) {
|
|
26268
|
+
tea_util_1.default.validateModel(request);
|
|
26269
|
+
let query = {};
|
|
26270
|
+
if (!tea_util_1.default.isUnset(request.domainName)) {
|
|
26271
|
+
query["DomainName"] = request.domainName;
|
|
26272
|
+
}
|
|
26273
|
+
if (!tea_util_1.default.isUnset(request.notifyAuthKey)) {
|
|
26274
|
+
query["NotifyAuthKey"] = request.notifyAuthKey;
|
|
26275
|
+
}
|
|
26276
|
+
if (!tea_util_1.default.isUnset(request.notifyReqAuth)) {
|
|
26277
|
+
query["NotifyReqAuth"] = request.notifyReqAuth;
|
|
26278
|
+
}
|
|
26279
|
+
if (!tea_util_1.default.isUnset(request.notifyUrl)) {
|
|
26280
|
+
query["NotifyUrl"] = request.notifyUrl;
|
|
26281
|
+
}
|
|
26282
|
+
if (!tea_util_1.default.isUnset(request.ownerId)) {
|
|
26283
|
+
query["OwnerId"] = request.ownerId;
|
|
26284
|
+
}
|
|
26285
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
26286
|
+
query: openapi_util_1.default.query(query),
|
|
26287
|
+
});
|
|
26288
|
+
let params = new $OpenApi.Params({
|
|
26289
|
+
action: "AddLiveSnapshotNotifyConfig",
|
|
26290
|
+
version: "2016-11-01",
|
|
26291
|
+
protocol: "HTTPS",
|
|
26292
|
+
pathname: "/",
|
|
26293
|
+
method: "POST",
|
|
26294
|
+
authType: "AK",
|
|
26295
|
+
style: "RPC",
|
|
26296
|
+
reqBodyType: "formData",
|
|
26297
|
+
bodyType: "json",
|
|
26298
|
+
});
|
|
26299
|
+
return $tea.cast(await this.callApi(params, req, runtime), new AddLiveSnapshotNotifyConfigResponse({}));
|
|
26300
|
+
}
|
|
26301
|
+
async addLiveSnapshotNotifyConfig(request) {
|
|
26302
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
26303
|
+
return await this.addLiveSnapshotNotifyConfigWithOptions(request, runtime);
|
|
26304
|
+
}
|
|
24965
26305
|
async addLiveStreamTranscodeWithOptions(request, runtime) {
|
|
24966
26306
|
tea_util_1.default.validateModel(request);
|
|
24967
26307
|
let query = {};
|
|
@@ -25602,35 +26942,6 @@ class Client extends openapi_client_1.default {
|
|
|
25602
26942
|
let runtime = new $Util.RuntimeOptions({});
|
|
25603
26943
|
return await this.closeLiveShiftWithOptions(request, runtime);
|
|
25604
26944
|
}
|
|
25605
|
-
async closeMessageGroupWithOptions(request, runtime) {
|
|
25606
|
-
tea_util_1.default.validateModel(request);
|
|
25607
|
-
let body = {};
|
|
25608
|
-
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
25609
|
-
body["AppId"] = request.appId;
|
|
25610
|
-
}
|
|
25611
|
-
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
25612
|
-
body["GroupId"] = request.groupId;
|
|
25613
|
-
}
|
|
25614
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
25615
|
-
body: openapi_util_1.default.parseToMap(body),
|
|
25616
|
-
});
|
|
25617
|
-
let params = new $OpenApi.Params({
|
|
25618
|
-
action: "CloseMessageGroup",
|
|
25619
|
-
version: "2016-11-01",
|
|
25620
|
-
protocol: "HTTPS",
|
|
25621
|
-
pathname: "/",
|
|
25622
|
-
method: "POST",
|
|
25623
|
-
authType: "AK",
|
|
25624
|
-
style: "RPC",
|
|
25625
|
-
reqBodyType: "formData",
|
|
25626
|
-
bodyType: "json",
|
|
25627
|
-
});
|
|
25628
|
-
return $tea.cast(await this.callApi(params, req, runtime), new CloseMessageGroupResponse({}));
|
|
25629
|
-
}
|
|
25630
|
-
async closeMessageGroup(request) {
|
|
25631
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
25632
|
-
return await this.closeMessageGroupWithOptions(request, runtime);
|
|
25633
|
-
}
|
|
25634
26945
|
async copyCasterWithOptions(request, runtime) {
|
|
25635
26946
|
tea_util_1.default.validateModel(request);
|
|
25636
26947
|
let query = {};
|
|
@@ -25935,6 +27246,46 @@ class Client extends openapi_client_1.default {
|
|
|
25935
27246
|
let runtime = new $Util.RuntimeOptions({});
|
|
25936
27247
|
return await this.createLiveTranscodeTemplateWithOptions(request, runtime);
|
|
25937
27248
|
}
|
|
27249
|
+
async createMessageAppWithOptions(tmpReq, runtime) {
|
|
27250
|
+
tea_util_1.default.validateModel(tmpReq);
|
|
27251
|
+
let request = new CreateMessageAppShrinkRequest({});
|
|
27252
|
+
openapi_util_1.default.convert(tmpReq, request);
|
|
27253
|
+
if (!tea_util_1.default.isUnset(tmpReq.appConfig)) {
|
|
27254
|
+
request.appConfigShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.appConfig, "AppConfig", "json");
|
|
27255
|
+
}
|
|
27256
|
+
if (!tea_util_1.default.isUnset(tmpReq.extension)) {
|
|
27257
|
+
request.extensionShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.extension, "Extension", "json");
|
|
27258
|
+
}
|
|
27259
|
+
let body = {};
|
|
27260
|
+
if (!tea_util_1.default.isUnset(request.appConfigShrink)) {
|
|
27261
|
+
body["AppConfig"] = request.appConfigShrink;
|
|
27262
|
+
}
|
|
27263
|
+
if (!tea_util_1.default.isUnset(request.appName)) {
|
|
27264
|
+
body["AppName"] = request.appName;
|
|
27265
|
+
}
|
|
27266
|
+
if (!tea_util_1.default.isUnset(request.extensionShrink)) {
|
|
27267
|
+
body["Extension"] = request.extensionShrink;
|
|
27268
|
+
}
|
|
27269
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
27270
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
27271
|
+
});
|
|
27272
|
+
let params = new $OpenApi.Params({
|
|
27273
|
+
action: "CreateMessageApp",
|
|
27274
|
+
version: "2016-11-01",
|
|
27275
|
+
protocol: "HTTPS",
|
|
27276
|
+
pathname: "/",
|
|
27277
|
+
method: "POST",
|
|
27278
|
+
authType: "AK",
|
|
27279
|
+
style: "RPC",
|
|
27280
|
+
reqBodyType: "formData",
|
|
27281
|
+
bodyType: "json",
|
|
27282
|
+
});
|
|
27283
|
+
return $tea.cast(await this.callApi(params, req, runtime), new CreateMessageAppResponse({}));
|
|
27284
|
+
}
|
|
27285
|
+
async createMessageApp(request) {
|
|
27286
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
27287
|
+
return await this.createMessageAppWithOptions(request, runtime);
|
|
27288
|
+
}
|
|
25938
27289
|
async createMessageGroupWithOptions(tmpReq, runtime) {
|
|
25939
27290
|
tea_util_1.default.validateModel(tmpReq);
|
|
25940
27291
|
let request = new CreateMessageGroupShrinkRequest({});
|
|
@@ -26807,6 +28158,35 @@ class Client extends openapi_client_1.default {
|
|
|
26807
28158
|
let runtime = new $Util.RuntimeOptions({});
|
|
26808
28159
|
return await this.deleteLiveSnapshotDetectPornConfigWithOptions(request, runtime);
|
|
26809
28160
|
}
|
|
28161
|
+
async deleteLiveSnapshotNotifyConfigWithOptions(request, runtime) {
|
|
28162
|
+
tea_util_1.default.validateModel(request);
|
|
28163
|
+
let query = {};
|
|
28164
|
+
if (!tea_util_1.default.isUnset(request.domainName)) {
|
|
28165
|
+
query["DomainName"] = request.domainName;
|
|
28166
|
+
}
|
|
28167
|
+
if (!tea_util_1.default.isUnset(request.ownerId)) {
|
|
28168
|
+
query["OwnerId"] = request.ownerId;
|
|
28169
|
+
}
|
|
28170
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
28171
|
+
query: openapi_util_1.default.query(query),
|
|
28172
|
+
});
|
|
28173
|
+
let params = new $OpenApi.Params({
|
|
28174
|
+
action: "DeleteLiveSnapshotNotifyConfig",
|
|
28175
|
+
version: "2016-11-01",
|
|
28176
|
+
protocol: "HTTPS",
|
|
28177
|
+
pathname: "/",
|
|
28178
|
+
method: "POST",
|
|
28179
|
+
authType: "AK",
|
|
28180
|
+
style: "RPC",
|
|
28181
|
+
reqBodyType: "formData",
|
|
28182
|
+
bodyType: "json",
|
|
28183
|
+
});
|
|
28184
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DeleteLiveSnapshotNotifyConfigResponse({}));
|
|
28185
|
+
}
|
|
28186
|
+
async deleteLiveSnapshotNotifyConfig(request) {
|
|
28187
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
28188
|
+
return await this.deleteLiveSnapshotNotifyConfigWithOptions(request, runtime);
|
|
28189
|
+
}
|
|
26810
28190
|
async deleteLiveSpecificStagingConfigWithOptions(request, runtime) {
|
|
26811
28191
|
tea_util_1.default.validateModel(request);
|
|
26812
28192
|
let query = {};
|
|
@@ -27760,6 +29140,9 @@ class Client extends openapi_client_1.default {
|
|
|
27760
29140
|
if (!tea_util_1.default.isUnset(request.area)) {
|
|
27761
29141
|
query["Area"] = request.area;
|
|
27762
29142
|
}
|
|
29143
|
+
if (!tea_util_1.default.isUnset(request.dataProtocol)) {
|
|
29144
|
+
query["DataProtocol"] = request.dataProtocol;
|
|
29145
|
+
}
|
|
27763
29146
|
if (!tea_util_1.default.isUnset(request.domainName)) {
|
|
27764
29147
|
query["DomainName"] = request.domainName;
|
|
27765
29148
|
}
|
|
@@ -29520,6 +30903,67 @@ class Client extends openapi_client_1.default {
|
|
|
29520
30903
|
let runtime = new $Util.RuntimeOptions({});
|
|
29521
30904
|
return await this.describeLiveSnapshotDetectPornConfigWithOptions(request, runtime);
|
|
29522
30905
|
}
|
|
30906
|
+
async describeLiveSnapshotNotifyConfigWithOptions(request, runtime) {
|
|
30907
|
+
tea_util_1.default.validateModel(request);
|
|
30908
|
+
let query = {};
|
|
30909
|
+
if (!tea_util_1.default.isUnset(request.domainName)) {
|
|
30910
|
+
query["DomainName"] = request.domainName;
|
|
30911
|
+
}
|
|
30912
|
+
if (!tea_util_1.default.isUnset(request.ownerId)) {
|
|
30913
|
+
query["OwnerId"] = request.ownerId;
|
|
30914
|
+
}
|
|
30915
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
30916
|
+
query: openapi_util_1.default.query(query),
|
|
30917
|
+
});
|
|
30918
|
+
let params = new $OpenApi.Params({
|
|
30919
|
+
action: "DescribeLiveSnapshotNotifyConfig",
|
|
30920
|
+
version: "2016-11-01",
|
|
30921
|
+
protocol: "HTTPS",
|
|
30922
|
+
pathname: "/",
|
|
30923
|
+
method: "POST",
|
|
30924
|
+
authType: "AK",
|
|
30925
|
+
style: "RPC",
|
|
30926
|
+
reqBodyType: "formData",
|
|
30927
|
+
bodyType: "json",
|
|
30928
|
+
});
|
|
30929
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DescribeLiveSnapshotNotifyConfigResponse({}));
|
|
30930
|
+
}
|
|
30931
|
+
async describeLiveSnapshotNotifyConfig(request) {
|
|
30932
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
30933
|
+
return await this.describeLiveSnapshotNotifyConfigWithOptions(request, runtime);
|
|
30934
|
+
}
|
|
30935
|
+
async describeLiveStreamAuthCheckingWithOptions(request, runtime) {
|
|
30936
|
+
tea_util_1.default.validateModel(request);
|
|
30937
|
+
let query = {};
|
|
30938
|
+
if (!tea_util_1.default.isUnset(request.domainName)) {
|
|
30939
|
+
query["DomainName"] = request.domainName;
|
|
30940
|
+
}
|
|
30941
|
+
if (!tea_util_1.default.isUnset(request.ownerId)) {
|
|
30942
|
+
query["OwnerId"] = request.ownerId;
|
|
30943
|
+
}
|
|
30944
|
+
if (!tea_util_1.default.isUnset(request.url)) {
|
|
30945
|
+
query["Url"] = request.url;
|
|
30946
|
+
}
|
|
30947
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
30948
|
+
query: openapi_util_1.default.query(query),
|
|
30949
|
+
});
|
|
30950
|
+
let params = new $OpenApi.Params({
|
|
30951
|
+
action: "DescribeLiveStreamAuthChecking",
|
|
30952
|
+
version: "2016-11-01",
|
|
30953
|
+
protocol: "HTTPS",
|
|
30954
|
+
pathname: "/",
|
|
30955
|
+
method: "POST",
|
|
30956
|
+
authType: "AK",
|
|
30957
|
+
style: "RPC",
|
|
30958
|
+
reqBodyType: "formData",
|
|
30959
|
+
bodyType: "json",
|
|
30960
|
+
});
|
|
30961
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DescribeLiveStreamAuthCheckingResponse({}));
|
|
30962
|
+
}
|
|
30963
|
+
async describeLiveStreamAuthChecking(request) {
|
|
30964
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
30965
|
+
return await this.describeLiveStreamAuthCheckingWithOptions(request, runtime);
|
|
30966
|
+
}
|
|
29523
30967
|
async describeLiveStreamBitRateDataWithOptions(request, runtime) {
|
|
29524
30968
|
tea_util_1.default.validateModel(request);
|
|
29525
30969
|
let query = {};
|
|
@@ -30201,6 +31645,56 @@ class Client extends openapi_client_1.default {
|
|
|
30201
31645
|
let runtime = new $Util.RuntimeOptions({});
|
|
30202
31646
|
return await this.describeLiveStreamsControlHistoryWithOptions(request, runtime);
|
|
30203
31647
|
}
|
|
31648
|
+
async describeLiveStreamsNotifyRecordsWithOptions(request, runtime) {
|
|
31649
|
+
tea_util_1.default.validateModel(request);
|
|
31650
|
+
let query = {};
|
|
31651
|
+
if (!tea_util_1.default.isUnset(request.appName)) {
|
|
31652
|
+
query["AppName"] = request.appName;
|
|
31653
|
+
}
|
|
31654
|
+
if (!tea_util_1.default.isUnset(request.domainName)) {
|
|
31655
|
+
query["DomainName"] = request.domainName;
|
|
31656
|
+
}
|
|
31657
|
+
if (!tea_util_1.default.isUnset(request.endTime)) {
|
|
31658
|
+
query["EndTime"] = request.endTime;
|
|
31659
|
+
}
|
|
31660
|
+
if (!tea_util_1.default.isUnset(request.ownerId)) {
|
|
31661
|
+
query["OwnerId"] = request.ownerId;
|
|
31662
|
+
}
|
|
31663
|
+
if (!tea_util_1.default.isUnset(request.pageNumber)) {
|
|
31664
|
+
query["PageNumber"] = request.pageNumber;
|
|
31665
|
+
}
|
|
31666
|
+
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
31667
|
+
query["PageSize"] = request.pageSize;
|
|
31668
|
+
}
|
|
31669
|
+
if (!tea_util_1.default.isUnset(request.startTime)) {
|
|
31670
|
+
query["StartTime"] = request.startTime;
|
|
31671
|
+
}
|
|
31672
|
+
if (!tea_util_1.default.isUnset(request.status)) {
|
|
31673
|
+
query["Status"] = request.status;
|
|
31674
|
+
}
|
|
31675
|
+
if (!tea_util_1.default.isUnset(request.streamName)) {
|
|
31676
|
+
query["StreamName"] = request.streamName;
|
|
31677
|
+
}
|
|
31678
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
31679
|
+
query: openapi_util_1.default.query(query),
|
|
31680
|
+
});
|
|
31681
|
+
let params = new $OpenApi.Params({
|
|
31682
|
+
action: "DescribeLiveStreamsNotifyRecords",
|
|
31683
|
+
version: "2016-11-01",
|
|
31684
|
+
protocol: "HTTPS",
|
|
31685
|
+
pathname: "/",
|
|
31686
|
+
method: "POST",
|
|
31687
|
+
authType: "AK",
|
|
31688
|
+
style: "RPC",
|
|
31689
|
+
reqBodyType: "formData",
|
|
31690
|
+
bodyType: "json",
|
|
31691
|
+
});
|
|
31692
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DescribeLiveStreamsNotifyRecordsResponse({}));
|
|
31693
|
+
}
|
|
31694
|
+
async describeLiveStreamsNotifyRecords(request) {
|
|
31695
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
31696
|
+
return await this.describeLiveStreamsNotifyRecordsWithOptions(request, runtime);
|
|
31697
|
+
}
|
|
30204
31698
|
async describeLiveStreamsNotifyUrlConfigWithOptions(request, runtime) {
|
|
30205
31699
|
tea_util_1.default.validateModel(request);
|
|
30206
31700
|
let query = {};
|
|
@@ -31599,6 +33093,32 @@ class Client extends openapi_client_1.default {
|
|
|
31599
33093
|
let runtime = new $Util.RuntimeOptions({});
|
|
31600
33094
|
return await this.getEditingJobInfoWithOptions(request, runtime);
|
|
31601
33095
|
}
|
|
33096
|
+
async getMessageAppWithOptions(request, runtime) {
|
|
33097
|
+
tea_util_1.default.validateModel(request);
|
|
33098
|
+
let body = {};
|
|
33099
|
+
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
33100
|
+
body["AppId"] = request.appId;
|
|
33101
|
+
}
|
|
33102
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
33103
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
33104
|
+
});
|
|
33105
|
+
let params = new $OpenApi.Params({
|
|
33106
|
+
action: "GetMessageApp",
|
|
33107
|
+
version: "2016-11-01",
|
|
33108
|
+
protocol: "HTTPS",
|
|
33109
|
+
pathname: "/",
|
|
33110
|
+
method: "POST",
|
|
33111
|
+
authType: "AK",
|
|
33112
|
+
style: "RPC",
|
|
33113
|
+
reqBodyType: "formData",
|
|
33114
|
+
bodyType: "json",
|
|
33115
|
+
});
|
|
33116
|
+
return $tea.cast(await this.callApi(params, req, runtime), new GetMessageAppResponse({}));
|
|
33117
|
+
}
|
|
33118
|
+
async getMessageApp(request) {
|
|
33119
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
33120
|
+
return await this.getMessageAppWithOptions(request, runtime);
|
|
33121
|
+
}
|
|
31602
33122
|
async getMessageGroupWithOptions(request, runtime) {
|
|
31603
33123
|
tea_util_1.default.validateModel(request);
|
|
31604
33124
|
let body = {};
|
|
@@ -31663,32 +33183,6 @@ class Client extends openapi_client_1.default {
|
|
|
31663
33183
|
let runtime = new $Util.RuntimeOptions({});
|
|
31664
33184
|
return await this.getMessageTokenWithOptions(request, runtime);
|
|
31665
33185
|
}
|
|
31666
|
-
async getMessageUserInfoWithOptions(request, runtime) {
|
|
31667
|
-
tea_util_1.default.validateModel(request);
|
|
31668
|
-
let body = {};
|
|
31669
|
-
if (!tea_util_1.default.isUnset(request.cloudUid)) {
|
|
31670
|
-
body["CloudUid"] = request.cloudUid;
|
|
31671
|
-
}
|
|
31672
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
31673
|
-
body: openapi_util_1.default.parseToMap(body),
|
|
31674
|
-
});
|
|
31675
|
-
let params = new $OpenApi.Params({
|
|
31676
|
-
action: "GetMessageUserInfo",
|
|
31677
|
-
version: "2016-11-01",
|
|
31678
|
-
protocol: "HTTPS",
|
|
31679
|
-
pathname: "/",
|
|
31680
|
-
method: "POST",
|
|
31681
|
-
authType: "AK",
|
|
31682
|
-
style: "RPC",
|
|
31683
|
-
reqBodyType: "formData",
|
|
31684
|
-
bodyType: "json",
|
|
31685
|
-
});
|
|
31686
|
-
return $tea.cast(await this.callApi(params, req, runtime), new GetMessageUserInfoResponse({}));
|
|
31687
|
-
}
|
|
31688
|
-
async getMessageUserInfo(request) {
|
|
31689
|
-
let runtime = new $Util.RuntimeOptions({});
|
|
31690
|
-
return await this.getMessageUserInfoWithOptions(request, runtime);
|
|
31691
|
-
}
|
|
31692
33186
|
async getMultiRateConfigWithOptions(request, runtime) {
|
|
31693
33187
|
tea_util_1.default.validateModel(request);
|
|
31694
33188
|
let query = {};
|
|
@@ -31995,6 +33489,9 @@ class Client extends openapi_client_1.default {
|
|
|
31995
33489
|
async listMessageWithOptions(request, runtime) {
|
|
31996
33490
|
tea_util_1.default.validateModel(request);
|
|
31997
33491
|
let body = {};
|
|
33492
|
+
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
33493
|
+
body["AppId"] = request.appId;
|
|
33494
|
+
}
|
|
31998
33495
|
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
31999
33496
|
body["GroupId"] = request.groupId;
|
|
32000
33497
|
}
|
|
@@ -32030,9 +33527,44 @@ class Client extends openapi_client_1.default {
|
|
|
32030
33527
|
let runtime = new $Util.RuntimeOptions({});
|
|
32031
33528
|
return await this.listMessageWithOptions(request, runtime);
|
|
32032
33529
|
}
|
|
33530
|
+
async listMessageAppWithOptions(request, runtime) {
|
|
33531
|
+
tea_util_1.default.validateModel(request);
|
|
33532
|
+
let body = {};
|
|
33533
|
+
if (!tea_util_1.default.isUnset(request.pageNum)) {
|
|
33534
|
+
body["PageNum"] = request.pageNum;
|
|
33535
|
+
}
|
|
33536
|
+
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
33537
|
+
body["PageSize"] = request.pageSize;
|
|
33538
|
+
}
|
|
33539
|
+
if (!tea_util_1.default.isUnset(request.sortType)) {
|
|
33540
|
+
body["SortType"] = request.sortType;
|
|
33541
|
+
}
|
|
33542
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
33543
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
33544
|
+
});
|
|
33545
|
+
let params = new $OpenApi.Params({
|
|
33546
|
+
action: "ListMessageApp",
|
|
33547
|
+
version: "2016-11-01",
|
|
33548
|
+
protocol: "HTTPS",
|
|
33549
|
+
pathname: "/",
|
|
33550
|
+
method: "POST",
|
|
33551
|
+
authType: "AK",
|
|
33552
|
+
style: "RPC",
|
|
33553
|
+
reqBodyType: "formData",
|
|
33554
|
+
bodyType: "json",
|
|
33555
|
+
});
|
|
33556
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ListMessageAppResponse({}));
|
|
33557
|
+
}
|
|
33558
|
+
async listMessageApp(request) {
|
|
33559
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
33560
|
+
return await this.listMessageAppWithOptions(request, runtime);
|
|
33561
|
+
}
|
|
32033
33562
|
async listMessageGroupWithOptions(request, runtime) {
|
|
32034
33563
|
tea_util_1.default.validateModel(request);
|
|
32035
33564
|
let body = {};
|
|
33565
|
+
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
33566
|
+
body["AppId"] = request.appId;
|
|
33567
|
+
}
|
|
32036
33568
|
if (!tea_util_1.default.isUnset(request.pageNum)) {
|
|
32037
33569
|
body["PageNum"] = request.pageNum;
|
|
32038
33570
|
}
|
|
@@ -32083,9 +33615,6 @@ class Client extends openapi_client_1.default {
|
|
|
32083
33615
|
if (!tea_util_1.default.isUnset(request.sortType)) {
|
|
32084
33616
|
body["SortType"] = request.sortType;
|
|
32085
33617
|
}
|
|
32086
|
-
if (!tea_util_1.default.isUnset(request.type)) {
|
|
32087
|
-
body["Type"] = request.type;
|
|
32088
|
-
}
|
|
32089
33618
|
let req = new $OpenApi.OpenApiRequest({
|
|
32090
33619
|
body: openapi_util_1.default.parseToMap(body),
|
|
32091
33620
|
});
|
|
@@ -32106,6 +33635,43 @@ class Client extends openapi_client_1.default {
|
|
|
32106
33635
|
let runtime = new $Util.RuntimeOptions({});
|
|
32107
33636
|
return await this.listMessageGroupUserWithOptions(request, runtime);
|
|
32108
33637
|
}
|
|
33638
|
+
async listMessageGroupUserByIdWithOptions(tmpReq, runtime) {
|
|
33639
|
+
tea_util_1.default.validateModel(tmpReq);
|
|
33640
|
+
let request = new ListMessageGroupUserByIdShrinkRequest({});
|
|
33641
|
+
openapi_util_1.default.convert(tmpReq, request);
|
|
33642
|
+
if (!tea_util_1.default.isUnset(tmpReq.userIdList)) {
|
|
33643
|
+
request.userIdListShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.userIdList, "UserIdList", "simple");
|
|
33644
|
+
}
|
|
33645
|
+
let body = {};
|
|
33646
|
+
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
33647
|
+
body["AppId"] = request.appId;
|
|
33648
|
+
}
|
|
33649
|
+
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
33650
|
+
body["GroupId"] = request.groupId;
|
|
33651
|
+
}
|
|
33652
|
+
if (!tea_util_1.default.isUnset(request.userIdListShrink)) {
|
|
33653
|
+
body["UserIdList"] = request.userIdListShrink;
|
|
33654
|
+
}
|
|
33655
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
33656
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
33657
|
+
});
|
|
33658
|
+
let params = new $OpenApi.Params({
|
|
33659
|
+
action: "ListMessageGroupUserById",
|
|
33660
|
+
version: "2016-11-01",
|
|
33661
|
+
protocol: "HTTPS",
|
|
33662
|
+
pathname: "/",
|
|
33663
|
+
method: "POST",
|
|
33664
|
+
authType: "AK",
|
|
33665
|
+
style: "RPC",
|
|
33666
|
+
reqBodyType: "formData",
|
|
33667
|
+
bodyType: "json",
|
|
33668
|
+
});
|
|
33669
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ListMessageGroupUserByIdResponse({}));
|
|
33670
|
+
}
|
|
33671
|
+
async listMessageGroupUserById(request) {
|
|
33672
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
33673
|
+
return await this.listMessageGroupUserByIdWithOptions(request, runtime);
|
|
33674
|
+
}
|
|
32109
33675
|
async listPlaylistWithOptions(request, runtime) {
|
|
32110
33676
|
tea_util_1.default.validateModel(request);
|
|
32111
33677
|
let query = {};
|
|
@@ -32665,6 +34231,44 @@ class Client extends openapi_client_1.default {
|
|
|
32665
34231
|
let runtime = new $Util.RuntimeOptions({});
|
|
32666
34232
|
return await this.publishLiveStagingConfigToProductionWithOptions(request, runtime);
|
|
32667
34233
|
}
|
|
34234
|
+
async queryMessageAppWithOptions(request, runtime) {
|
|
34235
|
+
tea_util_1.default.validateModel(request);
|
|
34236
|
+
let body = {};
|
|
34237
|
+
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
34238
|
+
body["AppId"] = request.appId;
|
|
34239
|
+
}
|
|
34240
|
+
if (!tea_util_1.default.isUnset(request.appName)) {
|
|
34241
|
+
body["AppName"] = request.appName;
|
|
34242
|
+
}
|
|
34243
|
+
if (!tea_util_1.default.isUnset(request.pageNum)) {
|
|
34244
|
+
body["PageNum"] = request.pageNum;
|
|
34245
|
+
}
|
|
34246
|
+
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
34247
|
+
body["PageSize"] = request.pageSize;
|
|
34248
|
+
}
|
|
34249
|
+
if (!tea_util_1.default.isUnset(request.sortType)) {
|
|
34250
|
+
body["SortType"] = request.sortType;
|
|
34251
|
+
}
|
|
34252
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
34253
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
34254
|
+
});
|
|
34255
|
+
let params = new $OpenApi.Params({
|
|
34256
|
+
action: "QueryMessageApp",
|
|
34257
|
+
version: "2016-11-01",
|
|
34258
|
+
protocol: "HTTPS",
|
|
34259
|
+
pathname: "/",
|
|
34260
|
+
method: "POST",
|
|
34261
|
+
authType: "AK",
|
|
34262
|
+
style: "RPC",
|
|
34263
|
+
reqBodyType: "formData",
|
|
34264
|
+
bodyType: "json",
|
|
34265
|
+
});
|
|
34266
|
+
return $tea.cast(await this.callApi(params, req, runtime), new QueryMessageAppResponse({}));
|
|
34267
|
+
}
|
|
34268
|
+
async queryMessageApp(request) {
|
|
34269
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
34270
|
+
return await this.queryMessageAppWithOptions(request, runtime);
|
|
34271
|
+
}
|
|
32668
34272
|
async querySnapshotCallbackAuthWithOptions(request, runtime) {
|
|
32669
34273
|
tea_util_1.default.validateModel(request);
|
|
32670
34274
|
let query = {};
|
|
@@ -32817,6 +34421,35 @@ class Client extends openapi_client_1.default {
|
|
|
32817
34421
|
let runtime = new $Util.RuntimeOptions({});
|
|
32818
34422
|
return await this.removeShowFromShowListWithOptions(request, runtime);
|
|
32819
34423
|
}
|
|
34424
|
+
async restartCasterWithOptions(request, runtime) {
|
|
34425
|
+
tea_util_1.default.validateModel(request);
|
|
34426
|
+
let query = {};
|
|
34427
|
+
if (!tea_util_1.default.isUnset(request.casterId)) {
|
|
34428
|
+
query["CasterId"] = request.casterId;
|
|
34429
|
+
}
|
|
34430
|
+
if (!tea_util_1.default.isUnset(request.ownerId)) {
|
|
34431
|
+
query["OwnerId"] = request.ownerId;
|
|
34432
|
+
}
|
|
34433
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
34434
|
+
query: openapi_util_1.default.query(query),
|
|
34435
|
+
});
|
|
34436
|
+
let params = new $OpenApi.Params({
|
|
34437
|
+
action: "RestartCaster",
|
|
34438
|
+
version: "2016-11-01",
|
|
34439
|
+
protocol: "HTTPS",
|
|
34440
|
+
pathname: "/",
|
|
34441
|
+
method: "POST",
|
|
34442
|
+
authType: "AK",
|
|
34443
|
+
style: "RPC",
|
|
34444
|
+
reqBodyType: "formData",
|
|
34445
|
+
bodyType: "json",
|
|
34446
|
+
});
|
|
34447
|
+
return $tea.cast(await this.callApi(params, req, runtime), new RestartCasterResponse({}));
|
|
34448
|
+
}
|
|
34449
|
+
async restartCaster(request) {
|
|
34450
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
34451
|
+
return await this.restartCasterWithOptions(request, runtime);
|
|
34452
|
+
}
|
|
32820
34453
|
async resumeLiveStreamWithOptions(request, runtime) {
|
|
32821
34454
|
tea_util_1.default.validateModel(request);
|
|
32822
34455
|
let query = {};
|
|
@@ -32890,6 +34523,128 @@ class Client extends openapi_client_1.default {
|
|
|
32890
34523
|
let runtime = new $Util.RuntimeOptions({});
|
|
32891
34524
|
return await this.rollbackLiveStagingConfigWithOptions(request, runtime);
|
|
32892
34525
|
}
|
|
34526
|
+
async sendLikeWithOptions(request, runtime) {
|
|
34527
|
+
tea_util_1.default.validateModel(request);
|
|
34528
|
+
let body = {};
|
|
34529
|
+
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
34530
|
+
body["AppId"] = request.appId;
|
|
34531
|
+
}
|
|
34532
|
+
if (!tea_util_1.default.isUnset(request.broadCastType)) {
|
|
34533
|
+
body["BroadCastType"] = request.broadCastType;
|
|
34534
|
+
}
|
|
34535
|
+
if (!tea_util_1.default.isUnset(request.count)) {
|
|
34536
|
+
body["Count"] = request.count;
|
|
34537
|
+
}
|
|
34538
|
+
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
34539
|
+
body["GroupId"] = request.groupId;
|
|
34540
|
+
}
|
|
34541
|
+
if (!tea_util_1.default.isUnset(request.operatorUserId)) {
|
|
34542
|
+
body["OperatorUserId"] = request.operatorUserId;
|
|
34543
|
+
}
|
|
34544
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
34545
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
34546
|
+
});
|
|
34547
|
+
let params = new $OpenApi.Params({
|
|
34548
|
+
action: "SendLike",
|
|
34549
|
+
version: "2016-11-01",
|
|
34550
|
+
protocol: "HTTPS",
|
|
34551
|
+
pathname: "/",
|
|
34552
|
+
method: "POST",
|
|
34553
|
+
authType: "AK",
|
|
34554
|
+
style: "RPC",
|
|
34555
|
+
reqBodyType: "formData",
|
|
34556
|
+
bodyType: "json",
|
|
34557
|
+
});
|
|
34558
|
+
return $tea.cast(await this.callApi(params, req, runtime), new SendLikeResponse({}));
|
|
34559
|
+
}
|
|
34560
|
+
async sendLike(request) {
|
|
34561
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
34562
|
+
return await this.sendLikeWithOptions(request, runtime);
|
|
34563
|
+
}
|
|
34564
|
+
async sendMessageToGroupWithOptions(request, runtime) {
|
|
34565
|
+
tea_util_1.default.validateModel(request);
|
|
34566
|
+
let body = {};
|
|
34567
|
+
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
34568
|
+
body["AppId"] = request.appId;
|
|
34569
|
+
}
|
|
34570
|
+
if (!tea_util_1.default.isUnset(request.data)) {
|
|
34571
|
+
body["Data"] = request.data;
|
|
34572
|
+
}
|
|
34573
|
+
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
34574
|
+
body["GroupId"] = request.groupId;
|
|
34575
|
+
}
|
|
34576
|
+
if (!tea_util_1.default.isUnset(request.operatorUserId)) {
|
|
34577
|
+
body["OperatorUserId"] = request.operatorUserId;
|
|
34578
|
+
}
|
|
34579
|
+
if (!tea_util_1.default.isUnset(request.type)) {
|
|
34580
|
+
body["Type"] = request.type;
|
|
34581
|
+
}
|
|
34582
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
34583
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
34584
|
+
});
|
|
34585
|
+
let params = new $OpenApi.Params({
|
|
34586
|
+
action: "SendMessageToGroup",
|
|
34587
|
+
version: "2016-11-01",
|
|
34588
|
+
protocol: "HTTPS",
|
|
34589
|
+
pathname: "/",
|
|
34590
|
+
method: "POST",
|
|
34591
|
+
authType: "AK",
|
|
34592
|
+
style: "RPC",
|
|
34593
|
+
reqBodyType: "formData",
|
|
34594
|
+
bodyType: "json",
|
|
34595
|
+
});
|
|
34596
|
+
return $tea.cast(await this.callApi(params, req, runtime), new SendMessageToGroupResponse({}));
|
|
34597
|
+
}
|
|
34598
|
+
async sendMessageToGroup(request) {
|
|
34599
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
34600
|
+
return await this.sendMessageToGroupWithOptions(request, runtime);
|
|
34601
|
+
}
|
|
34602
|
+
async sendMessageToGroupUsersWithOptions(tmpReq, runtime) {
|
|
34603
|
+
tea_util_1.default.validateModel(tmpReq);
|
|
34604
|
+
let request = new SendMessageToGroupUsersShrinkRequest({});
|
|
34605
|
+
openapi_util_1.default.convert(tmpReq, request);
|
|
34606
|
+
if (!tea_util_1.default.isUnset(tmpReq.receiverIdList)) {
|
|
34607
|
+
request.receiverIdListShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.receiverIdList, "ReceiverIdList", "json");
|
|
34608
|
+
}
|
|
34609
|
+
let body = {};
|
|
34610
|
+
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
34611
|
+
body["AppId"] = request.appId;
|
|
34612
|
+
}
|
|
34613
|
+
if (!tea_util_1.default.isUnset(request.data)) {
|
|
34614
|
+
body["Data"] = request.data;
|
|
34615
|
+
}
|
|
34616
|
+
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
34617
|
+
body["GroupId"] = request.groupId;
|
|
34618
|
+
}
|
|
34619
|
+
if (!tea_util_1.default.isUnset(request.operatorUserId)) {
|
|
34620
|
+
body["OperatorUserId"] = request.operatorUserId;
|
|
34621
|
+
}
|
|
34622
|
+
if (!tea_util_1.default.isUnset(request.receiverIdListShrink)) {
|
|
34623
|
+
body["ReceiverIdList"] = request.receiverIdListShrink;
|
|
34624
|
+
}
|
|
34625
|
+
if (!tea_util_1.default.isUnset(request.type)) {
|
|
34626
|
+
body["Type"] = request.type;
|
|
34627
|
+
}
|
|
34628
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
34629
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
34630
|
+
});
|
|
34631
|
+
let params = new $OpenApi.Params({
|
|
34632
|
+
action: "SendMessageToGroupUsers",
|
|
34633
|
+
version: "2016-11-01",
|
|
34634
|
+
protocol: "HTTPS",
|
|
34635
|
+
pathname: "/",
|
|
34636
|
+
method: "POST",
|
|
34637
|
+
authType: "AK",
|
|
34638
|
+
style: "RPC",
|
|
34639
|
+
reqBodyType: "formData",
|
|
34640
|
+
bodyType: "json",
|
|
34641
|
+
});
|
|
34642
|
+
return $tea.cast(await this.callApi(params, req, runtime), new SendMessageToGroupUsersResponse({}));
|
|
34643
|
+
}
|
|
34644
|
+
async sendMessageToGroupUsers(request) {
|
|
34645
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
34646
|
+
return await this.sendMessageToGroupUsersWithOptions(request, runtime);
|
|
34647
|
+
}
|
|
32893
34648
|
async sendRoomNotificationWithOptions(request, runtime) {
|
|
32894
34649
|
tea_util_1.default.validateModel(request);
|
|
32895
34650
|
let query = {};
|
|
@@ -34267,6 +36022,44 @@ class Client extends openapi_client_1.default {
|
|
|
34267
36022
|
let runtime = new $Util.RuntimeOptions({});
|
|
34268
36023
|
return await this.updateLiveSnapshotDetectPornConfigWithOptions(request, runtime);
|
|
34269
36024
|
}
|
|
36025
|
+
async updateLiveSnapshotNotifyConfigWithOptions(request, runtime) {
|
|
36026
|
+
tea_util_1.default.validateModel(request);
|
|
36027
|
+
let query = {};
|
|
36028
|
+
if (!tea_util_1.default.isUnset(request.domainName)) {
|
|
36029
|
+
query["DomainName"] = request.domainName;
|
|
36030
|
+
}
|
|
36031
|
+
if (!tea_util_1.default.isUnset(request.notifyAuthKey)) {
|
|
36032
|
+
query["NotifyAuthKey"] = request.notifyAuthKey;
|
|
36033
|
+
}
|
|
36034
|
+
if (!tea_util_1.default.isUnset(request.notifyReqAuth)) {
|
|
36035
|
+
query["NotifyReqAuth"] = request.notifyReqAuth;
|
|
36036
|
+
}
|
|
36037
|
+
if (!tea_util_1.default.isUnset(request.notifyUrl)) {
|
|
36038
|
+
query["NotifyUrl"] = request.notifyUrl;
|
|
36039
|
+
}
|
|
36040
|
+
if (!tea_util_1.default.isUnset(request.ownerId)) {
|
|
36041
|
+
query["OwnerId"] = request.ownerId;
|
|
36042
|
+
}
|
|
36043
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
36044
|
+
query: openapi_util_1.default.query(query),
|
|
36045
|
+
});
|
|
36046
|
+
let params = new $OpenApi.Params({
|
|
36047
|
+
action: "UpdateLiveSnapshotNotifyConfig",
|
|
36048
|
+
version: "2016-11-01",
|
|
36049
|
+
protocol: "HTTPS",
|
|
36050
|
+
pathname: "/",
|
|
36051
|
+
method: "POST",
|
|
36052
|
+
authType: "AK",
|
|
36053
|
+
style: "RPC",
|
|
36054
|
+
reqBodyType: "formData",
|
|
36055
|
+
bodyType: "json",
|
|
36056
|
+
});
|
|
36057
|
+
return $tea.cast(await this.callApi(params, req, runtime), new UpdateLiveSnapshotNotifyConfigResponse({}));
|
|
36058
|
+
}
|
|
36059
|
+
async updateLiveSnapshotNotifyConfig(request) {
|
|
36060
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
36061
|
+
return await this.updateLiveSnapshotNotifyConfigWithOptions(request, runtime);
|
|
36062
|
+
}
|
|
34270
36063
|
async updateLiveStreamMonitorWithOptions(request, runtime) {
|
|
34271
36064
|
tea_util_1.default.validateModel(request);
|
|
34272
36065
|
let query = {};
|
|
@@ -34443,6 +36236,86 @@ class Client extends openapi_client_1.default {
|
|
|
34443
36236
|
let runtime = new $Util.RuntimeOptions({});
|
|
34444
36237
|
return await this.updateLiveTopLevelDomainWithOptions(request, runtime);
|
|
34445
36238
|
}
|
|
36239
|
+
async updateMessageAppWithOptions(tmpReq, runtime) {
|
|
36240
|
+
tea_util_1.default.validateModel(tmpReq);
|
|
36241
|
+
let request = new UpdateMessageAppShrinkRequest({});
|
|
36242
|
+
openapi_util_1.default.convert(tmpReq, request);
|
|
36243
|
+
if (!tea_util_1.default.isUnset(tmpReq.appConfig)) {
|
|
36244
|
+
request.appConfigShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.appConfig, "AppConfig", "json");
|
|
36245
|
+
}
|
|
36246
|
+
if (!tea_util_1.default.isUnset(tmpReq.extension)) {
|
|
36247
|
+
request.extensionShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.extension, "Extension", "json");
|
|
36248
|
+
}
|
|
36249
|
+
let body = {};
|
|
36250
|
+
if (!tea_util_1.default.isUnset(request.appConfigShrink)) {
|
|
36251
|
+
body["AppConfig"] = request.appConfigShrink;
|
|
36252
|
+
}
|
|
36253
|
+
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
36254
|
+
body["AppId"] = request.appId;
|
|
36255
|
+
}
|
|
36256
|
+
if (!tea_util_1.default.isUnset(request.appName)) {
|
|
36257
|
+
body["AppName"] = request.appName;
|
|
36258
|
+
}
|
|
36259
|
+
if (!tea_util_1.default.isUnset(request.extensionShrink)) {
|
|
36260
|
+
body["Extension"] = request.extensionShrink;
|
|
36261
|
+
}
|
|
36262
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
36263
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
36264
|
+
});
|
|
36265
|
+
let params = new $OpenApi.Params({
|
|
36266
|
+
action: "UpdateMessageApp",
|
|
36267
|
+
version: "2016-11-01",
|
|
36268
|
+
protocol: "HTTPS",
|
|
36269
|
+
pathname: "/",
|
|
36270
|
+
method: "POST",
|
|
36271
|
+
authType: "AK",
|
|
36272
|
+
style: "RPC",
|
|
36273
|
+
reqBodyType: "formData",
|
|
36274
|
+
bodyType: "json",
|
|
36275
|
+
});
|
|
36276
|
+
return $tea.cast(await this.callApi(params, req, runtime), new UpdateMessageAppResponse({}));
|
|
36277
|
+
}
|
|
36278
|
+
async updateMessageApp(request) {
|
|
36279
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
36280
|
+
return await this.updateMessageAppWithOptions(request, runtime);
|
|
36281
|
+
}
|
|
36282
|
+
async updateMessageGroupWithOptions(tmpReq, runtime) {
|
|
36283
|
+
tea_util_1.default.validateModel(tmpReq);
|
|
36284
|
+
let request = new UpdateMessageGroupShrinkRequest({});
|
|
36285
|
+
openapi_util_1.default.convert(tmpReq, request);
|
|
36286
|
+
if (!tea_util_1.default.isUnset(tmpReq.extension)) {
|
|
36287
|
+
request.extensionShrink = openapi_util_1.default.arrayToStringWithSpecifiedStyle(tmpReq.extension, "Extension", "json");
|
|
36288
|
+
}
|
|
36289
|
+
let body = {};
|
|
36290
|
+
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
36291
|
+
body["AppId"] = request.appId;
|
|
36292
|
+
}
|
|
36293
|
+
if (!tea_util_1.default.isUnset(request.extensionShrink)) {
|
|
36294
|
+
body["Extension"] = request.extensionShrink;
|
|
36295
|
+
}
|
|
36296
|
+
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
36297
|
+
body["GroupId"] = request.groupId;
|
|
36298
|
+
}
|
|
36299
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
36300
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
36301
|
+
});
|
|
36302
|
+
let params = new $OpenApi.Params({
|
|
36303
|
+
action: "UpdateMessageGroup",
|
|
36304
|
+
version: "2016-11-01",
|
|
36305
|
+
protocol: "HTTPS",
|
|
36306
|
+
pathname: "/",
|
|
36307
|
+
method: "POST",
|
|
36308
|
+
authType: "AK",
|
|
36309
|
+
style: "RPC",
|
|
36310
|
+
reqBodyType: "formData",
|
|
36311
|
+
bodyType: "json",
|
|
36312
|
+
});
|
|
36313
|
+
return $tea.cast(await this.callApi(params, req, runtime), new UpdateMessageGroupResponse({}));
|
|
36314
|
+
}
|
|
36315
|
+
async updateMessageGroup(request) {
|
|
36316
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
36317
|
+
return await this.updateMessageGroupWithOptions(request, runtime);
|
|
36318
|
+
}
|
|
34446
36319
|
async updateMixStreamWithOptions(request, runtime) {
|
|
34447
36320
|
tea_util_1.default.validateModel(request);
|
|
34448
36321
|
let query = {};
|