@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/src/client.ts
CHANGED
|
@@ -1715,6 +1715,81 @@ export class AddLiveSnapshotDetectPornConfigResponse extends $tea.Model {
|
|
|
1715
1715
|
}
|
|
1716
1716
|
}
|
|
1717
1717
|
|
|
1718
|
+
export class AddLiveSnapshotNotifyConfigRequest extends $tea.Model {
|
|
1719
|
+
domainName?: string;
|
|
1720
|
+
notifyAuthKey?: string;
|
|
1721
|
+
notifyReqAuth?: string;
|
|
1722
|
+
notifyUrl?: string;
|
|
1723
|
+
ownerId?: number;
|
|
1724
|
+
static names(): { [key: string]: string } {
|
|
1725
|
+
return {
|
|
1726
|
+
domainName: 'DomainName',
|
|
1727
|
+
notifyAuthKey: 'NotifyAuthKey',
|
|
1728
|
+
notifyReqAuth: 'NotifyReqAuth',
|
|
1729
|
+
notifyUrl: 'NotifyUrl',
|
|
1730
|
+
ownerId: 'OwnerId',
|
|
1731
|
+
};
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
static types(): { [key: string]: any } {
|
|
1735
|
+
return {
|
|
1736
|
+
domainName: 'string',
|
|
1737
|
+
notifyAuthKey: 'string',
|
|
1738
|
+
notifyReqAuth: 'string',
|
|
1739
|
+
notifyUrl: 'string',
|
|
1740
|
+
ownerId: 'number',
|
|
1741
|
+
};
|
|
1742
|
+
}
|
|
1743
|
+
|
|
1744
|
+
constructor(map?: { [key: string]: any }) {
|
|
1745
|
+
super(map);
|
|
1746
|
+
}
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1749
|
+
export class AddLiveSnapshotNotifyConfigResponseBody extends $tea.Model {
|
|
1750
|
+
requestId?: string;
|
|
1751
|
+
static names(): { [key: string]: string } {
|
|
1752
|
+
return {
|
|
1753
|
+
requestId: 'RequestId',
|
|
1754
|
+
};
|
|
1755
|
+
}
|
|
1756
|
+
|
|
1757
|
+
static types(): { [key: string]: any } {
|
|
1758
|
+
return {
|
|
1759
|
+
requestId: 'string',
|
|
1760
|
+
};
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
constructor(map?: { [key: string]: any }) {
|
|
1764
|
+
super(map);
|
|
1765
|
+
}
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
export class AddLiveSnapshotNotifyConfigResponse extends $tea.Model {
|
|
1769
|
+
headers: { [key: string]: string };
|
|
1770
|
+
statusCode: number;
|
|
1771
|
+
body: AddLiveSnapshotNotifyConfigResponseBody;
|
|
1772
|
+
static names(): { [key: string]: string } {
|
|
1773
|
+
return {
|
|
1774
|
+
headers: 'headers',
|
|
1775
|
+
statusCode: 'statusCode',
|
|
1776
|
+
body: 'body',
|
|
1777
|
+
};
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
static types(): { [key: string]: any } {
|
|
1781
|
+
return {
|
|
1782
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1783
|
+
statusCode: 'number',
|
|
1784
|
+
body: AddLiveSnapshotNotifyConfigResponseBody,
|
|
1785
|
+
};
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
constructor(map?: { [key: string]: any }) {
|
|
1789
|
+
super(map);
|
|
1790
|
+
}
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1718
1793
|
export class AddLiveStreamTranscodeRequest extends $tea.Model {
|
|
1719
1794
|
app?: string;
|
|
1720
1795
|
domain?: string;
|
|
@@ -2909,75 +2984,6 @@ export class CloseLiveShiftResponse extends $tea.Model {
|
|
|
2909
2984
|
}
|
|
2910
2985
|
}
|
|
2911
2986
|
|
|
2912
|
-
export class CloseMessageGroupRequest extends $tea.Model {
|
|
2913
|
-
appId?: string;
|
|
2914
|
-
groupId?: string;
|
|
2915
|
-
static names(): { [key: string]: string } {
|
|
2916
|
-
return {
|
|
2917
|
-
appId: 'AppId',
|
|
2918
|
-
groupId: 'GroupId',
|
|
2919
|
-
};
|
|
2920
|
-
}
|
|
2921
|
-
|
|
2922
|
-
static types(): { [key: string]: any } {
|
|
2923
|
-
return {
|
|
2924
|
-
appId: 'string',
|
|
2925
|
-
groupId: 'string',
|
|
2926
|
-
};
|
|
2927
|
-
}
|
|
2928
|
-
|
|
2929
|
-
constructor(map?: { [key: string]: any }) {
|
|
2930
|
-
super(map);
|
|
2931
|
-
}
|
|
2932
|
-
}
|
|
2933
|
-
|
|
2934
|
-
export class CloseMessageGroupResponseBody extends $tea.Model {
|
|
2935
|
-
requestId?: string;
|
|
2936
|
-
result?: CloseMessageGroupResponseBodyResult;
|
|
2937
|
-
static names(): { [key: string]: string } {
|
|
2938
|
-
return {
|
|
2939
|
-
requestId: 'RequestId',
|
|
2940
|
-
result: 'Result',
|
|
2941
|
-
};
|
|
2942
|
-
}
|
|
2943
|
-
|
|
2944
|
-
static types(): { [key: string]: any } {
|
|
2945
|
-
return {
|
|
2946
|
-
requestId: 'string',
|
|
2947
|
-
result: CloseMessageGroupResponseBodyResult,
|
|
2948
|
-
};
|
|
2949
|
-
}
|
|
2950
|
-
|
|
2951
|
-
constructor(map?: { [key: string]: any }) {
|
|
2952
|
-
super(map);
|
|
2953
|
-
}
|
|
2954
|
-
}
|
|
2955
|
-
|
|
2956
|
-
export class CloseMessageGroupResponse extends $tea.Model {
|
|
2957
|
-
headers: { [key: string]: string };
|
|
2958
|
-
statusCode: number;
|
|
2959
|
-
body: CloseMessageGroupResponseBody;
|
|
2960
|
-
static names(): { [key: string]: string } {
|
|
2961
|
-
return {
|
|
2962
|
-
headers: 'headers',
|
|
2963
|
-
statusCode: 'statusCode',
|
|
2964
|
-
body: 'body',
|
|
2965
|
-
};
|
|
2966
|
-
}
|
|
2967
|
-
|
|
2968
|
-
static types(): { [key: string]: any } {
|
|
2969
|
-
return {
|
|
2970
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2971
|
-
statusCode: 'number',
|
|
2972
|
-
body: CloseMessageGroupResponseBody,
|
|
2973
|
-
};
|
|
2974
|
-
}
|
|
2975
|
-
|
|
2976
|
-
constructor(map?: { [key: string]: any }) {
|
|
2977
|
-
super(map);
|
|
2978
|
-
}
|
|
2979
|
-
}
|
|
2980
|
-
|
|
2981
2987
|
export class CopyCasterRequest extends $tea.Model {
|
|
2982
2988
|
casterName?: string;
|
|
2983
2989
|
clientToken?: string;
|
|
@@ -3608,6 +3614,103 @@ export class CreateLiveTranscodeTemplateResponse extends $tea.Model {
|
|
|
3608
3614
|
}
|
|
3609
3615
|
}
|
|
3610
3616
|
|
|
3617
|
+
export class CreateMessageAppRequest extends $tea.Model {
|
|
3618
|
+
appConfig?: { [key: string]: string };
|
|
3619
|
+
appName?: string;
|
|
3620
|
+
extension?: { [key: string]: string };
|
|
3621
|
+
static names(): { [key: string]: string } {
|
|
3622
|
+
return {
|
|
3623
|
+
appConfig: 'AppConfig',
|
|
3624
|
+
appName: 'AppName',
|
|
3625
|
+
extension: 'Extension',
|
|
3626
|
+
};
|
|
3627
|
+
}
|
|
3628
|
+
|
|
3629
|
+
static types(): { [key: string]: any } {
|
|
3630
|
+
return {
|
|
3631
|
+
appConfig: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3632
|
+
appName: 'string',
|
|
3633
|
+
extension: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3634
|
+
};
|
|
3635
|
+
}
|
|
3636
|
+
|
|
3637
|
+
constructor(map?: { [key: string]: any }) {
|
|
3638
|
+
super(map);
|
|
3639
|
+
}
|
|
3640
|
+
}
|
|
3641
|
+
|
|
3642
|
+
export class CreateMessageAppShrinkRequest extends $tea.Model {
|
|
3643
|
+
appConfigShrink?: string;
|
|
3644
|
+
appName?: string;
|
|
3645
|
+
extensionShrink?: string;
|
|
3646
|
+
static names(): { [key: string]: string } {
|
|
3647
|
+
return {
|
|
3648
|
+
appConfigShrink: 'AppConfig',
|
|
3649
|
+
appName: 'AppName',
|
|
3650
|
+
extensionShrink: 'Extension',
|
|
3651
|
+
};
|
|
3652
|
+
}
|
|
3653
|
+
|
|
3654
|
+
static types(): { [key: string]: any } {
|
|
3655
|
+
return {
|
|
3656
|
+
appConfigShrink: 'string',
|
|
3657
|
+
appName: 'string',
|
|
3658
|
+
extensionShrink: 'string',
|
|
3659
|
+
};
|
|
3660
|
+
}
|
|
3661
|
+
|
|
3662
|
+
constructor(map?: { [key: string]: any }) {
|
|
3663
|
+
super(map);
|
|
3664
|
+
}
|
|
3665
|
+
}
|
|
3666
|
+
|
|
3667
|
+
export class CreateMessageAppResponseBody extends $tea.Model {
|
|
3668
|
+
requestId?: string;
|
|
3669
|
+
result?: CreateMessageAppResponseBodyResult;
|
|
3670
|
+
static names(): { [key: string]: string } {
|
|
3671
|
+
return {
|
|
3672
|
+
requestId: 'RequestId',
|
|
3673
|
+
result: 'Result',
|
|
3674
|
+
};
|
|
3675
|
+
}
|
|
3676
|
+
|
|
3677
|
+
static types(): { [key: string]: any } {
|
|
3678
|
+
return {
|
|
3679
|
+
requestId: 'string',
|
|
3680
|
+
result: CreateMessageAppResponseBodyResult,
|
|
3681
|
+
};
|
|
3682
|
+
}
|
|
3683
|
+
|
|
3684
|
+
constructor(map?: { [key: string]: any }) {
|
|
3685
|
+
super(map);
|
|
3686
|
+
}
|
|
3687
|
+
}
|
|
3688
|
+
|
|
3689
|
+
export class CreateMessageAppResponse extends $tea.Model {
|
|
3690
|
+
headers: { [key: string]: string };
|
|
3691
|
+
statusCode: number;
|
|
3692
|
+
body: CreateMessageAppResponseBody;
|
|
3693
|
+
static names(): { [key: string]: string } {
|
|
3694
|
+
return {
|
|
3695
|
+
headers: 'headers',
|
|
3696
|
+
statusCode: 'statusCode',
|
|
3697
|
+
body: 'body',
|
|
3698
|
+
};
|
|
3699
|
+
}
|
|
3700
|
+
|
|
3701
|
+
static types(): { [key: string]: any } {
|
|
3702
|
+
return {
|
|
3703
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3704
|
+
statusCode: 'number',
|
|
3705
|
+
body: CreateMessageAppResponseBody,
|
|
3706
|
+
};
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
constructor(map?: { [key: string]: any }) {
|
|
3710
|
+
super(map);
|
|
3711
|
+
}
|
|
3712
|
+
}
|
|
3713
|
+
|
|
3611
3714
|
export class CreateMessageGroupRequest extends $tea.Model {
|
|
3612
3715
|
appId?: string;
|
|
3613
3716
|
creatorId?: string;
|
|
@@ -5556,6 +5659,72 @@ export class DeleteLiveSnapshotDetectPornConfigResponse extends $tea.Model {
|
|
|
5556
5659
|
}
|
|
5557
5660
|
}
|
|
5558
5661
|
|
|
5662
|
+
export class DeleteLiveSnapshotNotifyConfigRequest extends $tea.Model {
|
|
5663
|
+
domainName?: string;
|
|
5664
|
+
ownerId?: number;
|
|
5665
|
+
static names(): { [key: string]: string } {
|
|
5666
|
+
return {
|
|
5667
|
+
domainName: 'DomainName',
|
|
5668
|
+
ownerId: 'OwnerId',
|
|
5669
|
+
};
|
|
5670
|
+
}
|
|
5671
|
+
|
|
5672
|
+
static types(): { [key: string]: any } {
|
|
5673
|
+
return {
|
|
5674
|
+
domainName: 'string',
|
|
5675
|
+
ownerId: 'number',
|
|
5676
|
+
};
|
|
5677
|
+
}
|
|
5678
|
+
|
|
5679
|
+
constructor(map?: { [key: string]: any }) {
|
|
5680
|
+
super(map);
|
|
5681
|
+
}
|
|
5682
|
+
}
|
|
5683
|
+
|
|
5684
|
+
export class DeleteLiveSnapshotNotifyConfigResponseBody extends $tea.Model {
|
|
5685
|
+
requestId?: string;
|
|
5686
|
+
static names(): { [key: string]: string } {
|
|
5687
|
+
return {
|
|
5688
|
+
requestId: 'RequestId',
|
|
5689
|
+
};
|
|
5690
|
+
}
|
|
5691
|
+
|
|
5692
|
+
static types(): { [key: string]: any } {
|
|
5693
|
+
return {
|
|
5694
|
+
requestId: 'string',
|
|
5695
|
+
};
|
|
5696
|
+
}
|
|
5697
|
+
|
|
5698
|
+
constructor(map?: { [key: string]: any }) {
|
|
5699
|
+
super(map);
|
|
5700
|
+
}
|
|
5701
|
+
}
|
|
5702
|
+
|
|
5703
|
+
export class DeleteLiveSnapshotNotifyConfigResponse extends $tea.Model {
|
|
5704
|
+
headers: { [key: string]: string };
|
|
5705
|
+
statusCode: number;
|
|
5706
|
+
body: DeleteLiveSnapshotNotifyConfigResponseBody;
|
|
5707
|
+
static names(): { [key: string]: string } {
|
|
5708
|
+
return {
|
|
5709
|
+
headers: 'headers',
|
|
5710
|
+
statusCode: 'statusCode',
|
|
5711
|
+
body: 'body',
|
|
5712
|
+
};
|
|
5713
|
+
}
|
|
5714
|
+
|
|
5715
|
+
static types(): { [key: string]: any } {
|
|
5716
|
+
return {
|
|
5717
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5718
|
+
statusCode: 'number',
|
|
5719
|
+
body: DeleteLiveSnapshotNotifyConfigResponseBody,
|
|
5720
|
+
};
|
|
5721
|
+
}
|
|
5722
|
+
|
|
5723
|
+
constructor(map?: { [key: string]: any }) {
|
|
5724
|
+
super(map);
|
|
5725
|
+
}
|
|
5726
|
+
}
|
|
5727
|
+
|
|
5559
5728
|
export class DeleteLiveSpecificStagingConfigRequest extends $tea.Model {
|
|
5560
5729
|
configId?: string;
|
|
5561
5730
|
domainName?: string;
|
|
@@ -7703,6 +7872,7 @@ export class DescribeCastersResponse extends $tea.Model {
|
|
|
7703
7872
|
|
|
7704
7873
|
export class DescribeDomainUsageDataRequest extends $tea.Model {
|
|
7705
7874
|
area?: string;
|
|
7875
|
+
dataProtocol?: string;
|
|
7706
7876
|
domainName?: string;
|
|
7707
7877
|
endTime?: string;
|
|
7708
7878
|
field?: string;
|
|
@@ -7713,6 +7883,7 @@ export class DescribeDomainUsageDataRequest extends $tea.Model {
|
|
|
7713
7883
|
static names(): { [key: string]: string } {
|
|
7714
7884
|
return {
|
|
7715
7885
|
area: 'Area',
|
|
7886
|
+
dataProtocol: 'DataProtocol',
|
|
7716
7887
|
domainName: 'DomainName',
|
|
7717
7888
|
endTime: 'EndTime',
|
|
7718
7889
|
field: 'Field',
|
|
@@ -7726,6 +7897,7 @@ export class DescribeDomainUsageDataRequest extends $tea.Model {
|
|
|
7726
7897
|
static types(): { [key: string]: any } {
|
|
7727
7898
|
return {
|
|
7728
7899
|
area: 'string',
|
|
7900
|
+
dataProtocol: 'string',
|
|
7729
7901
|
domainName: 'string',
|
|
7730
7902
|
endTime: 'string',
|
|
7731
7903
|
field: 'string',
|
|
@@ -7746,9 +7918,9 @@ export class DescribeDomainUsageDataResponseBody extends $tea.Model {
|
|
|
7746
7918
|
dataInterval?: string;
|
|
7747
7919
|
domainName?: string;
|
|
7748
7920
|
endTime?: string;
|
|
7749
|
-
field?: string;
|
|
7750
7921
|
requestId?: string;
|
|
7751
7922
|
startTime?: string;
|
|
7923
|
+
type?: string;
|
|
7752
7924
|
usageDataPerInterval?: DescribeDomainUsageDataResponseBodyUsageDataPerInterval;
|
|
7753
7925
|
static names(): { [key: string]: string } {
|
|
7754
7926
|
return {
|
|
@@ -7756,9 +7928,9 @@ export class DescribeDomainUsageDataResponseBody extends $tea.Model {
|
|
|
7756
7928
|
dataInterval: 'DataInterval',
|
|
7757
7929
|
domainName: 'DomainName',
|
|
7758
7930
|
endTime: 'EndTime',
|
|
7759
|
-
field: 'Field',
|
|
7760
7931
|
requestId: 'RequestId',
|
|
7761
7932
|
startTime: 'StartTime',
|
|
7933
|
+
type: 'Type',
|
|
7762
7934
|
usageDataPerInterval: 'UsageDataPerInterval',
|
|
7763
7935
|
};
|
|
7764
7936
|
}
|
|
@@ -7769,9 +7941,9 @@ export class DescribeDomainUsageDataResponseBody extends $tea.Model {
|
|
|
7769
7941
|
dataInterval: 'string',
|
|
7770
7942
|
domainName: 'string',
|
|
7771
7943
|
endTime: 'string',
|
|
7772
|
-
field: 'string',
|
|
7773
7944
|
requestId: 'string',
|
|
7774
7945
|
startTime: 'string',
|
|
7946
|
+
type: 'string',
|
|
7775
7947
|
usageDataPerInterval: DescribeDomainUsageDataResponseBodyUsageDataPerInterval,
|
|
7776
7948
|
};
|
|
7777
7949
|
}
|
|
@@ -11715,6 +11887,159 @@ export class DescribeLiveSnapshotDetectPornConfigResponse extends $tea.Model {
|
|
|
11715
11887
|
}
|
|
11716
11888
|
}
|
|
11717
11889
|
|
|
11890
|
+
export class DescribeLiveSnapshotNotifyConfigRequest extends $tea.Model {
|
|
11891
|
+
domainName?: string;
|
|
11892
|
+
ownerId?: number;
|
|
11893
|
+
static names(): { [key: string]: string } {
|
|
11894
|
+
return {
|
|
11895
|
+
domainName: 'DomainName',
|
|
11896
|
+
ownerId: 'OwnerId',
|
|
11897
|
+
};
|
|
11898
|
+
}
|
|
11899
|
+
|
|
11900
|
+
static types(): { [key: string]: any } {
|
|
11901
|
+
return {
|
|
11902
|
+
domainName: 'string',
|
|
11903
|
+
ownerId: 'number',
|
|
11904
|
+
};
|
|
11905
|
+
}
|
|
11906
|
+
|
|
11907
|
+
constructor(map?: { [key: string]: any }) {
|
|
11908
|
+
super(map);
|
|
11909
|
+
}
|
|
11910
|
+
}
|
|
11911
|
+
|
|
11912
|
+
export class DescribeLiveSnapshotNotifyConfigResponseBody extends $tea.Model {
|
|
11913
|
+
domainName?: string;
|
|
11914
|
+
notifyAuthKey?: string;
|
|
11915
|
+
notifyReqAuth?: string;
|
|
11916
|
+
notifyUrl?: string;
|
|
11917
|
+
requestId?: string;
|
|
11918
|
+
static names(): { [key: string]: string } {
|
|
11919
|
+
return {
|
|
11920
|
+
domainName: 'DomainName',
|
|
11921
|
+
notifyAuthKey: 'NotifyAuthKey',
|
|
11922
|
+
notifyReqAuth: 'NotifyReqAuth',
|
|
11923
|
+
notifyUrl: 'NotifyUrl',
|
|
11924
|
+
requestId: 'RequestId',
|
|
11925
|
+
};
|
|
11926
|
+
}
|
|
11927
|
+
|
|
11928
|
+
static types(): { [key: string]: any } {
|
|
11929
|
+
return {
|
|
11930
|
+
domainName: 'string',
|
|
11931
|
+
notifyAuthKey: 'string',
|
|
11932
|
+
notifyReqAuth: 'string',
|
|
11933
|
+
notifyUrl: 'string',
|
|
11934
|
+
requestId: 'string',
|
|
11935
|
+
};
|
|
11936
|
+
}
|
|
11937
|
+
|
|
11938
|
+
constructor(map?: { [key: string]: any }) {
|
|
11939
|
+
super(map);
|
|
11940
|
+
}
|
|
11941
|
+
}
|
|
11942
|
+
|
|
11943
|
+
export class DescribeLiveSnapshotNotifyConfigResponse extends $tea.Model {
|
|
11944
|
+
headers: { [key: string]: string };
|
|
11945
|
+
statusCode: number;
|
|
11946
|
+
body: DescribeLiveSnapshotNotifyConfigResponseBody;
|
|
11947
|
+
static names(): { [key: string]: string } {
|
|
11948
|
+
return {
|
|
11949
|
+
headers: 'headers',
|
|
11950
|
+
statusCode: 'statusCode',
|
|
11951
|
+
body: 'body',
|
|
11952
|
+
};
|
|
11953
|
+
}
|
|
11954
|
+
|
|
11955
|
+
static types(): { [key: string]: any } {
|
|
11956
|
+
return {
|
|
11957
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11958
|
+
statusCode: 'number',
|
|
11959
|
+
body: DescribeLiveSnapshotNotifyConfigResponseBody,
|
|
11960
|
+
};
|
|
11961
|
+
}
|
|
11962
|
+
|
|
11963
|
+
constructor(map?: { [key: string]: any }) {
|
|
11964
|
+
super(map);
|
|
11965
|
+
}
|
|
11966
|
+
}
|
|
11967
|
+
|
|
11968
|
+
export class DescribeLiveStreamAuthCheckingRequest extends $tea.Model {
|
|
11969
|
+
domainName?: string;
|
|
11970
|
+
ownerId?: number;
|
|
11971
|
+
url?: string;
|
|
11972
|
+
static names(): { [key: string]: string } {
|
|
11973
|
+
return {
|
|
11974
|
+
domainName: 'DomainName',
|
|
11975
|
+
ownerId: 'OwnerId',
|
|
11976
|
+
url: 'Url',
|
|
11977
|
+
};
|
|
11978
|
+
}
|
|
11979
|
+
|
|
11980
|
+
static types(): { [key: string]: any } {
|
|
11981
|
+
return {
|
|
11982
|
+
domainName: 'string',
|
|
11983
|
+
ownerId: 'number',
|
|
11984
|
+
url: 'string',
|
|
11985
|
+
};
|
|
11986
|
+
}
|
|
11987
|
+
|
|
11988
|
+
constructor(map?: { [key: string]: any }) {
|
|
11989
|
+
super(map);
|
|
11990
|
+
}
|
|
11991
|
+
}
|
|
11992
|
+
|
|
11993
|
+
export class DescribeLiveStreamAuthCheckingResponseBody extends $tea.Model {
|
|
11994
|
+
description?: string;
|
|
11995
|
+
requestId?: string;
|
|
11996
|
+
status?: string;
|
|
11997
|
+
static names(): { [key: string]: string } {
|
|
11998
|
+
return {
|
|
11999
|
+
description: 'Description',
|
|
12000
|
+
requestId: 'RequestId',
|
|
12001
|
+
status: 'Status',
|
|
12002
|
+
};
|
|
12003
|
+
}
|
|
12004
|
+
|
|
12005
|
+
static types(): { [key: string]: any } {
|
|
12006
|
+
return {
|
|
12007
|
+
description: 'string',
|
|
12008
|
+
requestId: 'string',
|
|
12009
|
+
status: 'string',
|
|
12010
|
+
};
|
|
12011
|
+
}
|
|
12012
|
+
|
|
12013
|
+
constructor(map?: { [key: string]: any }) {
|
|
12014
|
+
super(map);
|
|
12015
|
+
}
|
|
12016
|
+
}
|
|
12017
|
+
|
|
12018
|
+
export class DescribeLiveStreamAuthCheckingResponse extends $tea.Model {
|
|
12019
|
+
headers: { [key: string]: string };
|
|
12020
|
+
statusCode: number;
|
|
12021
|
+
body: DescribeLiveStreamAuthCheckingResponseBody;
|
|
12022
|
+
static names(): { [key: string]: string } {
|
|
12023
|
+
return {
|
|
12024
|
+
headers: 'headers',
|
|
12025
|
+
statusCode: 'statusCode',
|
|
12026
|
+
body: 'body',
|
|
12027
|
+
};
|
|
12028
|
+
}
|
|
12029
|
+
|
|
12030
|
+
static types(): { [key: string]: any } {
|
|
12031
|
+
return {
|
|
12032
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
12033
|
+
statusCode: 'number',
|
|
12034
|
+
body: DescribeLiveStreamAuthCheckingResponseBody,
|
|
12035
|
+
};
|
|
12036
|
+
}
|
|
12037
|
+
|
|
12038
|
+
constructor(map?: { [key: string]: any }) {
|
|
12039
|
+
super(map);
|
|
12040
|
+
}
|
|
12041
|
+
}
|
|
12042
|
+
|
|
11718
12043
|
export class DescribeLiveStreamBitRateDataRequest extends $tea.Model {
|
|
11719
12044
|
appName?: string;
|
|
11720
12045
|
domainName?: string;
|
|
@@ -13191,6 +13516,108 @@ export class DescribeLiveStreamsControlHistoryResponse extends $tea.Model {
|
|
|
13191
13516
|
}
|
|
13192
13517
|
}
|
|
13193
13518
|
|
|
13519
|
+
export class DescribeLiveStreamsNotifyRecordsRequest extends $tea.Model {
|
|
13520
|
+
appName?: string;
|
|
13521
|
+
domainName?: string;
|
|
13522
|
+
endTime?: string;
|
|
13523
|
+
ownerId?: number;
|
|
13524
|
+
pageNumber?: number;
|
|
13525
|
+
pageSize?: number;
|
|
13526
|
+
startTime?: string;
|
|
13527
|
+
status?: string;
|
|
13528
|
+
streamName?: string;
|
|
13529
|
+
static names(): { [key: string]: string } {
|
|
13530
|
+
return {
|
|
13531
|
+
appName: 'AppName',
|
|
13532
|
+
domainName: 'DomainName',
|
|
13533
|
+
endTime: 'EndTime',
|
|
13534
|
+
ownerId: 'OwnerId',
|
|
13535
|
+
pageNumber: 'PageNumber',
|
|
13536
|
+
pageSize: 'PageSize',
|
|
13537
|
+
startTime: 'StartTime',
|
|
13538
|
+
status: 'Status',
|
|
13539
|
+
streamName: 'StreamName',
|
|
13540
|
+
};
|
|
13541
|
+
}
|
|
13542
|
+
|
|
13543
|
+
static types(): { [key: string]: any } {
|
|
13544
|
+
return {
|
|
13545
|
+
appName: 'string',
|
|
13546
|
+
domainName: 'string',
|
|
13547
|
+
endTime: 'string',
|
|
13548
|
+
ownerId: 'number',
|
|
13549
|
+
pageNumber: 'number',
|
|
13550
|
+
pageSize: 'number',
|
|
13551
|
+
startTime: 'string',
|
|
13552
|
+
status: 'string',
|
|
13553
|
+
streamName: 'string',
|
|
13554
|
+
};
|
|
13555
|
+
}
|
|
13556
|
+
|
|
13557
|
+
constructor(map?: { [key: string]: any }) {
|
|
13558
|
+
super(map);
|
|
13559
|
+
}
|
|
13560
|
+
}
|
|
13561
|
+
|
|
13562
|
+
export class DescribeLiveStreamsNotifyRecordsResponseBody extends $tea.Model {
|
|
13563
|
+
notifyRecordsInfo?: DescribeLiveStreamsNotifyRecordsResponseBodyNotifyRecordsInfo;
|
|
13564
|
+
pageNum?: number;
|
|
13565
|
+
pageSize?: number;
|
|
13566
|
+
requestId?: string;
|
|
13567
|
+
totalNum?: number;
|
|
13568
|
+
totalPage?: number;
|
|
13569
|
+
static names(): { [key: string]: string } {
|
|
13570
|
+
return {
|
|
13571
|
+
notifyRecordsInfo: 'NotifyRecordsInfo',
|
|
13572
|
+
pageNum: 'PageNum',
|
|
13573
|
+
pageSize: 'PageSize',
|
|
13574
|
+
requestId: 'RequestId',
|
|
13575
|
+
totalNum: 'TotalNum',
|
|
13576
|
+
totalPage: 'TotalPage',
|
|
13577
|
+
};
|
|
13578
|
+
}
|
|
13579
|
+
|
|
13580
|
+
static types(): { [key: string]: any } {
|
|
13581
|
+
return {
|
|
13582
|
+
notifyRecordsInfo: DescribeLiveStreamsNotifyRecordsResponseBodyNotifyRecordsInfo,
|
|
13583
|
+
pageNum: 'number',
|
|
13584
|
+
pageSize: 'number',
|
|
13585
|
+
requestId: 'string',
|
|
13586
|
+
totalNum: 'number',
|
|
13587
|
+
totalPage: 'number',
|
|
13588
|
+
};
|
|
13589
|
+
}
|
|
13590
|
+
|
|
13591
|
+
constructor(map?: { [key: string]: any }) {
|
|
13592
|
+
super(map);
|
|
13593
|
+
}
|
|
13594
|
+
}
|
|
13595
|
+
|
|
13596
|
+
export class DescribeLiveStreamsNotifyRecordsResponse extends $tea.Model {
|
|
13597
|
+
headers: { [key: string]: string };
|
|
13598
|
+
statusCode: number;
|
|
13599
|
+
body: DescribeLiveStreamsNotifyRecordsResponseBody;
|
|
13600
|
+
static names(): { [key: string]: string } {
|
|
13601
|
+
return {
|
|
13602
|
+
headers: 'headers',
|
|
13603
|
+
statusCode: 'statusCode',
|
|
13604
|
+
body: 'body',
|
|
13605
|
+
};
|
|
13606
|
+
}
|
|
13607
|
+
|
|
13608
|
+
static types(): { [key: string]: any } {
|
|
13609
|
+
return {
|
|
13610
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
13611
|
+
statusCode: 'number',
|
|
13612
|
+
body: DescribeLiveStreamsNotifyRecordsResponseBody,
|
|
13613
|
+
};
|
|
13614
|
+
}
|
|
13615
|
+
|
|
13616
|
+
constructor(map?: { [key: string]: any }) {
|
|
13617
|
+
super(map);
|
|
13618
|
+
}
|
|
13619
|
+
}
|
|
13620
|
+
|
|
13194
13621
|
export class DescribeLiveStreamsNotifyUrlConfigRequest extends $tea.Model {
|
|
13195
13622
|
domainName?: string;
|
|
13196
13623
|
ownerId?: number;
|
|
@@ -16328,20 +16755,17 @@ export class GetEditingJobInfoResponse extends $tea.Model {
|
|
|
16328
16755
|
}
|
|
16329
16756
|
}
|
|
16330
16757
|
|
|
16331
|
-
export class
|
|
16758
|
+
export class GetMessageAppRequest extends $tea.Model {
|
|
16332
16759
|
appId?: string;
|
|
16333
|
-
groupId?: string;
|
|
16334
16760
|
static names(): { [key: string]: string } {
|
|
16335
16761
|
return {
|
|
16336
16762
|
appId: 'AppId',
|
|
16337
|
-
groupId: 'GroupId',
|
|
16338
16763
|
};
|
|
16339
16764
|
}
|
|
16340
16765
|
|
|
16341
16766
|
static types(): { [key: string]: any } {
|
|
16342
16767
|
return {
|
|
16343
16768
|
appId: 'string',
|
|
16344
|
-
groupId: 'string',
|
|
16345
16769
|
};
|
|
16346
16770
|
}
|
|
16347
16771
|
|
|
@@ -16350,9 +16774,9 @@ export class GetMessageGroupRequest extends $tea.Model {
|
|
|
16350
16774
|
}
|
|
16351
16775
|
}
|
|
16352
16776
|
|
|
16353
|
-
export class
|
|
16777
|
+
export class GetMessageAppResponseBody extends $tea.Model {
|
|
16354
16778
|
requestId?: string;
|
|
16355
|
-
result?:
|
|
16779
|
+
result?: GetMessageAppResponseBodyResult;
|
|
16356
16780
|
static names(): { [key: string]: string } {
|
|
16357
16781
|
return {
|
|
16358
16782
|
requestId: 'RequestId',
|
|
@@ -16363,7 +16787,7 @@ export class GetMessageGroupResponseBody extends $tea.Model {
|
|
|
16363
16787
|
static types(): { [key: string]: any } {
|
|
16364
16788
|
return {
|
|
16365
16789
|
requestId: 'string',
|
|
16366
|
-
result:
|
|
16790
|
+
result: GetMessageAppResponseBodyResult,
|
|
16367
16791
|
};
|
|
16368
16792
|
}
|
|
16369
16793
|
|
|
@@ -16372,10 +16796,10 @@ export class GetMessageGroupResponseBody extends $tea.Model {
|
|
|
16372
16796
|
}
|
|
16373
16797
|
}
|
|
16374
16798
|
|
|
16375
|
-
export class
|
|
16799
|
+
export class GetMessageAppResponse extends $tea.Model {
|
|
16376
16800
|
headers: { [key: string]: string };
|
|
16377
16801
|
statusCode: number;
|
|
16378
|
-
body:
|
|
16802
|
+
body: GetMessageAppResponseBody;
|
|
16379
16803
|
static names(): { [key: string]: string } {
|
|
16380
16804
|
return {
|
|
16381
16805
|
headers: 'headers',
|
|
@@ -16388,7 +16812,7 @@ export class GetMessageGroupResponse extends $tea.Model {
|
|
|
16388
16812
|
return {
|
|
16389
16813
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
16390
16814
|
statusCode: 'number',
|
|
16391
|
-
body:
|
|
16815
|
+
body: GetMessageAppResponseBody,
|
|
16392
16816
|
};
|
|
16393
16817
|
}
|
|
16394
16818
|
|
|
@@ -16397,26 +16821,20 @@ export class GetMessageGroupResponse extends $tea.Model {
|
|
|
16397
16821
|
}
|
|
16398
16822
|
}
|
|
16399
16823
|
|
|
16400
|
-
export class
|
|
16824
|
+
export class GetMessageGroupRequest extends $tea.Model {
|
|
16401
16825
|
appId?: string;
|
|
16402
|
-
|
|
16403
|
-
deviceType?: string;
|
|
16404
|
-
userId?: string;
|
|
16826
|
+
groupId?: string;
|
|
16405
16827
|
static names(): { [key: string]: string } {
|
|
16406
16828
|
return {
|
|
16407
16829
|
appId: 'AppId',
|
|
16408
|
-
|
|
16409
|
-
deviceType: 'DeviceType',
|
|
16410
|
-
userId: 'UserId',
|
|
16830
|
+
groupId: 'GroupId',
|
|
16411
16831
|
};
|
|
16412
16832
|
}
|
|
16413
16833
|
|
|
16414
16834
|
static types(): { [key: string]: any } {
|
|
16415
16835
|
return {
|
|
16416
16836
|
appId: 'string',
|
|
16417
|
-
|
|
16418
|
-
deviceType: 'string',
|
|
16419
|
-
userId: 'string',
|
|
16837
|
+
groupId: 'string',
|
|
16420
16838
|
};
|
|
16421
16839
|
}
|
|
16422
16840
|
|
|
@@ -16425,9 +16843,9 @@ export class GetMessageTokenRequest extends $tea.Model {
|
|
|
16425
16843
|
}
|
|
16426
16844
|
}
|
|
16427
16845
|
|
|
16428
|
-
export class
|
|
16846
|
+
export class GetMessageGroupResponseBody extends $tea.Model {
|
|
16429
16847
|
requestId?: string;
|
|
16430
|
-
result?:
|
|
16848
|
+
result?: GetMessageGroupResponseBodyResult;
|
|
16431
16849
|
static names(): { [key: string]: string } {
|
|
16432
16850
|
return {
|
|
16433
16851
|
requestId: 'RequestId',
|
|
@@ -16438,7 +16856,7 @@ export class GetMessageTokenResponseBody extends $tea.Model {
|
|
|
16438
16856
|
static types(): { [key: string]: any } {
|
|
16439
16857
|
return {
|
|
16440
16858
|
requestId: 'string',
|
|
16441
|
-
result:
|
|
16859
|
+
result: GetMessageGroupResponseBodyResult,
|
|
16442
16860
|
};
|
|
16443
16861
|
}
|
|
16444
16862
|
|
|
@@ -16447,10 +16865,10 @@ export class GetMessageTokenResponseBody extends $tea.Model {
|
|
|
16447
16865
|
}
|
|
16448
16866
|
}
|
|
16449
16867
|
|
|
16450
|
-
export class
|
|
16868
|
+
export class GetMessageGroupResponse extends $tea.Model {
|
|
16451
16869
|
headers: { [key: string]: string };
|
|
16452
16870
|
statusCode: number;
|
|
16453
|
-
body:
|
|
16871
|
+
body: GetMessageGroupResponseBody;
|
|
16454
16872
|
static names(): { [key: string]: string } {
|
|
16455
16873
|
return {
|
|
16456
16874
|
headers: 'headers',
|
|
@@ -16463,7 +16881,7 @@ export class GetMessageTokenResponse extends $tea.Model {
|
|
|
16463
16881
|
return {
|
|
16464
16882
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
16465
16883
|
statusCode: 'number',
|
|
16466
|
-
body:
|
|
16884
|
+
body: GetMessageGroupResponseBody,
|
|
16467
16885
|
};
|
|
16468
16886
|
}
|
|
16469
16887
|
|
|
@@ -16472,17 +16890,26 @@ export class GetMessageTokenResponse extends $tea.Model {
|
|
|
16472
16890
|
}
|
|
16473
16891
|
}
|
|
16474
16892
|
|
|
16475
|
-
export class
|
|
16476
|
-
|
|
16893
|
+
export class GetMessageTokenRequest extends $tea.Model {
|
|
16894
|
+
appId?: string;
|
|
16895
|
+
deviceId?: string;
|
|
16896
|
+
deviceType?: string;
|
|
16897
|
+
userId?: string;
|
|
16477
16898
|
static names(): { [key: string]: string } {
|
|
16478
16899
|
return {
|
|
16479
|
-
|
|
16900
|
+
appId: 'AppId',
|
|
16901
|
+
deviceId: 'DeviceId',
|
|
16902
|
+
deviceType: 'DeviceType',
|
|
16903
|
+
userId: 'UserId',
|
|
16480
16904
|
};
|
|
16481
16905
|
}
|
|
16482
16906
|
|
|
16483
16907
|
static types(): { [key: string]: any } {
|
|
16484
16908
|
return {
|
|
16485
|
-
|
|
16909
|
+
appId: 'string',
|
|
16910
|
+
deviceId: 'string',
|
|
16911
|
+
deviceType: 'string',
|
|
16912
|
+
userId: 'string',
|
|
16486
16913
|
};
|
|
16487
16914
|
}
|
|
16488
16915
|
|
|
@@ -16491,9 +16918,9 @@ export class GetMessageUserInfoRequest extends $tea.Model {
|
|
|
16491
16918
|
}
|
|
16492
16919
|
}
|
|
16493
16920
|
|
|
16494
|
-
export class
|
|
16921
|
+
export class GetMessageTokenResponseBody extends $tea.Model {
|
|
16495
16922
|
requestId?: string;
|
|
16496
|
-
result?:
|
|
16923
|
+
result?: GetMessageTokenResponseBodyResult;
|
|
16497
16924
|
static names(): { [key: string]: string } {
|
|
16498
16925
|
return {
|
|
16499
16926
|
requestId: 'RequestId',
|
|
@@ -16504,7 +16931,7 @@ export class GetMessageUserInfoResponseBody extends $tea.Model {
|
|
|
16504
16931
|
static types(): { [key: string]: any } {
|
|
16505
16932
|
return {
|
|
16506
16933
|
requestId: 'string',
|
|
16507
|
-
result:
|
|
16934
|
+
result: GetMessageTokenResponseBodyResult,
|
|
16508
16935
|
};
|
|
16509
16936
|
}
|
|
16510
16937
|
|
|
@@ -16513,10 +16940,10 @@ export class GetMessageUserInfoResponseBody extends $tea.Model {
|
|
|
16513
16940
|
}
|
|
16514
16941
|
}
|
|
16515
16942
|
|
|
16516
|
-
export class
|
|
16943
|
+
export class GetMessageTokenResponse extends $tea.Model {
|
|
16517
16944
|
headers: { [key: string]: string };
|
|
16518
16945
|
statusCode: number;
|
|
16519
|
-
body:
|
|
16946
|
+
body: GetMessageTokenResponseBody;
|
|
16520
16947
|
static names(): { [key: string]: string } {
|
|
16521
16948
|
return {
|
|
16522
16949
|
headers: 'headers',
|
|
@@ -16529,7 +16956,7 @@ export class GetMessageUserInfoResponse extends $tea.Model {
|
|
|
16529
16956
|
return {
|
|
16530
16957
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
16531
16958
|
statusCode: 'number',
|
|
16532
|
-
body:
|
|
16959
|
+
body: GetMessageTokenResponseBody,
|
|
16533
16960
|
};
|
|
16534
16961
|
}
|
|
16535
16962
|
|
|
@@ -17259,6 +17686,7 @@ export class ListLiveRealtimeLogDeliveryInfosResponse extends $tea.Model {
|
|
|
17259
17686
|
}
|
|
17260
17687
|
|
|
17261
17688
|
export class ListMessageRequest extends $tea.Model {
|
|
17689
|
+
appId?: string;
|
|
17262
17690
|
groupId?: string;
|
|
17263
17691
|
pageNum?: number;
|
|
17264
17692
|
pageSize?: number;
|
|
@@ -17266,6 +17694,7 @@ export class ListMessageRequest extends $tea.Model {
|
|
|
17266
17694
|
type?: number;
|
|
17267
17695
|
static names(): { [key: string]: string } {
|
|
17268
17696
|
return {
|
|
17697
|
+
appId: 'AppId',
|
|
17269
17698
|
groupId: 'GroupId',
|
|
17270
17699
|
pageNum: 'PageNum',
|
|
17271
17700
|
pageSize: 'PageSize',
|
|
@@ -17276,6 +17705,7 @@ export class ListMessageRequest extends $tea.Model {
|
|
|
17276
17705
|
|
|
17277
17706
|
static types(): { [key: string]: any } {
|
|
17278
17707
|
return {
|
|
17708
|
+
appId: 'string',
|
|
17279
17709
|
groupId: 'string',
|
|
17280
17710
|
pageNum: 'number',
|
|
17281
17711
|
pageSize: 'number',
|
|
@@ -17336,13 +17766,87 @@ export class ListMessageResponse extends $tea.Model {
|
|
|
17336
17766
|
}
|
|
17337
17767
|
}
|
|
17338
17768
|
|
|
17769
|
+
export class ListMessageAppRequest extends $tea.Model {
|
|
17770
|
+
pageNum?: number;
|
|
17771
|
+
pageSize?: number;
|
|
17772
|
+
sortType?: number;
|
|
17773
|
+
static names(): { [key: string]: string } {
|
|
17774
|
+
return {
|
|
17775
|
+
pageNum: 'PageNum',
|
|
17776
|
+
pageSize: 'PageSize',
|
|
17777
|
+
sortType: 'SortType',
|
|
17778
|
+
};
|
|
17779
|
+
}
|
|
17780
|
+
|
|
17781
|
+
static types(): { [key: string]: any } {
|
|
17782
|
+
return {
|
|
17783
|
+
pageNum: 'number',
|
|
17784
|
+
pageSize: 'number',
|
|
17785
|
+
sortType: 'number',
|
|
17786
|
+
};
|
|
17787
|
+
}
|
|
17788
|
+
|
|
17789
|
+
constructor(map?: { [key: string]: any }) {
|
|
17790
|
+
super(map);
|
|
17791
|
+
}
|
|
17792
|
+
}
|
|
17793
|
+
|
|
17794
|
+
export class ListMessageAppResponseBody extends $tea.Model {
|
|
17795
|
+
requestId?: string;
|
|
17796
|
+
result?: ListMessageAppResponseBodyResult;
|
|
17797
|
+
static names(): { [key: string]: string } {
|
|
17798
|
+
return {
|
|
17799
|
+
requestId: 'RequestId',
|
|
17800
|
+
result: 'Result',
|
|
17801
|
+
};
|
|
17802
|
+
}
|
|
17803
|
+
|
|
17804
|
+
static types(): { [key: string]: any } {
|
|
17805
|
+
return {
|
|
17806
|
+
requestId: 'string',
|
|
17807
|
+
result: ListMessageAppResponseBodyResult,
|
|
17808
|
+
};
|
|
17809
|
+
}
|
|
17810
|
+
|
|
17811
|
+
constructor(map?: { [key: string]: any }) {
|
|
17812
|
+
super(map);
|
|
17813
|
+
}
|
|
17814
|
+
}
|
|
17815
|
+
|
|
17816
|
+
export class ListMessageAppResponse extends $tea.Model {
|
|
17817
|
+
headers: { [key: string]: string };
|
|
17818
|
+
statusCode: number;
|
|
17819
|
+
body: ListMessageAppResponseBody;
|
|
17820
|
+
static names(): { [key: string]: string } {
|
|
17821
|
+
return {
|
|
17822
|
+
headers: 'headers',
|
|
17823
|
+
statusCode: 'statusCode',
|
|
17824
|
+
body: 'body',
|
|
17825
|
+
};
|
|
17826
|
+
}
|
|
17827
|
+
|
|
17828
|
+
static types(): { [key: string]: any } {
|
|
17829
|
+
return {
|
|
17830
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
17831
|
+
statusCode: 'number',
|
|
17832
|
+
body: ListMessageAppResponseBody,
|
|
17833
|
+
};
|
|
17834
|
+
}
|
|
17835
|
+
|
|
17836
|
+
constructor(map?: { [key: string]: any }) {
|
|
17837
|
+
super(map);
|
|
17838
|
+
}
|
|
17839
|
+
}
|
|
17840
|
+
|
|
17339
17841
|
export class ListMessageGroupRequest extends $tea.Model {
|
|
17842
|
+
appId?: string;
|
|
17340
17843
|
pageNum?: number;
|
|
17341
17844
|
pageSize?: number;
|
|
17342
17845
|
sortType?: number;
|
|
17343
17846
|
userId?: string;
|
|
17344
17847
|
static names(): { [key: string]: string } {
|
|
17345
17848
|
return {
|
|
17849
|
+
appId: 'AppId',
|
|
17346
17850
|
pageNum: 'PageNum',
|
|
17347
17851
|
pageSize: 'PageSize',
|
|
17348
17852
|
sortType: 'SortType',
|
|
@@ -17352,6 +17856,7 @@ export class ListMessageGroupRequest extends $tea.Model {
|
|
|
17352
17856
|
|
|
17353
17857
|
static types(): { [key: string]: any } {
|
|
17354
17858
|
return {
|
|
17859
|
+
appId: 'string',
|
|
17355
17860
|
pageNum: 'number',
|
|
17356
17861
|
pageSize: 'number',
|
|
17357
17862
|
sortType: 'number',
|
|
@@ -17417,7 +17922,6 @@ export class ListMessageGroupUserRequest extends $tea.Model {
|
|
|
17417
17922
|
pageNum?: number;
|
|
17418
17923
|
pageSize?: number;
|
|
17419
17924
|
sortType?: number;
|
|
17420
|
-
type?: number;
|
|
17421
17925
|
static names(): { [key: string]: string } {
|
|
17422
17926
|
return {
|
|
17423
17927
|
appId: 'AppId',
|
|
@@ -17425,7 +17929,6 @@ export class ListMessageGroupUserRequest extends $tea.Model {
|
|
|
17425
17929
|
pageNum: 'PageNum',
|
|
17426
17930
|
pageSize: 'PageSize',
|
|
17427
17931
|
sortType: 'SortType',
|
|
17428
|
-
type: 'Type',
|
|
17429
17932
|
};
|
|
17430
17933
|
}
|
|
17431
17934
|
|
|
@@ -17436,7 +17939,6 @@ export class ListMessageGroupUserRequest extends $tea.Model {
|
|
|
17436
17939
|
pageNum: 'number',
|
|
17437
17940
|
pageSize: 'number',
|
|
17438
17941
|
sortType: 'number',
|
|
17439
|
-
type: 'number',
|
|
17440
17942
|
};
|
|
17441
17943
|
}
|
|
17442
17944
|
|
|
@@ -17492,6 +17994,103 @@ export class ListMessageGroupUserResponse extends $tea.Model {
|
|
|
17492
17994
|
}
|
|
17493
17995
|
}
|
|
17494
17996
|
|
|
17997
|
+
export class ListMessageGroupUserByIdRequest extends $tea.Model {
|
|
17998
|
+
appId?: string;
|
|
17999
|
+
groupId?: string;
|
|
18000
|
+
userIdList?: string[];
|
|
18001
|
+
static names(): { [key: string]: string } {
|
|
18002
|
+
return {
|
|
18003
|
+
appId: 'AppId',
|
|
18004
|
+
groupId: 'GroupId',
|
|
18005
|
+
userIdList: 'UserIdList',
|
|
18006
|
+
};
|
|
18007
|
+
}
|
|
18008
|
+
|
|
18009
|
+
static types(): { [key: string]: any } {
|
|
18010
|
+
return {
|
|
18011
|
+
appId: 'string',
|
|
18012
|
+
groupId: 'string',
|
|
18013
|
+
userIdList: { 'type': 'array', 'itemType': 'string' },
|
|
18014
|
+
};
|
|
18015
|
+
}
|
|
18016
|
+
|
|
18017
|
+
constructor(map?: { [key: string]: any }) {
|
|
18018
|
+
super(map);
|
|
18019
|
+
}
|
|
18020
|
+
}
|
|
18021
|
+
|
|
18022
|
+
export class ListMessageGroupUserByIdShrinkRequest extends $tea.Model {
|
|
18023
|
+
appId?: string;
|
|
18024
|
+
groupId?: string;
|
|
18025
|
+
userIdListShrink?: string;
|
|
18026
|
+
static names(): { [key: string]: string } {
|
|
18027
|
+
return {
|
|
18028
|
+
appId: 'AppId',
|
|
18029
|
+
groupId: 'GroupId',
|
|
18030
|
+
userIdListShrink: 'UserIdList',
|
|
18031
|
+
};
|
|
18032
|
+
}
|
|
18033
|
+
|
|
18034
|
+
static types(): { [key: string]: any } {
|
|
18035
|
+
return {
|
|
18036
|
+
appId: 'string',
|
|
18037
|
+
groupId: 'string',
|
|
18038
|
+
userIdListShrink: 'string',
|
|
18039
|
+
};
|
|
18040
|
+
}
|
|
18041
|
+
|
|
18042
|
+
constructor(map?: { [key: string]: any }) {
|
|
18043
|
+
super(map);
|
|
18044
|
+
}
|
|
18045
|
+
}
|
|
18046
|
+
|
|
18047
|
+
export class ListMessageGroupUserByIdResponseBody extends $tea.Model {
|
|
18048
|
+
requestId?: string;
|
|
18049
|
+
result?: ListMessageGroupUserByIdResponseBodyResult;
|
|
18050
|
+
static names(): { [key: string]: string } {
|
|
18051
|
+
return {
|
|
18052
|
+
requestId: 'RequestId',
|
|
18053
|
+
result: 'Result',
|
|
18054
|
+
};
|
|
18055
|
+
}
|
|
18056
|
+
|
|
18057
|
+
static types(): { [key: string]: any } {
|
|
18058
|
+
return {
|
|
18059
|
+
requestId: 'string',
|
|
18060
|
+
result: ListMessageGroupUserByIdResponseBodyResult,
|
|
18061
|
+
};
|
|
18062
|
+
}
|
|
18063
|
+
|
|
18064
|
+
constructor(map?: { [key: string]: any }) {
|
|
18065
|
+
super(map);
|
|
18066
|
+
}
|
|
18067
|
+
}
|
|
18068
|
+
|
|
18069
|
+
export class ListMessageGroupUserByIdResponse extends $tea.Model {
|
|
18070
|
+
headers: { [key: string]: string };
|
|
18071
|
+
statusCode: number;
|
|
18072
|
+
body: ListMessageGroupUserByIdResponseBody;
|
|
18073
|
+
static names(): { [key: string]: string } {
|
|
18074
|
+
return {
|
|
18075
|
+
headers: 'headers',
|
|
18076
|
+
statusCode: 'statusCode',
|
|
18077
|
+
body: 'body',
|
|
18078
|
+
};
|
|
18079
|
+
}
|
|
18080
|
+
|
|
18081
|
+
static types(): { [key: string]: any } {
|
|
18082
|
+
return {
|
|
18083
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
18084
|
+
statusCode: 'number',
|
|
18085
|
+
body: ListMessageGroupUserByIdResponseBody,
|
|
18086
|
+
};
|
|
18087
|
+
}
|
|
18088
|
+
|
|
18089
|
+
constructor(map?: { [key: string]: any }) {
|
|
18090
|
+
super(map);
|
|
18091
|
+
}
|
|
18092
|
+
}
|
|
18093
|
+
|
|
17495
18094
|
export class ListPlaylistRequest extends $tea.Model {
|
|
17496
18095
|
ownerId?: number;
|
|
17497
18096
|
page?: number;
|
|
@@ -18620,6 +19219,84 @@ export class PublishLiveStagingConfigToProductionResponse extends $tea.Model {
|
|
|
18620
19219
|
}
|
|
18621
19220
|
}
|
|
18622
19221
|
|
|
19222
|
+
export class QueryMessageAppRequest extends $tea.Model {
|
|
19223
|
+
appId?: string;
|
|
19224
|
+
appName?: string;
|
|
19225
|
+
pageNum?: number;
|
|
19226
|
+
pageSize?: number;
|
|
19227
|
+
sortType?: number;
|
|
19228
|
+
static names(): { [key: string]: string } {
|
|
19229
|
+
return {
|
|
19230
|
+
appId: 'AppId',
|
|
19231
|
+
appName: 'AppName',
|
|
19232
|
+
pageNum: 'PageNum',
|
|
19233
|
+
pageSize: 'PageSize',
|
|
19234
|
+
sortType: 'SortType',
|
|
19235
|
+
};
|
|
19236
|
+
}
|
|
19237
|
+
|
|
19238
|
+
static types(): { [key: string]: any } {
|
|
19239
|
+
return {
|
|
19240
|
+
appId: 'string',
|
|
19241
|
+
appName: 'string',
|
|
19242
|
+
pageNum: 'number',
|
|
19243
|
+
pageSize: 'number',
|
|
19244
|
+
sortType: 'number',
|
|
19245
|
+
};
|
|
19246
|
+
}
|
|
19247
|
+
|
|
19248
|
+
constructor(map?: { [key: string]: any }) {
|
|
19249
|
+
super(map);
|
|
19250
|
+
}
|
|
19251
|
+
}
|
|
19252
|
+
|
|
19253
|
+
export class QueryMessageAppResponseBody extends $tea.Model {
|
|
19254
|
+
requestId?: string;
|
|
19255
|
+
result?: QueryMessageAppResponseBodyResult[];
|
|
19256
|
+
static names(): { [key: string]: string } {
|
|
19257
|
+
return {
|
|
19258
|
+
requestId: 'RequestId',
|
|
19259
|
+
result: 'Result',
|
|
19260
|
+
};
|
|
19261
|
+
}
|
|
19262
|
+
|
|
19263
|
+
static types(): { [key: string]: any } {
|
|
19264
|
+
return {
|
|
19265
|
+
requestId: 'string',
|
|
19266
|
+
result: { 'type': 'array', 'itemType': QueryMessageAppResponseBodyResult },
|
|
19267
|
+
};
|
|
19268
|
+
}
|
|
19269
|
+
|
|
19270
|
+
constructor(map?: { [key: string]: any }) {
|
|
19271
|
+
super(map);
|
|
19272
|
+
}
|
|
19273
|
+
}
|
|
19274
|
+
|
|
19275
|
+
export class QueryMessageAppResponse extends $tea.Model {
|
|
19276
|
+
headers: { [key: string]: string };
|
|
19277
|
+
statusCode: number;
|
|
19278
|
+
body: QueryMessageAppResponseBody;
|
|
19279
|
+
static names(): { [key: string]: string } {
|
|
19280
|
+
return {
|
|
19281
|
+
headers: 'headers',
|
|
19282
|
+
statusCode: 'statusCode',
|
|
19283
|
+
body: 'body',
|
|
19284
|
+
};
|
|
19285
|
+
}
|
|
19286
|
+
|
|
19287
|
+
static types(): { [key: string]: any } {
|
|
19288
|
+
return {
|
|
19289
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
19290
|
+
statusCode: 'number',
|
|
19291
|
+
body: QueryMessageAppResponseBody,
|
|
19292
|
+
};
|
|
19293
|
+
}
|
|
19294
|
+
|
|
19295
|
+
constructor(map?: { [key: string]: any }) {
|
|
19296
|
+
super(map);
|
|
19297
|
+
}
|
|
19298
|
+
}
|
|
19299
|
+
|
|
18623
19300
|
export class QuerySnapshotCallbackAuthRequest extends $tea.Model {
|
|
18624
19301
|
domainName?: string;
|
|
18625
19302
|
ownerId?: number;
|
|
@@ -18938,6 +19615,72 @@ export class RemoveShowFromShowListResponse extends $tea.Model {
|
|
|
18938
19615
|
}
|
|
18939
19616
|
}
|
|
18940
19617
|
|
|
19618
|
+
export class RestartCasterRequest extends $tea.Model {
|
|
19619
|
+
casterId?: string;
|
|
19620
|
+
ownerId?: number;
|
|
19621
|
+
static names(): { [key: string]: string } {
|
|
19622
|
+
return {
|
|
19623
|
+
casterId: 'CasterId',
|
|
19624
|
+
ownerId: 'OwnerId',
|
|
19625
|
+
};
|
|
19626
|
+
}
|
|
19627
|
+
|
|
19628
|
+
static types(): { [key: string]: any } {
|
|
19629
|
+
return {
|
|
19630
|
+
casterId: 'string',
|
|
19631
|
+
ownerId: 'number',
|
|
19632
|
+
};
|
|
19633
|
+
}
|
|
19634
|
+
|
|
19635
|
+
constructor(map?: { [key: string]: any }) {
|
|
19636
|
+
super(map);
|
|
19637
|
+
}
|
|
19638
|
+
}
|
|
19639
|
+
|
|
19640
|
+
export class RestartCasterResponseBody extends $tea.Model {
|
|
19641
|
+
requestId?: string;
|
|
19642
|
+
static names(): { [key: string]: string } {
|
|
19643
|
+
return {
|
|
19644
|
+
requestId: 'RequestId',
|
|
19645
|
+
};
|
|
19646
|
+
}
|
|
19647
|
+
|
|
19648
|
+
static types(): { [key: string]: any } {
|
|
19649
|
+
return {
|
|
19650
|
+
requestId: 'string',
|
|
19651
|
+
};
|
|
19652
|
+
}
|
|
19653
|
+
|
|
19654
|
+
constructor(map?: { [key: string]: any }) {
|
|
19655
|
+
super(map);
|
|
19656
|
+
}
|
|
19657
|
+
}
|
|
19658
|
+
|
|
19659
|
+
export class RestartCasterResponse extends $tea.Model {
|
|
19660
|
+
headers: { [key: string]: string };
|
|
19661
|
+
statusCode: number;
|
|
19662
|
+
body: RestartCasterResponseBody;
|
|
19663
|
+
static names(): { [key: string]: string } {
|
|
19664
|
+
return {
|
|
19665
|
+
headers: 'headers',
|
|
19666
|
+
statusCode: 'statusCode',
|
|
19667
|
+
body: 'body',
|
|
19668
|
+
};
|
|
19669
|
+
}
|
|
19670
|
+
|
|
19671
|
+
static types(): { [key: string]: any } {
|
|
19672
|
+
return {
|
|
19673
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
19674
|
+
statusCode: 'number',
|
|
19675
|
+
body: RestartCasterResponseBody,
|
|
19676
|
+
};
|
|
19677
|
+
}
|
|
19678
|
+
|
|
19679
|
+
constructor(map?: { [key: string]: any }) {
|
|
19680
|
+
super(map);
|
|
19681
|
+
}
|
|
19682
|
+
}
|
|
19683
|
+
|
|
18941
19684
|
export class ResumeLiveStreamRequest extends $tea.Model {
|
|
18942
19685
|
appName?: string;
|
|
18943
19686
|
domainName?: string;
|
|
@@ -19085,6 +19828,277 @@ export class RollbackLiveStagingConfigResponse extends $tea.Model {
|
|
|
19085
19828
|
}
|
|
19086
19829
|
}
|
|
19087
19830
|
|
|
19831
|
+
export class SendLikeRequest extends $tea.Model {
|
|
19832
|
+
appId?: string;
|
|
19833
|
+
broadCastType?: number;
|
|
19834
|
+
count?: string;
|
|
19835
|
+
groupId?: string;
|
|
19836
|
+
operatorUserId?: string;
|
|
19837
|
+
static names(): { [key: string]: string } {
|
|
19838
|
+
return {
|
|
19839
|
+
appId: 'AppId',
|
|
19840
|
+
broadCastType: 'BroadCastType',
|
|
19841
|
+
count: 'Count',
|
|
19842
|
+
groupId: 'GroupId',
|
|
19843
|
+
operatorUserId: 'OperatorUserId',
|
|
19844
|
+
};
|
|
19845
|
+
}
|
|
19846
|
+
|
|
19847
|
+
static types(): { [key: string]: any } {
|
|
19848
|
+
return {
|
|
19849
|
+
appId: 'string',
|
|
19850
|
+
broadCastType: 'number',
|
|
19851
|
+
count: 'string',
|
|
19852
|
+
groupId: 'string',
|
|
19853
|
+
operatorUserId: 'string',
|
|
19854
|
+
};
|
|
19855
|
+
}
|
|
19856
|
+
|
|
19857
|
+
constructor(map?: { [key: string]: any }) {
|
|
19858
|
+
super(map);
|
|
19859
|
+
}
|
|
19860
|
+
}
|
|
19861
|
+
|
|
19862
|
+
export class SendLikeResponseBody extends $tea.Model {
|
|
19863
|
+
requestId?: string;
|
|
19864
|
+
result?: SendLikeResponseBodyResult;
|
|
19865
|
+
static names(): { [key: string]: string } {
|
|
19866
|
+
return {
|
|
19867
|
+
requestId: 'RequestId',
|
|
19868
|
+
result: 'Result',
|
|
19869
|
+
};
|
|
19870
|
+
}
|
|
19871
|
+
|
|
19872
|
+
static types(): { [key: string]: any } {
|
|
19873
|
+
return {
|
|
19874
|
+
requestId: 'string',
|
|
19875
|
+
result: SendLikeResponseBodyResult,
|
|
19876
|
+
};
|
|
19877
|
+
}
|
|
19878
|
+
|
|
19879
|
+
constructor(map?: { [key: string]: any }) {
|
|
19880
|
+
super(map);
|
|
19881
|
+
}
|
|
19882
|
+
}
|
|
19883
|
+
|
|
19884
|
+
export class SendLikeResponse extends $tea.Model {
|
|
19885
|
+
headers: { [key: string]: string };
|
|
19886
|
+
statusCode: number;
|
|
19887
|
+
body: SendLikeResponseBody;
|
|
19888
|
+
static names(): { [key: string]: string } {
|
|
19889
|
+
return {
|
|
19890
|
+
headers: 'headers',
|
|
19891
|
+
statusCode: 'statusCode',
|
|
19892
|
+
body: 'body',
|
|
19893
|
+
};
|
|
19894
|
+
}
|
|
19895
|
+
|
|
19896
|
+
static types(): { [key: string]: any } {
|
|
19897
|
+
return {
|
|
19898
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
19899
|
+
statusCode: 'number',
|
|
19900
|
+
body: SendLikeResponseBody,
|
|
19901
|
+
};
|
|
19902
|
+
}
|
|
19903
|
+
|
|
19904
|
+
constructor(map?: { [key: string]: any }) {
|
|
19905
|
+
super(map);
|
|
19906
|
+
}
|
|
19907
|
+
}
|
|
19908
|
+
|
|
19909
|
+
export class SendMessageToGroupRequest extends $tea.Model {
|
|
19910
|
+
appId?: string;
|
|
19911
|
+
data?: string;
|
|
19912
|
+
groupId?: string;
|
|
19913
|
+
operatorUserId?: string;
|
|
19914
|
+
type?: number;
|
|
19915
|
+
static names(): { [key: string]: string } {
|
|
19916
|
+
return {
|
|
19917
|
+
appId: 'AppId',
|
|
19918
|
+
data: 'Data',
|
|
19919
|
+
groupId: 'GroupId',
|
|
19920
|
+
operatorUserId: 'OperatorUserId',
|
|
19921
|
+
type: 'Type',
|
|
19922
|
+
};
|
|
19923
|
+
}
|
|
19924
|
+
|
|
19925
|
+
static types(): { [key: string]: any } {
|
|
19926
|
+
return {
|
|
19927
|
+
appId: 'string',
|
|
19928
|
+
data: 'string',
|
|
19929
|
+
groupId: 'string',
|
|
19930
|
+
operatorUserId: 'string',
|
|
19931
|
+
type: 'number',
|
|
19932
|
+
};
|
|
19933
|
+
}
|
|
19934
|
+
|
|
19935
|
+
constructor(map?: { [key: string]: any }) {
|
|
19936
|
+
super(map);
|
|
19937
|
+
}
|
|
19938
|
+
}
|
|
19939
|
+
|
|
19940
|
+
export class SendMessageToGroupResponseBody extends $tea.Model {
|
|
19941
|
+
requestId?: string;
|
|
19942
|
+
result?: SendMessageToGroupResponseBodyResult;
|
|
19943
|
+
static names(): { [key: string]: string } {
|
|
19944
|
+
return {
|
|
19945
|
+
requestId: 'RequestId',
|
|
19946
|
+
result: 'Result',
|
|
19947
|
+
};
|
|
19948
|
+
}
|
|
19949
|
+
|
|
19950
|
+
static types(): { [key: string]: any } {
|
|
19951
|
+
return {
|
|
19952
|
+
requestId: 'string',
|
|
19953
|
+
result: SendMessageToGroupResponseBodyResult,
|
|
19954
|
+
};
|
|
19955
|
+
}
|
|
19956
|
+
|
|
19957
|
+
constructor(map?: { [key: string]: any }) {
|
|
19958
|
+
super(map);
|
|
19959
|
+
}
|
|
19960
|
+
}
|
|
19961
|
+
|
|
19962
|
+
export class SendMessageToGroupResponse extends $tea.Model {
|
|
19963
|
+
headers: { [key: string]: string };
|
|
19964
|
+
statusCode: number;
|
|
19965
|
+
body: SendMessageToGroupResponseBody;
|
|
19966
|
+
static names(): { [key: string]: string } {
|
|
19967
|
+
return {
|
|
19968
|
+
headers: 'headers',
|
|
19969
|
+
statusCode: 'statusCode',
|
|
19970
|
+
body: 'body',
|
|
19971
|
+
};
|
|
19972
|
+
}
|
|
19973
|
+
|
|
19974
|
+
static types(): { [key: string]: any } {
|
|
19975
|
+
return {
|
|
19976
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
19977
|
+
statusCode: 'number',
|
|
19978
|
+
body: SendMessageToGroupResponseBody,
|
|
19979
|
+
};
|
|
19980
|
+
}
|
|
19981
|
+
|
|
19982
|
+
constructor(map?: { [key: string]: any }) {
|
|
19983
|
+
super(map);
|
|
19984
|
+
}
|
|
19985
|
+
}
|
|
19986
|
+
|
|
19987
|
+
export class SendMessageToGroupUsersRequest extends $tea.Model {
|
|
19988
|
+
appId?: string;
|
|
19989
|
+
data?: string;
|
|
19990
|
+
groupId?: string;
|
|
19991
|
+
operatorUserId?: string;
|
|
19992
|
+
receiverIdList?: string[];
|
|
19993
|
+
type?: number;
|
|
19994
|
+
static names(): { [key: string]: string } {
|
|
19995
|
+
return {
|
|
19996
|
+
appId: 'AppId',
|
|
19997
|
+
data: 'Data',
|
|
19998
|
+
groupId: 'GroupId',
|
|
19999
|
+
operatorUserId: 'OperatorUserId',
|
|
20000
|
+
receiverIdList: 'ReceiverIdList',
|
|
20001
|
+
type: 'Type',
|
|
20002
|
+
};
|
|
20003
|
+
}
|
|
20004
|
+
|
|
20005
|
+
static types(): { [key: string]: any } {
|
|
20006
|
+
return {
|
|
20007
|
+
appId: 'string',
|
|
20008
|
+
data: 'string',
|
|
20009
|
+
groupId: 'string',
|
|
20010
|
+
operatorUserId: 'string',
|
|
20011
|
+
receiverIdList: { 'type': 'array', 'itemType': 'string' },
|
|
20012
|
+
type: 'number',
|
|
20013
|
+
};
|
|
20014
|
+
}
|
|
20015
|
+
|
|
20016
|
+
constructor(map?: { [key: string]: any }) {
|
|
20017
|
+
super(map);
|
|
20018
|
+
}
|
|
20019
|
+
}
|
|
20020
|
+
|
|
20021
|
+
export class SendMessageToGroupUsersShrinkRequest extends $tea.Model {
|
|
20022
|
+
appId?: string;
|
|
20023
|
+
data?: string;
|
|
20024
|
+
groupId?: string;
|
|
20025
|
+
operatorUserId?: string;
|
|
20026
|
+
receiverIdListShrink?: string;
|
|
20027
|
+
type?: number;
|
|
20028
|
+
static names(): { [key: string]: string } {
|
|
20029
|
+
return {
|
|
20030
|
+
appId: 'AppId',
|
|
20031
|
+
data: 'Data',
|
|
20032
|
+
groupId: 'GroupId',
|
|
20033
|
+
operatorUserId: 'OperatorUserId',
|
|
20034
|
+
receiverIdListShrink: 'ReceiverIdList',
|
|
20035
|
+
type: 'Type',
|
|
20036
|
+
};
|
|
20037
|
+
}
|
|
20038
|
+
|
|
20039
|
+
static types(): { [key: string]: any } {
|
|
20040
|
+
return {
|
|
20041
|
+
appId: 'string',
|
|
20042
|
+
data: 'string',
|
|
20043
|
+
groupId: 'string',
|
|
20044
|
+
operatorUserId: 'string',
|
|
20045
|
+
receiverIdListShrink: 'string',
|
|
20046
|
+
type: 'number',
|
|
20047
|
+
};
|
|
20048
|
+
}
|
|
20049
|
+
|
|
20050
|
+
constructor(map?: { [key: string]: any }) {
|
|
20051
|
+
super(map);
|
|
20052
|
+
}
|
|
20053
|
+
}
|
|
20054
|
+
|
|
20055
|
+
export class SendMessageToGroupUsersResponseBody extends $tea.Model {
|
|
20056
|
+
requestId?: string;
|
|
20057
|
+
result?: SendMessageToGroupUsersResponseBodyResult;
|
|
20058
|
+
static names(): { [key: string]: string } {
|
|
20059
|
+
return {
|
|
20060
|
+
requestId: 'RequestId',
|
|
20061
|
+
result: 'Result',
|
|
20062
|
+
};
|
|
20063
|
+
}
|
|
20064
|
+
|
|
20065
|
+
static types(): { [key: string]: any } {
|
|
20066
|
+
return {
|
|
20067
|
+
requestId: 'string',
|
|
20068
|
+
result: SendMessageToGroupUsersResponseBodyResult,
|
|
20069
|
+
};
|
|
20070
|
+
}
|
|
20071
|
+
|
|
20072
|
+
constructor(map?: { [key: string]: any }) {
|
|
20073
|
+
super(map);
|
|
20074
|
+
}
|
|
20075
|
+
}
|
|
20076
|
+
|
|
20077
|
+
export class SendMessageToGroupUsersResponse extends $tea.Model {
|
|
20078
|
+
headers: { [key: string]: string };
|
|
20079
|
+
statusCode: number;
|
|
20080
|
+
body: SendMessageToGroupUsersResponseBody;
|
|
20081
|
+
static names(): { [key: string]: string } {
|
|
20082
|
+
return {
|
|
20083
|
+
headers: 'headers',
|
|
20084
|
+
statusCode: 'statusCode',
|
|
20085
|
+
body: 'body',
|
|
20086
|
+
};
|
|
20087
|
+
}
|
|
20088
|
+
|
|
20089
|
+
static types(): { [key: string]: any } {
|
|
20090
|
+
return {
|
|
20091
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
20092
|
+
statusCode: 'number',
|
|
20093
|
+
body: SendMessageToGroupUsersResponseBody,
|
|
20094
|
+
};
|
|
20095
|
+
}
|
|
20096
|
+
|
|
20097
|
+
constructor(map?: { [key: string]: any }) {
|
|
20098
|
+
super(map);
|
|
20099
|
+
}
|
|
20100
|
+
}
|
|
20101
|
+
|
|
19088
20102
|
export class SendRoomNotificationRequest extends $tea.Model {
|
|
19089
20103
|
appId?: string;
|
|
19090
20104
|
appUid?: string;
|
|
@@ -21842,6 +22856,81 @@ export class UpdateLiveSnapshotDetectPornConfigResponse extends $tea.Model {
|
|
|
21842
22856
|
}
|
|
21843
22857
|
}
|
|
21844
22858
|
|
|
22859
|
+
export class UpdateLiveSnapshotNotifyConfigRequest extends $tea.Model {
|
|
22860
|
+
domainName?: string;
|
|
22861
|
+
notifyAuthKey?: string;
|
|
22862
|
+
notifyReqAuth?: string;
|
|
22863
|
+
notifyUrl?: string;
|
|
22864
|
+
ownerId?: number;
|
|
22865
|
+
static names(): { [key: string]: string } {
|
|
22866
|
+
return {
|
|
22867
|
+
domainName: 'DomainName',
|
|
22868
|
+
notifyAuthKey: 'NotifyAuthKey',
|
|
22869
|
+
notifyReqAuth: 'NotifyReqAuth',
|
|
22870
|
+
notifyUrl: 'NotifyUrl',
|
|
22871
|
+
ownerId: 'OwnerId',
|
|
22872
|
+
};
|
|
22873
|
+
}
|
|
22874
|
+
|
|
22875
|
+
static types(): { [key: string]: any } {
|
|
22876
|
+
return {
|
|
22877
|
+
domainName: 'string',
|
|
22878
|
+
notifyAuthKey: 'string',
|
|
22879
|
+
notifyReqAuth: 'string',
|
|
22880
|
+
notifyUrl: 'string',
|
|
22881
|
+
ownerId: 'number',
|
|
22882
|
+
};
|
|
22883
|
+
}
|
|
22884
|
+
|
|
22885
|
+
constructor(map?: { [key: string]: any }) {
|
|
22886
|
+
super(map);
|
|
22887
|
+
}
|
|
22888
|
+
}
|
|
22889
|
+
|
|
22890
|
+
export class UpdateLiveSnapshotNotifyConfigResponseBody extends $tea.Model {
|
|
22891
|
+
requestId?: string;
|
|
22892
|
+
static names(): { [key: string]: string } {
|
|
22893
|
+
return {
|
|
22894
|
+
requestId: 'RequestId',
|
|
22895
|
+
};
|
|
22896
|
+
}
|
|
22897
|
+
|
|
22898
|
+
static types(): { [key: string]: any } {
|
|
22899
|
+
return {
|
|
22900
|
+
requestId: 'string',
|
|
22901
|
+
};
|
|
22902
|
+
}
|
|
22903
|
+
|
|
22904
|
+
constructor(map?: { [key: string]: any }) {
|
|
22905
|
+
super(map);
|
|
22906
|
+
}
|
|
22907
|
+
}
|
|
22908
|
+
|
|
22909
|
+
export class UpdateLiveSnapshotNotifyConfigResponse extends $tea.Model {
|
|
22910
|
+
headers: { [key: string]: string };
|
|
22911
|
+
statusCode: number;
|
|
22912
|
+
body: UpdateLiveSnapshotNotifyConfigResponseBody;
|
|
22913
|
+
static names(): { [key: string]: string } {
|
|
22914
|
+
return {
|
|
22915
|
+
headers: 'headers',
|
|
22916
|
+
statusCode: 'statusCode',
|
|
22917
|
+
body: 'body',
|
|
22918
|
+
};
|
|
22919
|
+
}
|
|
22920
|
+
|
|
22921
|
+
static types(): { [key: string]: any } {
|
|
22922
|
+
return {
|
|
22923
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
22924
|
+
statusCode: 'number',
|
|
22925
|
+
body: UpdateLiveSnapshotNotifyConfigResponseBody,
|
|
22926
|
+
};
|
|
22927
|
+
}
|
|
22928
|
+
|
|
22929
|
+
constructor(map?: { [key: string]: any }) {
|
|
22930
|
+
super(map);
|
|
22931
|
+
}
|
|
22932
|
+
}
|
|
22933
|
+
|
|
21845
22934
|
export class UpdateLiveStreamMonitorRequest extends $tea.Model {
|
|
21846
22935
|
app?: string;
|
|
21847
22936
|
domain?: string;
|
|
@@ -22166,6 +23255,206 @@ export class UpdateLiveTopLevelDomainResponse extends $tea.Model {
|
|
|
22166
23255
|
}
|
|
22167
23256
|
}
|
|
22168
23257
|
|
|
23258
|
+
export class UpdateMessageAppRequest extends $tea.Model {
|
|
23259
|
+
appConfig?: { [key: string]: string };
|
|
23260
|
+
appId?: string;
|
|
23261
|
+
appName?: string;
|
|
23262
|
+
extension?: { [key: string]: string };
|
|
23263
|
+
static names(): { [key: string]: string } {
|
|
23264
|
+
return {
|
|
23265
|
+
appConfig: 'AppConfig',
|
|
23266
|
+
appId: 'AppId',
|
|
23267
|
+
appName: 'AppName',
|
|
23268
|
+
extension: 'Extension',
|
|
23269
|
+
};
|
|
23270
|
+
}
|
|
23271
|
+
|
|
23272
|
+
static types(): { [key: string]: any } {
|
|
23273
|
+
return {
|
|
23274
|
+
appConfig: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
23275
|
+
appId: 'string',
|
|
23276
|
+
appName: 'string',
|
|
23277
|
+
extension: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
23278
|
+
};
|
|
23279
|
+
}
|
|
23280
|
+
|
|
23281
|
+
constructor(map?: { [key: string]: any }) {
|
|
23282
|
+
super(map);
|
|
23283
|
+
}
|
|
23284
|
+
}
|
|
23285
|
+
|
|
23286
|
+
export class UpdateMessageAppShrinkRequest extends $tea.Model {
|
|
23287
|
+
appConfigShrink?: string;
|
|
23288
|
+
appId?: string;
|
|
23289
|
+
appName?: string;
|
|
23290
|
+
extensionShrink?: string;
|
|
23291
|
+
static names(): { [key: string]: string } {
|
|
23292
|
+
return {
|
|
23293
|
+
appConfigShrink: 'AppConfig',
|
|
23294
|
+
appId: 'AppId',
|
|
23295
|
+
appName: 'AppName',
|
|
23296
|
+
extensionShrink: 'Extension',
|
|
23297
|
+
};
|
|
23298
|
+
}
|
|
23299
|
+
|
|
23300
|
+
static types(): { [key: string]: any } {
|
|
23301
|
+
return {
|
|
23302
|
+
appConfigShrink: 'string',
|
|
23303
|
+
appId: 'string',
|
|
23304
|
+
appName: 'string',
|
|
23305
|
+
extensionShrink: 'string',
|
|
23306
|
+
};
|
|
23307
|
+
}
|
|
23308
|
+
|
|
23309
|
+
constructor(map?: { [key: string]: any }) {
|
|
23310
|
+
super(map);
|
|
23311
|
+
}
|
|
23312
|
+
}
|
|
23313
|
+
|
|
23314
|
+
export class UpdateMessageAppResponseBody extends $tea.Model {
|
|
23315
|
+
requestId?: string;
|
|
23316
|
+
result?: UpdateMessageAppResponseBodyResult;
|
|
23317
|
+
static names(): { [key: string]: string } {
|
|
23318
|
+
return {
|
|
23319
|
+
requestId: 'RequestId',
|
|
23320
|
+
result: 'Result',
|
|
23321
|
+
};
|
|
23322
|
+
}
|
|
23323
|
+
|
|
23324
|
+
static types(): { [key: string]: any } {
|
|
23325
|
+
return {
|
|
23326
|
+
requestId: 'string',
|
|
23327
|
+
result: UpdateMessageAppResponseBodyResult,
|
|
23328
|
+
};
|
|
23329
|
+
}
|
|
23330
|
+
|
|
23331
|
+
constructor(map?: { [key: string]: any }) {
|
|
23332
|
+
super(map);
|
|
23333
|
+
}
|
|
23334
|
+
}
|
|
23335
|
+
|
|
23336
|
+
export class UpdateMessageAppResponse extends $tea.Model {
|
|
23337
|
+
headers: { [key: string]: string };
|
|
23338
|
+
statusCode: number;
|
|
23339
|
+
body: UpdateMessageAppResponseBody;
|
|
23340
|
+
static names(): { [key: string]: string } {
|
|
23341
|
+
return {
|
|
23342
|
+
headers: 'headers',
|
|
23343
|
+
statusCode: 'statusCode',
|
|
23344
|
+
body: 'body',
|
|
23345
|
+
};
|
|
23346
|
+
}
|
|
23347
|
+
|
|
23348
|
+
static types(): { [key: string]: any } {
|
|
23349
|
+
return {
|
|
23350
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
23351
|
+
statusCode: 'number',
|
|
23352
|
+
body: UpdateMessageAppResponseBody,
|
|
23353
|
+
};
|
|
23354
|
+
}
|
|
23355
|
+
|
|
23356
|
+
constructor(map?: { [key: string]: any }) {
|
|
23357
|
+
super(map);
|
|
23358
|
+
}
|
|
23359
|
+
}
|
|
23360
|
+
|
|
23361
|
+
export class UpdateMessageGroupRequest extends $tea.Model {
|
|
23362
|
+
appId?: string;
|
|
23363
|
+
extension?: { [key: string]: string };
|
|
23364
|
+
groupId?: string;
|
|
23365
|
+
static names(): { [key: string]: string } {
|
|
23366
|
+
return {
|
|
23367
|
+
appId: 'AppId',
|
|
23368
|
+
extension: 'Extension',
|
|
23369
|
+
groupId: 'GroupId',
|
|
23370
|
+
};
|
|
23371
|
+
}
|
|
23372
|
+
|
|
23373
|
+
static types(): { [key: string]: any } {
|
|
23374
|
+
return {
|
|
23375
|
+
appId: 'string',
|
|
23376
|
+
extension: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
23377
|
+
groupId: 'string',
|
|
23378
|
+
};
|
|
23379
|
+
}
|
|
23380
|
+
|
|
23381
|
+
constructor(map?: { [key: string]: any }) {
|
|
23382
|
+
super(map);
|
|
23383
|
+
}
|
|
23384
|
+
}
|
|
23385
|
+
|
|
23386
|
+
export class UpdateMessageGroupShrinkRequest extends $tea.Model {
|
|
23387
|
+
appId?: string;
|
|
23388
|
+
extensionShrink?: string;
|
|
23389
|
+
groupId?: string;
|
|
23390
|
+
static names(): { [key: string]: string } {
|
|
23391
|
+
return {
|
|
23392
|
+
appId: 'AppId',
|
|
23393
|
+
extensionShrink: 'Extension',
|
|
23394
|
+
groupId: 'GroupId',
|
|
23395
|
+
};
|
|
23396
|
+
}
|
|
23397
|
+
|
|
23398
|
+
static types(): { [key: string]: any } {
|
|
23399
|
+
return {
|
|
23400
|
+
appId: 'string',
|
|
23401
|
+
extensionShrink: 'string',
|
|
23402
|
+
groupId: 'string',
|
|
23403
|
+
};
|
|
23404
|
+
}
|
|
23405
|
+
|
|
23406
|
+
constructor(map?: { [key: string]: any }) {
|
|
23407
|
+
super(map);
|
|
23408
|
+
}
|
|
23409
|
+
}
|
|
23410
|
+
|
|
23411
|
+
export class UpdateMessageGroupResponseBody extends $tea.Model {
|
|
23412
|
+
requestId?: string;
|
|
23413
|
+
result?: UpdateMessageGroupResponseBodyResult;
|
|
23414
|
+
static names(): { [key: string]: string } {
|
|
23415
|
+
return {
|
|
23416
|
+
requestId: 'RequestId',
|
|
23417
|
+
result: 'Result',
|
|
23418
|
+
};
|
|
23419
|
+
}
|
|
23420
|
+
|
|
23421
|
+
static types(): { [key: string]: any } {
|
|
23422
|
+
return {
|
|
23423
|
+
requestId: 'string',
|
|
23424
|
+
result: UpdateMessageGroupResponseBodyResult,
|
|
23425
|
+
};
|
|
23426
|
+
}
|
|
23427
|
+
|
|
23428
|
+
constructor(map?: { [key: string]: any }) {
|
|
23429
|
+
super(map);
|
|
23430
|
+
}
|
|
23431
|
+
}
|
|
23432
|
+
|
|
23433
|
+
export class UpdateMessageGroupResponse extends $tea.Model {
|
|
23434
|
+
headers: { [key: string]: string };
|
|
23435
|
+
statusCode: number;
|
|
23436
|
+
body: UpdateMessageGroupResponseBody;
|
|
23437
|
+
static names(): { [key: string]: string } {
|
|
23438
|
+
return {
|
|
23439
|
+
headers: 'headers',
|
|
23440
|
+
statusCode: 'statusCode',
|
|
23441
|
+
body: 'body',
|
|
23442
|
+
};
|
|
23443
|
+
}
|
|
23444
|
+
|
|
23445
|
+
static types(): { [key: string]: any } {
|
|
23446
|
+
return {
|
|
23447
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
23448
|
+
statusCode: 'number',
|
|
23449
|
+
body: UpdateMessageGroupResponseBody,
|
|
23450
|
+
};
|
|
23451
|
+
}
|
|
23452
|
+
|
|
23453
|
+
constructor(map?: { [key: string]: any }) {
|
|
23454
|
+
super(map);
|
|
23455
|
+
}
|
|
23456
|
+
}
|
|
23457
|
+
|
|
22169
23458
|
export class UpdateMixStreamRequest extends $tea.Model {
|
|
22170
23459
|
domainName?: string;
|
|
22171
23460
|
inputStreamList?: string;
|
|
@@ -22771,25 +24060,6 @@ export class CancelMuteAllGroupUserResponseBodyResult extends $tea.Model {
|
|
|
22771
24060
|
}
|
|
22772
24061
|
}
|
|
22773
24062
|
|
|
22774
|
-
export class CloseMessageGroupResponseBodyResult extends $tea.Model {
|
|
22775
|
-
success?: boolean;
|
|
22776
|
-
static names(): { [key: string]: string } {
|
|
22777
|
-
return {
|
|
22778
|
-
success: 'Success',
|
|
22779
|
-
};
|
|
22780
|
-
}
|
|
22781
|
-
|
|
22782
|
-
static types(): { [key: string]: any } {
|
|
22783
|
-
return {
|
|
22784
|
-
success: 'boolean',
|
|
22785
|
-
};
|
|
22786
|
-
}
|
|
22787
|
-
|
|
22788
|
-
constructor(map?: { [key: string]: any }) {
|
|
22789
|
-
super(map);
|
|
22790
|
-
}
|
|
22791
|
-
}
|
|
22792
|
-
|
|
22793
24063
|
export class CreateLiveStreamRecordIndexFilesResponseBodyRecordInfo extends $tea.Model {
|
|
22794
24064
|
appName?: string;
|
|
22795
24065
|
createTime?: string;
|
|
@@ -22848,6 +24118,25 @@ export class CreateLiveStreamRecordIndexFilesResponseBodyRecordInfo extends $tea
|
|
|
22848
24118
|
}
|
|
22849
24119
|
}
|
|
22850
24120
|
|
|
24121
|
+
export class CreateMessageAppResponseBodyResult extends $tea.Model {
|
|
24122
|
+
appId?: string;
|
|
24123
|
+
static names(): { [key: string]: string } {
|
|
24124
|
+
return {
|
|
24125
|
+
appId: 'AppId',
|
|
24126
|
+
};
|
|
24127
|
+
}
|
|
24128
|
+
|
|
24129
|
+
static types(): { [key: string]: any } {
|
|
24130
|
+
return {
|
|
24131
|
+
appId: 'string',
|
|
24132
|
+
};
|
|
24133
|
+
}
|
|
24134
|
+
|
|
24135
|
+
constructor(map?: { [key: string]: any }) {
|
|
24136
|
+
super(map);
|
|
24137
|
+
}
|
|
24138
|
+
}
|
|
24139
|
+
|
|
22851
24140
|
export class CreateMessageGroupResponseBodyResult extends $tea.Model {
|
|
22852
24141
|
extension?: { [key: string]: any };
|
|
22853
24142
|
groupId?: string;
|
|
@@ -27841,6 +29130,68 @@ export class DescribeLiveStreamsControlHistoryResponseBodyControlInfo extends $t
|
|
|
27841
29130
|
}
|
|
27842
29131
|
}
|
|
27843
29132
|
|
|
29133
|
+
export class DescribeLiveStreamsNotifyRecordsResponseBodyNotifyRecordsInfoLiveStreamNotifyRecordsInfo extends $tea.Model {
|
|
29134
|
+
appName?: string;
|
|
29135
|
+
description?: string;
|
|
29136
|
+
domainName?: string;
|
|
29137
|
+
notifyContent?: string;
|
|
29138
|
+
notifyResult?: string;
|
|
29139
|
+
notifyTime?: string;
|
|
29140
|
+
notifyType?: string;
|
|
29141
|
+
notifyUrl?: string;
|
|
29142
|
+
streamName?: string;
|
|
29143
|
+
static names(): { [key: string]: string } {
|
|
29144
|
+
return {
|
|
29145
|
+
appName: 'AppName',
|
|
29146
|
+
description: 'Description',
|
|
29147
|
+
domainName: 'DomainName',
|
|
29148
|
+
notifyContent: 'NotifyContent',
|
|
29149
|
+
notifyResult: 'NotifyResult',
|
|
29150
|
+
notifyTime: 'NotifyTime',
|
|
29151
|
+
notifyType: 'NotifyType',
|
|
29152
|
+
notifyUrl: 'NotifyUrl',
|
|
29153
|
+
streamName: 'StreamName',
|
|
29154
|
+
};
|
|
29155
|
+
}
|
|
29156
|
+
|
|
29157
|
+
static types(): { [key: string]: any } {
|
|
29158
|
+
return {
|
|
29159
|
+
appName: 'string',
|
|
29160
|
+
description: 'string',
|
|
29161
|
+
domainName: 'string',
|
|
29162
|
+
notifyContent: 'string',
|
|
29163
|
+
notifyResult: 'string',
|
|
29164
|
+
notifyTime: 'string',
|
|
29165
|
+
notifyType: 'string',
|
|
29166
|
+
notifyUrl: 'string',
|
|
29167
|
+
streamName: 'string',
|
|
29168
|
+
};
|
|
29169
|
+
}
|
|
29170
|
+
|
|
29171
|
+
constructor(map?: { [key: string]: any }) {
|
|
29172
|
+
super(map);
|
|
29173
|
+
}
|
|
29174
|
+
}
|
|
29175
|
+
|
|
29176
|
+
export class DescribeLiveStreamsNotifyRecordsResponseBodyNotifyRecordsInfo extends $tea.Model {
|
|
29177
|
+
liveStreamNotifyRecordsInfo?: DescribeLiveStreamsNotifyRecordsResponseBodyNotifyRecordsInfoLiveStreamNotifyRecordsInfo[];
|
|
29178
|
+
static names(): { [key: string]: string } {
|
|
29179
|
+
return {
|
|
29180
|
+
liveStreamNotifyRecordsInfo: 'LiveStreamNotifyRecordsInfo',
|
|
29181
|
+
};
|
|
29182
|
+
}
|
|
29183
|
+
|
|
29184
|
+
static types(): { [key: string]: any } {
|
|
29185
|
+
return {
|
|
29186
|
+
liveStreamNotifyRecordsInfo: { 'type': 'array', 'itemType': DescribeLiveStreamsNotifyRecordsResponseBodyNotifyRecordsInfoLiveStreamNotifyRecordsInfo },
|
|
29187
|
+
};
|
|
29188
|
+
}
|
|
29189
|
+
|
|
29190
|
+
constructor(map?: { [key: string]: any }) {
|
|
29191
|
+
super(map);
|
|
29192
|
+
}
|
|
29193
|
+
}
|
|
29194
|
+
|
|
27844
29195
|
export class DescribeLiveStreamsNotifyUrlConfigResponseBodyLiveStreamsNotifyConfig extends $tea.Model {
|
|
27845
29196
|
domainName?: string;
|
|
27846
29197
|
notifyAuthKey?: string;
|
|
@@ -29199,6 +30550,40 @@ export class EditPlaylistResponseBodyItems extends $tea.Model {
|
|
|
29199
30550
|
}
|
|
29200
30551
|
}
|
|
29201
30552
|
|
|
30553
|
+
export class GetMessageAppResponseBodyResult extends $tea.Model {
|
|
30554
|
+
appConfig?: { [key: string]: string };
|
|
30555
|
+
appId?: string;
|
|
30556
|
+
appName?: string;
|
|
30557
|
+
createTime?: number;
|
|
30558
|
+
extension?: { [key: string]: string };
|
|
30559
|
+
status?: number;
|
|
30560
|
+
static names(): { [key: string]: string } {
|
|
30561
|
+
return {
|
|
30562
|
+
appConfig: 'AppConfig',
|
|
30563
|
+
appId: 'AppId',
|
|
30564
|
+
appName: 'AppName',
|
|
30565
|
+
createTime: 'CreateTime',
|
|
30566
|
+
extension: 'Extension',
|
|
30567
|
+
status: 'Status',
|
|
30568
|
+
};
|
|
30569
|
+
}
|
|
30570
|
+
|
|
30571
|
+
static types(): { [key: string]: any } {
|
|
30572
|
+
return {
|
|
30573
|
+
appConfig: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
30574
|
+
appId: 'string',
|
|
30575
|
+
appName: 'string',
|
|
30576
|
+
createTime: 'number',
|
|
30577
|
+
extension: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
30578
|
+
status: 'number',
|
|
30579
|
+
};
|
|
30580
|
+
}
|
|
30581
|
+
|
|
30582
|
+
constructor(map?: { [key: string]: any }) {
|
|
30583
|
+
super(map);
|
|
30584
|
+
}
|
|
30585
|
+
}
|
|
30586
|
+
|
|
29202
30587
|
export class GetMessageGroupResponseBodyResult extends $tea.Model {
|
|
29203
30588
|
createTime?: number;
|
|
29204
30589
|
creatorId?: string;
|
|
@@ -29258,28 +30643,6 @@ export class GetMessageTokenResponseBodyResult extends $tea.Model {
|
|
|
29258
30643
|
}
|
|
29259
30644
|
}
|
|
29260
30645
|
|
|
29261
|
-
export class GetMessageUserInfoResponseBodyResult extends $tea.Model {
|
|
29262
|
-
hasOrderedIM?: boolean;
|
|
29263
|
-
isNewIMUser?: boolean;
|
|
29264
|
-
static names(): { [key: string]: string } {
|
|
29265
|
-
return {
|
|
29266
|
-
hasOrderedIM: 'HasOrderedIM',
|
|
29267
|
-
isNewIMUser: 'IsNewIMUser',
|
|
29268
|
-
};
|
|
29269
|
-
}
|
|
29270
|
-
|
|
29271
|
-
static types(): { [key: string]: any } {
|
|
29272
|
-
return {
|
|
29273
|
-
hasOrderedIM: 'boolean',
|
|
29274
|
-
isNewIMUser: 'boolean',
|
|
29275
|
-
};
|
|
29276
|
-
}
|
|
29277
|
-
|
|
29278
|
-
constructor(map?: { [key: string]: any }) {
|
|
29279
|
-
super(map);
|
|
29280
|
-
}
|
|
29281
|
-
}
|
|
29282
|
-
|
|
29283
30646
|
export class GetMultiRateConfigResponseBodyTemplatesInfoDetail extends $tea.Model {
|
|
29284
30647
|
audioBitrate?: number;
|
|
29285
30648
|
audioChannelNum?: number;
|
|
@@ -29633,7 +30996,67 @@ export class ListMessageResponseBodyResult extends $tea.Model {
|
|
|
29633
30996
|
}
|
|
29634
30997
|
}
|
|
29635
30998
|
|
|
30999
|
+
export class ListMessageAppResponseBodyResultAppList extends $tea.Model {
|
|
31000
|
+
appConfig?: { [key: string]: string };
|
|
31001
|
+
appId?: string;
|
|
31002
|
+
appName?: string;
|
|
31003
|
+
createTime?: number;
|
|
31004
|
+
extension?: { [key: string]: string };
|
|
31005
|
+
status?: number;
|
|
31006
|
+
static names(): { [key: string]: string } {
|
|
31007
|
+
return {
|
|
31008
|
+
appConfig: 'AppConfig',
|
|
31009
|
+
appId: 'AppId',
|
|
31010
|
+
appName: 'AppName',
|
|
31011
|
+
createTime: 'CreateTime',
|
|
31012
|
+
extension: 'Extension',
|
|
31013
|
+
status: 'Status',
|
|
31014
|
+
};
|
|
31015
|
+
}
|
|
31016
|
+
|
|
31017
|
+
static types(): { [key: string]: any } {
|
|
31018
|
+
return {
|
|
31019
|
+
appConfig: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
31020
|
+
appId: 'string',
|
|
31021
|
+
appName: 'string',
|
|
31022
|
+
createTime: 'number',
|
|
31023
|
+
extension: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
31024
|
+
status: 'number',
|
|
31025
|
+
};
|
|
31026
|
+
}
|
|
31027
|
+
|
|
31028
|
+
constructor(map?: { [key: string]: any }) {
|
|
31029
|
+
super(map);
|
|
31030
|
+
}
|
|
31031
|
+
}
|
|
31032
|
+
|
|
31033
|
+
export class ListMessageAppResponseBodyResult extends $tea.Model {
|
|
31034
|
+
appList?: ListMessageAppResponseBodyResultAppList[];
|
|
31035
|
+
hasMore?: boolean;
|
|
31036
|
+
total?: number;
|
|
31037
|
+
static names(): { [key: string]: string } {
|
|
31038
|
+
return {
|
|
31039
|
+
appList: 'AppList',
|
|
31040
|
+
hasMore: 'HasMore',
|
|
31041
|
+
total: 'Total',
|
|
31042
|
+
};
|
|
31043
|
+
}
|
|
31044
|
+
|
|
31045
|
+
static types(): { [key: string]: any } {
|
|
31046
|
+
return {
|
|
31047
|
+
appList: { 'type': 'array', 'itemType': ListMessageAppResponseBodyResultAppList },
|
|
31048
|
+
hasMore: 'boolean',
|
|
31049
|
+
total: 'number',
|
|
31050
|
+
};
|
|
31051
|
+
}
|
|
31052
|
+
|
|
31053
|
+
constructor(map?: { [key: string]: any }) {
|
|
31054
|
+
super(map);
|
|
31055
|
+
}
|
|
31056
|
+
}
|
|
31057
|
+
|
|
29636
31058
|
export class ListMessageGroupResponseBodyResultGroupList extends $tea.Model {
|
|
31059
|
+
appId?: string;
|
|
29637
31060
|
createTime?: number;
|
|
29638
31061
|
creatorId?: string;
|
|
29639
31062
|
extension?: { [key: string]: string };
|
|
@@ -29641,6 +31064,7 @@ export class ListMessageGroupResponseBodyResultGroupList extends $tea.Model {
|
|
|
29641
31064
|
status?: number;
|
|
29642
31065
|
static names(): { [key: string]: string } {
|
|
29643
31066
|
return {
|
|
31067
|
+
appId: 'AppId',
|
|
29644
31068
|
createTime: 'CreateTime',
|
|
29645
31069
|
creatorId: 'CreatorId',
|
|
29646
31070
|
extension: 'Extension',
|
|
@@ -29651,6 +31075,7 @@ export class ListMessageGroupResponseBodyResultGroupList extends $tea.Model {
|
|
|
29651
31075
|
|
|
29652
31076
|
static types(): { [key: string]: any } {
|
|
29653
31077
|
return {
|
|
31078
|
+
appId: 'string',
|
|
29654
31079
|
createTime: 'number',
|
|
29655
31080
|
creatorId: 'string',
|
|
29656
31081
|
extension: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
@@ -29736,6 +31161,65 @@ export class ListMessageGroupUserResponseBodyResult extends $tea.Model {
|
|
|
29736
31161
|
}
|
|
29737
31162
|
}
|
|
29738
31163
|
|
|
31164
|
+
export class ListMessageGroupUserByIdResponseBodyResultUserList extends $tea.Model {
|
|
31165
|
+
isMute?: boolean;
|
|
31166
|
+
muteBy?: string[];
|
|
31167
|
+
userAvatar?: string;
|
|
31168
|
+
userExtension?: string;
|
|
31169
|
+
userId?: string;
|
|
31170
|
+
userNick?: string;
|
|
31171
|
+
static names(): { [key: string]: string } {
|
|
31172
|
+
return {
|
|
31173
|
+
isMute: 'IsMute',
|
|
31174
|
+
muteBy: 'MuteBy',
|
|
31175
|
+
userAvatar: 'UserAvatar',
|
|
31176
|
+
userExtension: 'UserExtension',
|
|
31177
|
+
userId: 'UserId',
|
|
31178
|
+
userNick: 'UserNick',
|
|
31179
|
+
};
|
|
31180
|
+
}
|
|
31181
|
+
|
|
31182
|
+
static types(): { [key: string]: any } {
|
|
31183
|
+
return {
|
|
31184
|
+
isMute: 'boolean',
|
|
31185
|
+
muteBy: { 'type': 'array', 'itemType': 'string' },
|
|
31186
|
+
userAvatar: 'string',
|
|
31187
|
+
userExtension: 'string',
|
|
31188
|
+
userId: 'string',
|
|
31189
|
+
userNick: 'string',
|
|
31190
|
+
};
|
|
31191
|
+
}
|
|
31192
|
+
|
|
31193
|
+
constructor(map?: { [key: string]: any }) {
|
|
31194
|
+
super(map);
|
|
31195
|
+
}
|
|
31196
|
+
}
|
|
31197
|
+
|
|
31198
|
+
export class ListMessageGroupUserByIdResponseBodyResult extends $tea.Model {
|
|
31199
|
+
hasMore?: boolean;
|
|
31200
|
+
total?: number;
|
|
31201
|
+
userList?: ListMessageGroupUserByIdResponseBodyResultUserList[];
|
|
31202
|
+
static names(): { [key: string]: string } {
|
|
31203
|
+
return {
|
|
31204
|
+
hasMore: 'HasMore',
|
|
31205
|
+
total: 'Total',
|
|
31206
|
+
userList: 'UserList',
|
|
31207
|
+
};
|
|
31208
|
+
}
|
|
31209
|
+
|
|
31210
|
+
static types(): { [key: string]: any } {
|
|
31211
|
+
return {
|
|
31212
|
+
hasMore: 'boolean',
|
|
31213
|
+
total: 'number',
|
|
31214
|
+
userList: { 'type': 'array', 'itemType': ListMessageGroupUserByIdResponseBodyResultUserList },
|
|
31215
|
+
};
|
|
31216
|
+
}
|
|
31217
|
+
|
|
31218
|
+
constructor(map?: { [key: string]: any }) {
|
|
31219
|
+
super(map);
|
|
31220
|
+
}
|
|
31221
|
+
}
|
|
31222
|
+
|
|
29739
31223
|
export class ListPlaylistResponseBodyProgramList extends $tea.Model {
|
|
29740
31224
|
casterId?: string;
|
|
29741
31225
|
domainName?: string;
|
|
@@ -29903,6 +31387,122 @@ export class ModifyCasterProgramRequestEpisode extends $tea.Model {
|
|
|
29903
31387
|
}
|
|
29904
31388
|
}
|
|
29905
31389
|
|
|
31390
|
+
export class QueryMessageAppResponseBodyResultAppList extends $tea.Model {
|
|
31391
|
+
appConfig?: { [key: string]: string };
|
|
31392
|
+
appId?: string;
|
|
31393
|
+
appName?: string;
|
|
31394
|
+
createTime?: number;
|
|
31395
|
+
extension?: { [key: string]: string };
|
|
31396
|
+
status?: number;
|
|
31397
|
+
static names(): { [key: string]: string } {
|
|
31398
|
+
return {
|
|
31399
|
+
appConfig: 'AppConfig',
|
|
31400
|
+
appId: 'AppId',
|
|
31401
|
+
appName: 'AppName',
|
|
31402
|
+
createTime: 'CreateTime',
|
|
31403
|
+
extension: 'Extension',
|
|
31404
|
+
status: 'Status',
|
|
31405
|
+
};
|
|
31406
|
+
}
|
|
31407
|
+
|
|
31408
|
+
static types(): { [key: string]: any } {
|
|
31409
|
+
return {
|
|
31410
|
+
appConfig: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
31411
|
+
appId: 'string',
|
|
31412
|
+
appName: 'string',
|
|
31413
|
+
createTime: 'number',
|
|
31414
|
+
extension: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
31415
|
+
status: 'number',
|
|
31416
|
+
};
|
|
31417
|
+
}
|
|
31418
|
+
|
|
31419
|
+
constructor(map?: { [key: string]: any }) {
|
|
31420
|
+
super(map);
|
|
31421
|
+
}
|
|
31422
|
+
}
|
|
31423
|
+
|
|
31424
|
+
export class QueryMessageAppResponseBodyResult extends $tea.Model {
|
|
31425
|
+
appList?: QueryMessageAppResponseBodyResultAppList[];
|
|
31426
|
+
hasMore?: boolean;
|
|
31427
|
+
totalCount?: number;
|
|
31428
|
+
static names(): { [key: string]: string } {
|
|
31429
|
+
return {
|
|
31430
|
+
appList: 'AppList',
|
|
31431
|
+
hasMore: 'HasMore',
|
|
31432
|
+
totalCount: 'TotalCount',
|
|
31433
|
+
};
|
|
31434
|
+
}
|
|
31435
|
+
|
|
31436
|
+
static types(): { [key: string]: any } {
|
|
31437
|
+
return {
|
|
31438
|
+
appList: { 'type': 'array', 'itemType': QueryMessageAppResponseBodyResultAppList },
|
|
31439
|
+
hasMore: 'boolean',
|
|
31440
|
+
totalCount: 'number',
|
|
31441
|
+
};
|
|
31442
|
+
}
|
|
31443
|
+
|
|
31444
|
+
constructor(map?: { [key: string]: any }) {
|
|
31445
|
+
super(map);
|
|
31446
|
+
}
|
|
31447
|
+
}
|
|
31448
|
+
|
|
31449
|
+
export class SendLikeResponseBodyResult extends $tea.Model {
|
|
31450
|
+
likeCount?: number;
|
|
31451
|
+
static names(): { [key: string]: string } {
|
|
31452
|
+
return {
|
|
31453
|
+
likeCount: 'LikeCount',
|
|
31454
|
+
};
|
|
31455
|
+
}
|
|
31456
|
+
|
|
31457
|
+
static types(): { [key: string]: any } {
|
|
31458
|
+
return {
|
|
31459
|
+
likeCount: 'number',
|
|
31460
|
+
};
|
|
31461
|
+
}
|
|
31462
|
+
|
|
31463
|
+
constructor(map?: { [key: string]: any }) {
|
|
31464
|
+
super(map);
|
|
31465
|
+
}
|
|
31466
|
+
}
|
|
31467
|
+
|
|
31468
|
+
export class SendMessageToGroupResponseBodyResult extends $tea.Model {
|
|
31469
|
+
messageId?: string;
|
|
31470
|
+
static names(): { [key: string]: string } {
|
|
31471
|
+
return {
|
|
31472
|
+
messageId: 'MessageId',
|
|
31473
|
+
};
|
|
31474
|
+
}
|
|
31475
|
+
|
|
31476
|
+
static types(): { [key: string]: any } {
|
|
31477
|
+
return {
|
|
31478
|
+
messageId: 'string',
|
|
31479
|
+
};
|
|
31480
|
+
}
|
|
31481
|
+
|
|
31482
|
+
constructor(map?: { [key: string]: any }) {
|
|
31483
|
+
super(map);
|
|
31484
|
+
}
|
|
31485
|
+
}
|
|
31486
|
+
|
|
31487
|
+
export class SendMessageToGroupUsersResponseBodyResult extends $tea.Model {
|
|
31488
|
+
messageId?: string;
|
|
31489
|
+
static names(): { [key: string]: string } {
|
|
31490
|
+
return {
|
|
31491
|
+
messageId: 'MessageId',
|
|
31492
|
+
};
|
|
31493
|
+
}
|
|
31494
|
+
|
|
31495
|
+
static types(): { [key: string]: any } {
|
|
31496
|
+
return {
|
|
31497
|
+
messageId: 'string',
|
|
31498
|
+
};
|
|
31499
|
+
}
|
|
31500
|
+
|
|
31501
|
+
constructor(map?: { [key: string]: any }) {
|
|
31502
|
+
super(map);
|
|
31503
|
+
}
|
|
31504
|
+
}
|
|
31505
|
+
|
|
29906
31506
|
export class SetCasterSyncGroupRequestSyncGroup extends $tea.Model {
|
|
29907
31507
|
hostResourceId?: string;
|
|
29908
31508
|
mode?: number;
|
|
@@ -30185,6 +31785,44 @@ export class UpdateCasterSceneAudioRequestAudioLayer extends $tea.Model {
|
|
|
30185
31785
|
}
|
|
30186
31786
|
}
|
|
30187
31787
|
|
|
31788
|
+
export class UpdateMessageAppResponseBodyResult extends $tea.Model {
|
|
31789
|
+
success?: boolean;
|
|
31790
|
+
static names(): { [key: string]: string } {
|
|
31791
|
+
return {
|
|
31792
|
+
success: 'Success',
|
|
31793
|
+
};
|
|
31794
|
+
}
|
|
31795
|
+
|
|
31796
|
+
static types(): { [key: string]: any } {
|
|
31797
|
+
return {
|
|
31798
|
+
success: 'boolean',
|
|
31799
|
+
};
|
|
31800
|
+
}
|
|
31801
|
+
|
|
31802
|
+
constructor(map?: { [key: string]: any }) {
|
|
31803
|
+
super(map);
|
|
31804
|
+
}
|
|
31805
|
+
}
|
|
31806
|
+
|
|
31807
|
+
export class UpdateMessageGroupResponseBodyResult extends $tea.Model {
|
|
31808
|
+
success?: boolean;
|
|
31809
|
+
static names(): { [key: string]: string } {
|
|
31810
|
+
return {
|
|
31811
|
+
success: 'Success',
|
|
31812
|
+
};
|
|
31813
|
+
}
|
|
31814
|
+
|
|
31815
|
+
static types(): { [key: string]: any } {
|
|
31816
|
+
return {
|
|
31817
|
+
success: 'boolean',
|
|
31818
|
+
};
|
|
31819
|
+
}
|
|
31820
|
+
|
|
31821
|
+
constructor(map?: { [key: string]: any }) {
|
|
31822
|
+
super(map);
|
|
31823
|
+
}
|
|
31824
|
+
}
|
|
31825
|
+
|
|
30188
31826
|
|
|
30189
31827
|
export default class Client extends OpenApi {
|
|
30190
31828
|
|
|
@@ -31407,6 +33045,51 @@ export default class Client extends OpenApi {
|
|
|
31407
33045
|
return await this.addLiveSnapshotDetectPornConfigWithOptions(request, runtime);
|
|
31408
33046
|
}
|
|
31409
33047
|
|
|
33048
|
+
async addLiveSnapshotNotifyConfigWithOptions(request: AddLiveSnapshotNotifyConfigRequest, runtime: $Util.RuntimeOptions): Promise<AddLiveSnapshotNotifyConfigResponse> {
|
|
33049
|
+
Util.validateModel(request);
|
|
33050
|
+
let query = { };
|
|
33051
|
+
if (!Util.isUnset(request.domainName)) {
|
|
33052
|
+
query["DomainName"] = request.domainName;
|
|
33053
|
+
}
|
|
33054
|
+
|
|
33055
|
+
if (!Util.isUnset(request.notifyAuthKey)) {
|
|
33056
|
+
query["NotifyAuthKey"] = request.notifyAuthKey;
|
|
33057
|
+
}
|
|
33058
|
+
|
|
33059
|
+
if (!Util.isUnset(request.notifyReqAuth)) {
|
|
33060
|
+
query["NotifyReqAuth"] = request.notifyReqAuth;
|
|
33061
|
+
}
|
|
33062
|
+
|
|
33063
|
+
if (!Util.isUnset(request.notifyUrl)) {
|
|
33064
|
+
query["NotifyUrl"] = request.notifyUrl;
|
|
33065
|
+
}
|
|
33066
|
+
|
|
33067
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
33068
|
+
query["OwnerId"] = request.ownerId;
|
|
33069
|
+
}
|
|
33070
|
+
|
|
33071
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
33072
|
+
query: OpenApiUtil.query(query),
|
|
33073
|
+
});
|
|
33074
|
+
let params = new $OpenApi.Params({
|
|
33075
|
+
action: "AddLiveSnapshotNotifyConfig",
|
|
33076
|
+
version: "2016-11-01",
|
|
33077
|
+
protocol: "HTTPS",
|
|
33078
|
+
pathname: "/",
|
|
33079
|
+
method: "POST",
|
|
33080
|
+
authType: "AK",
|
|
33081
|
+
style: "RPC",
|
|
33082
|
+
reqBodyType: "formData",
|
|
33083
|
+
bodyType: "json",
|
|
33084
|
+
});
|
|
33085
|
+
return $tea.cast<AddLiveSnapshotNotifyConfigResponse>(await this.callApi(params, req, runtime), new AddLiveSnapshotNotifyConfigResponse({}));
|
|
33086
|
+
}
|
|
33087
|
+
|
|
33088
|
+
async addLiveSnapshotNotifyConfig(request: AddLiveSnapshotNotifyConfigRequest): Promise<AddLiveSnapshotNotifyConfigResponse> {
|
|
33089
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
33090
|
+
return await this.addLiveSnapshotNotifyConfigWithOptions(request, runtime);
|
|
33091
|
+
}
|
|
33092
|
+
|
|
31410
33093
|
async addLiveStreamTranscodeWithOptions(request: AddLiveStreamTranscodeRequest, runtime: $Util.RuntimeOptions): Promise<AddLiveStreamTranscodeResponse> {
|
|
31411
33094
|
Util.validateModel(request);
|
|
31412
33095
|
let query = { };
|
|
@@ -32181,39 +33864,6 @@ export default class Client extends OpenApi {
|
|
|
32181
33864
|
return await this.closeLiveShiftWithOptions(request, runtime);
|
|
32182
33865
|
}
|
|
32183
33866
|
|
|
32184
|
-
async closeMessageGroupWithOptions(request: CloseMessageGroupRequest, runtime: $Util.RuntimeOptions): Promise<CloseMessageGroupResponse> {
|
|
32185
|
-
Util.validateModel(request);
|
|
32186
|
-
let body : {[key: string ]: any} = { };
|
|
32187
|
-
if (!Util.isUnset(request.appId)) {
|
|
32188
|
-
body["AppId"] = request.appId;
|
|
32189
|
-
}
|
|
32190
|
-
|
|
32191
|
-
if (!Util.isUnset(request.groupId)) {
|
|
32192
|
-
body["GroupId"] = request.groupId;
|
|
32193
|
-
}
|
|
32194
|
-
|
|
32195
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
32196
|
-
body: OpenApiUtil.parseToMap(body),
|
|
32197
|
-
});
|
|
32198
|
-
let params = new $OpenApi.Params({
|
|
32199
|
-
action: "CloseMessageGroup",
|
|
32200
|
-
version: "2016-11-01",
|
|
32201
|
-
protocol: "HTTPS",
|
|
32202
|
-
pathname: "/",
|
|
32203
|
-
method: "POST",
|
|
32204
|
-
authType: "AK",
|
|
32205
|
-
style: "RPC",
|
|
32206
|
-
reqBodyType: "formData",
|
|
32207
|
-
bodyType: "json",
|
|
32208
|
-
});
|
|
32209
|
-
return $tea.cast<CloseMessageGroupResponse>(await this.callApi(params, req, runtime), new CloseMessageGroupResponse({}));
|
|
32210
|
-
}
|
|
32211
|
-
|
|
32212
|
-
async closeMessageGroup(request: CloseMessageGroupRequest): Promise<CloseMessageGroupResponse> {
|
|
32213
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
32214
|
-
return await this.closeMessageGroupWithOptions(request, runtime);
|
|
32215
|
-
}
|
|
32216
|
-
|
|
32217
33867
|
async copyCasterWithOptions(request: CopyCasterRequest, runtime: $Util.RuntimeOptions): Promise<CopyCasterResponse> {
|
|
32218
33868
|
Util.validateModel(request);
|
|
32219
33869
|
let query = { };
|
|
@@ -32574,6 +34224,53 @@ export default class Client extends OpenApi {
|
|
|
32574
34224
|
return await this.createLiveTranscodeTemplateWithOptions(request, runtime);
|
|
32575
34225
|
}
|
|
32576
34226
|
|
|
34227
|
+
async createMessageAppWithOptions(tmpReq: CreateMessageAppRequest, runtime: $Util.RuntimeOptions): Promise<CreateMessageAppResponse> {
|
|
34228
|
+
Util.validateModel(tmpReq);
|
|
34229
|
+
let request = new CreateMessageAppShrinkRequest({ });
|
|
34230
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
34231
|
+
if (!Util.isUnset(tmpReq.appConfig)) {
|
|
34232
|
+
request.appConfigShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.appConfig, "AppConfig", "json");
|
|
34233
|
+
}
|
|
34234
|
+
|
|
34235
|
+
if (!Util.isUnset(tmpReq.extension)) {
|
|
34236
|
+
request.extensionShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.extension, "Extension", "json");
|
|
34237
|
+
}
|
|
34238
|
+
|
|
34239
|
+
let body : {[key: string ]: any} = { };
|
|
34240
|
+
if (!Util.isUnset(request.appConfigShrink)) {
|
|
34241
|
+
body["AppConfig"] = request.appConfigShrink;
|
|
34242
|
+
}
|
|
34243
|
+
|
|
34244
|
+
if (!Util.isUnset(request.appName)) {
|
|
34245
|
+
body["AppName"] = request.appName;
|
|
34246
|
+
}
|
|
34247
|
+
|
|
34248
|
+
if (!Util.isUnset(request.extensionShrink)) {
|
|
34249
|
+
body["Extension"] = request.extensionShrink;
|
|
34250
|
+
}
|
|
34251
|
+
|
|
34252
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
34253
|
+
body: OpenApiUtil.parseToMap(body),
|
|
34254
|
+
});
|
|
34255
|
+
let params = new $OpenApi.Params({
|
|
34256
|
+
action: "CreateMessageApp",
|
|
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<CreateMessageAppResponse>(await this.callApi(params, req, runtime), new CreateMessageAppResponse({}));
|
|
34267
|
+
}
|
|
34268
|
+
|
|
34269
|
+
async createMessageApp(request: CreateMessageAppRequest): Promise<CreateMessageAppResponse> {
|
|
34270
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
34271
|
+
return await this.createMessageAppWithOptions(request, runtime);
|
|
34272
|
+
}
|
|
34273
|
+
|
|
32577
34274
|
async createMessageGroupWithOptions(tmpReq: CreateMessageGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateMessageGroupResponse> {
|
|
32578
34275
|
Util.validateModel(tmpReq);
|
|
32579
34276
|
let request = new CreateMessageGroupShrinkRequest({ });
|
|
@@ -33583,6 +35280,39 @@ export default class Client extends OpenApi {
|
|
|
33583
35280
|
return await this.deleteLiveSnapshotDetectPornConfigWithOptions(request, runtime);
|
|
33584
35281
|
}
|
|
33585
35282
|
|
|
35283
|
+
async deleteLiveSnapshotNotifyConfigWithOptions(request: DeleteLiveSnapshotNotifyConfigRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLiveSnapshotNotifyConfigResponse> {
|
|
35284
|
+
Util.validateModel(request);
|
|
35285
|
+
let query = { };
|
|
35286
|
+
if (!Util.isUnset(request.domainName)) {
|
|
35287
|
+
query["DomainName"] = request.domainName;
|
|
35288
|
+
}
|
|
35289
|
+
|
|
35290
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
35291
|
+
query["OwnerId"] = request.ownerId;
|
|
35292
|
+
}
|
|
35293
|
+
|
|
35294
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
35295
|
+
query: OpenApiUtil.query(query),
|
|
35296
|
+
});
|
|
35297
|
+
let params = new $OpenApi.Params({
|
|
35298
|
+
action: "DeleteLiveSnapshotNotifyConfig",
|
|
35299
|
+
version: "2016-11-01",
|
|
35300
|
+
protocol: "HTTPS",
|
|
35301
|
+
pathname: "/",
|
|
35302
|
+
method: "POST",
|
|
35303
|
+
authType: "AK",
|
|
35304
|
+
style: "RPC",
|
|
35305
|
+
reqBodyType: "formData",
|
|
35306
|
+
bodyType: "json",
|
|
35307
|
+
});
|
|
35308
|
+
return $tea.cast<DeleteLiveSnapshotNotifyConfigResponse>(await this.callApi(params, req, runtime), new DeleteLiveSnapshotNotifyConfigResponse({}));
|
|
35309
|
+
}
|
|
35310
|
+
|
|
35311
|
+
async deleteLiveSnapshotNotifyConfig(request: DeleteLiveSnapshotNotifyConfigRequest): Promise<DeleteLiveSnapshotNotifyConfigResponse> {
|
|
35312
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
35313
|
+
return await this.deleteLiveSnapshotNotifyConfigWithOptions(request, runtime);
|
|
35314
|
+
}
|
|
35315
|
+
|
|
33586
35316
|
async deleteLiveSpecificStagingConfigWithOptions(request: DeleteLiveSpecificStagingConfigRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLiveSpecificStagingConfigResponse> {
|
|
33587
35317
|
Util.validateModel(request);
|
|
33588
35318
|
let query = { };
|
|
@@ -34694,6 +36424,10 @@ export default class Client extends OpenApi {
|
|
|
34694
36424
|
query["Area"] = request.area;
|
|
34695
36425
|
}
|
|
34696
36426
|
|
|
36427
|
+
if (!Util.isUnset(request.dataProtocol)) {
|
|
36428
|
+
query["DataProtocol"] = request.dataProtocol;
|
|
36429
|
+
}
|
|
36430
|
+
|
|
34697
36431
|
if (!Util.isUnset(request.domainName)) {
|
|
34698
36432
|
query["DomainName"] = request.domainName;
|
|
34699
36433
|
}
|
|
@@ -36693,7 +38427,60 @@ export default class Client extends OpenApi {
|
|
|
36693
38427
|
query: OpenApiUtil.query(query),
|
|
36694
38428
|
});
|
|
36695
38429
|
let params = new $OpenApi.Params({
|
|
36696
|
-
action: "DescribeLiveSnapshotConfig",
|
|
38430
|
+
action: "DescribeLiveSnapshotConfig",
|
|
38431
|
+
version: "2016-11-01",
|
|
38432
|
+
protocol: "HTTPS",
|
|
38433
|
+
pathname: "/",
|
|
38434
|
+
method: "POST",
|
|
38435
|
+
authType: "AK",
|
|
38436
|
+
style: "RPC",
|
|
38437
|
+
reqBodyType: "formData",
|
|
38438
|
+
bodyType: "json",
|
|
38439
|
+
});
|
|
38440
|
+
return $tea.cast<DescribeLiveSnapshotConfigResponse>(await this.callApi(params, req, runtime), new DescribeLiveSnapshotConfigResponse({}));
|
|
38441
|
+
}
|
|
38442
|
+
|
|
38443
|
+
async describeLiveSnapshotConfig(request: DescribeLiveSnapshotConfigRequest): Promise<DescribeLiveSnapshotConfigResponse> {
|
|
38444
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
38445
|
+
return await this.describeLiveSnapshotConfigWithOptions(request, runtime);
|
|
38446
|
+
}
|
|
38447
|
+
|
|
38448
|
+
async describeLiveSnapshotDetectPornConfigWithOptions(request: DescribeLiveSnapshotDetectPornConfigRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLiveSnapshotDetectPornConfigResponse> {
|
|
38449
|
+
Util.validateModel(request);
|
|
38450
|
+
let query = { };
|
|
38451
|
+
if (!Util.isUnset(request.appName)) {
|
|
38452
|
+
query["AppName"] = request.appName;
|
|
38453
|
+
}
|
|
38454
|
+
|
|
38455
|
+
if (!Util.isUnset(request.domainName)) {
|
|
38456
|
+
query["DomainName"] = request.domainName;
|
|
38457
|
+
}
|
|
38458
|
+
|
|
38459
|
+
if (!Util.isUnset(request.order)) {
|
|
38460
|
+
query["Order"] = request.order;
|
|
38461
|
+
}
|
|
38462
|
+
|
|
38463
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
38464
|
+
query["OwnerId"] = request.ownerId;
|
|
38465
|
+
}
|
|
38466
|
+
|
|
38467
|
+
if (!Util.isUnset(request.pageNum)) {
|
|
38468
|
+
query["PageNum"] = request.pageNum;
|
|
38469
|
+
}
|
|
38470
|
+
|
|
38471
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
38472
|
+
query["PageSize"] = request.pageSize;
|
|
38473
|
+
}
|
|
38474
|
+
|
|
38475
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
38476
|
+
query["SecurityToken"] = request.securityToken;
|
|
38477
|
+
}
|
|
38478
|
+
|
|
38479
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
38480
|
+
query: OpenApiUtil.query(query),
|
|
38481
|
+
});
|
|
38482
|
+
let params = new $OpenApi.Params({
|
|
38483
|
+
action: "DescribeLiveSnapshotDetectPornConfig",
|
|
36697
38484
|
version: "2016-11-01",
|
|
36698
38485
|
protocol: "HTTPS",
|
|
36699
38486
|
pathname: "/",
|
|
@@ -36703,50 +38490,67 @@ export default class Client extends OpenApi {
|
|
|
36703
38490
|
reqBodyType: "formData",
|
|
36704
38491
|
bodyType: "json",
|
|
36705
38492
|
});
|
|
36706
|
-
return $tea.cast<
|
|
38493
|
+
return $tea.cast<DescribeLiveSnapshotDetectPornConfigResponse>(await this.callApi(params, req, runtime), new DescribeLiveSnapshotDetectPornConfigResponse({}));
|
|
36707
38494
|
}
|
|
36708
38495
|
|
|
36709
|
-
async
|
|
38496
|
+
async describeLiveSnapshotDetectPornConfig(request: DescribeLiveSnapshotDetectPornConfigRequest): Promise<DescribeLiveSnapshotDetectPornConfigResponse> {
|
|
36710
38497
|
let runtime = new $Util.RuntimeOptions({ });
|
|
36711
|
-
return await this.
|
|
38498
|
+
return await this.describeLiveSnapshotDetectPornConfigWithOptions(request, runtime);
|
|
36712
38499
|
}
|
|
36713
38500
|
|
|
36714
|
-
async
|
|
38501
|
+
async describeLiveSnapshotNotifyConfigWithOptions(request: DescribeLiveSnapshotNotifyConfigRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLiveSnapshotNotifyConfigResponse> {
|
|
36715
38502
|
Util.validateModel(request);
|
|
36716
38503
|
let query = { };
|
|
36717
|
-
if (!Util.isUnset(request.appName)) {
|
|
36718
|
-
query["AppName"] = request.appName;
|
|
36719
|
-
}
|
|
36720
|
-
|
|
36721
38504
|
if (!Util.isUnset(request.domainName)) {
|
|
36722
38505
|
query["DomainName"] = request.domainName;
|
|
36723
38506
|
}
|
|
36724
38507
|
|
|
36725
|
-
if (!Util.isUnset(request.order)) {
|
|
36726
|
-
query["Order"] = request.order;
|
|
36727
|
-
}
|
|
36728
|
-
|
|
36729
38508
|
if (!Util.isUnset(request.ownerId)) {
|
|
36730
38509
|
query["OwnerId"] = request.ownerId;
|
|
36731
38510
|
}
|
|
36732
38511
|
|
|
36733
|
-
|
|
36734
|
-
query
|
|
38512
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
38513
|
+
query: OpenApiUtil.query(query),
|
|
38514
|
+
});
|
|
38515
|
+
let params = new $OpenApi.Params({
|
|
38516
|
+
action: "DescribeLiveSnapshotNotifyConfig",
|
|
38517
|
+
version: "2016-11-01",
|
|
38518
|
+
protocol: "HTTPS",
|
|
38519
|
+
pathname: "/",
|
|
38520
|
+
method: "POST",
|
|
38521
|
+
authType: "AK",
|
|
38522
|
+
style: "RPC",
|
|
38523
|
+
reqBodyType: "formData",
|
|
38524
|
+
bodyType: "json",
|
|
38525
|
+
});
|
|
38526
|
+
return $tea.cast<DescribeLiveSnapshotNotifyConfigResponse>(await this.callApi(params, req, runtime), new DescribeLiveSnapshotNotifyConfigResponse({}));
|
|
38527
|
+
}
|
|
38528
|
+
|
|
38529
|
+
async describeLiveSnapshotNotifyConfig(request: DescribeLiveSnapshotNotifyConfigRequest): Promise<DescribeLiveSnapshotNotifyConfigResponse> {
|
|
38530
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
38531
|
+
return await this.describeLiveSnapshotNotifyConfigWithOptions(request, runtime);
|
|
38532
|
+
}
|
|
38533
|
+
|
|
38534
|
+
async describeLiveStreamAuthCheckingWithOptions(request: DescribeLiveStreamAuthCheckingRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLiveStreamAuthCheckingResponse> {
|
|
38535
|
+
Util.validateModel(request);
|
|
38536
|
+
let query = { };
|
|
38537
|
+
if (!Util.isUnset(request.domainName)) {
|
|
38538
|
+
query["DomainName"] = request.domainName;
|
|
36735
38539
|
}
|
|
36736
38540
|
|
|
36737
|
-
if (!Util.isUnset(request.
|
|
36738
|
-
query["
|
|
38541
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
38542
|
+
query["OwnerId"] = request.ownerId;
|
|
36739
38543
|
}
|
|
36740
38544
|
|
|
36741
|
-
if (!Util.isUnset(request.
|
|
36742
|
-
query["
|
|
38545
|
+
if (!Util.isUnset(request.url)) {
|
|
38546
|
+
query["Url"] = request.url;
|
|
36743
38547
|
}
|
|
36744
38548
|
|
|
36745
38549
|
let req = new $OpenApi.OpenApiRequest({
|
|
36746
38550
|
query: OpenApiUtil.query(query),
|
|
36747
38551
|
});
|
|
36748
38552
|
let params = new $OpenApi.Params({
|
|
36749
|
-
action: "
|
|
38553
|
+
action: "DescribeLiveStreamAuthChecking",
|
|
36750
38554
|
version: "2016-11-01",
|
|
36751
38555
|
protocol: "HTTPS",
|
|
36752
38556
|
pathname: "/",
|
|
@@ -36756,12 +38560,12 @@ export default class Client extends OpenApi {
|
|
|
36756
38560
|
reqBodyType: "formData",
|
|
36757
38561
|
bodyType: "json",
|
|
36758
38562
|
});
|
|
36759
|
-
return $tea.cast<
|
|
38563
|
+
return $tea.cast<DescribeLiveStreamAuthCheckingResponse>(await this.callApi(params, req, runtime), new DescribeLiveStreamAuthCheckingResponse({}));
|
|
36760
38564
|
}
|
|
36761
38565
|
|
|
36762
|
-
async
|
|
38566
|
+
async describeLiveStreamAuthChecking(request: DescribeLiveStreamAuthCheckingRequest): Promise<DescribeLiveStreamAuthCheckingResponse> {
|
|
36763
38567
|
let runtime = new $Util.RuntimeOptions({ });
|
|
36764
|
-
return await this.
|
|
38568
|
+
return await this.describeLiveStreamAuthCheckingWithOptions(request, runtime);
|
|
36765
38569
|
}
|
|
36766
38570
|
|
|
36767
38571
|
async describeLiveStreamBitRateDataWithOptions(request: DescribeLiveStreamBitRateDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLiveStreamBitRateDataResponse> {
|
|
@@ -37570,6 +39374,67 @@ export default class Client extends OpenApi {
|
|
|
37570
39374
|
return await this.describeLiveStreamsControlHistoryWithOptions(request, runtime);
|
|
37571
39375
|
}
|
|
37572
39376
|
|
|
39377
|
+
async describeLiveStreamsNotifyRecordsWithOptions(request: DescribeLiveStreamsNotifyRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLiveStreamsNotifyRecordsResponse> {
|
|
39378
|
+
Util.validateModel(request);
|
|
39379
|
+
let query = { };
|
|
39380
|
+
if (!Util.isUnset(request.appName)) {
|
|
39381
|
+
query["AppName"] = request.appName;
|
|
39382
|
+
}
|
|
39383
|
+
|
|
39384
|
+
if (!Util.isUnset(request.domainName)) {
|
|
39385
|
+
query["DomainName"] = request.domainName;
|
|
39386
|
+
}
|
|
39387
|
+
|
|
39388
|
+
if (!Util.isUnset(request.endTime)) {
|
|
39389
|
+
query["EndTime"] = request.endTime;
|
|
39390
|
+
}
|
|
39391
|
+
|
|
39392
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
39393
|
+
query["OwnerId"] = request.ownerId;
|
|
39394
|
+
}
|
|
39395
|
+
|
|
39396
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
39397
|
+
query["PageNumber"] = request.pageNumber;
|
|
39398
|
+
}
|
|
39399
|
+
|
|
39400
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
39401
|
+
query["PageSize"] = request.pageSize;
|
|
39402
|
+
}
|
|
39403
|
+
|
|
39404
|
+
if (!Util.isUnset(request.startTime)) {
|
|
39405
|
+
query["StartTime"] = request.startTime;
|
|
39406
|
+
}
|
|
39407
|
+
|
|
39408
|
+
if (!Util.isUnset(request.status)) {
|
|
39409
|
+
query["Status"] = request.status;
|
|
39410
|
+
}
|
|
39411
|
+
|
|
39412
|
+
if (!Util.isUnset(request.streamName)) {
|
|
39413
|
+
query["StreamName"] = request.streamName;
|
|
39414
|
+
}
|
|
39415
|
+
|
|
39416
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
39417
|
+
query: OpenApiUtil.query(query),
|
|
39418
|
+
});
|
|
39419
|
+
let params = new $OpenApi.Params({
|
|
39420
|
+
action: "DescribeLiveStreamsNotifyRecords",
|
|
39421
|
+
version: "2016-11-01",
|
|
39422
|
+
protocol: "HTTPS",
|
|
39423
|
+
pathname: "/",
|
|
39424
|
+
method: "POST",
|
|
39425
|
+
authType: "AK",
|
|
39426
|
+
style: "RPC",
|
|
39427
|
+
reqBodyType: "formData",
|
|
39428
|
+
bodyType: "json",
|
|
39429
|
+
});
|
|
39430
|
+
return $tea.cast<DescribeLiveStreamsNotifyRecordsResponse>(await this.callApi(params, req, runtime), new DescribeLiveStreamsNotifyRecordsResponse({}));
|
|
39431
|
+
}
|
|
39432
|
+
|
|
39433
|
+
async describeLiveStreamsNotifyRecords(request: DescribeLiveStreamsNotifyRecordsRequest): Promise<DescribeLiveStreamsNotifyRecordsResponse> {
|
|
39434
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
39435
|
+
return await this.describeLiveStreamsNotifyRecordsWithOptions(request, runtime);
|
|
39436
|
+
}
|
|
39437
|
+
|
|
37573
39438
|
async describeLiveStreamsNotifyUrlConfigWithOptions(request: DescribeLiveStreamsNotifyUrlConfigRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLiveStreamsNotifyUrlConfigResponse> {
|
|
37574
39439
|
Util.validateModel(request);
|
|
37575
39440
|
let query = { };
|
|
@@ -39221,6 +41086,35 @@ export default class Client extends OpenApi {
|
|
|
39221
41086
|
return await this.getEditingJobInfoWithOptions(request, runtime);
|
|
39222
41087
|
}
|
|
39223
41088
|
|
|
41089
|
+
async getMessageAppWithOptions(request: GetMessageAppRequest, runtime: $Util.RuntimeOptions): Promise<GetMessageAppResponse> {
|
|
41090
|
+
Util.validateModel(request);
|
|
41091
|
+
let body : {[key: string ]: any} = { };
|
|
41092
|
+
if (!Util.isUnset(request.appId)) {
|
|
41093
|
+
body["AppId"] = request.appId;
|
|
41094
|
+
}
|
|
41095
|
+
|
|
41096
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
41097
|
+
body: OpenApiUtil.parseToMap(body),
|
|
41098
|
+
});
|
|
41099
|
+
let params = new $OpenApi.Params({
|
|
41100
|
+
action: "GetMessageApp",
|
|
41101
|
+
version: "2016-11-01",
|
|
41102
|
+
protocol: "HTTPS",
|
|
41103
|
+
pathname: "/",
|
|
41104
|
+
method: "POST",
|
|
41105
|
+
authType: "AK",
|
|
41106
|
+
style: "RPC",
|
|
41107
|
+
reqBodyType: "formData",
|
|
41108
|
+
bodyType: "json",
|
|
41109
|
+
});
|
|
41110
|
+
return $tea.cast<GetMessageAppResponse>(await this.callApi(params, req, runtime), new GetMessageAppResponse({}));
|
|
41111
|
+
}
|
|
41112
|
+
|
|
41113
|
+
async getMessageApp(request: GetMessageAppRequest): Promise<GetMessageAppResponse> {
|
|
41114
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
41115
|
+
return await this.getMessageAppWithOptions(request, runtime);
|
|
41116
|
+
}
|
|
41117
|
+
|
|
39224
41118
|
async getMessageGroupWithOptions(request: GetMessageGroupRequest, runtime: $Util.RuntimeOptions): Promise<GetMessageGroupResponse> {
|
|
39225
41119
|
Util.validateModel(request);
|
|
39226
41120
|
let body : {[key: string ]: any} = { };
|
|
@@ -39295,35 +41189,6 @@ export default class Client extends OpenApi {
|
|
|
39295
41189
|
return await this.getMessageTokenWithOptions(request, runtime);
|
|
39296
41190
|
}
|
|
39297
41191
|
|
|
39298
|
-
async getMessageUserInfoWithOptions(request: GetMessageUserInfoRequest, runtime: $Util.RuntimeOptions): Promise<GetMessageUserInfoResponse> {
|
|
39299
|
-
Util.validateModel(request);
|
|
39300
|
-
let body : {[key: string ]: any} = { };
|
|
39301
|
-
if (!Util.isUnset(request.cloudUid)) {
|
|
39302
|
-
body["CloudUid"] = request.cloudUid;
|
|
39303
|
-
}
|
|
39304
|
-
|
|
39305
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
39306
|
-
body: OpenApiUtil.parseToMap(body),
|
|
39307
|
-
});
|
|
39308
|
-
let params = new $OpenApi.Params({
|
|
39309
|
-
action: "GetMessageUserInfo",
|
|
39310
|
-
version: "2016-11-01",
|
|
39311
|
-
protocol: "HTTPS",
|
|
39312
|
-
pathname: "/",
|
|
39313
|
-
method: "POST",
|
|
39314
|
-
authType: "AK",
|
|
39315
|
-
style: "RPC",
|
|
39316
|
-
reqBodyType: "formData",
|
|
39317
|
-
bodyType: "json",
|
|
39318
|
-
});
|
|
39319
|
-
return $tea.cast<GetMessageUserInfoResponse>(await this.callApi(params, req, runtime), new GetMessageUserInfoResponse({}));
|
|
39320
|
-
}
|
|
39321
|
-
|
|
39322
|
-
async getMessageUserInfo(request: GetMessageUserInfoRequest): Promise<GetMessageUserInfoResponse> {
|
|
39323
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
39324
|
-
return await this.getMessageUserInfoWithOptions(request, runtime);
|
|
39325
|
-
}
|
|
39326
|
-
|
|
39327
41192
|
async getMultiRateConfigWithOptions(request: GetMultiRateConfigRequest, runtime: $Util.RuntimeOptions): Promise<GetMultiRateConfigResponse> {
|
|
39328
41193
|
Util.validateModel(request);
|
|
39329
41194
|
let query = { };
|
|
@@ -39680,6 +41545,10 @@ export default class Client extends OpenApi {
|
|
|
39680
41545
|
async listMessageWithOptions(request: ListMessageRequest, runtime: $Util.RuntimeOptions): Promise<ListMessageResponse> {
|
|
39681
41546
|
Util.validateModel(request);
|
|
39682
41547
|
let body : {[key: string ]: any} = { };
|
|
41548
|
+
if (!Util.isUnset(request.appId)) {
|
|
41549
|
+
body["AppId"] = request.appId;
|
|
41550
|
+
}
|
|
41551
|
+
|
|
39683
41552
|
if (!Util.isUnset(request.groupId)) {
|
|
39684
41553
|
body["GroupId"] = request.groupId;
|
|
39685
41554
|
}
|
|
@@ -39722,9 +41591,50 @@ export default class Client extends OpenApi {
|
|
|
39722
41591
|
return await this.listMessageWithOptions(request, runtime);
|
|
39723
41592
|
}
|
|
39724
41593
|
|
|
41594
|
+
async listMessageAppWithOptions(request: ListMessageAppRequest, runtime: $Util.RuntimeOptions): Promise<ListMessageAppResponse> {
|
|
41595
|
+
Util.validateModel(request);
|
|
41596
|
+
let body : {[key: string ]: any} = { };
|
|
41597
|
+
if (!Util.isUnset(request.pageNum)) {
|
|
41598
|
+
body["PageNum"] = request.pageNum;
|
|
41599
|
+
}
|
|
41600
|
+
|
|
41601
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
41602
|
+
body["PageSize"] = request.pageSize;
|
|
41603
|
+
}
|
|
41604
|
+
|
|
41605
|
+
if (!Util.isUnset(request.sortType)) {
|
|
41606
|
+
body["SortType"] = request.sortType;
|
|
41607
|
+
}
|
|
41608
|
+
|
|
41609
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
41610
|
+
body: OpenApiUtil.parseToMap(body),
|
|
41611
|
+
});
|
|
41612
|
+
let params = new $OpenApi.Params({
|
|
41613
|
+
action: "ListMessageApp",
|
|
41614
|
+
version: "2016-11-01",
|
|
41615
|
+
protocol: "HTTPS",
|
|
41616
|
+
pathname: "/",
|
|
41617
|
+
method: "POST",
|
|
41618
|
+
authType: "AK",
|
|
41619
|
+
style: "RPC",
|
|
41620
|
+
reqBodyType: "formData",
|
|
41621
|
+
bodyType: "json",
|
|
41622
|
+
});
|
|
41623
|
+
return $tea.cast<ListMessageAppResponse>(await this.callApi(params, req, runtime), new ListMessageAppResponse({}));
|
|
41624
|
+
}
|
|
41625
|
+
|
|
41626
|
+
async listMessageApp(request: ListMessageAppRequest): Promise<ListMessageAppResponse> {
|
|
41627
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
41628
|
+
return await this.listMessageAppWithOptions(request, runtime);
|
|
41629
|
+
}
|
|
41630
|
+
|
|
39725
41631
|
async listMessageGroupWithOptions(request: ListMessageGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListMessageGroupResponse> {
|
|
39726
41632
|
Util.validateModel(request);
|
|
39727
41633
|
let body : {[key: string ]: any} = { };
|
|
41634
|
+
if (!Util.isUnset(request.appId)) {
|
|
41635
|
+
body["AppId"] = request.appId;
|
|
41636
|
+
}
|
|
41637
|
+
|
|
39728
41638
|
if (!Util.isUnset(request.pageNum)) {
|
|
39729
41639
|
body["PageNum"] = request.pageNum;
|
|
39730
41640
|
}
|
|
@@ -39786,10 +41696,6 @@ export default class Client extends OpenApi {
|
|
|
39786
41696
|
body["SortType"] = request.sortType;
|
|
39787
41697
|
}
|
|
39788
41698
|
|
|
39789
|
-
if (!Util.isUnset(request.type)) {
|
|
39790
|
-
body["Type"] = request.type;
|
|
39791
|
-
}
|
|
39792
|
-
|
|
39793
41699
|
let req = new $OpenApi.OpenApiRequest({
|
|
39794
41700
|
body: OpenApiUtil.parseToMap(body),
|
|
39795
41701
|
});
|
|
@@ -39812,6 +41718,49 @@ export default class Client extends OpenApi {
|
|
|
39812
41718
|
return await this.listMessageGroupUserWithOptions(request, runtime);
|
|
39813
41719
|
}
|
|
39814
41720
|
|
|
41721
|
+
async listMessageGroupUserByIdWithOptions(tmpReq: ListMessageGroupUserByIdRequest, runtime: $Util.RuntimeOptions): Promise<ListMessageGroupUserByIdResponse> {
|
|
41722
|
+
Util.validateModel(tmpReq);
|
|
41723
|
+
let request = new ListMessageGroupUserByIdShrinkRequest({ });
|
|
41724
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
41725
|
+
if (!Util.isUnset(tmpReq.userIdList)) {
|
|
41726
|
+
request.userIdListShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.userIdList, "UserIdList", "simple");
|
|
41727
|
+
}
|
|
41728
|
+
|
|
41729
|
+
let body : {[key: string ]: any} = { };
|
|
41730
|
+
if (!Util.isUnset(request.appId)) {
|
|
41731
|
+
body["AppId"] = request.appId;
|
|
41732
|
+
}
|
|
41733
|
+
|
|
41734
|
+
if (!Util.isUnset(request.groupId)) {
|
|
41735
|
+
body["GroupId"] = request.groupId;
|
|
41736
|
+
}
|
|
41737
|
+
|
|
41738
|
+
if (!Util.isUnset(request.userIdListShrink)) {
|
|
41739
|
+
body["UserIdList"] = request.userIdListShrink;
|
|
41740
|
+
}
|
|
41741
|
+
|
|
41742
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
41743
|
+
body: OpenApiUtil.parseToMap(body),
|
|
41744
|
+
});
|
|
41745
|
+
let params = new $OpenApi.Params({
|
|
41746
|
+
action: "ListMessageGroupUserById",
|
|
41747
|
+
version: "2016-11-01",
|
|
41748
|
+
protocol: "HTTPS",
|
|
41749
|
+
pathname: "/",
|
|
41750
|
+
method: "POST",
|
|
41751
|
+
authType: "AK",
|
|
41752
|
+
style: "RPC",
|
|
41753
|
+
reqBodyType: "formData",
|
|
41754
|
+
bodyType: "json",
|
|
41755
|
+
});
|
|
41756
|
+
return $tea.cast<ListMessageGroupUserByIdResponse>(await this.callApi(params, req, runtime), new ListMessageGroupUserByIdResponse({}));
|
|
41757
|
+
}
|
|
41758
|
+
|
|
41759
|
+
async listMessageGroupUserById(request: ListMessageGroupUserByIdRequest): Promise<ListMessageGroupUserByIdResponse> {
|
|
41760
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
41761
|
+
return await this.listMessageGroupUserByIdWithOptions(request, runtime);
|
|
41762
|
+
}
|
|
41763
|
+
|
|
39815
41764
|
async listPlaylistWithOptions(request: ListPlaylistRequest, runtime: $Util.RuntimeOptions): Promise<ListPlaylistResponse> {
|
|
39816
41765
|
Util.validateModel(request);
|
|
39817
41766
|
let query = { };
|
|
@@ -40478,6 +42427,51 @@ export default class Client extends OpenApi {
|
|
|
40478
42427
|
return await this.publishLiveStagingConfigToProductionWithOptions(request, runtime);
|
|
40479
42428
|
}
|
|
40480
42429
|
|
|
42430
|
+
async queryMessageAppWithOptions(request: QueryMessageAppRequest, runtime: $Util.RuntimeOptions): Promise<QueryMessageAppResponse> {
|
|
42431
|
+
Util.validateModel(request);
|
|
42432
|
+
let body : {[key: string ]: any} = { };
|
|
42433
|
+
if (!Util.isUnset(request.appId)) {
|
|
42434
|
+
body["AppId"] = request.appId;
|
|
42435
|
+
}
|
|
42436
|
+
|
|
42437
|
+
if (!Util.isUnset(request.appName)) {
|
|
42438
|
+
body["AppName"] = request.appName;
|
|
42439
|
+
}
|
|
42440
|
+
|
|
42441
|
+
if (!Util.isUnset(request.pageNum)) {
|
|
42442
|
+
body["PageNum"] = request.pageNum;
|
|
42443
|
+
}
|
|
42444
|
+
|
|
42445
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
42446
|
+
body["PageSize"] = request.pageSize;
|
|
42447
|
+
}
|
|
42448
|
+
|
|
42449
|
+
if (!Util.isUnset(request.sortType)) {
|
|
42450
|
+
body["SortType"] = request.sortType;
|
|
42451
|
+
}
|
|
42452
|
+
|
|
42453
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
42454
|
+
body: OpenApiUtil.parseToMap(body),
|
|
42455
|
+
});
|
|
42456
|
+
let params = new $OpenApi.Params({
|
|
42457
|
+
action: "QueryMessageApp",
|
|
42458
|
+
version: "2016-11-01",
|
|
42459
|
+
protocol: "HTTPS",
|
|
42460
|
+
pathname: "/",
|
|
42461
|
+
method: "POST",
|
|
42462
|
+
authType: "AK",
|
|
42463
|
+
style: "RPC",
|
|
42464
|
+
reqBodyType: "formData",
|
|
42465
|
+
bodyType: "json",
|
|
42466
|
+
});
|
|
42467
|
+
return $tea.cast<QueryMessageAppResponse>(await this.callApi(params, req, runtime), new QueryMessageAppResponse({}));
|
|
42468
|
+
}
|
|
42469
|
+
|
|
42470
|
+
async queryMessageApp(request: QueryMessageAppRequest): Promise<QueryMessageAppResponse> {
|
|
42471
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42472
|
+
return await this.queryMessageAppWithOptions(request, runtime);
|
|
42473
|
+
}
|
|
42474
|
+
|
|
40481
42475
|
async querySnapshotCallbackAuthWithOptions(request: QuerySnapshotCallbackAuthRequest, runtime: $Util.RuntimeOptions): Promise<QuerySnapshotCallbackAuthResponse> {
|
|
40482
42476
|
Util.validateModel(request);
|
|
40483
42477
|
let query = { };
|
|
@@ -40658,6 +42652,39 @@ export default class Client extends OpenApi {
|
|
|
40658
42652
|
return await this.removeShowFromShowListWithOptions(request, runtime);
|
|
40659
42653
|
}
|
|
40660
42654
|
|
|
42655
|
+
async restartCasterWithOptions(request: RestartCasterRequest, runtime: $Util.RuntimeOptions): Promise<RestartCasterResponse> {
|
|
42656
|
+
Util.validateModel(request);
|
|
42657
|
+
let query = { };
|
|
42658
|
+
if (!Util.isUnset(request.casterId)) {
|
|
42659
|
+
query["CasterId"] = request.casterId;
|
|
42660
|
+
}
|
|
42661
|
+
|
|
42662
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
42663
|
+
query["OwnerId"] = request.ownerId;
|
|
42664
|
+
}
|
|
42665
|
+
|
|
42666
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
42667
|
+
query: OpenApiUtil.query(query),
|
|
42668
|
+
});
|
|
42669
|
+
let params = new $OpenApi.Params({
|
|
42670
|
+
action: "RestartCaster",
|
|
42671
|
+
version: "2016-11-01",
|
|
42672
|
+
protocol: "HTTPS",
|
|
42673
|
+
pathname: "/",
|
|
42674
|
+
method: "POST",
|
|
42675
|
+
authType: "AK",
|
|
42676
|
+
style: "RPC",
|
|
42677
|
+
reqBodyType: "formData",
|
|
42678
|
+
bodyType: "json",
|
|
42679
|
+
});
|
|
42680
|
+
return $tea.cast<RestartCasterResponse>(await this.callApi(params, req, runtime), new RestartCasterResponse({}));
|
|
42681
|
+
}
|
|
42682
|
+
|
|
42683
|
+
async restartCaster(request: RestartCasterRequest): Promise<RestartCasterResponse> {
|
|
42684
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42685
|
+
return await this.restartCasterWithOptions(request, runtime);
|
|
42686
|
+
}
|
|
42687
|
+
|
|
40661
42688
|
async resumeLiveStreamWithOptions(request: ResumeLiveStreamRequest, runtime: $Util.RuntimeOptions): Promise<ResumeLiveStreamResponse> {
|
|
40662
42689
|
Util.validateModel(request);
|
|
40663
42690
|
let query = { };
|
|
@@ -40744,6 +42771,151 @@ export default class Client extends OpenApi {
|
|
|
40744
42771
|
return await this.rollbackLiveStagingConfigWithOptions(request, runtime);
|
|
40745
42772
|
}
|
|
40746
42773
|
|
|
42774
|
+
async sendLikeWithOptions(request: SendLikeRequest, runtime: $Util.RuntimeOptions): Promise<SendLikeResponse> {
|
|
42775
|
+
Util.validateModel(request);
|
|
42776
|
+
let body : {[key: string ]: any} = { };
|
|
42777
|
+
if (!Util.isUnset(request.appId)) {
|
|
42778
|
+
body["AppId"] = request.appId;
|
|
42779
|
+
}
|
|
42780
|
+
|
|
42781
|
+
if (!Util.isUnset(request.broadCastType)) {
|
|
42782
|
+
body["BroadCastType"] = request.broadCastType;
|
|
42783
|
+
}
|
|
42784
|
+
|
|
42785
|
+
if (!Util.isUnset(request.count)) {
|
|
42786
|
+
body["Count"] = request.count;
|
|
42787
|
+
}
|
|
42788
|
+
|
|
42789
|
+
if (!Util.isUnset(request.groupId)) {
|
|
42790
|
+
body["GroupId"] = request.groupId;
|
|
42791
|
+
}
|
|
42792
|
+
|
|
42793
|
+
if (!Util.isUnset(request.operatorUserId)) {
|
|
42794
|
+
body["OperatorUserId"] = request.operatorUserId;
|
|
42795
|
+
}
|
|
42796
|
+
|
|
42797
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
42798
|
+
body: OpenApiUtil.parseToMap(body),
|
|
42799
|
+
});
|
|
42800
|
+
let params = new $OpenApi.Params({
|
|
42801
|
+
action: "SendLike",
|
|
42802
|
+
version: "2016-11-01",
|
|
42803
|
+
protocol: "HTTPS",
|
|
42804
|
+
pathname: "/",
|
|
42805
|
+
method: "POST",
|
|
42806
|
+
authType: "AK",
|
|
42807
|
+
style: "RPC",
|
|
42808
|
+
reqBodyType: "formData",
|
|
42809
|
+
bodyType: "json",
|
|
42810
|
+
});
|
|
42811
|
+
return $tea.cast<SendLikeResponse>(await this.callApi(params, req, runtime), new SendLikeResponse({}));
|
|
42812
|
+
}
|
|
42813
|
+
|
|
42814
|
+
async sendLike(request: SendLikeRequest): Promise<SendLikeResponse> {
|
|
42815
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42816
|
+
return await this.sendLikeWithOptions(request, runtime);
|
|
42817
|
+
}
|
|
42818
|
+
|
|
42819
|
+
async sendMessageToGroupWithOptions(request: SendMessageToGroupRequest, runtime: $Util.RuntimeOptions): Promise<SendMessageToGroupResponse> {
|
|
42820
|
+
Util.validateModel(request);
|
|
42821
|
+
let body : {[key: string ]: any} = { };
|
|
42822
|
+
if (!Util.isUnset(request.appId)) {
|
|
42823
|
+
body["AppId"] = request.appId;
|
|
42824
|
+
}
|
|
42825
|
+
|
|
42826
|
+
if (!Util.isUnset(request.data)) {
|
|
42827
|
+
body["Data"] = request.data;
|
|
42828
|
+
}
|
|
42829
|
+
|
|
42830
|
+
if (!Util.isUnset(request.groupId)) {
|
|
42831
|
+
body["GroupId"] = request.groupId;
|
|
42832
|
+
}
|
|
42833
|
+
|
|
42834
|
+
if (!Util.isUnset(request.operatorUserId)) {
|
|
42835
|
+
body["OperatorUserId"] = request.operatorUserId;
|
|
42836
|
+
}
|
|
42837
|
+
|
|
42838
|
+
if (!Util.isUnset(request.type)) {
|
|
42839
|
+
body["Type"] = request.type;
|
|
42840
|
+
}
|
|
42841
|
+
|
|
42842
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
42843
|
+
body: OpenApiUtil.parseToMap(body),
|
|
42844
|
+
});
|
|
42845
|
+
let params = new $OpenApi.Params({
|
|
42846
|
+
action: "SendMessageToGroup",
|
|
42847
|
+
version: "2016-11-01",
|
|
42848
|
+
protocol: "HTTPS",
|
|
42849
|
+
pathname: "/",
|
|
42850
|
+
method: "POST",
|
|
42851
|
+
authType: "AK",
|
|
42852
|
+
style: "RPC",
|
|
42853
|
+
reqBodyType: "formData",
|
|
42854
|
+
bodyType: "json",
|
|
42855
|
+
});
|
|
42856
|
+
return $tea.cast<SendMessageToGroupResponse>(await this.callApi(params, req, runtime), new SendMessageToGroupResponse({}));
|
|
42857
|
+
}
|
|
42858
|
+
|
|
42859
|
+
async sendMessageToGroup(request: SendMessageToGroupRequest): Promise<SendMessageToGroupResponse> {
|
|
42860
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42861
|
+
return await this.sendMessageToGroupWithOptions(request, runtime);
|
|
42862
|
+
}
|
|
42863
|
+
|
|
42864
|
+
async sendMessageToGroupUsersWithOptions(tmpReq: SendMessageToGroupUsersRequest, runtime: $Util.RuntimeOptions): Promise<SendMessageToGroupUsersResponse> {
|
|
42865
|
+
Util.validateModel(tmpReq);
|
|
42866
|
+
let request = new SendMessageToGroupUsersShrinkRequest({ });
|
|
42867
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
42868
|
+
if (!Util.isUnset(tmpReq.receiverIdList)) {
|
|
42869
|
+
request.receiverIdListShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.receiverIdList, "ReceiverIdList", "json");
|
|
42870
|
+
}
|
|
42871
|
+
|
|
42872
|
+
let body : {[key: string ]: any} = { };
|
|
42873
|
+
if (!Util.isUnset(request.appId)) {
|
|
42874
|
+
body["AppId"] = request.appId;
|
|
42875
|
+
}
|
|
42876
|
+
|
|
42877
|
+
if (!Util.isUnset(request.data)) {
|
|
42878
|
+
body["Data"] = request.data;
|
|
42879
|
+
}
|
|
42880
|
+
|
|
42881
|
+
if (!Util.isUnset(request.groupId)) {
|
|
42882
|
+
body["GroupId"] = request.groupId;
|
|
42883
|
+
}
|
|
42884
|
+
|
|
42885
|
+
if (!Util.isUnset(request.operatorUserId)) {
|
|
42886
|
+
body["OperatorUserId"] = request.operatorUserId;
|
|
42887
|
+
}
|
|
42888
|
+
|
|
42889
|
+
if (!Util.isUnset(request.receiverIdListShrink)) {
|
|
42890
|
+
body["ReceiverIdList"] = request.receiverIdListShrink;
|
|
42891
|
+
}
|
|
42892
|
+
|
|
42893
|
+
if (!Util.isUnset(request.type)) {
|
|
42894
|
+
body["Type"] = request.type;
|
|
42895
|
+
}
|
|
42896
|
+
|
|
42897
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
42898
|
+
body: OpenApiUtil.parseToMap(body),
|
|
42899
|
+
});
|
|
42900
|
+
let params = new $OpenApi.Params({
|
|
42901
|
+
action: "SendMessageToGroupUsers",
|
|
42902
|
+
version: "2016-11-01",
|
|
42903
|
+
protocol: "HTTPS",
|
|
42904
|
+
pathname: "/",
|
|
42905
|
+
method: "POST",
|
|
42906
|
+
authType: "AK",
|
|
42907
|
+
style: "RPC",
|
|
42908
|
+
reqBodyType: "formData",
|
|
42909
|
+
bodyType: "json",
|
|
42910
|
+
});
|
|
42911
|
+
return $tea.cast<SendMessageToGroupUsersResponse>(await this.callApi(params, req, runtime), new SendMessageToGroupUsersResponse({}));
|
|
42912
|
+
}
|
|
42913
|
+
|
|
42914
|
+
async sendMessageToGroupUsers(request: SendMessageToGroupUsersRequest): Promise<SendMessageToGroupUsersResponse> {
|
|
42915
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42916
|
+
return await this.sendMessageToGroupUsersWithOptions(request, runtime);
|
|
42917
|
+
}
|
|
42918
|
+
|
|
40747
42919
|
async sendRoomNotificationWithOptions(request: SendRoomNotificationRequest, runtime: $Util.RuntimeOptions): Promise<SendRoomNotificationResponse> {
|
|
40748
42920
|
Util.validateModel(request);
|
|
40749
42921
|
let query = { };
|
|
@@ -42376,6 +44548,51 @@ export default class Client extends OpenApi {
|
|
|
42376
44548
|
return await this.updateLiveSnapshotDetectPornConfigWithOptions(request, runtime);
|
|
42377
44549
|
}
|
|
42378
44550
|
|
|
44551
|
+
async updateLiveSnapshotNotifyConfigWithOptions(request: UpdateLiveSnapshotNotifyConfigRequest, runtime: $Util.RuntimeOptions): Promise<UpdateLiveSnapshotNotifyConfigResponse> {
|
|
44552
|
+
Util.validateModel(request);
|
|
44553
|
+
let query = { };
|
|
44554
|
+
if (!Util.isUnset(request.domainName)) {
|
|
44555
|
+
query["DomainName"] = request.domainName;
|
|
44556
|
+
}
|
|
44557
|
+
|
|
44558
|
+
if (!Util.isUnset(request.notifyAuthKey)) {
|
|
44559
|
+
query["NotifyAuthKey"] = request.notifyAuthKey;
|
|
44560
|
+
}
|
|
44561
|
+
|
|
44562
|
+
if (!Util.isUnset(request.notifyReqAuth)) {
|
|
44563
|
+
query["NotifyReqAuth"] = request.notifyReqAuth;
|
|
44564
|
+
}
|
|
44565
|
+
|
|
44566
|
+
if (!Util.isUnset(request.notifyUrl)) {
|
|
44567
|
+
query["NotifyUrl"] = request.notifyUrl;
|
|
44568
|
+
}
|
|
44569
|
+
|
|
44570
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
44571
|
+
query["OwnerId"] = request.ownerId;
|
|
44572
|
+
}
|
|
44573
|
+
|
|
44574
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
44575
|
+
query: OpenApiUtil.query(query),
|
|
44576
|
+
});
|
|
44577
|
+
let params = new $OpenApi.Params({
|
|
44578
|
+
action: "UpdateLiveSnapshotNotifyConfig",
|
|
44579
|
+
version: "2016-11-01",
|
|
44580
|
+
protocol: "HTTPS",
|
|
44581
|
+
pathname: "/",
|
|
44582
|
+
method: "POST",
|
|
44583
|
+
authType: "AK",
|
|
44584
|
+
style: "RPC",
|
|
44585
|
+
reqBodyType: "formData",
|
|
44586
|
+
bodyType: "json",
|
|
44587
|
+
});
|
|
44588
|
+
return $tea.cast<UpdateLiveSnapshotNotifyConfigResponse>(await this.callApi(params, req, runtime), new UpdateLiveSnapshotNotifyConfigResponse({}));
|
|
44589
|
+
}
|
|
44590
|
+
|
|
44591
|
+
async updateLiveSnapshotNotifyConfig(request: UpdateLiveSnapshotNotifyConfigRequest): Promise<UpdateLiveSnapshotNotifyConfigResponse> {
|
|
44592
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
44593
|
+
return await this.updateLiveSnapshotNotifyConfigWithOptions(request, runtime);
|
|
44594
|
+
}
|
|
44595
|
+
|
|
42379
44596
|
async updateLiveStreamMonitorWithOptions(request: UpdateLiveStreamMonitorRequest, runtime: $Util.RuntimeOptions): Promise<UpdateLiveStreamMonitorResponse> {
|
|
42380
44597
|
Util.validateModel(request);
|
|
42381
44598
|
let query = { };
|
|
@@ -42588,6 +44805,100 @@ export default class Client extends OpenApi {
|
|
|
42588
44805
|
return await this.updateLiveTopLevelDomainWithOptions(request, runtime);
|
|
42589
44806
|
}
|
|
42590
44807
|
|
|
44808
|
+
async updateMessageAppWithOptions(tmpReq: UpdateMessageAppRequest, runtime: $Util.RuntimeOptions): Promise<UpdateMessageAppResponse> {
|
|
44809
|
+
Util.validateModel(tmpReq);
|
|
44810
|
+
let request = new UpdateMessageAppShrinkRequest({ });
|
|
44811
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
44812
|
+
if (!Util.isUnset(tmpReq.appConfig)) {
|
|
44813
|
+
request.appConfigShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.appConfig, "AppConfig", "json");
|
|
44814
|
+
}
|
|
44815
|
+
|
|
44816
|
+
if (!Util.isUnset(tmpReq.extension)) {
|
|
44817
|
+
request.extensionShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.extension, "Extension", "json");
|
|
44818
|
+
}
|
|
44819
|
+
|
|
44820
|
+
let body : {[key: string ]: any} = { };
|
|
44821
|
+
if (!Util.isUnset(request.appConfigShrink)) {
|
|
44822
|
+
body["AppConfig"] = request.appConfigShrink;
|
|
44823
|
+
}
|
|
44824
|
+
|
|
44825
|
+
if (!Util.isUnset(request.appId)) {
|
|
44826
|
+
body["AppId"] = request.appId;
|
|
44827
|
+
}
|
|
44828
|
+
|
|
44829
|
+
if (!Util.isUnset(request.appName)) {
|
|
44830
|
+
body["AppName"] = request.appName;
|
|
44831
|
+
}
|
|
44832
|
+
|
|
44833
|
+
if (!Util.isUnset(request.extensionShrink)) {
|
|
44834
|
+
body["Extension"] = request.extensionShrink;
|
|
44835
|
+
}
|
|
44836
|
+
|
|
44837
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
44838
|
+
body: OpenApiUtil.parseToMap(body),
|
|
44839
|
+
});
|
|
44840
|
+
let params = new $OpenApi.Params({
|
|
44841
|
+
action: "UpdateMessageApp",
|
|
44842
|
+
version: "2016-11-01",
|
|
44843
|
+
protocol: "HTTPS",
|
|
44844
|
+
pathname: "/",
|
|
44845
|
+
method: "POST",
|
|
44846
|
+
authType: "AK",
|
|
44847
|
+
style: "RPC",
|
|
44848
|
+
reqBodyType: "formData",
|
|
44849
|
+
bodyType: "json",
|
|
44850
|
+
});
|
|
44851
|
+
return $tea.cast<UpdateMessageAppResponse>(await this.callApi(params, req, runtime), new UpdateMessageAppResponse({}));
|
|
44852
|
+
}
|
|
44853
|
+
|
|
44854
|
+
async updateMessageApp(request: UpdateMessageAppRequest): Promise<UpdateMessageAppResponse> {
|
|
44855
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
44856
|
+
return await this.updateMessageAppWithOptions(request, runtime);
|
|
44857
|
+
}
|
|
44858
|
+
|
|
44859
|
+
async updateMessageGroupWithOptions(tmpReq: UpdateMessageGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateMessageGroupResponse> {
|
|
44860
|
+
Util.validateModel(tmpReq);
|
|
44861
|
+
let request = new UpdateMessageGroupShrinkRequest({ });
|
|
44862
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
44863
|
+
if (!Util.isUnset(tmpReq.extension)) {
|
|
44864
|
+
request.extensionShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.extension, "Extension", "json");
|
|
44865
|
+
}
|
|
44866
|
+
|
|
44867
|
+
let body : {[key: string ]: any} = { };
|
|
44868
|
+
if (!Util.isUnset(request.appId)) {
|
|
44869
|
+
body["AppId"] = request.appId;
|
|
44870
|
+
}
|
|
44871
|
+
|
|
44872
|
+
if (!Util.isUnset(request.extensionShrink)) {
|
|
44873
|
+
body["Extension"] = request.extensionShrink;
|
|
44874
|
+
}
|
|
44875
|
+
|
|
44876
|
+
if (!Util.isUnset(request.groupId)) {
|
|
44877
|
+
body["GroupId"] = request.groupId;
|
|
44878
|
+
}
|
|
44879
|
+
|
|
44880
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
44881
|
+
body: OpenApiUtil.parseToMap(body),
|
|
44882
|
+
});
|
|
44883
|
+
let params = new $OpenApi.Params({
|
|
44884
|
+
action: "UpdateMessageGroup",
|
|
44885
|
+
version: "2016-11-01",
|
|
44886
|
+
protocol: "HTTPS",
|
|
44887
|
+
pathname: "/",
|
|
44888
|
+
method: "POST",
|
|
44889
|
+
authType: "AK",
|
|
44890
|
+
style: "RPC",
|
|
44891
|
+
reqBodyType: "formData",
|
|
44892
|
+
bodyType: "json",
|
|
44893
|
+
});
|
|
44894
|
+
return $tea.cast<UpdateMessageGroupResponse>(await this.callApi(params, req, runtime), new UpdateMessageGroupResponse({}));
|
|
44895
|
+
}
|
|
44896
|
+
|
|
44897
|
+
async updateMessageGroup(request: UpdateMessageGroupRequest): Promise<UpdateMessageGroupResponse> {
|
|
44898
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
44899
|
+
return await this.updateMessageGroupWithOptions(request, runtime);
|
|
44900
|
+
}
|
|
44901
|
+
|
|
42591
44902
|
async updateMixStreamWithOptions(request: UpdateMixStreamRequest, runtime: $Util.RuntimeOptions): Promise<UpdateMixStreamResponse> {
|
|
42592
44903
|
Util.validateModel(request);
|
|
42593
44904
|
let query = { };
|