@alicloud/ecd20200930 4.6.4 → 4.6.5
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 +2171 -765
- package/dist/client.js +32 -20
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1488 -82
package/src/client.ts
CHANGED
|
@@ -618,11 +618,17 @@ export class CreateCdsFileResponseBodyFileModel extends $dara.Model {
|
|
|
618
618
|
|
|
619
619
|
export class CreateCenterPolicyRequestAuthorizeAccessPolicyRule extends $dara.Model {
|
|
620
620
|
/**
|
|
621
|
+
* @remarks
|
|
622
|
+
* The client CIDR block from which end users can connect to cloud computers. Specify an IPv4 CIDR block.
|
|
623
|
+
*
|
|
621
624
|
* @example
|
|
622
625
|
* 47.100.XX.XX/16
|
|
623
626
|
*/
|
|
624
627
|
cidrIp?: string;
|
|
625
628
|
/**
|
|
629
|
+
* @remarks
|
|
630
|
+
* The description of the client IP address whitelist.
|
|
631
|
+
*
|
|
626
632
|
* @example
|
|
627
633
|
* test
|
|
628
634
|
*/
|
|
@@ -652,36 +658,84 @@ export class CreateCenterPolicyRequestAuthorizeAccessPolicyRule extends $dara.Mo
|
|
|
652
658
|
|
|
653
659
|
export class CreateCenterPolicyRequestAuthorizeSecurityPolicyRule extends $dara.Model {
|
|
654
660
|
/**
|
|
661
|
+
* @remarks
|
|
662
|
+
* The object of the security group rule. Specify an IPv4 CIDR block.
|
|
663
|
+
*
|
|
655
664
|
* @example
|
|
656
665
|
* 10.0.XX.XX/8
|
|
657
666
|
*/
|
|
658
667
|
cidrIp?: string;
|
|
659
668
|
/**
|
|
669
|
+
* @remarks
|
|
670
|
+
* The description of the security group rule.
|
|
671
|
+
*
|
|
660
672
|
* @example
|
|
661
673
|
* test
|
|
662
674
|
*/
|
|
663
675
|
description?: string;
|
|
664
676
|
/**
|
|
677
|
+
* @remarks
|
|
678
|
+
* The protocol type of the security group rule.
|
|
679
|
+
*
|
|
680
|
+
* Valid values:
|
|
681
|
+
*
|
|
682
|
+
* * TCP: the Transmission Control Protocol (TCP) protocol.
|
|
683
|
+
* * UDP: the User Datagram Protocol (UDP) protocol.
|
|
684
|
+
* * ALL: any type of protocol.
|
|
685
|
+
* * GRE: the Generic Routing Encapsulation (GRE) protocol.
|
|
686
|
+
* * ICMP: the Internet Control Message Protocol (ICMP) for (IPv4).
|
|
687
|
+
*
|
|
665
688
|
* @example
|
|
666
689
|
* TCP
|
|
667
690
|
*/
|
|
668
691
|
ipProtocol?: string;
|
|
669
692
|
/**
|
|
693
|
+
* @remarks
|
|
694
|
+
* The authorization policy of the security group rule.
|
|
695
|
+
*
|
|
696
|
+
* Valid values:
|
|
697
|
+
*
|
|
698
|
+
* * drop: denies all access requests. If no \\"\\"access denied\\"\\" messages are returned, the requests either timed out or failed.
|
|
699
|
+
* * accept (default): accepts all requests.
|
|
700
|
+
*
|
|
670
701
|
* @example
|
|
671
702
|
* accept
|
|
672
703
|
*/
|
|
673
704
|
policy?: string;
|
|
674
705
|
/**
|
|
706
|
+
* @remarks
|
|
707
|
+
* The port range of the security group rule. The value range of this parameter varies based on the value of IpProtocol.
|
|
708
|
+
*
|
|
709
|
+
* * If IpProtocol is set to TCP or UDP, the port range is 1 to 65535. Separate the start port number and the end port number with a forward slash (/). Example: 1/200.
|
|
710
|
+
* * If IpProtocol is set to ICMP, set the value to -1/-1.
|
|
711
|
+
* * If IpProtocol is set to GRE, set the value to -1/-1.
|
|
712
|
+
* * If IpProtocol is set to ALL, set the value to -1/-1.
|
|
713
|
+
*
|
|
714
|
+
* For more information about the common ports, see [Common ports](https://help.aliyun.com/document_detail/40724.html).
|
|
715
|
+
*
|
|
675
716
|
* @example
|
|
676
717
|
* 22/22
|
|
677
718
|
*/
|
|
678
719
|
portRange?: string;
|
|
679
720
|
/**
|
|
721
|
+
* @remarks
|
|
722
|
+
* The priority of the security group rule. A smaller value specifies a higher priority.\\
|
|
723
|
+
* Valid values: 1 to 60.\\
|
|
724
|
+
* Default value: 1.
|
|
725
|
+
*
|
|
680
726
|
* @example
|
|
681
727
|
* 1
|
|
682
728
|
*/
|
|
683
729
|
priority?: string;
|
|
684
730
|
/**
|
|
731
|
+
* @remarks
|
|
732
|
+
* The direction of the security group rule.
|
|
733
|
+
*
|
|
734
|
+
* Valid values:
|
|
735
|
+
*
|
|
736
|
+
* * outflow: outbound.
|
|
737
|
+
* * inflow: inbound.
|
|
738
|
+
*
|
|
685
739
|
* @example
|
|
686
740
|
* inflow
|
|
687
741
|
*/
|
|
@@ -721,11 +775,32 @@ export class CreateCenterPolicyRequestAuthorizeSecurityPolicyRule extends $dara.
|
|
|
721
775
|
|
|
722
776
|
export class CreateCenterPolicyRequestClientType extends $dara.Model {
|
|
723
777
|
/**
|
|
778
|
+
* @remarks
|
|
779
|
+
* The type of the Alibaba Cloud Workspace client that end users can use to connect to cloud computers.
|
|
780
|
+
*
|
|
781
|
+
* Valid values:
|
|
782
|
+
*
|
|
783
|
+
* * html5: the web client.
|
|
784
|
+
* * android: the Android client.
|
|
785
|
+
* * ios: the iOS client.
|
|
786
|
+
* * windows: the Windows client.
|
|
787
|
+
* * macos: the macOS client.
|
|
788
|
+
*
|
|
724
789
|
* @example
|
|
725
790
|
* windows
|
|
726
791
|
*/
|
|
727
792
|
clientType?: string;
|
|
728
793
|
/**
|
|
794
|
+
* @remarks
|
|
795
|
+
* Specifies whether end users can use the specified type of Alibaba Cloud Workspace client to connect to cloud computers.
|
|
796
|
+
*
|
|
797
|
+
* > If you don\\"t specify `ClientType`, any client can be used to connect to cloud computers.
|
|
798
|
+
*
|
|
799
|
+
* Valid values:
|
|
800
|
+
*
|
|
801
|
+
* * off: End users cannot use the specified type of Alibaba Cloud Workspace client to connect to cloud computers.
|
|
802
|
+
* * on: End users can use the specified type of Alibaba Cloud Workspace client to connect to cloud computers.
|
|
803
|
+
*
|
|
729
804
|
* @example
|
|
730
805
|
* off
|
|
731
806
|
*/
|
|
@@ -755,11 +830,31 @@ export class CreateCenterPolicyRequestClientType extends $dara.Model {
|
|
|
755
830
|
|
|
756
831
|
export class CreateCenterPolicyRequestDeviceRedirects extends $dara.Model {
|
|
757
832
|
/**
|
|
833
|
+
* @remarks
|
|
834
|
+
* The peripheral type.
|
|
835
|
+
*
|
|
836
|
+
* Valid values:
|
|
837
|
+
*
|
|
838
|
+
* * printer
|
|
839
|
+
* * scanner
|
|
840
|
+
* * serialport
|
|
841
|
+
* * camera
|
|
842
|
+
* * adb
|
|
843
|
+
*
|
|
758
844
|
* @example
|
|
759
845
|
* camera
|
|
760
846
|
*/
|
|
761
847
|
deviceType?: string;
|
|
762
848
|
/**
|
|
849
|
+
* @remarks
|
|
850
|
+
* The redirection type.
|
|
851
|
+
*
|
|
852
|
+
* Valid values:
|
|
853
|
+
*
|
|
854
|
+
* * deviceRedirect: enables device redirection.
|
|
855
|
+
* * usbRedirect: enables USB redirection.
|
|
856
|
+
* * off: disables any type of redirection.
|
|
857
|
+
*
|
|
763
858
|
* @example
|
|
764
859
|
* usbRedirect
|
|
765
860
|
*/
|
|
@@ -789,31 +884,67 @@ export class CreateCenterPolicyRequestDeviceRedirects extends $dara.Model {
|
|
|
789
884
|
|
|
790
885
|
export class CreateCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
791
886
|
/**
|
|
887
|
+
* @remarks
|
|
888
|
+
* The device name.
|
|
889
|
+
*
|
|
792
890
|
* @example
|
|
793
891
|
* sandisk
|
|
794
892
|
*/
|
|
795
893
|
deviceName?: string;
|
|
796
894
|
/**
|
|
895
|
+
* @remarks
|
|
896
|
+
* The product ID (PID).
|
|
897
|
+
*
|
|
797
898
|
* @example
|
|
798
899
|
* 0x55b1
|
|
799
900
|
*/
|
|
800
901
|
devicePid?: string;
|
|
801
902
|
/**
|
|
903
|
+
* @remarks
|
|
904
|
+
* The peripheral type.
|
|
905
|
+
*
|
|
906
|
+
* Valid values:
|
|
907
|
+
*
|
|
908
|
+
* * usbKey: U keys.
|
|
909
|
+
* * other: other peripheral devices.
|
|
910
|
+
* * graphicsTablet: graphics tablets.
|
|
911
|
+
* * cardReader: card readers.
|
|
912
|
+
* * printer: printers.
|
|
913
|
+
* * scanner: scanners.
|
|
914
|
+
* * storage: storage devices.
|
|
915
|
+
* * camera: cameras.
|
|
916
|
+
* * networkInterfaceCard: NIC devices.
|
|
917
|
+
*
|
|
802
918
|
* @example
|
|
803
919
|
* storage
|
|
804
920
|
*/
|
|
805
921
|
deviceType?: string;
|
|
806
922
|
/**
|
|
923
|
+
* @remarks
|
|
924
|
+
* The vendor ID (VID). For more information, see [Valid USB VIDs](https://www.usb.org/sites/default/files/vendor_ids032322.pdf_1.pdf).
|
|
925
|
+
*
|
|
807
926
|
* @example
|
|
808
927
|
* 0x0781
|
|
809
928
|
*/
|
|
810
929
|
deviceVid?: string;
|
|
811
930
|
/**
|
|
931
|
+
* @remarks
|
|
932
|
+
* The link optimization command.
|
|
933
|
+
*
|
|
812
934
|
* @example
|
|
813
935
|
* 2:0
|
|
814
936
|
*/
|
|
815
937
|
optCommand?: string;
|
|
816
938
|
/**
|
|
939
|
+
* @remarks
|
|
940
|
+
* The redirection type.
|
|
941
|
+
*
|
|
942
|
+
* Valid values:
|
|
943
|
+
*
|
|
944
|
+
* * deviceRedirect: enables device redirection.
|
|
945
|
+
* * usbRedirect: enables USB redirection.
|
|
946
|
+
* * off: disables any type of redirection.
|
|
947
|
+
*
|
|
817
948
|
* @example
|
|
818
949
|
* usbRedirect
|
|
819
950
|
*/
|
|
@@ -850,13 +981,28 @@ export class CreateCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
850
981
|
}
|
|
851
982
|
|
|
852
983
|
export class CreateCenterPolicyRequestDomainResolveRule extends $dara.Model {
|
|
984
|
+
/**
|
|
985
|
+
* @remarks
|
|
986
|
+
* The policy description.
|
|
987
|
+
*/
|
|
853
988
|
description?: string;
|
|
854
989
|
/**
|
|
990
|
+
* @remarks
|
|
991
|
+
* The domain name.
|
|
992
|
+
*
|
|
855
993
|
* @example
|
|
856
994
|
* *.example.com
|
|
857
995
|
*/
|
|
858
996
|
domain?: string;
|
|
859
997
|
/**
|
|
998
|
+
* @remarks
|
|
999
|
+
* Specifies whether to allow the domain resolution policy to take effect.
|
|
1000
|
+
*
|
|
1001
|
+
* Valid values:
|
|
1002
|
+
*
|
|
1003
|
+
* * allow
|
|
1004
|
+
* * block
|
|
1005
|
+
*
|
|
860
1006
|
* @example
|
|
861
1007
|
* allow
|
|
862
1008
|
*/
|
|
@@ -888,16 +1034,30 @@ export class CreateCenterPolicyRequestDomainResolveRule extends $dara.Model {
|
|
|
888
1034
|
|
|
889
1035
|
export class CreateCenterPolicyRequestNetRedirectRule extends $dara.Model {
|
|
890
1036
|
/**
|
|
1037
|
+
* @remarks
|
|
1038
|
+
* The domain name.
|
|
1039
|
+
*
|
|
891
1040
|
* @example
|
|
892
1041
|
* *.taobao.com
|
|
893
1042
|
*/
|
|
894
1043
|
domain?: string;
|
|
895
1044
|
/**
|
|
1045
|
+
* @remarks
|
|
1046
|
+
* The redirection policy.
|
|
1047
|
+
*
|
|
896
1048
|
* @example
|
|
897
1049
|
* allow
|
|
898
1050
|
*/
|
|
899
1051
|
policy?: string;
|
|
900
1052
|
/**
|
|
1053
|
+
* @remarks
|
|
1054
|
+
* The rule type.
|
|
1055
|
+
*
|
|
1056
|
+
* Valid values:
|
|
1057
|
+
*
|
|
1058
|
+
* * prc: process.
|
|
1059
|
+
* * domain: domain name.
|
|
1060
|
+
*
|
|
901
1061
|
* @example
|
|
902
1062
|
* domain
|
|
903
1063
|
*/
|
|
@@ -928,23 +1088,48 @@ export class CreateCenterPolicyRequestNetRedirectRule extends $dara.Model {
|
|
|
928
1088
|
}
|
|
929
1089
|
|
|
930
1090
|
export class CreateCenterPolicyRequestUsbSupplyRedirectRule extends $dara.Model {
|
|
1091
|
+
/**
|
|
1092
|
+
* @remarks
|
|
1093
|
+
* The rule description.
|
|
1094
|
+
*/
|
|
931
1095
|
description?: string;
|
|
932
1096
|
/**
|
|
1097
|
+
* @remarks
|
|
1098
|
+
* The product ID (PID).
|
|
1099
|
+
*
|
|
933
1100
|
* @example
|
|
934
1101
|
* 08**
|
|
935
1102
|
*/
|
|
936
1103
|
productId?: string;
|
|
937
1104
|
/**
|
|
1105
|
+
* @remarks
|
|
1106
|
+
* Specifies whether to allow USB redirection.
|
|
1107
|
+
*
|
|
1108
|
+
* Valid values:
|
|
1109
|
+
*
|
|
1110
|
+
* * 1: allows USB redirection.
|
|
1111
|
+
* * 2: forbids USB redirection.
|
|
1112
|
+
*
|
|
938
1113
|
* @example
|
|
939
1114
|
* 1
|
|
940
1115
|
*/
|
|
941
1116
|
usbRedirectType?: string;
|
|
942
1117
|
/**
|
|
1118
|
+
* @remarks
|
|
1119
|
+
* The type of the USB redirection rule.
|
|
1120
|
+
*
|
|
1121
|
+
* Valid values:
|
|
1122
|
+
*
|
|
1123
|
+
* * 2: enables USB redirection based on products.
|
|
1124
|
+
*
|
|
943
1125
|
* @example
|
|
944
1126
|
* 2
|
|
945
1127
|
*/
|
|
946
1128
|
usbRuleType?: string;
|
|
947
1129
|
/**
|
|
1130
|
+
* @remarks
|
|
1131
|
+
* The vendor ID (VID). For more information, see [Valid USB Vendor IDs (VIDs)](https://www.usb.org/sites/default/files/vendor_ids032322.pdf_1.pdf).
|
|
1132
|
+
*
|
|
948
1133
|
* @example
|
|
949
1134
|
* 04**
|
|
950
1135
|
*/
|
|
@@ -3800,11 +3985,17 @@ export class DescribeCensResponseBodyCens extends $dara.Model {
|
|
|
3800
3985
|
|
|
3801
3986
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeAccessPolicyRules extends $dara.Model {
|
|
3802
3987
|
/**
|
|
3988
|
+
* @remarks
|
|
3989
|
+
* The client CIDR block from which end users can connect to cloud computers. The value is an IPv4 CIDR block.
|
|
3990
|
+
*
|
|
3803
3991
|
* @example
|
|
3804
3992
|
* 47.100.XX.XX/16
|
|
3805
3993
|
*/
|
|
3806
3994
|
cidrIp?: string;
|
|
3807
3995
|
/**
|
|
3996
|
+
* @remarks
|
|
3997
|
+
* The remarks on the client CIDR block.
|
|
3998
|
+
*
|
|
3808
3999
|
* @example
|
|
3809
4000
|
* test
|
|
3810
4001
|
*/
|
|
@@ -3834,36 +4025,57 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeAc
|
|
|
3834
4025
|
|
|
3835
4026
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeSecurityPolicyRules extends $dara.Model {
|
|
3836
4027
|
/**
|
|
4028
|
+
* @remarks
|
|
4029
|
+
* The object to which the security group rule applies. The value is an IPv4 CIDR block.
|
|
4030
|
+
*
|
|
3837
4031
|
* @example
|
|
3838
4032
|
* 47.100.XX.XX/16
|
|
3839
4033
|
*/
|
|
3840
4034
|
cidrIp?: string;
|
|
3841
4035
|
/**
|
|
4036
|
+
* @remarks
|
|
4037
|
+
* The description of the security group rule.
|
|
4038
|
+
*
|
|
3842
4039
|
* @example
|
|
3843
4040
|
* test
|
|
3844
4041
|
*/
|
|
3845
4042
|
description?: string;
|
|
3846
4043
|
/**
|
|
4044
|
+
* @remarks
|
|
4045
|
+
* The protocol type of the security group rule.
|
|
4046
|
+
*
|
|
3847
4047
|
* @example
|
|
3848
4048
|
* tcp
|
|
3849
4049
|
*/
|
|
3850
4050
|
ipProtocol?: string;
|
|
3851
4051
|
/**
|
|
4052
|
+
* @remarks
|
|
4053
|
+
* The authorization policy of the security group rule.
|
|
4054
|
+
*
|
|
3852
4055
|
* @example
|
|
3853
4056
|
* accept
|
|
3854
4057
|
*/
|
|
3855
4058
|
policy?: string;
|
|
3856
4059
|
/**
|
|
4060
|
+
* @remarks
|
|
4061
|
+
* The port range of the security group rule.
|
|
4062
|
+
*
|
|
3857
4063
|
* @example
|
|
3858
4064
|
* 22/22
|
|
3859
4065
|
*/
|
|
3860
4066
|
portRange?: string;
|
|
3861
4067
|
/**
|
|
4068
|
+
* @remarks
|
|
4069
|
+
* The priority of the security group rule. A smaller value indicates a higher priority.
|
|
4070
|
+
*
|
|
3862
4071
|
* @example
|
|
3863
4072
|
* 1
|
|
3864
4073
|
*/
|
|
3865
4074
|
priority?: string;
|
|
3866
4075
|
/**
|
|
4076
|
+
* @remarks
|
|
4077
|
+
* The direction of the security group rule.
|
|
4078
|
+
*
|
|
3867
4079
|
* @example
|
|
3868
4080
|
* inflow
|
|
3869
4081
|
*/
|
|
@@ -3903,11 +4115,17 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeSe
|
|
|
3903
4115
|
|
|
3904
4116
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsClientTypes extends $dara.Model {
|
|
3905
4117
|
/**
|
|
4118
|
+
* @remarks
|
|
4119
|
+
* The client type.
|
|
4120
|
+
*
|
|
3906
4121
|
* @example
|
|
3907
4122
|
* windows
|
|
3908
4123
|
*/
|
|
3909
4124
|
clientType?: string;
|
|
3910
4125
|
/**
|
|
4126
|
+
* @remarks
|
|
4127
|
+
* Indicates whether a specific client type can connect to cloud computers.
|
|
4128
|
+
*
|
|
3911
4129
|
* @example
|
|
3912
4130
|
* on
|
|
3913
4131
|
*/
|
|
@@ -3937,11 +4155,17 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsClientTypes
|
|
|
3937
4155
|
|
|
3938
4156
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRedirects extends $dara.Model {
|
|
3939
4157
|
/**
|
|
4158
|
+
* @remarks
|
|
4159
|
+
* The peripheral type.
|
|
4160
|
+
*
|
|
3940
4161
|
* @example
|
|
3941
4162
|
* camera
|
|
3942
4163
|
*/
|
|
3943
4164
|
deviceType?: string;
|
|
3944
4165
|
/**
|
|
4166
|
+
* @remarks
|
|
4167
|
+
* The redirection type.
|
|
4168
|
+
*
|
|
3945
4169
|
* @example
|
|
3946
4170
|
* usbRedirect
|
|
3947
4171
|
*/
|
|
@@ -3971,31 +4195,49 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRedir
|
|
|
3971
4195
|
|
|
3972
4196
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRules extends $dara.Model {
|
|
3973
4197
|
/**
|
|
4198
|
+
* @remarks
|
|
4199
|
+
* The device name.
|
|
4200
|
+
*
|
|
3974
4201
|
* @example
|
|
3975
4202
|
* sandisk
|
|
3976
4203
|
*/
|
|
3977
4204
|
deviceName?: string;
|
|
3978
4205
|
/**
|
|
4206
|
+
* @remarks
|
|
4207
|
+
* The product ID (PID).
|
|
4208
|
+
*
|
|
3979
4209
|
* @example
|
|
3980
4210
|
* 0x55b1
|
|
3981
4211
|
*/
|
|
3982
4212
|
devicePid?: string;
|
|
3983
4213
|
/**
|
|
4214
|
+
* @remarks
|
|
4215
|
+
* The peripheral type.
|
|
4216
|
+
*
|
|
3984
4217
|
* @example
|
|
3985
4218
|
* storage
|
|
3986
4219
|
*/
|
|
3987
4220
|
deviceType?: string;
|
|
3988
4221
|
/**
|
|
4222
|
+
* @remarks
|
|
4223
|
+
* The vendor ID (VID). For more information, see [Valid USB VIDs](https://www.usb.org/sites/default/files/vendor_ids032322.pdf_1.pdf).
|
|
4224
|
+
*
|
|
3989
4225
|
* @example
|
|
3990
4226
|
* 0x0781
|
|
3991
4227
|
*/
|
|
3992
4228
|
deviceVid?: string;
|
|
3993
4229
|
/**
|
|
4230
|
+
* @remarks
|
|
4231
|
+
* The link optimization command.
|
|
4232
|
+
*
|
|
3994
4233
|
* @example
|
|
3995
4234
|
* 2:0
|
|
3996
4235
|
*/
|
|
3997
4236
|
optCommand?: string;
|
|
3998
4237
|
/**
|
|
4238
|
+
* @remarks
|
|
4239
|
+
* The redirection type.
|
|
4240
|
+
*
|
|
3999
4241
|
* @example
|
|
4000
4242
|
* usbRedirect
|
|
4001
4243
|
*/
|
|
@@ -4032,13 +4274,23 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRules
|
|
|
4032
4274
|
}
|
|
4033
4275
|
|
|
4034
4276
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDomainResolveRule extends $dara.Model {
|
|
4277
|
+
/**
|
|
4278
|
+
* @remarks
|
|
4279
|
+
* The policy description.
|
|
4280
|
+
*/
|
|
4035
4281
|
description?: string;
|
|
4036
4282
|
/**
|
|
4283
|
+
* @remarks
|
|
4284
|
+
* The domain name.
|
|
4285
|
+
*
|
|
4037
4286
|
* @example
|
|
4038
4287
|
* *.example.com
|
|
4039
4288
|
*/
|
|
4040
4289
|
domain?: string;
|
|
4041
4290
|
/**
|
|
4291
|
+
* @remarks
|
|
4292
|
+
* The resolution policy.
|
|
4293
|
+
*
|
|
4042
4294
|
* @example
|
|
4043
4295
|
* allow
|
|
4044
4296
|
*/
|
|
@@ -4070,16 +4322,25 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDomainResol
|
|
|
4070
4322
|
|
|
4071
4323
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsNetRedirectRule extends $dara.Model {
|
|
4072
4324
|
/**
|
|
4325
|
+
* @remarks
|
|
4326
|
+
* The domain name.
|
|
4327
|
+
*
|
|
4073
4328
|
* @example
|
|
4074
4329
|
* *.example.com
|
|
4075
4330
|
*/
|
|
4076
4331
|
domain?: string;
|
|
4077
4332
|
/**
|
|
4333
|
+
* @remarks
|
|
4334
|
+
* The redirection policy.
|
|
4335
|
+
*
|
|
4078
4336
|
* @example
|
|
4079
4337
|
* allow
|
|
4080
4338
|
*/
|
|
4081
4339
|
policy?: string;
|
|
4082
4340
|
/**
|
|
4341
|
+
* @remarks
|
|
4342
|
+
* The rule type.
|
|
4343
|
+
*
|
|
4083
4344
|
* @example
|
|
4084
4345
|
* domain
|
|
4085
4346
|
*/
|
|
@@ -4110,23 +4371,39 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsNetRedirect
|
|
|
4110
4371
|
}
|
|
4111
4372
|
|
|
4112
4373
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsUsbSupplyRedirectRule extends $dara.Model {
|
|
4374
|
+
/**
|
|
4375
|
+
* @remarks
|
|
4376
|
+
* The rule description.
|
|
4377
|
+
*/
|
|
4113
4378
|
description?: string;
|
|
4114
4379
|
/**
|
|
4380
|
+
* @remarks
|
|
4381
|
+
* The product ID (PID).
|
|
4382
|
+
*
|
|
4115
4383
|
* @example
|
|
4116
4384
|
* 08**
|
|
4117
4385
|
*/
|
|
4118
4386
|
productId?: string;
|
|
4119
4387
|
/**
|
|
4388
|
+
* @remarks
|
|
4389
|
+
* Indicates whether USB redirection is allowed.
|
|
4390
|
+
*
|
|
4120
4391
|
* @example
|
|
4121
4392
|
* 1
|
|
4122
4393
|
*/
|
|
4123
4394
|
usbRedirectType?: number;
|
|
4124
4395
|
/**
|
|
4396
|
+
* @remarks
|
|
4397
|
+
* The type of the USB redirection rule.
|
|
4398
|
+
*
|
|
4125
4399
|
* @example
|
|
4126
4400
|
* 1
|
|
4127
4401
|
*/
|
|
4128
4402
|
usbRuleType?: number;
|
|
4129
4403
|
/**
|
|
4404
|
+
* @remarks
|
|
4405
|
+
* The vendor ID (VID). For more information, see [Valid USB Vendor IDs (VIDs)](https://www.usb.org/sites/default/files/vendor_ids032322.pdf_1.pdf).
|
|
4406
|
+
*
|
|
4130
4407
|
* @example
|
|
4131
4408
|
* 04**
|
|
4132
4409
|
*/
|
|
@@ -4162,435 +4439,763 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsUsbSupplyRe
|
|
|
4162
4439
|
|
|
4163
4440
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroups extends $dara.Model {
|
|
4164
4441
|
/**
|
|
4442
|
+
* @remarks
|
|
4443
|
+
* Indicates whether the admin permissions are granted to end users.
|
|
4444
|
+
*
|
|
4445
|
+
* > This parameter is in private preview and only available to specific users.
|
|
4446
|
+
*
|
|
4165
4447
|
* @example
|
|
4166
4448
|
* deny
|
|
4167
4449
|
*/
|
|
4168
4450
|
adminAccess?: string;
|
|
4169
4451
|
/**
|
|
4452
|
+
* @remarks
|
|
4453
|
+
* Indicates whether anti-screenshot is enabled.
|
|
4454
|
+
*
|
|
4170
4455
|
* @example
|
|
4171
4456
|
* off
|
|
4172
4457
|
*/
|
|
4173
4458
|
appContentProtection?: string;
|
|
4459
|
+
/**
|
|
4460
|
+
* @remarks
|
|
4461
|
+
* The client IP address whitelists.
|
|
4462
|
+
*/
|
|
4174
4463
|
authorizeAccessPolicyRules?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeAccessPolicyRules[];
|
|
4464
|
+
/**
|
|
4465
|
+
* @remarks
|
|
4466
|
+
* The security group rules.
|
|
4467
|
+
*/
|
|
4175
4468
|
authorizeSecurityPolicyRules?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeSecurityPolicyRules[];
|
|
4176
4469
|
/**
|
|
4470
|
+
* @remarks
|
|
4471
|
+
* Indicates whether on-premises webcam redirection is enabled.
|
|
4472
|
+
*
|
|
4177
4473
|
* @example
|
|
4178
4474
|
* on
|
|
4179
4475
|
*/
|
|
4180
4476
|
cameraRedirect?: string;
|
|
4477
|
+
/**
|
|
4478
|
+
* @remarks
|
|
4479
|
+
* The logon method control rules.
|
|
4480
|
+
*/
|
|
4181
4481
|
clientTypes?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsClientTypes[];
|
|
4182
4482
|
/**
|
|
4483
|
+
* @remarks
|
|
4484
|
+
* The read/write permissions on the clipboard.
|
|
4485
|
+
*
|
|
4183
4486
|
* @example
|
|
4184
4487
|
* off
|
|
4185
4488
|
*/
|
|
4186
4489
|
clipboard?: string;
|
|
4187
4490
|
/**
|
|
4491
|
+
* @remarks
|
|
4492
|
+
* Indicates whether color enhancement is enabled for design and 3D applications.
|
|
4493
|
+
*
|
|
4188
4494
|
* @example
|
|
4189
4495
|
* off
|
|
4190
4496
|
*/
|
|
4191
4497
|
colorEnhancement?: string;
|
|
4192
4498
|
/**
|
|
4499
|
+
* @remarks
|
|
4500
|
+
* The CPU underclocking duration. Valid values: 30 to 120. Unit: seconds.
|
|
4501
|
+
*
|
|
4193
4502
|
* @example
|
|
4194
4503
|
* 30
|
|
4195
4504
|
*/
|
|
4196
4505
|
cpuDownGradeDuration?: number;
|
|
4506
|
+
/**
|
|
4507
|
+
* @remarks
|
|
4508
|
+
* The CPU processors.
|
|
4509
|
+
*/
|
|
4197
4510
|
cpuProcessors?: string[];
|
|
4198
4511
|
/**
|
|
4512
|
+
* @remarks
|
|
4513
|
+
* The CPU spike protection policy.
|
|
4514
|
+
*
|
|
4199
4515
|
* @example
|
|
4200
4516
|
* on
|
|
4201
4517
|
*/
|
|
4202
4518
|
cpuProtectedMode?: string;
|
|
4203
4519
|
/**
|
|
4520
|
+
* @remarks
|
|
4521
|
+
* The overall CPU usage. Valid values: 70 to 90. Unit: percentage (%).
|
|
4522
|
+
*
|
|
4204
4523
|
* @example
|
|
4205
4524
|
* 70
|
|
4206
4525
|
*/
|
|
4207
4526
|
cpuRateLimit?: number;
|
|
4208
4527
|
/**
|
|
4528
|
+
* @remarks
|
|
4529
|
+
* The overall CPU sampling duration. Valid values: 10 to 60. Unit: seconds.
|
|
4530
|
+
*
|
|
4209
4531
|
* @example
|
|
4210
4532
|
* 10
|
|
4211
4533
|
*/
|
|
4212
4534
|
cpuSampleDuration?: number;
|
|
4213
4535
|
/**
|
|
4536
|
+
* @remarks
|
|
4537
|
+
* The single-CPU usage. Valid values: 70 to 100. Unit: %.
|
|
4538
|
+
*
|
|
4214
4539
|
* @example
|
|
4215
4540
|
* 70
|
|
4216
4541
|
*/
|
|
4217
4542
|
cpuSingleRateLimit?: number;
|
|
4218
4543
|
/**
|
|
4544
|
+
* @remarks
|
|
4545
|
+
* The number of cloud computers that are associated with the policy.
|
|
4546
|
+
*
|
|
4219
4547
|
* @example
|
|
4220
4548
|
* 1
|
|
4221
4549
|
*/
|
|
4222
4550
|
desktopCount?: number;
|
|
4223
4551
|
/**
|
|
4552
|
+
* @remarks
|
|
4553
|
+
* The number of cloud computer shares that are associated with the policy.
|
|
4554
|
+
*
|
|
4224
4555
|
* @example
|
|
4225
4556
|
* 1
|
|
4226
4557
|
*/
|
|
4227
4558
|
desktopGroupCount?: number;
|
|
4559
|
+
/**
|
|
4560
|
+
* @remarks
|
|
4561
|
+
* The device redirection rules.
|
|
4562
|
+
*/
|
|
4228
4563
|
deviceRedirects?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRedirects[];
|
|
4564
|
+
/**
|
|
4565
|
+
* @remarks
|
|
4566
|
+
* The custom peripheral rules.
|
|
4567
|
+
*/
|
|
4229
4568
|
deviceRules?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRules[];
|
|
4230
4569
|
/**
|
|
4570
|
+
* @remarks
|
|
4571
|
+
* Indicates whether the session is retained after disconnection.
|
|
4572
|
+
*
|
|
4573
|
+
* > This parameter applies only to cloud application policies.
|
|
4574
|
+
*
|
|
4231
4575
|
* @example
|
|
4232
4576
|
* persistent
|
|
4233
4577
|
*/
|
|
4234
4578
|
disconnectKeepSession?: string;
|
|
4235
4579
|
/**
|
|
4580
|
+
* @remarks
|
|
4581
|
+
* The retention period of the session after disconnection. Unit: seconds.
|
|
4582
|
+
*
|
|
4583
|
+
* > This parameter applies only to cloud application policies.
|
|
4584
|
+
*
|
|
4236
4585
|
* @example
|
|
4237
4586
|
* 120
|
|
4238
4587
|
*/
|
|
4239
4588
|
disconnectKeepSessionTime?: number;
|
|
4240
4589
|
/**
|
|
4590
|
+
* @remarks
|
|
4591
|
+
* The display mode.
|
|
4592
|
+
*
|
|
4241
4593
|
* @example
|
|
4242
4594
|
* adminCustom
|
|
4243
4595
|
*/
|
|
4244
4596
|
displayMode?: string;
|
|
4245
4597
|
/**
|
|
4598
|
+
* @remarks
|
|
4599
|
+
* The field where the domain resolution policy is applied.
|
|
4600
|
+
*
|
|
4246
4601
|
* @example
|
|
4247
4602
|
* xxxx
|
|
4248
4603
|
*/
|
|
4249
4604
|
domainRegisterValue?: string;
|
|
4605
|
+
/**
|
|
4606
|
+
* @remarks
|
|
4607
|
+
* The domain resolution policies.
|
|
4608
|
+
*/
|
|
4250
4609
|
domainResolveRule?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDomainResolveRule[];
|
|
4251
4610
|
/**
|
|
4611
|
+
* @remarks
|
|
4612
|
+
* Indicates whether domain name resolution is allowed.
|
|
4613
|
+
*
|
|
4252
4614
|
* @example
|
|
4253
4615
|
* on
|
|
4254
4616
|
*/
|
|
4255
4617
|
domainResolveRuleType?: string;
|
|
4256
4618
|
/**
|
|
4619
|
+
* @remarks
|
|
4620
|
+
* Indicates whether end users are allowed to request administrator help.
|
|
4621
|
+
*
|
|
4257
4622
|
* @example
|
|
4258
4623
|
* off
|
|
4259
4624
|
*/
|
|
4260
4625
|
endUserApplyAdminCoordinate?: string;
|
|
4261
4626
|
/**
|
|
4627
|
+
* @remarks
|
|
4628
|
+
* Indicates whether end users in the same workspace can share cloud computers.
|
|
4629
|
+
*
|
|
4262
4630
|
* @example
|
|
4263
4631
|
* off
|
|
4264
4632
|
*/
|
|
4265
4633
|
endUserGroupCoordinate?: string;
|
|
4266
4634
|
/**
|
|
4635
|
+
* @remarks
|
|
4636
|
+
* Indicates whether image quality control is enabled. For optimal computer performance and user experience in professional design scenarios, we recommend enabling this feature.
|
|
4637
|
+
*
|
|
4267
4638
|
* @example
|
|
4268
4639
|
* off
|
|
4269
4640
|
*/
|
|
4270
4641
|
gpuAcceleration?: string;
|
|
4271
4642
|
/**
|
|
4643
|
+
* @remarks
|
|
4644
|
+
* The web client access policy.
|
|
4645
|
+
*
|
|
4272
4646
|
* @example
|
|
4273
4647
|
* off
|
|
4274
4648
|
*/
|
|
4275
4649
|
html5Access?: string;
|
|
4276
4650
|
/**
|
|
4651
|
+
* @remarks
|
|
4652
|
+
* The file transfer policy of the HTML5 client.
|
|
4653
|
+
*
|
|
4277
4654
|
* @example
|
|
4278
4655
|
* off
|
|
4279
4656
|
*/
|
|
4280
4657
|
html5FileTransfer?: string;
|
|
4281
4658
|
/**
|
|
4659
|
+
* @remarks
|
|
4660
|
+
* The network communication protocol.
|
|
4661
|
+
*
|
|
4282
4662
|
* @example
|
|
4283
4663
|
* tcp
|
|
4284
4664
|
*/
|
|
4285
4665
|
internetCommunicationProtocol?: string;
|
|
4286
4666
|
/**
|
|
4667
|
+
* @remarks
|
|
4668
|
+
* The read/write permissions on the on-premises drive.
|
|
4669
|
+
*
|
|
4287
4670
|
* @example
|
|
4288
4671
|
* readwrite
|
|
4289
4672
|
*/
|
|
4290
4673
|
localDrive?: string;
|
|
4291
4674
|
/**
|
|
4675
|
+
* @remarks
|
|
4676
|
+
* The maximum duration to retry reconnecting to cloud computers after an unexpected disconnection (non-human causes). Valid values: 30 to 7200. Unit: seconds.
|
|
4677
|
+
*
|
|
4292
4678
|
* @example
|
|
4293
4679
|
* 120
|
|
4294
4680
|
*/
|
|
4295
4681
|
maxReconnectTime?: number;
|
|
4296
4682
|
/**
|
|
4683
|
+
* @remarks
|
|
4684
|
+
* The memory underclocking duration per process. Valid values: 30 to 120. Unit: seconds.
|
|
4685
|
+
*
|
|
4297
4686
|
* @example
|
|
4298
4687
|
* 30
|
|
4299
4688
|
*/
|
|
4300
4689
|
memoryDownGradeDuration?: number;
|
|
4690
|
+
/**
|
|
4691
|
+
* @remarks
|
|
4692
|
+
* The memory processors.
|
|
4693
|
+
*/
|
|
4301
4694
|
memoryProcessors?: string[];
|
|
4302
4695
|
/**
|
|
4696
|
+
* @remarks
|
|
4697
|
+
* The memory spike protection policy.
|
|
4698
|
+
*
|
|
4303
4699
|
* @example
|
|
4304
4700
|
* off
|
|
4305
4701
|
*/
|
|
4306
4702
|
memoryProtectedMode?: string;
|
|
4307
4703
|
/**
|
|
4704
|
+
* @remarks
|
|
4705
|
+
* The overall memory usage. Valid values: 70 to 90. Unit: %.
|
|
4706
|
+
*
|
|
4308
4707
|
* @example
|
|
4309
4708
|
* 70
|
|
4310
4709
|
*/
|
|
4311
4710
|
memoryRateLimit?: number;
|
|
4312
4711
|
/**
|
|
4712
|
+
* @remarks
|
|
4713
|
+
* The overall memory sampling duration. Valid values: 30 to 60. Unit: seconds.
|
|
4714
|
+
*
|
|
4313
4715
|
* @example
|
|
4314
4716
|
* 30
|
|
4315
4717
|
*/
|
|
4316
4718
|
memorySampleDuration?: number;
|
|
4317
4719
|
/**
|
|
4720
|
+
* @remarks
|
|
4721
|
+
* The memory usage per process. Valid values: 30 to 60. Unit: %.
|
|
4722
|
+
*
|
|
4318
4723
|
* @example
|
|
4319
4724
|
* 30
|
|
4320
4725
|
*/
|
|
4321
4726
|
memorySingleRateLimit?: number;
|
|
4322
4727
|
/**
|
|
4728
|
+
* @remarks
|
|
4729
|
+
* Indicates whether the Restart button is displayed in the DesktopAssistant menu when end users connect to cloud computers from mobile clients (Android clients and iOS clients).
|
|
4730
|
+
*
|
|
4731
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
4732
|
+
*
|
|
4323
4733
|
* @example
|
|
4324
4734
|
* off
|
|
4325
4735
|
*/
|
|
4326
4736
|
mobileRestart?: string;
|
|
4327
4737
|
/**
|
|
4738
|
+
* @remarks
|
|
4739
|
+
* Indicates whether the Stop button is displayed in the DesktopAssistant menu when end users connect to cloud computers from mobile clients (Android clients and iOS clients).
|
|
4740
|
+
*
|
|
4741
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
4742
|
+
*
|
|
4328
4743
|
* @example
|
|
4329
4744
|
* off
|
|
4330
4745
|
*/
|
|
4331
4746
|
mobileShutdown?: string;
|
|
4332
4747
|
/**
|
|
4748
|
+
* @remarks
|
|
4749
|
+
* The policy name.
|
|
4750
|
+
*
|
|
4333
4751
|
* @example
|
|
4334
4752
|
* testPolicyGroupName
|
|
4335
4753
|
*/
|
|
4336
4754
|
name?: string;
|
|
4337
4755
|
/**
|
|
4756
|
+
* @remarks
|
|
4757
|
+
* The network redirection policy.
|
|
4758
|
+
*
|
|
4759
|
+
* > This parameter is in private preview and only available to specific users.
|
|
4760
|
+
*
|
|
4338
4761
|
* @example
|
|
4339
4762
|
* off
|
|
4340
4763
|
*/
|
|
4341
4764
|
netRedirect?: string;
|
|
4765
|
+
/**
|
|
4766
|
+
* @remarks
|
|
4767
|
+
* The network redirection policies.
|
|
4768
|
+
*
|
|
4769
|
+
* > This parameter is in private preview and only available to specific users.
|
|
4770
|
+
*/
|
|
4342
4771
|
netRedirectRule?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsNetRedirectRule[];
|
|
4343
4772
|
/**
|
|
4773
|
+
* @remarks
|
|
4774
|
+
* Indicates whether a disconnection is enforced upon inactivity.
|
|
4775
|
+
*
|
|
4776
|
+
* > This parameter applies only to cloud application policies.
|
|
4777
|
+
*
|
|
4344
4778
|
* @example
|
|
4345
4779
|
* off
|
|
4346
4780
|
*/
|
|
4347
4781
|
noOperationDisconnect?: string;
|
|
4348
4782
|
/**
|
|
4783
|
+
* @remarks
|
|
4784
|
+
* The duration of disconnection after inactivity. Unit: seconds.
|
|
4785
|
+
*
|
|
4786
|
+
* > This parameter applies only to cloud application policies.
|
|
4787
|
+
*
|
|
4349
4788
|
* @example
|
|
4350
4789
|
* 120
|
|
4351
4790
|
*/
|
|
4352
4791
|
noOperationDisconnectTime?: number;
|
|
4353
4792
|
/**
|
|
4793
|
+
* @remarks
|
|
4794
|
+
* The policy ID.
|
|
4795
|
+
*
|
|
4354
4796
|
* @example
|
|
4355
4797
|
* pg-gx2x1dhsmthe9****
|
|
4356
4798
|
*/
|
|
4357
4799
|
policyGroupId?: string;
|
|
4358
4800
|
/**
|
|
4801
|
+
* @remarks
|
|
4802
|
+
* The policy type.
|
|
4803
|
+
*
|
|
4359
4804
|
* @example
|
|
4360
4805
|
* SYSTEM
|
|
4361
4806
|
*/
|
|
4362
4807
|
policyGroupType?: string;
|
|
4363
4808
|
/**
|
|
4809
|
+
* @remarks
|
|
4810
|
+
* The status of the cloud computer policy.
|
|
4811
|
+
*
|
|
4364
4812
|
* @example
|
|
4365
4813
|
* AVAILABLE
|
|
4366
4814
|
*/
|
|
4367
4815
|
policyStatus?: string;
|
|
4368
4816
|
/**
|
|
4817
|
+
* @remarks
|
|
4818
|
+
* The printer redirection policy.
|
|
4819
|
+
*
|
|
4369
4820
|
* @example
|
|
4370
4821
|
* off
|
|
4371
4822
|
*/
|
|
4372
4823
|
printerRedirection?: string;
|
|
4373
4824
|
/**
|
|
4825
|
+
* @remarks
|
|
4826
|
+
* Indicates whether image quality enhancement is enabled for design and 3D applications.
|
|
4827
|
+
*
|
|
4374
4828
|
* @example
|
|
4375
4829
|
* off
|
|
4376
4830
|
*/
|
|
4377
4831
|
qualityEnhancement?: string;
|
|
4378
4832
|
/**
|
|
4833
|
+
* @remarks
|
|
4834
|
+
* Indicates whether custom screen recording is enabled.
|
|
4835
|
+
*
|
|
4379
4836
|
* @example
|
|
4380
4837
|
* off
|
|
4381
4838
|
*/
|
|
4382
4839
|
recordContent?: string;
|
|
4383
4840
|
/**
|
|
4841
|
+
* @remarks
|
|
4842
|
+
* The duration for which custom screen recordings are kept before they expire. Default value: 30 days.
|
|
4843
|
+
*
|
|
4384
4844
|
* @example
|
|
4385
4845
|
* 30
|
|
4386
4846
|
*/
|
|
4387
4847
|
recordContentExpires?: number;
|
|
4388
4848
|
/**
|
|
4849
|
+
* @remarks
|
|
4850
|
+
* The duration of screen recording after the specified event is detected. Unit: minutes. Valid values: 10 to 60.
|
|
4851
|
+
*
|
|
4389
4852
|
* @example
|
|
4390
4853
|
* 10
|
|
4391
4854
|
*/
|
|
4392
4855
|
recordEventDuration?: number;
|
|
4856
|
+
/**
|
|
4857
|
+
* @remarks
|
|
4858
|
+
* The absolute paths to screen recording files.
|
|
4859
|
+
*/
|
|
4393
4860
|
recordEventFilePaths?: string[];
|
|
4861
|
+
/**
|
|
4862
|
+
* @remarks
|
|
4863
|
+
* The absolute paths to screen recording registries.
|
|
4864
|
+
*/
|
|
4394
4865
|
recordEventRegisters?: string[];
|
|
4395
4866
|
/**
|
|
4867
|
+
* @remarks
|
|
4868
|
+
* Indicates whether screen recording is enabled.
|
|
4869
|
+
*
|
|
4396
4870
|
* @example
|
|
4397
4871
|
* off
|
|
4398
4872
|
*/
|
|
4399
4873
|
recording?: string;
|
|
4400
4874
|
/**
|
|
4875
|
+
* @remarks
|
|
4876
|
+
* Indicates whether audio files generated on cloud computers are recorded.
|
|
4877
|
+
*
|
|
4401
4878
|
* @example
|
|
4402
4879
|
* on
|
|
4403
4880
|
*/
|
|
4404
4881
|
recordingAudio?: string;
|
|
4405
4882
|
/**
|
|
4883
|
+
* @remarks
|
|
4884
|
+
* The length of the screen recording file. Unit: minutes. Screen recording files are split by the specified length and uploaded to OSS buckets. Once a file reaches 300 MB, the system prioritizes rolling updates for that file.
|
|
4885
|
+
*
|
|
4406
4886
|
* @example
|
|
4407
4887
|
* 10
|
|
4408
4888
|
*/
|
|
4409
4889
|
recordingDuration?: number;
|
|
4410
4890
|
/**
|
|
4891
|
+
* @remarks
|
|
4892
|
+
* The end time of screen recording. The value is in the HH:MM:SS format. The value is meaningful only when you set Recording to period.
|
|
4893
|
+
*
|
|
4411
4894
|
* @example
|
|
4412
4895
|
* 08:59:00
|
|
4413
4896
|
*/
|
|
4414
4897
|
recordingEndTime?: string;
|
|
4415
4898
|
/**
|
|
4899
|
+
* @remarks
|
|
4900
|
+
* The retention period of the screen recording file. Valid values: 1 to 180. Unit: days.
|
|
4901
|
+
*
|
|
4416
4902
|
* @example
|
|
4417
4903
|
* 15
|
|
4418
4904
|
*/
|
|
4419
4905
|
recordingExpires?: number;
|
|
4420
4906
|
/**
|
|
4907
|
+
* @remarks
|
|
4908
|
+
* The frame rate of screen recording. Unit: fps.
|
|
4909
|
+
*
|
|
4421
4910
|
* @example
|
|
4422
4911
|
* 5
|
|
4423
4912
|
*/
|
|
4424
4913
|
recordingFps?: number;
|
|
4425
4914
|
/**
|
|
4915
|
+
* @remarks
|
|
4916
|
+
* The start time of screen recording. The value is in the HH:MM:SS format. The value is meaningful only when you set Recording to period.
|
|
4917
|
+
*
|
|
4426
4918
|
* @example
|
|
4427
4919
|
* 08:00:00
|
|
4428
4920
|
*/
|
|
4429
4921
|
recordingStartTime?: string;
|
|
4430
4922
|
/**
|
|
4923
|
+
* @remarks
|
|
4924
|
+
* Indicates whether to notify end users when screen recording is enabled.
|
|
4925
|
+
*
|
|
4431
4926
|
* @example
|
|
4432
4927
|
* off
|
|
4433
4928
|
*/
|
|
4434
4929
|
recordingUserNotify?: string;
|
|
4930
|
+
/**
|
|
4931
|
+
* @remarks
|
|
4932
|
+
* The notification sent to end users when screen recording is enabled.
|
|
4933
|
+
*/
|
|
4435
4934
|
recordingUserNotifyMessage?: string;
|
|
4436
4935
|
/**
|
|
4936
|
+
* @remarks
|
|
4937
|
+
* The keyboard and mouse control permissions during remote assistance.
|
|
4938
|
+
*
|
|
4437
4939
|
* @example
|
|
4438
4940
|
* fullControl
|
|
4439
4941
|
*/
|
|
4440
4942
|
remoteCoordinate?: string;
|
|
4441
4943
|
/**
|
|
4944
|
+
* @remarks
|
|
4945
|
+
* The height of the resolution. Unit: pixel.
|
|
4946
|
+
*
|
|
4442
4947
|
* @example
|
|
4443
4948
|
* 1280
|
|
4444
4949
|
*/
|
|
4445
4950
|
resolutionHeight?: number;
|
|
4446
4951
|
/**
|
|
4952
|
+
* @remarks
|
|
4953
|
+
* The resolution type.
|
|
4954
|
+
*
|
|
4447
4955
|
* @example
|
|
4448
4956
|
* adaptive
|
|
4449
4957
|
*/
|
|
4450
4958
|
resolutionModel?: string;
|
|
4451
4959
|
/**
|
|
4960
|
+
* @remarks
|
|
4961
|
+
* The width of the resolution. Unit: pixel.
|
|
4962
|
+
*
|
|
4452
4963
|
* @example
|
|
4453
4964
|
* 1920
|
|
4454
4965
|
*/
|
|
4455
4966
|
resolutionWidth?: number;
|
|
4456
4967
|
/**
|
|
4968
|
+
* @remarks
|
|
4969
|
+
* The number of resource groups that are associated with the policy.
|
|
4970
|
+
*
|
|
4457
4971
|
* @example
|
|
4458
4972
|
* 1
|
|
4459
4973
|
*/
|
|
4460
4974
|
resourceGroupCount?: number;
|
|
4461
4975
|
/**
|
|
4976
|
+
* @remarks
|
|
4977
|
+
* The effective scope of the policy.
|
|
4978
|
+
*
|
|
4462
4979
|
* @example
|
|
4463
4980
|
* GLOBAL
|
|
4464
4981
|
*/
|
|
4465
4982
|
scope?: string;
|
|
4983
|
+
/**
|
|
4984
|
+
* @remarks
|
|
4985
|
+
* The effective scopes specified by CIDR blocks.
|
|
4986
|
+
*/
|
|
4466
4987
|
scopeValue?: string[];
|
|
4467
4988
|
/**
|
|
4989
|
+
* @remarks
|
|
4990
|
+
* Indicates whether smoothness enhancement is enabled for daily office use.
|
|
4991
|
+
*
|
|
4468
4992
|
* @example
|
|
4469
4993
|
* off
|
|
4470
4994
|
*/
|
|
4471
4995
|
smoothEnhancement?: string;
|
|
4472
4996
|
/**
|
|
4997
|
+
* @remarks
|
|
4998
|
+
* Indicates whether the metric status entry is displayed in the DesktopAssistant menu.
|
|
4999
|
+
*
|
|
4473
5000
|
* @example
|
|
4474
5001
|
* on
|
|
4475
5002
|
*/
|
|
4476
5003
|
statusMonitor?: string;
|
|
4477
5004
|
/**
|
|
5005
|
+
* @remarks
|
|
5006
|
+
* The streaming mode.
|
|
5007
|
+
*
|
|
4478
5008
|
* @example
|
|
4479
5009
|
* smooth
|
|
4480
5010
|
*/
|
|
4481
5011
|
streamingMode?: string;
|
|
4482
5012
|
/**
|
|
5013
|
+
* @remarks
|
|
5014
|
+
* The target frame rate. Valid values: 10 to 60. Unit: fps.
|
|
5015
|
+
*
|
|
4483
5016
|
* @example
|
|
4484
5017
|
* 30
|
|
4485
5018
|
*/
|
|
4486
5019
|
targetFps?: number;
|
|
4487
5020
|
/**
|
|
5021
|
+
* @remarks
|
|
5022
|
+
* Indicates whether the application taskbar is displayed.
|
|
5023
|
+
*
|
|
5024
|
+
* > This parameter applies only to cloud application policies.
|
|
5025
|
+
*
|
|
4488
5026
|
* @example
|
|
4489
5027
|
* off
|
|
4490
5028
|
*/
|
|
4491
5029
|
taskbar?: string;
|
|
4492
5030
|
/**
|
|
5031
|
+
* @remarks
|
|
5032
|
+
* The USB redirection policy.
|
|
5033
|
+
*
|
|
4493
5034
|
* @example
|
|
4494
5035
|
* off
|
|
4495
5036
|
*/
|
|
4496
5037
|
usbRedirect?: string;
|
|
5038
|
+
/**
|
|
5039
|
+
* @remarks
|
|
5040
|
+
* The USB redirection rules.
|
|
5041
|
+
*/
|
|
4497
5042
|
usbSupplyRedirectRule?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsUsbSupplyRedirectRule[];
|
|
4498
5043
|
/**
|
|
5044
|
+
* @remarks
|
|
5045
|
+
* The average bitrate for video encoding. Valid values: 1000 to 50000.
|
|
5046
|
+
*
|
|
4499
5047
|
* @example
|
|
4500
5048
|
* 1000
|
|
4501
5049
|
*/
|
|
4502
5050
|
videoEncAvgKbps?: number;
|
|
4503
5051
|
/**
|
|
5052
|
+
* @remarks
|
|
5053
|
+
* The maximum QP for video files. Higher QP values result in lower video quality. Valid values: 0 to 51.
|
|
5054
|
+
*
|
|
4504
5055
|
* @example
|
|
4505
5056
|
* 20
|
|
4506
5057
|
*/
|
|
4507
5058
|
videoEncMaxQP?: number;
|
|
4508
5059
|
/**
|
|
5060
|
+
* @remarks
|
|
5061
|
+
* The minimum quantizer parameter (QP) for video files. A lower QP means better video quality. Valid values: 0 to 51.
|
|
5062
|
+
*
|
|
4509
5063
|
* @example
|
|
4510
5064
|
* 20
|
|
4511
5065
|
*/
|
|
4512
5066
|
videoEncMinQP?: number;
|
|
4513
5067
|
/**
|
|
5068
|
+
* @remarks
|
|
5069
|
+
* The peak bitrate for video encoding. Valid values: 1000 to 50000.
|
|
5070
|
+
*
|
|
4514
5071
|
* @example
|
|
4515
5072
|
* 2000
|
|
4516
5073
|
*/
|
|
4517
5074
|
videoEncPeakKbps?: number;
|
|
4518
5075
|
/**
|
|
5076
|
+
* @remarks
|
|
5077
|
+
* The video encoding policy.
|
|
5078
|
+
*
|
|
4519
5079
|
* @example
|
|
4520
5080
|
* qualityFirst
|
|
4521
5081
|
*/
|
|
4522
5082
|
videoEncPolicy?: string;
|
|
4523
5083
|
/**
|
|
5084
|
+
* @remarks
|
|
5085
|
+
* Indicates whether multimedia redirection is enabled.
|
|
5086
|
+
*
|
|
4524
5087
|
* @example
|
|
4525
5088
|
* off
|
|
4526
5089
|
*/
|
|
4527
5090
|
videoRedirect?: string;
|
|
4528
5091
|
/**
|
|
5092
|
+
* @remarks
|
|
5093
|
+
* The image quality policy.
|
|
5094
|
+
*
|
|
4529
5095
|
* @example
|
|
4530
5096
|
* medium
|
|
4531
5097
|
*/
|
|
4532
5098
|
visualQuality?: string;
|
|
4533
5099
|
/**
|
|
5100
|
+
* @remarks
|
|
5101
|
+
* The watermark policy.
|
|
5102
|
+
*
|
|
4534
5103
|
* @example
|
|
4535
5104
|
* on
|
|
4536
5105
|
*/
|
|
4537
5106
|
watermark?: string;
|
|
4538
5107
|
/**
|
|
5108
|
+
* @remarks
|
|
5109
|
+
* Indicates whether anti-screen capture is enabled for invisible watermarks.
|
|
5110
|
+
*
|
|
4539
5111
|
* @example
|
|
4540
5112
|
* off
|
|
4541
5113
|
*/
|
|
4542
5114
|
watermarkAntiCam?: string;
|
|
4543
5115
|
/**
|
|
5116
|
+
* @remarks
|
|
5117
|
+
* The font color of the watermark. Valid values: 0 to 16777215.
|
|
5118
|
+
*
|
|
4544
5119
|
* @example
|
|
4545
5120
|
* 0
|
|
4546
5121
|
*/
|
|
4547
5122
|
watermarkColor?: number;
|
|
4548
5123
|
/**
|
|
5124
|
+
* @remarks
|
|
5125
|
+
* If you set `WatermarkType` to `custom`, you must also specify `WatermarkCustomText`.
|
|
5126
|
+
*
|
|
4549
5127
|
* @example
|
|
4550
5128
|
* custom-watermark
|
|
4551
5129
|
*/
|
|
4552
5130
|
watermarkCustomText?: string;
|
|
4553
5131
|
/**
|
|
5132
|
+
* @remarks
|
|
5133
|
+
* The watermark rotation. Valid values: -10 to -30.
|
|
5134
|
+
*
|
|
4554
5135
|
* @example
|
|
4555
5136
|
* -10
|
|
4556
5137
|
*/
|
|
4557
5138
|
watermarkDegree?: number;
|
|
4558
5139
|
/**
|
|
5140
|
+
* @remarks
|
|
5141
|
+
* The font size of the watermark. Valid values: 10 to 20.
|
|
5142
|
+
*
|
|
4559
5143
|
* @example
|
|
4560
5144
|
* 10
|
|
4561
5145
|
*/
|
|
4562
5146
|
watermarkFontSize?: number;
|
|
4563
5147
|
/**
|
|
5148
|
+
* @remarks
|
|
5149
|
+
* The font style of the watermark.
|
|
5150
|
+
*
|
|
4564
5151
|
* @example
|
|
4565
5152
|
* plain
|
|
4566
5153
|
*/
|
|
4567
5154
|
watermarkFontStyle?: string;
|
|
4568
5155
|
/**
|
|
5156
|
+
* @remarks
|
|
5157
|
+
* The enhancement level for invisible watermarks.
|
|
5158
|
+
*
|
|
4569
5159
|
* @example
|
|
4570
5160
|
* medium
|
|
4571
5161
|
*/
|
|
4572
5162
|
watermarkPower?: string;
|
|
4573
5163
|
/**
|
|
5164
|
+
* @remarks
|
|
5165
|
+
* The number of watermark rows.
|
|
5166
|
+
*
|
|
4574
5167
|
* @example
|
|
4575
5168
|
* 3
|
|
4576
5169
|
*/
|
|
4577
5170
|
watermarkRowAmount?: number;
|
|
4578
5171
|
/**
|
|
5172
|
+
* @remarks
|
|
5173
|
+
* Indicates whether security priority is enabled for invisible watermarks.
|
|
5174
|
+
*
|
|
4579
5175
|
* @example
|
|
4580
5176
|
* on
|
|
4581
5177
|
*/
|
|
4582
5178
|
watermarkSecurity?: string;
|
|
4583
5179
|
/**
|
|
5180
|
+
* @remarks
|
|
5181
|
+
* The watermark transparency. A higher value means the watermark is less transparent. Valid values: 10 to 100.
|
|
5182
|
+
*
|
|
4584
5183
|
* @example
|
|
4585
5184
|
* 10
|
|
4586
5185
|
*/
|
|
4587
5186
|
watermarkTransparencyValue?: number;
|
|
4588
5187
|
/**
|
|
5188
|
+
* @remarks
|
|
5189
|
+
* The watermark type.
|
|
5190
|
+
*
|
|
4589
5191
|
* @example
|
|
4590
5192
|
* EndUserId
|
|
4591
5193
|
*/
|
|
4592
5194
|
watermarkType?: string;
|
|
4593
5195
|
/**
|
|
5196
|
+
* @remarks
|
|
5197
|
+
* Indicates whether the Xiaoying AI Assistant entry is displayed in the DesktopAssistant menu.
|
|
5198
|
+
*
|
|
4594
5199
|
* @example
|
|
4595
5200
|
* on
|
|
4596
5201
|
*/
|
|
@@ -10288,7 +10893,7 @@ export class DescribeGuestApplicationsResponseBodyApplicationsProcessData extend
|
|
|
10288
10893
|
cpuPercent?: number;
|
|
10289
10894
|
/**
|
|
10290
10895
|
* @remarks
|
|
10291
|
-
* The GPU
|
|
10896
|
+
* The GPU usage (%).
|
|
10292
10897
|
*
|
|
10293
10898
|
* @example
|
|
10294
10899
|
* 15
|
|
@@ -10296,7 +10901,7 @@ export class DescribeGuestApplicationsResponseBodyApplicationsProcessData extend
|
|
|
10296
10901
|
gpuPercent?: number;
|
|
10297
10902
|
/**
|
|
10298
10903
|
* @remarks
|
|
10299
|
-
* The I/O read and write performance.
|
|
10904
|
+
* The I/O read and write performance. Unit: byte/s.
|
|
10300
10905
|
*
|
|
10301
10906
|
* @example
|
|
10302
10907
|
* 124906.0
|
|
@@ -10304,7 +10909,7 @@ export class DescribeGuestApplicationsResponseBodyApplicationsProcessData extend
|
|
|
10304
10909
|
iospeed?: number;
|
|
10305
10910
|
/**
|
|
10306
10911
|
* @remarks
|
|
10307
|
-
* The memory
|
|
10912
|
+
* The memory usage (%).
|
|
10308
10913
|
*
|
|
10309
10914
|
* @example
|
|
10310
10915
|
* 34
|
|
@@ -10404,7 +11009,7 @@ export class DescribeGuestApplicationsResponseBodyApplications extends $dara.Mod
|
|
|
10404
11009
|
iconUrl?: string;
|
|
10405
11010
|
/**
|
|
10406
11011
|
* @remarks
|
|
10407
|
-
* The I/O read and write performance.
|
|
11012
|
+
* The I/O read and write performance. Unit: byte/s.
|
|
10408
11013
|
*
|
|
10409
11014
|
* @example
|
|
10410
11015
|
* 124906.0
|
|
@@ -10428,7 +11033,7 @@ export class DescribeGuestApplicationsResponseBodyApplications extends $dara.Mod
|
|
|
10428
11033
|
pid?: number;
|
|
10429
11034
|
/**
|
|
10430
11035
|
* @remarks
|
|
10431
|
-
* The
|
|
11036
|
+
* The processes.
|
|
10432
11037
|
*/
|
|
10433
11038
|
processData?: DescribeGuestApplicationsResponseBodyApplicationsProcessData[];
|
|
10434
11039
|
/**
|
|
@@ -10441,7 +11046,12 @@ export class DescribeGuestApplicationsResponseBodyApplications extends $dara.Mod
|
|
|
10441
11046
|
processPath?: string;
|
|
10442
11047
|
/**
|
|
10443
11048
|
* @remarks
|
|
10444
|
-
* The application
|
|
11049
|
+
* The status of the application.
|
|
11050
|
+
*
|
|
11051
|
+
* Valid value:
|
|
11052
|
+
*
|
|
11053
|
+
* * Idle: The application is installed in the cloud computer but is not running.
|
|
11054
|
+
* * Running: The application has been installed in the cloud computer and is running.
|
|
10445
11055
|
*
|
|
10446
11056
|
* @example
|
|
10447
11057
|
* Running
|
|
@@ -15210,43 +15820,84 @@ export class DescribePriceForRenewDesktopOversoldGroupResponseBodyData extends $
|
|
|
15210
15820
|
|
|
15211
15821
|
export class DescribeRecordingsResponseBodyRecordings extends $dara.Model {
|
|
15212
15822
|
/**
|
|
15823
|
+
* @remarks
|
|
15824
|
+
* The cloud computer ID.
|
|
15825
|
+
*
|
|
15213
15826
|
* @example
|
|
15214
15827
|
* ecd-10v0vuvm616sk****
|
|
15215
15828
|
*/
|
|
15216
15829
|
desktopId?: string;
|
|
15217
15830
|
/**
|
|
15831
|
+
* @remarks
|
|
15832
|
+
* The cloud computer name.
|
|
15833
|
+
*
|
|
15218
15834
|
* @example
|
|
15219
15835
|
* DemoComputer
|
|
15220
15836
|
*/
|
|
15221
15837
|
desktopName?: string;
|
|
15222
15838
|
/**
|
|
15839
|
+
* @remarks
|
|
15840
|
+
* The end time of the recording.
|
|
15841
|
+
*
|
|
15223
15842
|
* @example
|
|
15224
15843
|
* 2023-04-10T07:26:06Z
|
|
15225
15844
|
*/
|
|
15226
15845
|
endTime?: string;
|
|
15846
|
+
/**
|
|
15847
|
+
* @remarks
|
|
15848
|
+
* The end user IDs.
|
|
15849
|
+
*/
|
|
15227
15850
|
endUserIds?: string[];
|
|
15228
15851
|
/**
|
|
15852
|
+
* @remarks
|
|
15853
|
+
* The file path.
|
|
15854
|
+
*
|
|
15229
15855
|
* @example
|
|
15230
15856
|
* pg-4w5nk44zo5yl129dd/1mk78dugw344.mp4
|
|
15231
15857
|
*/
|
|
15232
15858
|
filePath?: string;
|
|
15233
15859
|
/**
|
|
15860
|
+
* @remarks
|
|
15861
|
+
* The policy ID.
|
|
15862
|
+
*
|
|
15234
15863
|
* @example
|
|
15235
15864
|
* pg-6dn811rzrwh9ws4z6
|
|
15236
15865
|
*/
|
|
15237
15866
|
policyGroupId?: string;
|
|
15238
15867
|
/**
|
|
15868
|
+
* @remarks
|
|
15869
|
+
* The size of the screen recording file. Unit: bytes.
|
|
15870
|
+
*
|
|
15239
15871
|
* @example
|
|
15240
15872
|
* 1742845
|
|
15241
15873
|
*/
|
|
15242
15874
|
recordingSize?: number;
|
|
15243
15875
|
/**
|
|
15876
|
+
* @remarks
|
|
15877
|
+
* The type of event that triggers the recording.
|
|
15878
|
+
*
|
|
15879
|
+
* Valid values:
|
|
15880
|
+
*
|
|
15881
|
+
* * byaction_cmd_ft: triggered by copy-paste or file transfer events.
|
|
15882
|
+
* * period: triggered at scheduled intervals.
|
|
15883
|
+
* * session: triggered by session lifecycle monitoring.
|
|
15884
|
+
* * byaction_commands: triggered by copy-paste only.
|
|
15885
|
+
* * alltime: continuous recording.
|
|
15886
|
+
* * byaction_file_transfer: triggered by file transfer only.
|
|
15887
|
+
*
|
|
15244
15888
|
* @example
|
|
15245
15889
|
* alltime
|
|
15246
15890
|
*/
|
|
15247
15891
|
recordingType?: string;
|
|
15892
|
+
/**
|
|
15893
|
+
* @remarks
|
|
15894
|
+
* The download URL of the screen recording file.
|
|
15895
|
+
*/
|
|
15248
15896
|
signedUrl?: string;
|
|
15249
15897
|
/**
|
|
15898
|
+
* @remarks
|
|
15899
|
+
* The start time of the recording.
|
|
15900
|
+
*
|
|
15250
15901
|
* @example
|
|
15251
15902
|
* 2023-04-10T07:26:06Z
|
|
15252
15903
|
*/
|
|
@@ -17420,28 +18071,52 @@ export class DisconnectDesktopSessionsResponseBodyInvalidSessions extends $dara.
|
|
|
17420
18071
|
}
|
|
17421
18072
|
|
|
17422
18073
|
export class DownloadCdsFileResponseBodyDownloadFileModel extends $dara.Model {
|
|
18074
|
+
/**
|
|
18075
|
+
* @remarks
|
|
18076
|
+
* This parameter is deprecated.
|
|
18077
|
+
*/
|
|
17423
18078
|
downloadType?: string;
|
|
17424
18079
|
/**
|
|
18080
|
+
* @remarks
|
|
18081
|
+
* The download URL.
|
|
18082
|
+
*
|
|
17425
18083
|
* @example
|
|
17426
18084
|
* https://pds-XXXX-bj-1693807057.oss-cn-beijing.aliyuncs.com/A0SKfLOp%2F2%2F6662612e0570fb2bdd5549759716d433439f0572%2F6662612ee3804e4901794928b14f9a7477640ee7?di=XXXX&dr=1030&f=667d5a322ebf7409e91c485d808fb3bd8a73efbb&response-content-disposition=attachment%3B%20
|
|
17427
18085
|
*/
|
|
17428
18086
|
downloadUrl?: string;
|
|
18087
|
+
/**
|
|
18088
|
+
* @remarks
|
|
18089
|
+
* This parameter is deprecated.
|
|
18090
|
+
*/
|
|
17429
18091
|
expirationSecond?: string;
|
|
17430
18092
|
/**
|
|
18093
|
+
* @remarks
|
|
18094
|
+
* The validity period of the download URL.
|
|
18095
|
+
*
|
|
17431
18096
|
* @example
|
|
17432
18097
|
* 2024-07-18T02:55:49.795Z
|
|
17433
18098
|
*/
|
|
17434
18099
|
expirationTime?: string;
|
|
17435
18100
|
/**
|
|
18101
|
+
* @remarks
|
|
18102
|
+
* The file ID.
|
|
18103
|
+
*
|
|
17436
18104
|
* @example
|
|
17437
18105
|
* 667d5a322ebf7409e91c485d808fb3bd8a73efbb
|
|
17438
18106
|
*/
|
|
17439
18107
|
fileId?: string;
|
|
17440
18108
|
/**
|
|
18109
|
+
* @remarks
|
|
18110
|
+
* The size of the file. Unit: bytes.
|
|
18111
|
+
*
|
|
17441
18112
|
* @example
|
|
17442
18113
|
* 1594642
|
|
17443
18114
|
*/
|
|
17444
18115
|
size?: number;
|
|
18116
|
+
/**
|
|
18117
|
+
* @remarks
|
|
18118
|
+
* This parameter is deprecated.
|
|
18119
|
+
*/
|
|
17445
18120
|
streamUrl?: string;
|
|
17446
18121
|
static names(): { [key: string]: string } {
|
|
17447
18122
|
return {
|
|
@@ -18986,7 +19661,7 @@ export class ListOfficeSiteUsersResponseBodyUsers extends $dara.Model {
|
|
|
18986
19661
|
assignedDesktopNumber?: number;
|
|
18987
19662
|
/**
|
|
18988
19663
|
* @remarks
|
|
18989
|
-
* The display name of the
|
|
19664
|
+
* The display name of the AD account.
|
|
18990
19665
|
*
|
|
18991
19666
|
* @example
|
|
18992
19667
|
* Alice
|
|
@@ -18996,7 +19671,7 @@ export class ListOfficeSiteUsersResponseBodyUsers extends $dara.Model {
|
|
|
18996
19671
|
email?: string;
|
|
18997
19672
|
/**
|
|
18998
19673
|
* @remarks
|
|
18999
|
-
* The
|
|
19674
|
+
* The username of the AD account.
|
|
19000
19675
|
*
|
|
19001
19676
|
* @example
|
|
19002
19677
|
* Alice
|
|
@@ -19424,9 +20099,9 @@ export class ModifyCenterPolicyRequestDeviceRedirects extends $dara.Model {
|
|
|
19424
20099
|
*
|
|
19425
20100
|
* Valid values:
|
|
19426
20101
|
*
|
|
19427
|
-
* * deviceRedirect:
|
|
19428
|
-
* * usbRedirect:
|
|
19429
|
-
* * off:
|
|
20102
|
+
* * deviceRedirect: device redirection
|
|
20103
|
+
* * usbRedirect: USB redirection.
|
|
20104
|
+
* * off: any type of redirection.
|
|
19430
20105
|
*
|
|
19431
20106
|
* @example
|
|
19432
20107
|
* deviceRedirect
|
|
@@ -19478,14 +20153,14 @@ export class ModifyCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
19478
20153
|
*
|
|
19479
20154
|
* Valid values:
|
|
19480
20155
|
*
|
|
19481
|
-
* * usbKey:
|
|
20156
|
+
* * usbKey: UKeys
|
|
19482
20157
|
* * other: other peripheral devices.
|
|
19483
20158
|
* * graphicsTablet: graphics tablets.
|
|
19484
20159
|
* * cardReader: card readers.
|
|
19485
20160
|
* * printer: printers.
|
|
19486
20161
|
* * scanner: scanners.
|
|
19487
20162
|
* * storage: storage devices.
|
|
19488
|
-
* * camera: cameras.
|
|
20163
|
+
* * camera: web cameras.
|
|
19489
20164
|
* * networkInterfaceCard: NIC devices.
|
|
19490
20165
|
*
|
|
19491
20166
|
* @example
|
|
@@ -19514,9 +20189,9 @@ export class ModifyCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
19514
20189
|
*
|
|
19515
20190
|
* Valid values:
|
|
19516
20191
|
*
|
|
19517
|
-
* * deviceRedirect:
|
|
19518
|
-
* * usbRedirect:
|
|
19519
|
-
* * off:
|
|
20192
|
+
* * deviceRedirect: device redirection
|
|
20193
|
+
* * usbRedirect: USB redirection.
|
|
20194
|
+
* * off: any type of redirection.
|
|
19520
20195
|
*
|
|
19521
20196
|
* @example
|
|
19522
20197
|
* usbRedirect
|
|
@@ -21186,7 +21861,7 @@ export class ModifyTimerGroupRequestConfigTimers extends $dara.Model {
|
|
|
21186
21861
|
* @remarks
|
|
21187
21862
|
* The cron expression specified in the scheduled task.
|
|
21188
21863
|
*
|
|
21189
|
-
* > The time must be in UTC. For example,
|
|
21864
|
+
* > The time must be in UTC. For example, if your local time is 24:00 (UTC+8), you must set the value to 0 0 16 ? \\* 1,2,3,4,5,6,7.
|
|
21190
21865
|
*
|
|
21191
21866
|
* @example
|
|
21192
21867
|
* 0 0 16 ? * 1,2,3,4,5,6,7
|
|
@@ -21224,7 +21899,7 @@ export class ModifyTimerGroupRequestConfigTimers extends $dara.Model {
|
|
|
21224
21899
|
operationType?: string;
|
|
21225
21900
|
/**
|
|
21226
21901
|
* @remarks
|
|
21227
|
-
* The process whitelist. If whitelisted processes are running, the scheduled task
|
|
21902
|
+
* The process whitelist. If whitelisted processes are running, the scheduled task does not take effect upon inactivity.
|
|
21228
21903
|
*/
|
|
21229
21904
|
processWhitelist?: string[];
|
|
21230
21905
|
/**
|
|
@@ -21245,7 +21920,7 @@ export class ModifyTimerGroupRequestConfigTimers extends $dara.Model {
|
|
|
21245
21920
|
* @remarks
|
|
21246
21921
|
* The scheduled task type.
|
|
21247
21922
|
*
|
|
21248
|
-
* Valid
|
|
21923
|
+
* Valid value:
|
|
21249
21924
|
*
|
|
21250
21925
|
* * NoOperationDisconnect: scheduled disconnection upon inactivity.
|
|
21251
21926
|
* * NoConnect: scheduled disconnection upon specified operation (OperationType).
|
|
@@ -24881,9 +25556,11 @@ export class CancelCopyImageResponse extends $dara.Model {
|
|
|
24881
25556
|
export class CloneCenterPolicyRequest extends $dara.Model {
|
|
24882
25557
|
/**
|
|
24883
25558
|
* @remarks
|
|
24884
|
-
* The business type.
|
|
25559
|
+
* The business type.
|
|
24885
25560
|
*
|
|
24886
|
-
*
|
|
25561
|
+
* Valid values:
|
|
25562
|
+
*
|
|
25563
|
+
* * 1: public cloud
|
|
24887
25564
|
* * 8: commercial edition.
|
|
24888
25565
|
*
|
|
24889
25566
|
* This parameter is required.
|
|
@@ -24914,7 +25591,7 @@ export class CloneCenterPolicyRequest extends $dara.Model {
|
|
|
24914
25591
|
policyGroupId?: string;
|
|
24915
25592
|
/**
|
|
24916
25593
|
* @remarks
|
|
24917
|
-
* The region ID.
|
|
25594
|
+
* The region ID. Set the value to cn-shanghai.
|
|
24918
25595
|
*
|
|
24919
25596
|
* This parameter is required.
|
|
24920
25597
|
*
|
|
@@ -24924,10 +25601,12 @@ export class CloneCenterPolicyRequest extends $dara.Model {
|
|
|
24924
25601
|
regionId?: string;
|
|
24925
25602
|
/**
|
|
24926
25603
|
* @remarks
|
|
24927
|
-
* The resource type.
|
|
25604
|
+
* The resource type.
|
|
25605
|
+
*
|
|
25606
|
+
* Valid values:
|
|
24928
25607
|
*
|
|
24929
|
-
* * desktop: cloud computers.
|
|
24930
25608
|
* * app: cloud applications.
|
|
25609
|
+
* * desktop: cloud computers.
|
|
24931
25610
|
*
|
|
24932
25611
|
* This parameter is required.
|
|
24933
25612
|
*
|
|
@@ -28178,19 +28857,53 @@ export class CreateCdsFileShareLinkResponse extends $dara.Model {
|
|
|
28178
28857
|
|
|
28179
28858
|
export class CreateCenterPolicyRequest extends $dara.Model {
|
|
28180
28859
|
/**
|
|
28860
|
+
* @remarks
|
|
28861
|
+
* Specifies whether to grant the admin permissions to end users.
|
|
28862
|
+
*
|
|
28863
|
+
* > This parameter is in private preview and only available to specific users.
|
|
28864
|
+
*
|
|
28865
|
+
* Valid values:
|
|
28866
|
+
*
|
|
28867
|
+
* * allow: forcibly grants admin permissions.
|
|
28868
|
+
* * deny: forcibly rejects granting admin permissions.
|
|
28869
|
+
* * inherited: inherits the admin permissions from the user dimension.
|
|
28870
|
+
*
|
|
28181
28871
|
* @example
|
|
28182
28872
|
* deny
|
|
28183
28873
|
*/
|
|
28184
28874
|
adminAccess?: string;
|
|
28185
28875
|
/**
|
|
28876
|
+
* @remarks
|
|
28877
|
+
* The anti-screenshot policy.
|
|
28878
|
+
*
|
|
28879
|
+
* Valid values:
|
|
28880
|
+
*
|
|
28881
|
+
* * off (default): disables anti-screenshot.
|
|
28882
|
+
* * on: enables anti-screenshot.
|
|
28883
|
+
*
|
|
28186
28884
|
* @example
|
|
28187
28885
|
* off
|
|
28188
28886
|
*/
|
|
28189
28887
|
appContentProtection?: string;
|
|
28888
|
+
/**
|
|
28889
|
+
* @remarks
|
|
28890
|
+
* The client IP address whitelists that you want to add. Once an IP address whitelist is configured, end users can only access cloud computers from the IP addresses listed in it.
|
|
28891
|
+
*/
|
|
28190
28892
|
authorizeAccessPolicyRule?: CreateCenterPolicyRequestAuthorizeAccessPolicyRule[];
|
|
28893
|
+
/**
|
|
28894
|
+
* @remarks
|
|
28895
|
+
* The security group rule.
|
|
28896
|
+
*/
|
|
28191
28897
|
authorizeSecurityPolicyRule?: CreateCenterPolicyRequestAuthorizeSecurityPolicyRule[];
|
|
28192
28898
|
/**
|
|
28193
28899
|
* @remarks
|
|
28900
|
+
* The business type.
|
|
28901
|
+
*
|
|
28902
|
+
* Valid values:
|
|
28903
|
+
*
|
|
28904
|
+
* * 1: public cloud.
|
|
28905
|
+
* * 8: commercial edition.
|
|
28906
|
+
*
|
|
28194
28907
|
* This parameter is required.
|
|
28195
28908
|
*
|
|
28196
28909
|
* @example
|
|
@@ -28198,158 +28911,373 @@ export class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
28198
28911
|
*/
|
|
28199
28912
|
businessType?: number;
|
|
28200
28913
|
/**
|
|
28914
|
+
* @remarks
|
|
28915
|
+
* The on-premises camera redirection policy. This parameter only applies if DeviceRedirects does not include an on-premises camera redirection policy.
|
|
28916
|
+
*
|
|
28917
|
+
* Valid values:
|
|
28918
|
+
*
|
|
28919
|
+
* * deviceRedirect: enables device redirection.
|
|
28920
|
+
* * off: disables device redirection.
|
|
28921
|
+
*
|
|
28201
28922
|
* @example
|
|
28202
28923
|
* off
|
|
28203
28924
|
*/
|
|
28204
28925
|
cameraRedirect?: string;
|
|
28926
|
+
/**
|
|
28927
|
+
* @remarks
|
|
28928
|
+
* The types of Alibaba Cloud Workspace clients that end users can use to connect to cloud computers.
|
|
28929
|
+
*/
|
|
28205
28930
|
clientType?: CreateCenterPolicyRequestClientType[];
|
|
28206
28931
|
/**
|
|
28932
|
+
* @remarks
|
|
28933
|
+
* The read/write permissions on the clipboard.
|
|
28934
|
+
*
|
|
28935
|
+
* Valid values:
|
|
28936
|
+
*
|
|
28937
|
+
* * read: specifies one-way transfer You can copy files only from on-premises devices to cloud computers.
|
|
28938
|
+
* * readwrite: specifies two-way transfer. You can copy files between on-premises devices and cloud computers.
|
|
28939
|
+
* * write: specifies one-way transfer. You can only copy files from cloud computers to on-premises devices.
|
|
28940
|
+
* * off (default): disables all transfers, both one-way and two-way. Files cannot be copied directly between on-premises devices and cloud computers.
|
|
28941
|
+
*
|
|
28207
28942
|
* @example
|
|
28208
28943
|
* off
|
|
28209
28944
|
*/
|
|
28210
28945
|
clipboard?: string;
|
|
28211
28946
|
/**
|
|
28947
|
+
* @remarks
|
|
28948
|
+
* Specifies whether to enable color enhancement for design and 3D applications.
|
|
28949
|
+
*
|
|
28950
|
+
* Valid values:
|
|
28951
|
+
*
|
|
28952
|
+
* * off: doesn\\"t enable color enhancement for design and 3D applications.
|
|
28953
|
+
* * on: enables color enhancement for design and 3D applications.
|
|
28954
|
+
*
|
|
28212
28955
|
* @example
|
|
28213
28956
|
* off
|
|
28214
28957
|
*/
|
|
28215
28958
|
colorEnhancement?: string;
|
|
28216
28959
|
/**
|
|
28960
|
+
* @remarks
|
|
28961
|
+
* The CPU underclocking duration. Valid values: 30 to 120. Unit: seconds.
|
|
28962
|
+
*
|
|
28217
28963
|
* @example
|
|
28218
28964
|
* 30
|
|
28219
28965
|
*/
|
|
28220
28966
|
cpuDownGradeDuration?: number;
|
|
28967
|
+
/**
|
|
28968
|
+
* @remarks
|
|
28969
|
+
* The CPU processors.
|
|
28970
|
+
*/
|
|
28221
28971
|
cpuProcessors?: string[];
|
|
28222
28972
|
/**
|
|
28973
|
+
* @remarks
|
|
28974
|
+
* The CPU spike protection policy.
|
|
28975
|
+
*
|
|
28976
|
+
* Valid values:
|
|
28977
|
+
*
|
|
28978
|
+
* * off: disables CPU spike protection.
|
|
28979
|
+
* * on: enables CPU spike protection.
|
|
28980
|
+
*
|
|
28223
28981
|
* @example
|
|
28224
28982
|
* off
|
|
28225
28983
|
*/
|
|
28226
28984
|
cpuProtectedMode?: string;
|
|
28227
28985
|
/**
|
|
28986
|
+
* @remarks
|
|
28987
|
+
* The overall CPU usage. Valid values: 70 to 90. Unit: percentage (%).
|
|
28988
|
+
*
|
|
28228
28989
|
* @example
|
|
28229
28990
|
* 70
|
|
28230
28991
|
*/
|
|
28231
28992
|
cpuRateLimit?: number;
|
|
28232
28993
|
/**
|
|
28994
|
+
* @remarks
|
|
28995
|
+
* The overall CPU sampling duration. Valid values: 10 to 60. Unit: seconds.
|
|
28996
|
+
*
|
|
28233
28997
|
* @example
|
|
28234
28998
|
* 60
|
|
28235
28999
|
*/
|
|
28236
29000
|
cpuSampleDuration?: number;
|
|
28237
29001
|
/**
|
|
29002
|
+
* @remarks
|
|
29003
|
+
* The single-CPU usage. Valid values: 70 to 100. Unit: %.
|
|
29004
|
+
*
|
|
28238
29005
|
* @example
|
|
28239
29006
|
* 70
|
|
28240
29007
|
*/
|
|
28241
29008
|
cpuSingleRateLimit?: number;
|
|
28242
29009
|
/**
|
|
29010
|
+
* @remarks
|
|
29011
|
+
* Specifies whether to display the peripheral connection prompt.
|
|
29012
|
+
*
|
|
28243
29013
|
* @example
|
|
28244
29014
|
* off
|
|
28245
29015
|
*/
|
|
28246
29016
|
deviceConnectHint?: string;
|
|
29017
|
+
/**
|
|
29018
|
+
* @remarks
|
|
29019
|
+
* The device redirection rules.
|
|
29020
|
+
*/
|
|
28247
29021
|
deviceRedirects?: CreateCenterPolicyRequestDeviceRedirects[];
|
|
29022
|
+
/**
|
|
29023
|
+
* @remarks
|
|
29024
|
+
* The custom peripheral rules.
|
|
29025
|
+
*/
|
|
28248
29026
|
deviceRules?: CreateCenterPolicyRequestDeviceRules[];
|
|
28249
29027
|
/**
|
|
29028
|
+
* @remarks
|
|
29029
|
+
* Specifies whether to retain the session upon disconnection.
|
|
29030
|
+
*
|
|
29031
|
+
* > This parameter applies only to cloud application policies.
|
|
29032
|
+
*
|
|
29033
|
+
* Valid values:
|
|
29034
|
+
*
|
|
29035
|
+
* * customTime: retains the session for a specified time period.
|
|
29036
|
+
* * persistent: retains the session permanently.
|
|
29037
|
+
*
|
|
28250
29038
|
* @example
|
|
28251
29039
|
* customTime
|
|
28252
29040
|
*/
|
|
28253
29041
|
disconnectKeepSession?: string;
|
|
28254
29042
|
/**
|
|
29043
|
+
* @remarks
|
|
29044
|
+
* The retention period of the session after disconnection. Valid values: 30 to 7200. Unit: seconds.
|
|
29045
|
+
*
|
|
29046
|
+
* > This parameter applies only to cloud application policies.
|
|
29047
|
+
*
|
|
28255
29048
|
* @example
|
|
28256
29049
|
* 30
|
|
28257
29050
|
*/
|
|
28258
29051
|
disconnectKeepSessionTime?: number;
|
|
28259
29052
|
/**
|
|
29053
|
+
* @remarks
|
|
29054
|
+
* The display mode.
|
|
29055
|
+
*
|
|
29056
|
+
* Valid values:
|
|
29057
|
+
*
|
|
29058
|
+
* * clientCustom: suitable for user-defined scenarios.
|
|
29059
|
+
* * adminOffice: suitable for daily office scenarios.
|
|
29060
|
+
* * adminDesign: suitable for design and 3D application scenarios.
|
|
29061
|
+
* * adminCustom: suitable for admin-customized scenarios.
|
|
29062
|
+
*
|
|
28260
29063
|
* @example
|
|
28261
29064
|
* clientCustom
|
|
28262
29065
|
*/
|
|
28263
29066
|
displayMode?: string;
|
|
29067
|
+
/**
|
|
29068
|
+
* @remarks
|
|
29069
|
+
* The domain resolution policies.
|
|
29070
|
+
*/
|
|
28264
29071
|
domainResolveRule?: CreateCenterPolicyRequestDomainResolveRule[];
|
|
28265
29072
|
/**
|
|
29073
|
+
* @remarks
|
|
29074
|
+
* Specifies whether to enforce the domain resolution policy.
|
|
29075
|
+
*
|
|
29076
|
+
* Valid values:
|
|
29077
|
+
*
|
|
29078
|
+
* * off: disables the domain resolution policy.
|
|
29079
|
+
* * on: enables the domain resolution policy.
|
|
29080
|
+
*
|
|
28266
29081
|
* @example
|
|
28267
29082
|
* off
|
|
28268
29083
|
*/
|
|
28269
29084
|
domainResolveRuleType?: string;
|
|
28270
29085
|
/**
|
|
29086
|
+
* @remarks
|
|
29087
|
+
* Specifies whether to enforce session bandwidth limit.
|
|
29088
|
+
*
|
|
29089
|
+
* Valid values:
|
|
29090
|
+
*
|
|
29091
|
+
* * off: doesn\\"t enforce session bandwidth limit.
|
|
29092
|
+
* * on: enforces session bandwidth limit.
|
|
29093
|
+
*
|
|
28271
29094
|
* @example
|
|
28272
29095
|
* off
|
|
28273
29096
|
*/
|
|
28274
29097
|
enableSessionRateLimiting?: string;
|
|
28275
29098
|
/**
|
|
29099
|
+
* @remarks
|
|
29100
|
+
* Specifies whether to enable end users to request administrator help.
|
|
29101
|
+
*
|
|
29102
|
+
* Valid values:
|
|
29103
|
+
*
|
|
29104
|
+
* * off: disables end users to request administrator help.
|
|
29105
|
+
* * on: enables end users to request administrator help.
|
|
29106
|
+
*
|
|
28276
29107
|
* @example
|
|
28277
29108
|
* off
|
|
28278
29109
|
*/
|
|
28279
29110
|
endUserApplyAdminCoordinate?: string;
|
|
28280
29111
|
/**
|
|
29112
|
+
* @remarks
|
|
29113
|
+
* Specifies whether end users in the same workspace can share cloud computers.
|
|
29114
|
+
*
|
|
29115
|
+
* Valid values:
|
|
29116
|
+
*
|
|
29117
|
+
* * off: End users in the same workspace cannot share cloud computers.
|
|
29118
|
+
* * on: End users in the same workspace can share cloud computers
|
|
29119
|
+
*
|
|
28281
29120
|
* @example
|
|
28282
29121
|
* off
|
|
28283
29122
|
*/
|
|
28284
29123
|
endUserGroupCoordinate?: string;
|
|
28285
29124
|
/**
|
|
29125
|
+
* @remarks
|
|
29126
|
+
* Specifies whether to enable file transfer.
|
|
29127
|
+
*
|
|
28286
29128
|
* @example
|
|
28287
29129
|
* off
|
|
28288
29130
|
*/
|
|
28289
29131
|
fileMigrate?: string;
|
|
28290
29132
|
/**
|
|
29133
|
+
* @remarks
|
|
29134
|
+
* Specifies whether to enable image quality control. This feature is highly recommended for professional design scenarios where computer performance and user experience are critical.
|
|
29135
|
+
*
|
|
29136
|
+
* Valid values:
|
|
29137
|
+
*
|
|
29138
|
+
* * off: doesn\\"t enable image quality control.
|
|
29139
|
+
* * on: enables image quality control.
|
|
29140
|
+
*
|
|
28291
29141
|
* @example
|
|
28292
29142
|
* off
|
|
28293
29143
|
*/
|
|
28294
29144
|
gpuAcceleration?: string;
|
|
28295
29145
|
/**
|
|
29146
|
+
* @remarks
|
|
29147
|
+
* The file transfer policy on the web client.
|
|
29148
|
+
*
|
|
29149
|
+
* Valid values:
|
|
29150
|
+
*
|
|
29151
|
+
* * all: File upload and download are supported.
|
|
29152
|
+
* * download: Only file download is supported.
|
|
29153
|
+
* * upload: Only file upload is supported.
|
|
29154
|
+
* * off (default): File upload and download are not supported.
|
|
29155
|
+
*
|
|
28296
29156
|
* @example
|
|
28297
29157
|
* off
|
|
28298
29158
|
*/
|
|
28299
29159
|
html5FileTransfer?: string;
|
|
28300
29160
|
/**
|
|
29161
|
+
* @remarks
|
|
29162
|
+
* The network communication protocol.
|
|
29163
|
+
*
|
|
29164
|
+
* Valid values:
|
|
29165
|
+
*
|
|
29166
|
+
* * tcp: TCP is used when UDP/AST is restricted.
|
|
29167
|
+
* * rtc: AST is used for high-frequency audio and video streaming.
|
|
29168
|
+
* * auto: UTO enables automatic switch between AST and UDP modes based on desktop content.
|
|
29169
|
+
* * both: UDP is ideal for office and HD graphic design use.
|
|
29170
|
+
*
|
|
28301
29171
|
* @example
|
|
28302
29172
|
* both
|
|
28303
29173
|
*/
|
|
28304
29174
|
internetCommunicationProtocol?: string;
|
|
28305
29175
|
/**
|
|
29176
|
+
* @remarks
|
|
29177
|
+
* The read/write permissions on the on-premises drive.
|
|
29178
|
+
*
|
|
29179
|
+
* Valid values:
|
|
29180
|
+
*
|
|
29181
|
+
* * read: read-only. Cloud computers support on-premises disk mapping, but only for reading (copying) files—not modifying them.
|
|
29182
|
+
* * readwrite: read and write. Cloud computers support on-premises disk mapping, allowing you to read (copy) and write (modify) on-premises files.
|
|
29183
|
+
* * off (default): none. Cloud computers don\\"t support on-premises disk mapping.
|
|
29184
|
+
*
|
|
28306
29185
|
* @example
|
|
28307
29186
|
* off
|
|
28308
29187
|
*/
|
|
28309
29188
|
localDrive?: string;
|
|
28310
29189
|
/**
|
|
29190
|
+
* @remarks
|
|
29191
|
+
* The maximum duration to retry reconnecting to cloud computers after an unexpected disconnection (non-human causes). Valid values: 30 to 7200. Unit: seconds.
|
|
29192
|
+
*
|
|
28311
29193
|
* @example
|
|
28312
29194
|
* 120
|
|
28313
29195
|
*/
|
|
28314
29196
|
maxReconnectTime?: number;
|
|
28315
29197
|
/**
|
|
29198
|
+
* @remarks
|
|
29199
|
+
* The memory underclocking duration per process. Valid values: 30 to 120. Unit: seconds.
|
|
29200
|
+
*
|
|
28316
29201
|
* @example
|
|
28317
29202
|
* 40
|
|
28318
29203
|
*/
|
|
28319
29204
|
memoryDownGradeDuration?: number;
|
|
29205
|
+
/**
|
|
29206
|
+
* @remarks
|
|
29207
|
+
* The memory processors.
|
|
29208
|
+
*/
|
|
28320
29209
|
memoryProcessors?: string[];
|
|
28321
29210
|
/**
|
|
29211
|
+
* @remarks
|
|
29212
|
+
* The memory spike protection policy.
|
|
29213
|
+
*
|
|
29214
|
+
* Valid values:
|
|
29215
|
+
*
|
|
29216
|
+
* * off: disables memory spike protection.
|
|
29217
|
+
* * on: enables memory spike protection.
|
|
29218
|
+
*
|
|
28322
29219
|
* @example
|
|
28323
29220
|
* off
|
|
28324
29221
|
*/
|
|
28325
29222
|
memoryProtectedMode?: string;
|
|
28326
29223
|
/**
|
|
29224
|
+
* @remarks
|
|
29225
|
+
* The overall memory usage. Valid values: 70 to 90. Unit: %.
|
|
29226
|
+
*
|
|
28327
29227
|
* @example
|
|
28328
29228
|
* 70
|
|
28329
29229
|
*/
|
|
28330
29230
|
memoryRateLimit?: number;
|
|
28331
29231
|
/**
|
|
29232
|
+
* @remarks
|
|
29233
|
+
* The overall memory sampling duration. Valid values: 30 to 60. Unit: seconds.
|
|
29234
|
+
*
|
|
28332
29235
|
* @example
|
|
28333
29236
|
* 40
|
|
28334
29237
|
*/
|
|
28335
29238
|
memorySampleDuration?: number;
|
|
28336
29239
|
/**
|
|
29240
|
+
* @remarks
|
|
29241
|
+
* The memory usage per process. Valid values: 30 to 60. Unit: %.
|
|
29242
|
+
*
|
|
28337
29243
|
* @example
|
|
28338
29244
|
* 40
|
|
28339
29245
|
*/
|
|
28340
29246
|
memorySingleRateLimit?: number;
|
|
28341
29247
|
/**
|
|
29248
|
+
* @remarks
|
|
29249
|
+
* Specifies whether to display the Restart button in the DesktopAssistant menu when end users connect to cloud computers from mobile clients (Android clients and iOS clients).
|
|
29250
|
+
*
|
|
29251
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
29252
|
+
*
|
|
29253
|
+
* Valid values:
|
|
29254
|
+
*
|
|
29255
|
+
* * off: doesn\\"t display the Restart button in the DesktopAssistant menu.
|
|
29256
|
+
* * on: displays the Restart button in the DesktopAssistant menu.
|
|
29257
|
+
*
|
|
28342
29258
|
* @example
|
|
28343
29259
|
* off
|
|
28344
29260
|
*/
|
|
28345
29261
|
mobileRestart?: string;
|
|
28346
29262
|
/**
|
|
29263
|
+
* @remarks
|
|
29264
|
+
* Specifies whether to display the Stop button in the DesktopAssistant menu when end users connect to cloud computers from mobile clients (Android clients and iOS clients).
|
|
29265
|
+
*
|
|
29266
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
29267
|
+
*
|
|
29268
|
+
* Valid values:
|
|
29269
|
+
*
|
|
29270
|
+
* * off: doesn\\"t display the Stop button in the DesktopAssistant menu.
|
|
29271
|
+
* * on: displays the Stop button in the DesktopAssistant menu.
|
|
29272
|
+
*
|
|
28347
29273
|
* @example
|
|
28348
29274
|
* off
|
|
28349
29275
|
*/
|
|
28350
29276
|
mobileShutdown?: string;
|
|
28351
29277
|
/**
|
|
28352
29278
|
* @remarks
|
|
29279
|
+
* The policy name.
|
|
29280
|
+
*
|
|
28353
29281
|
* This parameter is required.
|
|
28354
29282
|
*
|
|
28355
29283
|
* @example
|
|
@@ -28357,82 +29285,193 @@ export class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
28357
29285
|
*/
|
|
28358
29286
|
name?: string;
|
|
28359
29287
|
/**
|
|
29288
|
+
* @remarks
|
|
29289
|
+
* The network redirection policy.
|
|
29290
|
+
*
|
|
29291
|
+
* > This parameter is in private preview and only available to specific users.
|
|
29292
|
+
*
|
|
29293
|
+
* Valid values:
|
|
29294
|
+
*
|
|
29295
|
+
* * all: enables network redirection globally.
|
|
29296
|
+
* * off (default): disables network redirection.
|
|
29297
|
+
* * on: enables the whitelist mode.
|
|
29298
|
+
*
|
|
28360
29299
|
* @example
|
|
28361
29300
|
* off
|
|
28362
29301
|
*/
|
|
28363
29302
|
netRedirect?: string;
|
|
29303
|
+
/**
|
|
29304
|
+
* @remarks
|
|
29305
|
+
* The network redirection policies.
|
|
29306
|
+
*
|
|
29307
|
+
* > This parameter is in private preview and only available to specific users.
|
|
29308
|
+
*/
|
|
28364
29309
|
netRedirectRule?: CreateCenterPolicyRequestNetRedirectRule[];
|
|
28365
29310
|
/**
|
|
29311
|
+
* @remarks
|
|
29312
|
+
* Specifies whether to enforce a disconnection upon inactivity.
|
|
29313
|
+
*
|
|
29314
|
+
* > This parameter applies only to cloud application policies.
|
|
29315
|
+
*
|
|
29316
|
+
* Valid values:
|
|
29317
|
+
*
|
|
29318
|
+
* * off: doesn\\"t enforce a disconnection upon inactivity.
|
|
29319
|
+
* * on: enforces a disconnection upon inactivity.
|
|
29320
|
+
*
|
|
28366
29321
|
* @example
|
|
28367
29322
|
* off
|
|
28368
29323
|
*/
|
|
28369
29324
|
noOperationDisconnect?: string;
|
|
28370
29325
|
/**
|
|
29326
|
+
* @remarks
|
|
29327
|
+
* The duration of disconnection after inactivity. Valid values: 120 to 7200. Unit: seconds.
|
|
29328
|
+
*
|
|
29329
|
+
* > This parameter applies only to cloud application policies.
|
|
29330
|
+
*
|
|
28371
29331
|
* @example
|
|
28372
29332
|
* 120
|
|
28373
29333
|
*/
|
|
28374
29334
|
noOperationDisconnectTime?: number;
|
|
28375
29335
|
/**
|
|
29336
|
+
* @remarks
|
|
29337
|
+
* The printer redirection policy. This parameter only applies if DeviceRedirects does not include a printer redirection policy.
|
|
29338
|
+
*
|
|
29339
|
+
* Valid values:
|
|
29340
|
+
*
|
|
29341
|
+
* * deviceRedirect (default):enables device redirection.
|
|
29342
|
+
* * usbRedirect: enables USB redirection.
|
|
29343
|
+
* * off: disables any type of redirection.
|
|
29344
|
+
*
|
|
28376
29345
|
* @example
|
|
28377
29346
|
* off
|
|
28378
29347
|
*/
|
|
28379
29348
|
printerRedirect?: string;
|
|
28380
29349
|
/**
|
|
29350
|
+
* @remarks
|
|
29351
|
+
* Specifies whether to enable image quality enhancement for design and 3D applications.
|
|
29352
|
+
*
|
|
29353
|
+
* Valid values:
|
|
29354
|
+
*
|
|
29355
|
+
* * off: doesn\\"t enable image quality enhancement for design and 3D applications.
|
|
29356
|
+
* * on: enables image quality enhancement for design and 3D applications.
|
|
29357
|
+
*
|
|
28381
29358
|
* @example
|
|
28382
29359
|
* off
|
|
28383
29360
|
*/
|
|
28384
29361
|
qualityEnhancement?: string;
|
|
28385
29362
|
/**
|
|
29363
|
+
* @remarks
|
|
29364
|
+
* The duration of screen recording after the specified event is detected. Unit: minutes. Valid values: 10 to 60.
|
|
29365
|
+
*
|
|
28386
29366
|
* @example
|
|
28387
29367
|
* 10
|
|
28388
29368
|
*/
|
|
28389
29369
|
recordEventDuration?: number;
|
|
29370
|
+
/**
|
|
29371
|
+
* @remarks
|
|
29372
|
+
* The absolute paths to screen recording files.
|
|
29373
|
+
*/
|
|
28390
29374
|
recordEventFilePaths?: string[];
|
|
29375
|
+
/**
|
|
29376
|
+
* @remarks
|
|
29377
|
+
* The absolute paths to screen recording registries.
|
|
29378
|
+
*/
|
|
28391
29379
|
recordEventRegisters?: string[];
|
|
29380
|
+
/**
|
|
29381
|
+
* @remarks
|
|
29382
|
+
* The event that triggers screen recording.
|
|
29383
|
+
*/
|
|
28392
29384
|
recordEvents?: string[];
|
|
28393
29385
|
/**
|
|
29386
|
+
* @remarks
|
|
29387
|
+
* The screen recording policy.
|
|
29388
|
+
*
|
|
29389
|
+
* Valid values:
|
|
29390
|
+
*
|
|
29391
|
+
* * period: Screen recording occurs at set intervals.
|
|
29392
|
+
* * session: Screen recording is limited to sessions only.
|
|
29393
|
+
* * off: Screen recording is disabled.
|
|
29394
|
+
* * alltime: Screen recording is always enabled.
|
|
29395
|
+
*
|
|
28394
29396
|
* @example
|
|
28395
29397
|
* off
|
|
28396
29398
|
*/
|
|
28397
29399
|
recording?: string;
|
|
28398
29400
|
/**
|
|
29401
|
+
* @remarks
|
|
29402
|
+
* Specifies whether to record audio files generated on cloud computers.
|
|
29403
|
+
*
|
|
29404
|
+
* Valid values:
|
|
29405
|
+
*
|
|
29406
|
+
* * off: doesn\\"t record audio files generated on cloud computers.
|
|
29407
|
+
* * on: records audio files generated on cloud computers.
|
|
29408
|
+
*
|
|
28399
29409
|
* @example
|
|
28400
29410
|
* on
|
|
28401
29411
|
*/
|
|
28402
29412
|
recordingAudio?: string;
|
|
28403
29413
|
/**
|
|
29414
|
+
* @remarks
|
|
29415
|
+
* The frame rate of screen recording. Screen recordings are split based on the specified duration and uploaded to Object Storage Service (OSS) buckets. If a file reaches 300 MB, the system prioritizes rolling updates for that file. Valid values: 10 to 60
|
|
29416
|
+
*
|
|
28404
29417
|
* @example
|
|
28405
29418
|
* 10
|
|
28406
29419
|
*/
|
|
28407
29420
|
recordingDuration?: number;
|
|
28408
29421
|
/**
|
|
29422
|
+
* @remarks
|
|
29423
|
+
* The screen recording\\"s end time in HH:MM:SS format. The value is meaningful only if `Recording` is set to `PERIOD`.
|
|
29424
|
+
*
|
|
28409
29425
|
* @example
|
|
28410
29426
|
* 08:59:00
|
|
28411
29427
|
*/
|
|
28412
29428
|
recordingEndTime?: string;
|
|
28413
29429
|
/**
|
|
29430
|
+
* @remarks
|
|
29431
|
+
* The retention period of the screen recording file. Valid values: 1 to 180. Unit: days.
|
|
29432
|
+
*
|
|
28414
29433
|
* @example
|
|
28415
29434
|
* 15
|
|
28416
29435
|
*/
|
|
28417
29436
|
recordingExpires?: number;
|
|
28418
29437
|
/**
|
|
29438
|
+
* @remarks
|
|
29439
|
+
* The frame rate of screen recording. Unit: fps.
|
|
29440
|
+
*
|
|
28419
29441
|
* @example
|
|
28420
29442
|
* 2
|
|
28421
29443
|
*/
|
|
28422
29444
|
recordingFps?: string;
|
|
28423
29445
|
/**
|
|
29446
|
+
* @remarks
|
|
29447
|
+
* The screen recording\\"s start time in HH:MM:SS format. The value is meaningful only if `Recording` is set to `PERIOD`.
|
|
29448
|
+
*
|
|
28424
29449
|
* @example
|
|
28425
29450
|
* 08:00:00
|
|
28426
29451
|
*/
|
|
28427
29452
|
recordingStartTime?: string;
|
|
28428
29453
|
/**
|
|
29454
|
+
* @remarks
|
|
29455
|
+
* Specifies whether to notify end users when screen recording is enabled.
|
|
29456
|
+
*
|
|
29457
|
+
* Valid values:
|
|
29458
|
+
*
|
|
29459
|
+
* * off: doesn\\"t notify end users when screen recording is enabled.
|
|
29460
|
+
* * on: notifies end users when screen recording is enabled.
|
|
29461
|
+
*
|
|
28429
29462
|
* @example
|
|
28430
29463
|
* off
|
|
28431
29464
|
*/
|
|
28432
29465
|
recordingUserNotify?: string;
|
|
29466
|
+
/**
|
|
29467
|
+
* @remarks
|
|
29468
|
+
* The notification sent to end users when screen recording is enabled.
|
|
29469
|
+
*/
|
|
28433
29470
|
recordingUserNotifyMessage?: string;
|
|
28434
29471
|
/**
|
|
28435
29472
|
* @remarks
|
|
29473
|
+
* The region ID. Set the value to cn-shanghai.
|
|
29474
|
+
*
|
|
28436
29475
|
* This parameter is required.
|
|
28437
29476
|
*
|
|
28438
29477
|
* @example
|
|
@@ -28440,32 +29479,65 @@ export class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
28440
29479
|
*/
|
|
28441
29480
|
regionId?: string;
|
|
28442
29481
|
/**
|
|
29482
|
+
* @remarks
|
|
29483
|
+
* The keyboard and mouse control permissions during remote assistance.
|
|
29484
|
+
*
|
|
29485
|
+
* Valid values:
|
|
29486
|
+
*
|
|
29487
|
+
* * optionalControl: By default, keyboard and mouse control is disabled during remote assistance. You can request permissions as needed.
|
|
29488
|
+
* * fullControl: Keyboard and mouse control is enabled during remote assistance.
|
|
29489
|
+
* * disableControl: Keyboard and mouse control is disabled during remote assistance.
|
|
29490
|
+
*
|
|
28443
29491
|
* @example
|
|
28444
29492
|
* fullControl
|
|
28445
29493
|
*/
|
|
28446
29494
|
remoteCoordinate?: string;
|
|
28447
29495
|
/**
|
|
29496
|
+
* @remarks
|
|
29497
|
+
* The computer reset setting.
|
|
29498
|
+
*
|
|
28448
29499
|
* @example
|
|
28449
29500
|
* off
|
|
28450
29501
|
*/
|
|
28451
29502
|
resetDesktop?: string;
|
|
28452
29503
|
/**
|
|
29504
|
+
* @remarks
|
|
29505
|
+
* The height of the resolution. Unit: pixel. Valid values for cloud applications: 500 to 50000. Valid values for cloud computers: 480 to 4096.
|
|
29506
|
+
*
|
|
28453
29507
|
* @example
|
|
28454
29508
|
* 1280
|
|
28455
29509
|
*/
|
|
28456
29510
|
resolutionHeight?: number;
|
|
28457
29511
|
/**
|
|
29512
|
+
* @remarks
|
|
29513
|
+
* The resolution type.
|
|
29514
|
+
*
|
|
29515
|
+
* Valid values:
|
|
29516
|
+
*
|
|
29517
|
+
* * adaptive: adaptive resolution.
|
|
29518
|
+
* * customer: fixed resolution.
|
|
29519
|
+
*
|
|
28458
29520
|
* @example
|
|
28459
29521
|
* adaptive
|
|
28460
29522
|
*/
|
|
28461
29523
|
resolutionModel?: string;
|
|
28462
29524
|
/**
|
|
29525
|
+
* @remarks
|
|
29526
|
+
* The width of the resolution. Unit: pixel. Valid values for cloud applications: 500 to 50000. Valid values for cloud computers: 480 to 4096.
|
|
29527
|
+
*
|
|
28463
29528
|
* @example
|
|
28464
29529
|
* 720
|
|
28465
29530
|
*/
|
|
28466
29531
|
resolutionWidth?: number;
|
|
28467
29532
|
/**
|
|
28468
29533
|
* @remarks
|
|
29534
|
+
* The resource type.
|
|
29535
|
+
*
|
|
29536
|
+
* Valid values:
|
|
29537
|
+
*
|
|
29538
|
+
* * app: cloud applications.
|
|
29539
|
+
* * Desktop: cloud computers.
|
|
29540
|
+
*
|
|
28469
29541
|
* This parameter is required.
|
|
28470
29542
|
*
|
|
28471
29543
|
* @example
|
|
@@ -28473,153 +29545,345 @@ export class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
28473
29545
|
*/
|
|
28474
29546
|
resourceType?: string;
|
|
28475
29547
|
/**
|
|
29548
|
+
* @remarks
|
|
29549
|
+
* The effective scope of the policy.
|
|
29550
|
+
*
|
|
29551
|
+
* Valid values:
|
|
29552
|
+
*
|
|
29553
|
+
* * IP: The policy applies to specific IP addresses.
|
|
29554
|
+
* * GLOBAL: The policy applies globally.
|
|
29555
|
+
*
|
|
28476
29556
|
* @example
|
|
28477
29557
|
* GLOBAL
|
|
28478
29558
|
*/
|
|
28479
29559
|
scope?: string;
|
|
29560
|
+
/**
|
|
29561
|
+
* @remarks
|
|
29562
|
+
* The effective scopes. This parameter is required when `Scope` is set to `IP`. If `Scope` is set to `IP`, this parameter doesn\\"t take effect.
|
|
29563
|
+
*/
|
|
28480
29564
|
scopeValue?: string[];
|
|
28481
29565
|
/**
|
|
29566
|
+
* @remarks
|
|
29567
|
+
* The bandwidth peak of the session. Valid values: 2000 to 100000.
|
|
29568
|
+
*
|
|
28482
29569
|
* @example
|
|
28483
29570
|
* 2000
|
|
28484
29571
|
*/
|
|
28485
29572
|
sessionMaxRateKbps?: number;
|
|
28486
29573
|
/**
|
|
29574
|
+
* @remarks
|
|
29575
|
+
* Specifies whether to enable smoothness enhancement for daily office use.
|
|
29576
|
+
*
|
|
29577
|
+
* Valid values:
|
|
29578
|
+
*
|
|
29579
|
+
* * off: doesn\\"t enable smoothness enhancement for daily office use.
|
|
29580
|
+
* * on: enables smoothness enhancement for daily office use.
|
|
29581
|
+
*
|
|
28487
29582
|
* @example
|
|
28488
29583
|
* off
|
|
28489
29584
|
*/
|
|
28490
29585
|
smoothEnhancement?: string;
|
|
28491
29586
|
/**
|
|
29587
|
+
* @remarks
|
|
29588
|
+
* Specifies whether to display the metric status entry in the DesktopAssistant menu.
|
|
29589
|
+
*
|
|
29590
|
+
* Valid values:
|
|
29591
|
+
*
|
|
29592
|
+
* * off: doesn\\"t display the metric status entry in the DesktopAssistant menu.
|
|
29593
|
+
* * on: displays the metric status entry in the DesktopAssistant menu.
|
|
29594
|
+
*
|
|
28492
29595
|
* @example
|
|
28493
29596
|
* off
|
|
28494
29597
|
*/
|
|
28495
29598
|
statusMonitor?: string;
|
|
28496
29599
|
/**
|
|
29600
|
+
* @remarks
|
|
29601
|
+
* The streaming mode.
|
|
29602
|
+
*
|
|
29603
|
+
* Valid values:
|
|
29604
|
+
*
|
|
29605
|
+
* * intelligent
|
|
29606
|
+
* * smooth
|
|
29607
|
+
*
|
|
28497
29608
|
* @example
|
|
28498
29609
|
* smooth
|
|
28499
29610
|
*/
|
|
28500
29611
|
streamingMode?: string;
|
|
28501
29612
|
/**
|
|
29613
|
+
* @remarks
|
|
29614
|
+
* The target frame rate. Valid values: 10 to 60.
|
|
29615
|
+
*
|
|
28502
29616
|
* @example
|
|
28503
29617
|
* 30
|
|
28504
29618
|
*/
|
|
28505
29619
|
targetFps?: number;
|
|
28506
29620
|
/**
|
|
29621
|
+
* @remarks
|
|
29622
|
+
* Specifies whether to display the application taskbar.
|
|
29623
|
+
*
|
|
29624
|
+
* > This parameter applies only to cloud application policies.
|
|
29625
|
+
*
|
|
29626
|
+
* Valid values:
|
|
29627
|
+
*
|
|
29628
|
+
* * off: doesn\\"t display the application taskbar.
|
|
29629
|
+
* * on: displays the application taskbar.
|
|
29630
|
+
*
|
|
28507
29631
|
* @example
|
|
28508
29632
|
* off
|
|
28509
29633
|
*/
|
|
28510
29634
|
taskbar?: string;
|
|
28511
29635
|
/**
|
|
29636
|
+
* @remarks
|
|
29637
|
+
* Specifies whether to enable USB redirection.
|
|
29638
|
+
*
|
|
29639
|
+
* Valid values:
|
|
29640
|
+
*
|
|
29641
|
+
* * off (default): doesn\\"t enable USB redirection.
|
|
29642
|
+
* * on: enables USB redirection.
|
|
29643
|
+
*
|
|
28512
29644
|
* @example
|
|
28513
29645
|
* off
|
|
28514
29646
|
*/
|
|
28515
29647
|
usbRedirect?: string;
|
|
29648
|
+
/**
|
|
29649
|
+
* @remarks
|
|
29650
|
+
* The USB redirection rules.
|
|
29651
|
+
*/
|
|
28516
29652
|
usbSupplyRedirectRule?: CreateCenterPolicyRequestUsbSupplyRedirectRule[];
|
|
28517
29653
|
/**
|
|
29654
|
+
* @remarks
|
|
29655
|
+
* The average bitrate for video encoding. Valid values: 1000 to 50000.
|
|
29656
|
+
*
|
|
28518
29657
|
* @example
|
|
28519
29658
|
* 2000
|
|
28520
29659
|
*/
|
|
28521
29660
|
videoEncAvgKbps?: number;
|
|
28522
29661
|
/**
|
|
29662
|
+
* @remarks
|
|
29663
|
+
* The maximum QP for video files. Higher QP values result in lower video quality. Valid values: 0 to 51.
|
|
29664
|
+
*
|
|
28523
29665
|
* @example
|
|
28524
29666
|
* 30
|
|
28525
29667
|
*/
|
|
28526
29668
|
videoEncMaxQP?: number;
|
|
28527
29669
|
/**
|
|
29670
|
+
* @remarks
|
|
29671
|
+
* The minimum quantizer parameter (QP) for video files. A lower QP means better video quality. Valid values: 0 to 51.
|
|
29672
|
+
*
|
|
28528
29673
|
* @example
|
|
28529
29674
|
* 30
|
|
28530
29675
|
*/
|
|
28531
29676
|
videoEncMinQP?: number;
|
|
28532
29677
|
/**
|
|
29678
|
+
* @remarks
|
|
29679
|
+
* The peak bitrate for video encoding. Valid values: 1000 to 50000.
|
|
29680
|
+
*
|
|
28533
29681
|
* @example
|
|
28534
29682
|
* 2000
|
|
28535
29683
|
*/
|
|
28536
29684
|
videoEncPeakKbps?: number;
|
|
28537
29685
|
/**
|
|
29686
|
+
* @remarks
|
|
29687
|
+
* The video encoding policy.
|
|
29688
|
+
*
|
|
29689
|
+
* Valid values:
|
|
29690
|
+
*
|
|
29691
|
+
* * qualityFirst: prioritizes image quality.
|
|
29692
|
+
* * bandwidthFirst: prioritizes bandwidth.
|
|
29693
|
+
*
|
|
28538
29694
|
* @example
|
|
28539
29695
|
* qualityFirst
|
|
28540
29696
|
*/
|
|
28541
29697
|
videoEncPolicy?: string;
|
|
28542
29698
|
/**
|
|
29699
|
+
* @remarks
|
|
29700
|
+
* The multimedia redirection policy.
|
|
29701
|
+
*
|
|
29702
|
+
* Valid values:
|
|
29703
|
+
*
|
|
29704
|
+
* * off: disables multimedia redirection.
|
|
29705
|
+
* * on: enables multimedia redirection.
|
|
29706
|
+
*
|
|
28543
29707
|
* @example
|
|
28544
29708
|
* on
|
|
28545
29709
|
*/
|
|
28546
29710
|
videoRedirect?: string;
|
|
28547
29711
|
/**
|
|
29712
|
+
* @remarks
|
|
29713
|
+
* The image display quality.
|
|
29714
|
+
*
|
|
29715
|
+
* Valid values:
|
|
29716
|
+
*
|
|
29717
|
+
* * high: high-definition (HD).
|
|
29718
|
+
* * low: smoothness.
|
|
29719
|
+
* * lossless: no quality loss.
|
|
29720
|
+
* * medium (default): scenario-specific adaptation.
|
|
29721
|
+
*
|
|
28548
29722
|
* @example
|
|
28549
29723
|
* low
|
|
28550
29724
|
*/
|
|
28551
29725
|
visualQuality?: string;
|
|
28552
29726
|
/**
|
|
29727
|
+
* @remarks
|
|
29728
|
+
* The watermark policy.
|
|
29729
|
+
*
|
|
29730
|
+
* Valid values:
|
|
29731
|
+
*
|
|
29732
|
+
* * blind: displays invisible watermarks.
|
|
29733
|
+
* * off (default): displays no watermark.
|
|
29734
|
+
* * on: displays visible watermarks.
|
|
29735
|
+
*
|
|
28553
29736
|
* @example
|
|
28554
29737
|
* off
|
|
28555
29738
|
*/
|
|
28556
29739
|
watermark?: string;
|
|
28557
29740
|
/**
|
|
29741
|
+
* @remarks
|
|
29742
|
+
* Specifies whether to enable anti-screen capture for invisible watermarks.
|
|
29743
|
+
*
|
|
29744
|
+
* Valid values:
|
|
29745
|
+
*
|
|
29746
|
+
* * off: disables anti-screen capture for invisible watermarks.
|
|
29747
|
+
* * on: enables anti-screen capture for invisible watermarks.
|
|
29748
|
+
*
|
|
28558
29749
|
* @example
|
|
28559
29750
|
* off
|
|
28560
29751
|
*/
|
|
28561
29752
|
watermarkAntiCam?: string;
|
|
28562
29753
|
/**
|
|
29754
|
+
* @remarks
|
|
29755
|
+
* The font color of the watermark. Valid values: 0 to 16777215.
|
|
29756
|
+
*
|
|
28563
29757
|
* @example
|
|
28564
29758
|
* 0
|
|
28565
29759
|
*/
|
|
28566
29760
|
watermarkColor?: number;
|
|
28567
29761
|
/**
|
|
29762
|
+
* @remarks
|
|
29763
|
+
* The number of watermark columns. Valid values: 3 to 10.
|
|
29764
|
+
*
|
|
28568
29765
|
* @example
|
|
28569
29766
|
* 3
|
|
28570
29767
|
*/
|
|
28571
29768
|
watermarkColumnAmount?: number;
|
|
28572
29769
|
/**
|
|
29770
|
+
* @remarks
|
|
29771
|
+
* If you set `WatermarkType` to `custom`, you must also specify `WatermarkCustomText`.
|
|
29772
|
+
*
|
|
28573
29773
|
* @example
|
|
28574
29774
|
* test
|
|
28575
29775
|
*/
|
|
28576
29776
|
watermarkCustomText?: string;
|
|
28577
29777
|
/**
|
|
29778
|
+
* @remarks
|
|
29779
|
+
* The watermark rotation. Valid values: -10 to -30.
|
|
29780
|
+
*
|
|
28578
29781
|
* @example
|
|
28579
29782
|
* -10
|
|
28580
29783
|
*/
|
|
28581
29784
|
watermarkDegree?: number;
|
|
28582
29785
|
/**
|
|
29786
|
+
* @remarks
|
|
29787
|
+
* The font size of the watermark. Valid values: 10 to 20.
|
|
29788
|
+
*
|
|
28583
29789
|
* @example
|
|
28584
29790
|
* 10
|
|
28585
29791
|
*/
|
|
28586
29792
|
watermarkFontSize?: number;
|
|
28587
29793
|
/**
|
|
29794
|
+
* @remarks
|
|
29795
|
+
* The font style of the watermark.
|
|
29796
|
+
*
|
|
29797
|
+
* Valid values:
|
|
29798
|
+
*
|
|
29799
|
+
* * plain
|
|
29800
|
+
* * bold
|
|
29801
|
+
*
|
|
28588
29802
|
* @example
|
|
28589
29803
|
* plain
|
|
28590
29804
|
*/
|
|
28591
29805
|
watermarkFontStyle?: string;
|
|
28592
29806
|
/**
|
|
29807
|
+
* @remarks
|
|
29808
|
+
* The enhancement level for invisible watermarks.
|
|
29809
|
+
*
|
|
29810
|
+
* Valid values:
|
|
29811
|
+
*
|
|
29812
|
+
* * high
|
|
29813
|
+
* * low
|
|
29814
|
+
* * medium
|
|
29815
|
+
*
|
|
28593
29816
|
* @example
|
|
28594
29817
|
* medium
|
|
28595
29818
|
*/
|
|
28596
29819
|
watermarkPower?: string;
|
|
28597
29820
|
/**
|
|
29821
|
+
* @remarks
|
|
29822
|
+
* The number of watermark rows. Valid values: 3 to 10.
|
|
29823
|
+
*
|
|
28598
29824
|
* @example
|
|
28599
29825
|
* 3
|
|
28600
29826
|
*/
|
|
28601
29827
|
watermarkRowAmount?: number;
|
|
28602
29828
|
/**
|
|
29829
|
+
* @remarks
|
|
29830
|
+
* Specifies whether to enable security priority for invisible watermarks.
|
|
29831
|
+
*
|
|
29832
|
+
* Valid values:
|
|
29833
|
+
*
|
|
29834
|
+
* * off: disables security priority for invisible watermarks.
|
|
29835
|
+
* * on: enables security priority for invisible watermarks.
|
|
29836
|
+
*
|
|
28603
29837
|
* @example
|
|
28604
29838
|
* on
|
|
28605
29839
|
*/
|
|
28606
29840
|
watermarkSecurity?: string;
|
|
28607
29841
|
/**
|
|
29842
|
+
* @remarks
|
|
29843
|
+
* The watermark opacity. A higher value makes the watermark more opaque. Valid values: 10 to 100.
|
|
29844
|
+
*
|
|
28608
29845
|
* @example
|
|
28609
29846
|
* 10
|
|
28610
29847
|
*/
|
|
28611
29848
|
watermarkTransparencyValue?: number;
|
|
28612
29849
|
/**
|
|
29850
|
+
* @remarks
|
|
29851
|
+
* The watermark type. You can specify up to three types. Separate multiple values with commas (,).
|
|
29852
|
+
*
|
|
29853
|
+
* > If you provide `custom` as the value for this parameter, you must configure `WatermarkCustomText` to specify custom text.
|
|
29854
|
+
*
|
|
29855
|
+
* Valid values:
|
|
29856
|
+
*
|
|
29857
|
+
* * EndUserId: the username.
|
|
29858
|
+
* * Custom: the custom text.
|
|
29859
|
+
* * DesktopIp: the IP address of the cloud computer.
|
|
29860
|
+
* * ClientIp: the IP address of the client.
|
|
29861
|
+
* * HostName: the rightmost 15 digits of the cloud computer ID.
|
|
29862
|
+
* * ClientTime: the current time displayed on the cloud computer.
|
|
29863
|
+
*
|
|
28613
29864
|
* @example
|
|
28614
29865
|
* EndUserId,HostName,ClientTime
|
|
28615
29866
|
*/
|
|
28616
29867
|
watermarkType?: string;
|
|
28617
29868
|
/**
|
|
29869
|
+
* @remarks
|
|
29870
|
+
* Specifies whether to enable Cloud Computer Manager.
|
|
29871
|
+
*
|
|
28618
29872
|
* @example
|
|
28619
29873
|
* off
|
|
28620
29874
|
*/
|
|
28621
29875
|
wuyingKeeper?: string;
|
|
28622
29876
|
/**
|
|
29877
|
+
* @remarks
|
|
29878
|
+
* Specifies whether to display the Xiaoying AI Assistant option in the DesktopAssistant menu when end users connect to cloud computers via desktop clients (Windows and macOS).
|
|
29879
|
+
*
|
|
29880
|
+
* > This feature applies to only desktop clients of version 7.7.0 or later.
|
|
29881
|
+
*
|
|
29882
|
+
* Valid values:
|
|
29883
|
+
*
|
|
29884
|
+
* * off: doesn\\"t display the Xiaoying AI Assistant option in the DesktopAssistant menu.
|
|
29885
|
+
* * on: displays the Xiaoying AI Assistant option in the DesktopAssistant menu.
|
|
29886
|
+
*
|
|
28623
29887
|
* @example
|
|
28624
29888
|
* on
|
|
28625
29889
|
*/
|
|
@@ -28885,11 +30149,17 @@ export class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
28885
30149
|
|
|
28886
30150
|
export class CreateCenterPolicyResponseBody extends $dara.Model {
|
|
28887
30151
|
/**
|
|
30152
|
+
* @remarks
|
|
30153
|
+
* The cloud computer policy ID.
|
|
30154
|
+
*
|
|
28888
30155
|
* @example
|
|
28889
30156
|
* pg-gx2x1dhsmthe9****
|
|
28890
30157
|
*/
|
|
28891
30158
|
policyGroupId?: string;
|
|
28892
30159
|
/**
|
|
30160
|
+
* @remarks
|
|
30161
|
+
* The request ID.
|
|
30162
|
+
*
|
|
28893
30163
|
* @example
|
|
28894
30164
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
28895
30165
|
*/
|
|
@@ -30840,8 +32110,6 @@ export class CreateDesktopsRequest extends $dara.Model {
|
|
|
30840
32110
|
* @remarks
|
|
30841
32111
|
* The ID of the policy.
|
|
30842
32112
|
*
|
|
30843
|
-
* This parameter is required.
|
|
30844
|
-
*
|
|
30845
32113
|
* @example
|
|
30846
32114
|
* system-all-enabled-policy
|
|
30847
32115
|
*/
|
|
@@ -31294,8 +32562,6 @@ export class CreateDesktopsShrinkRequest extends $dara.Model {
|
|
|
31294
32562
|
* @remarks
|
|
31295
32563
|
* The ID of the policy.
|
|
31296
32564
|
*
|
|
31297
|
-
* This parameter is required.
|
|
31298
|
-
*
|
|
31299
32565
|
* @example
|
|
31300
32566
|
* system-all-enabled-policy
|
|
31301
32567
|
*/
|
|
@@ -37552,6 +38818,13 @@ export class DescribeCensResponse extends $dara.Model {
|
|
|
37552
38818
|
export class DescribeCenterPolicyListRequest extends $dara.Model {
|
|
37553
38819
|
/**
|
|
37554
38820
|
* @remarks
|
|
38821
|
+
* The business type.
|
|
38822
|
+
*
|
|
38823
|
+
* Valid values:
|
|
38824
|
+
*
|
|
38825
|
+
* * 1: public cloud.
|
|
38826
|
+
* * 8: commercial edition.
|
|
38827
|
+
*
|
|
37555
38828
|
* This parameter is required.
|
|
37556
38829
|
*
|
|
37557
38830
|
* @example
|
|
@@ -37559,18 +38832,36 @@ export class DescribeCenterPolicyListRequest extends $dara.Model {
|
|
|
37559
38832
|
*/
|
|
37560
38833
|
businessType?: number;
|
|
37561
38834
|
/**
|
|
38835
|
+
* @remarks
|
|
38836
|
+
* The page number.\\
|
|
38837
|
+
* Default value: 1.
|
|
38838
|
+
*
|
|
37562
38839
|
* @example
|
|
37563
38840
|
* 1
|
|
37564
38841
|
*/
|
|
37565
38842
|
pageNumber?: number;
|
|
37566
38843
|
/**
|
|
38844
|
+
* @remarks
|
|
38845
|
+
* The number of entries per page.
|
|
38846
|
+
*
|
|
37567
38847
|
* @example
|
|
37568
38848
|
* 20
|
|
37569
38849
|
*/
|
|
37570
38850
|
pageSize?: number;
|
|
38851
|
+
/**
|
|
38852
|
+
* @remarks
|
|
38853
|
+
* The IDs of the cloud computer policies.
|
|
38854
|
+
*/
|
|
37571
38855
|
policyGroupId?: string[];
|
|
37572
38856
|
/**
|
|
37573
38857
|
* @remarks
|
|
38858
|
+
* The resource type.
|
|
38859
|
+
*
|
|
38860
|
+
* Valid values:
|
|
38861
|
+
*
|
|
38862
|
+
* * app: cloud applications.
|
|
38863
|
+
* * desktop: cloud computers.
|
|
38864
|
+
*
|
|
37574
38865
|
* This parameter is required.
|
|
37575
38866
|
*
|
|
37576
38867
|
* @example
|
|
@@ -37578,6 +38869,14 @@ export class DescribeCenterPolicyListRequest extends $dara.Model {
|
|
|
37578
38869
|
*/
|
|
37579
38870
|
resourceType?: string;
|
|
37580
38871
|
/**
|
|
38872
|
+
* @remarks
|
|
38873
|
+
* The effective scope of the cloud computer policy.
|
|
38874
|
+
*
|
|
38875
|
+
* Valid values:
|
|
38876
|
+
*
|
|
38877
|
+
* * IP: The policy applies to specific IP addresses.
|
|
38878
|
+
* * GLOBAL: The policy applies globally.
|
|
38879
|
+
*
|
|
37581
38880
|
* @example
|
|
37582
38881
|
* GLOBAL
|
|
37583
38882
|
*/
|
|
@@ -37617,13 +38916,23 @@ export class DescribeCenterPolicyListRequest extends $dara.Model {
|
|
|
37617
38916
|
}
|
|
37618
38917
|
|
|
37619
38918
|
export class DescribeCenterPolicyListResponseBody extends $dara.Model {
|
|
38919
|
+
/**
|
|
38920
|
+
* @remarks
|
|
38921
|
+
* The cloud computer policies.
|
|
38922
|
+
*/
|
|
37620
38923
|
describePolicyGroups?: DescribeCenterPolicyListResponseBodyDescribePolicyGroups[];
|
|
37621
38924
|
/**
|
|
38925
|
+
* @remarks
|
|
38926
|
+
* The request ID.
|
|
38927
|
+
*
|
|
37622
38928
|
* @example
|
|
37623
38929
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
37624
38930
|
*/
|
|
37625
38931
|
requestId?: string;
|
|
37626
38932
|
/**
|
|
38933
|
+
* @remarks
|
|
38934
|
+
* The total number of entries returned.
|
|
38935
|
+
*
|
|
37627
38936
|
* @example
|
|
37628
38937
|
* 20
|
|
37629
38938
|
*/
|
|
@@ -37931,7 +39240,7 @@ export class DescribeClientEventsRequest extends $dara.Model {
|
|
|
37931
39240
|
export class DescribeClientEventsResponseBody extends $dara.Model {
|
|
37932
39241
|
/**
|
|
37933
39242
|
* @remarks
|
|
37934
|
-
* The
|
|
39243
|
+
* The user events.
|
|
37935
39244
|
*/
|
|
37936
39245
|
events?: DescribeClientEventsResponseBodyEvents[];
|
|
37937
39246
|
/**
|
|
@@ -41077,7 +42386,7 @@ export class DescribeDesktopsRequest extends $dara.Model {
|
|
|
41077
42386
|
export class DescribeDesktopsResponseBody extends $dara.Model {
|
|
41078
42387
|
/**
|
|
41079
42388
|
* @remarks
|
|
41080
|
-
* The
|
|
42389
|
+
* The cloud computers.
|
|
41081
42390
|
*/
|
|
41082
42391
|
desktops?: DescribeDesktopsResponseBodyDesktops[];
|
|
41083
42392
|
/**
|
|
@@ -41671,11 +42980,10 @@ export class DescribeDirectoriesRequest extends $dara.Model {
|
|
|
41671
42980
|
* @remarks
|
|
41672
42981
|
* The directory type.
|
|
41673
42982
|
*
|
|
41674
|
-
* Valid
|
|
42983
|
+
* Valid value:
|
|
41675
42984
|
*
|
|
41676
|
-
* * SIMPLE:
|
|
41677
|
-
* * AD_CONNECTOR:
|
|
41678
|
-
* * RAM: a RAM directory
|
|
42985
|
+
* * SIMPLE: the convenience directory.
|
|
42986
|
+
* * AD_CONNECTOR: the Active Directory (AD) directory.
|
|
41679
42987
|
*
|
|
41680
42988
|
* @example
|
|
41681
42989
|
* RAM
|
|
@@ -42681,7 +43989,7 @@ export class DescribeGuestApplicationsRequest extends $dara.Model {
|
|
|
42681
43989
|
desktopId?: string;
|
|
42682
43990
|
/**
|
|
42683
43991
|
* @remarks
|
|
42684
|
-
* The ID
|
|
43992
|
+
* The user ID.
|
|
42685
43993
|
*
|
|
42686
43994
|
* This parameter is required.
|
|
42687
43995
|
*
|
|
@@ -42691,7 +43999,7 @@ export class DescribeGuestApplicationsRequest extends $dara.Model {
|
|
|
42691
43999
|
endUserId?: string;
|
|
42692
44000
|
/**
|
|
42693
44001
|
* @remarks
|
|
42694
|
-
* The region ID. You can call the [DescribeRegions](
|
|
44002
|
+
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
42695
44003
|
*
|
|
42696
44004
|
* This parameter is required.
|
|
42697
44005
|
*
|
|
@@ -42727,7 +44035,7 @@ export class DescribeGuestApplicationsRequest extends $dara.Model {
|
|
|
42727
44035
|
export class DescribeGuestApplicationsResponseBody extends $dara.Model {
|
|
42728
44036
|
/**
|
|
42729
44037
|
* @remarks
|
|
42730
|
-
* The
|
|
44038
|
+
* The applications.
|
|
42731
44039
|
*/
|
|
42732
44040
|
applications?: DescribeGuestApplicationsResponseBodyApplications[];
|
|
42733
44041
|
/**
|
|
@@ -45397,37 +46705,66 @@ export class DescribePriceForRenewDesktopOversoldGroupResponse extends $dara.Mod
|
|
|
45397
46705
|
|
|
45398
46706
|
export class DescribeRecordingsRequest extends $dara.Model {
|
|
45399
46707
|
/**
|
|
46708
|
+
* @remarks
|
|
46709
|
+
* The cloud computer ID. If this parameter is not specified, the screen recording files on all cloud computers in the designated region will be queried.
|
|
46710
|
+
*
|
|
45400
46711
|
* @example
|
|
45401
46712
|
* ecd-hlh41mk78dugw****
|
|
45402
46713
|
*/
|
|
45403
46714
|
desktopId?: string;
|
|
45404
46715
|
/**
|
|
46716
|
+
* @remarks
|
|
46717
|
+
* The end time of the query. Specify the time in the `YYYYMMDDhhmmss` format. The time must be in UTC+8.
|
|
46718
|
+
*
|
|
45405
46719
|
* @example
|
|
45406
46720
|
* 20230424004441
|
|
45407
46721
|
*/
|
|
45408
46722
|
endTime?: string;
|
|
45409
46723
|
/**
|
|
46724
|
+
* @remarks
|
|
46725
|
+
* The maximum number of entries per page.
|
|
46726
|
+
*
|
|
46727
|
+
* Maximum value: 100.
|
|
46728
|
+
*
|
|
46729
|
+
* Default value: 10.
|
|
46730
|
+
*
|
|
45410
46731
|
* @example
|
|
45411
46732
|
* 20
|
|
45412
46733
|
*/
|
|
45413
46734
|
maxResults?: number;
|
|
45414
46735
|
/**
|
|
46736
|
+
* @remarks
|
|
46737
|
+
* Specifies whether to return a URL.
|
|
46738
|
+
*
|
|
46739
|
+
* Valid values:
|
|
46740
|
+
*
|
|
46741
|
+
* * true
|
|
46742
|
+
* * false (default)
|
|
46743
|
+
*
|
|
45415
46744
|
* @example
|
|
45416
46745
|
* false
|
|
45417
46746
|
*/
|
|
45418
46747
|
needSignedUrl?: boolean;
|
|
45419
46748
|
/**
|
|
46749
|
+
* @remarks
|
|
46750
|
+
* The pagination token that is used in the request to retrieve a new page of results. You do not need to specify this parameter for the first request. You must specify the token that is obtained from the previous query as the value of `NextToken`.
|
|
46751
|
+
*
|
|
45420
46752
|
* @example
|
|
45421
46753
|
* aGN4YzAxQGNuLWhhbmd6aG91LjExNzU5NTMyNjgzMTQ1****
|
|
45422
46754
|
*/
|
|
45423
46755
|
nextToken?: string;
|
|
45424
46756
|
/**
|
|
46757
|
+
* @remarks
|
|
46758
|
+
* The policy ID.
|
|
46759
|
+
*
|
|
45425
46760
|
* @example
|
|
45426
46761
|
* pg-gx2x1dhsmthe9****
|
|
45427
46762
|
*/
|
|
45428
46763
|
policyGroupId?: string;
|
|
45429
46764
|
/**
|
|
45430
46765
|
* @remarks
|
|
46766
|
+
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
46767
|
+
*
|
|
45431
46768
|
* This parameter is required.
|
|
45432
46769
|
*
|
|
45433
46770
|
* @example
|
|
@@ -45435,13 +46772,33 @@ export class DescribeRecordingsRequest extends $dara.Model {
|
|
|
45435
46772
|
*/
|
|
45436
46773
|
regionId?: string;
|
|
45437
46774
|
/**
|
|
46775
|
+
* @remarks
|
|
46776
|
+
* The validity period of the returned URL. Unit: minutes.
|
|
46777
|
+
*
|
|
45438
46778
|
* @example
|
|
45439
46779
|
* 10
|
|
45440
46780
|
*/
|
|
45441
46781
|
signedUrlExpireMinutes?: number;
|
|
46782
|
+
/**
|
|
46783
|
+
* @remarks
|
|
46784
|
+
* The end time of the query. Specify the time in the ISO 8601 standard in the `yyyy-mm-ddthh:mm:ssz` format. The time must be in UTC+0.
|
|
46785
|
+
*
|
|
46786
|
+
* @example
|
|
46787
|
+
* 2025-01-27T02:30:10Z
|
|
46788
|
+
*/
|
|
45442
46789
|
standardEndTime?: string;
|
|
46790
|
+
/**
|
|
46791
|
+
* @remarks
|
|
46792
|
+
* The start time of the query. Specify the time in the ISO 8601 standard in the `yyyy-mm-ddthh:mm:ssz` format. The time must be in UTC+0.
|
|
46793
|
+
*
|
|
46794
|
+
* @example
|
|
46795
|
+
* 2025-01-27T02:20:10Z
|
|
46796
|
+
*/
|
|
45443
46797
|
standardStartTime?: string;
|
|
45444
46798
|
/**
|
|
46799
|
+
* @remarks
|
|
46800
|
+
* The start time of the query. Specify the time in the `YYYYMMDDhhmmss` format. The time must be in UTC+8.
|
|
46801
|
+
*
|
|
45445
46802
|
* @example
|
|
45446
46803
|
* 20230424000000
|
|
45447
46804
|
*/
|
|
@@ -45489,12 +46846,22 @@ export class DescribeRecordingsRequest extends $dara.Model {
|
|
|
45489
46846
|
|
|
45490
46847
|
export class DescribeRecordingsResponseBody extends $dara.Model {
|
|
45491
46848
|
/**
|
|
46849
|
+
* @remarks
|
|
46850
|
+
* A pagination token. It can be used in the next request to retrieve a new page of results. If NextToken is empty, no next page exists.
|
|
46851
|
+
*
|
|
45492
46852
|
* @example
|
|
45493
46853
|
* AAAAAV3MpHK1AP0pfERHZN5pu6nbCQ7ar+fECeh1IuWQXi39R5eoJ68zWp99mTAKRRNRhw==
|
|
45494
46854
|
*/
|
|
45495
46855
|
nextToken?: string;
|
|
46856
|
+
/**
|
|
46857
|
+
* @remarks
|
|
46858
|
+
* The screen recording files.
|
|
46859
|
+
*/
|
|
45496
46860
|
recordings?: DescribeRecordingsResponseBodyRecordings[];
|
|
45497
46861
|
/**
|
|
46862
|
+
* @remarks
|
|
46863
|
+
* The request ID.
|
|
46864
|
+
*
|
|
45498
46865
|
* @example
|
|
45499
46866
|
* 327CFE78-1C0D-51AC-A9C6-BCEDF0DD44D6
|
|
45500
46867
|
*/
|
|
@@ -46370,10 +47737,10 @@ export class DescribeSnapshotsRequest extends $dara.Model {
|
|
|
46370
47737
|
endTime?: string;
|
|
46371
47738
|
/**
|
|
46372
47739
|
* @remarks
|
|
46373
|
-
* The
|
|
47740
|
+
* The number of entries per page.
|
|
46374
47741
|
*
|
|
46375
|
-
* *
|
|
46376
|
-
* * Default value: 10
|
|
47742
|
+
* * Maximum value: 100.
|
|
47743
|
+
* * Default value: 10.
|
|
46377
47744
|
*
|
|
46378
47745
|
* @example
|
|
46379
47746
|
* 10
|
|
@@ -47376,7 +48743,7 @@ export class DescribeUsersInGroupRequest extends $dara.Model {
|
|
|
47376
48743
|
export class DescribeUsersInGroupResponseBody extends $dara.Model {
|
|
47377
48744
|
/**
|
|
47378
48745
|
* @remarks
|
|
47379
|
-
* The
|
|
48746
|
+
* The authorized users.
|
|
47380
48747
|
*/
|
|
47381
48748
|
endUsers?: DescribeUsersInGroupResponseBodyEndUsers[];
|
|
47382
48749
|
/**
|
|
@@ -48502,27 +49869,41 @@ export class DissociateNetworkPackageResponse extends $dara.Model {
|
|
|
48502
49869
|
|
|
48503
49870
|
export class DownloadCdsFileRequest extends $dara.Model {
|
|
48504
49871
|
/**
|
|
49872
|
+
* @remarks
|
|
49873
|
+
* The enterprise drive ID.
|
|
49874
|
+
*
|
|
48505
49875
|
* @example
|
|
48506
49876
|
* cn-hangzhou+cds-643267****
|
|
48507
49877
|
*/
|
|
48508
49878
|
cdsId?: string;
|
|
48509
49879
|
/**
|
|
49880
|
+
* @remarks
|
|
49881
|
+
* The user ID.
|
|
49882
|
+
*
|
|
48510
49883
|
* @example
|
|
48511
49884
|
* user****
|
|
48512
49885
|
*/
|
|
48513
49886
|
endUserId?: string;
|
|
48514
49887
|
/**
|
|
49888
|
+
* @remarks
|
|
49889
|
+
* The file ID.
|
|
49890
|
+
*
|
|
48515
49891
|
* @example
|
|
48516
49892
|
* 63f3257b68b018170b194d87b875512d108f****
|
|
48517
49893
|
*/
|
|
48518
49894
|
fileId?: string;
|
|
48519
49895
|
/**
|
|
49896
|
+
* @remarks
|
|
49897
|
+
* The team ID.
|
|
49898
|
+
*
|
|
48520
49899
|
* @example
|
|
48521
49900
|
* cg-i1ruuudp92qpj****
|
|
48522
49901
|
*/
|
|
48523
49902
|
groupId?: string;
|
|
48524
49903
|
/**
|
|
48525
49904
|
* @remarks
|
|
49905
|
+
* The region ID.
|
|
49906
|
+
*
|
|
48526
49907
|
* This parameter is required.
|
|
48527
49908
|
*
|
|
48528
49909
|
* @example
|
|
@@ -48559,18 +49940,31 @@ export class DownloadCdsFileRequest extends $dara.Model {
|
|
|
48559
49940
|
}
|
|
48560
49941
|
|
|
48561
49942
|
export class DownloadCdsFileResponseBody extends $dara.Model {
|
|
49943
|
+
/**
|
|
49944
|
+
* @remarks
|
|
49945
|
+
* The download URL of the file.
|
|
49946
|
+
*/
|
|
48562
49947
|
downloadFileModel?: DownloadCdsFileResponseBodyDownloadFileModel;
|
|
48563
49948
|
/**
|
|
49949
|
+
* @remarks
|
|
49950
|
+
* The response message.
|
|
49951
|
+
*
|
|
48564
49952
|
* @example
|
|
48565
49953
|
* success
|
|
48566
49954
|
*/
|
|
48567
49955
|
message?: string;
|
|
48568
49956
|
/**
|
|
49957
|
+
* @remarks
|
|
49958
|
+
* The request ID.
|
|
49959
|
+
*
|
|
48569
49960
|
* @example
|
|
48570
49961
|
* E3ED9519-DD73-5C86-9C0A-43C9281C****
|
|
48571
49962
|
*/
|
|
48572
49963
|
requestId?: string;
|
|
48573
49964
|
/**
|
|
49965
|
+
* @remarks
|
|
49966
|
+
* Indicates whether the request was successful.
|
|
49967
|
+
*
|
|
48574
49968
|
* @example
|
|
48575
49969
|
* true
|
|
48576
49970
|
*/
|
|
@@ -51342,7 +52736,7 @@ export class ListDirectoryUsersResponseBody extends $dara.Model {
|
|
|
51342
52736
|
requestId?: string;
|
|
51343
52737
|
/**
|
|
51344
52738
|
* @remarks
|
|
51345
|
-
* The
|
|
52739
|
+
* The usernames corresponding to the AD directory. If the AD directory contains only the Administrator and Guest accounts, the Users array will be empty.
|
|
51346
52740
|
*/
|
|
51347
52741
|
users?: ListDirectoryUsersResponseBodyUsers[];
|
|
51348
52742
|
static names(): { [key: string]: string } {
|
|
@@ -51785,7 +53179,7 @@ export class ListOfficeSiteUsersRequest extends $dara.Model {
|
|
|
51785
53179
|
officeSiteId?: string;
|
|
51786
53180
|
/**
|
|
51787
53181
|
* @remarks
|
|
51788
|
-
* The region ID. You can call the [DescribeRegions](
|
|
53182
|
+
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
51789
53183
|
*
|
|
51790
53184
|
* This parameter is required.
|
|
51791
53185
|
*
|
|
@@ -51850,8 +53244,8 @@ export class ListOfficeSiteUsersResponseBody extends $dara.Model {
|
|
|
51850
53244
|
requestId?: string;
|
|
51851
53245
|
/**
|
|
51852
53246
|
* @remarks
|
|
51853
|
-
* The usernames of AD
|
|
51854
|
-
* If the only Administrator and Guest users exist in the enterprise AD, an empty User array is returned.
|
|
53247
|
+
* The usernames of the AD accounts.\\
|
|
53248
|
+
* If the only Administrator and Guest users exist in the enterprise AD directory, an empty User array is returned.
|
|
51855
53249
|
*/
|
|
51856
53250
|
users?: ListOfficeSiteUsersResponseBodyUsers[];
|
|
51857
53251
|
static names(): { [key: string]: string } {
|
|
@@ -54273,7 +55667,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54273
55667
|
*
|
|
54274
55668
|
* Valid values:
|
|
54275
55669
|
*
|
|
54276
|
-
* * 1: public cloud
|
|
55670
|
+
* * 1: public cloud
|
|
54277
55671
|
* * 8: commercial edition.
|
|
54278
55672
|
*
|
|
54279
55673
|
* This parameter is required.
|
|
@@ -54461,12 +55855,12 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54461
55855
|
domainResolveRuleType?: string;
|
|
54462
55856
|
/**
|
|
54463
55857
|
* @remarks
|
|
54464
|
-
* Specifies whether to enforce
|
|
55858
|
+
* Specifies whether to enforce a bandwidth limit for sessions.
|
|
54465
55859
|
*
|
|
54466
55860
|
* Valid values:
|
|
54467
55861
|
*
|
|
54468
|
-
* * off: doesn\\"t enforce
|
|
54469
|
-
* * on: enforces
|
|
55862
|
+
* * off: doesn\\"t enforce a bandwidth limit for sessions.
|
|
55863
|
+
* * on: enforces a bandwidth limit for sessions.
|
|
54470
55864
|
*
|
|
54471
55865
|
* @example
|
|
54472
55866
|
* off
|
|
@@ -54487,12 +55881,12 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54487
55881
|
endUserApplyAdminCoordinate?: string;
|
|
54488
55882
|
/**
|
|
54489
55883
|
* @remarks
|
|
54490
|
-
* Specifies whether end users
|
|
55884
|
+
* Specifies whether to allow end users from the same office network to share cloud computers.
|
|
54491
55885
|
*
|
|
54492
55886
|
* Valid values:
|
|
54493
55887
|
*
|
|
54494
|
-
* * off:
|
|
54495
|
-
* * on:
|
|
55888
|
+
* * off: doesn\\"t allow end users from the same office network to share cloud computers.
|
|
55889
|
+
* * on: allows end users from the same office network to share cloud computers.
|
|
54496
55890
|
*
|
|
54497
55891
|
* @example
|
|
54498
55892
|
* off
|
|
@@ -54628,14 +56022,14 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54628
56022
|
memorySingleRateLimit?: number;
|
|
54629
56023
|
/**
|
|
54630
56024
|
* @remarks
|
|
54631
|
-
* Specifies whether to display the Restart button in the DesktopAssistant menu when end users connect to cloud computers from
|
|
56025
|
+
* Specifies whether to display the Restart button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
54632
56026
|
*
|
|
54633
56027
|
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
54634
56028
|
*
|
|
54635
56029
|
* Valid values:
|
|
54636
56030
|
*
|
|
54637
|
-
* * off: doesn\\"t display the Restart button in the DesktopAssistant menu.
|
|
54638
|
-
* * on: displays the Restart button in the DesktopAssistant menu.
|
|
56031
|
+
* * off: doesn\\"t display the Restart button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
56032
|
+
* * on: displays the Restart button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
54639
56033
|
*
|
|
54640
56034
|
* @example
|
|
54641
56035
|
* off
|
|
@@ -54643,14 +56037,14 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54643
56037
|
mobileRestart?: string;
|
|
54644
56038
|
/**
|
|
54645
56039
|
* @remarks
|
|
54646
|
-
* Specifies whether to display the Stop button in the DesktopAssistant menu when end users connect to cloud computers from
|
|
56040
|
+
* Specifies whether to display the Stop button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
54647
56041
|
*
|
|
54648
56042
|
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
54649
56043
|
*
|
|
54650
56044
|
* Valid values:
|
|
54651
56045
|
*
|
|
54652
|
-
* * off: doesn\\"t display the Stop button in the DesktopAssistant menu.
|
|
54653
|
-
* * on: displays the Stop button in the DesktopAssistant menu.
|
|
56046
|
+
* * off: doesn\\"t display the Stop button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
56047
|
+
* * on: displays the Stop button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
54654
56048
|
*
|
|
54655
56049
|
* @example
|
|
54656
56050
|
* off
|
|
@@ -54682,7 +56076,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54682
56076
|
netRedirect?: string;
|
|
54683
56077
|
/**
|
|
54684
56078
|
* @remarks
|
|
54685
|
-
* The network redirection
|
|
56079
|
+
* The network redirection rules.
|
|
54686
56080
|
*
|
|
54687
56081
|
* > This parameter is in private preview and only available to specific users.
|
|
54688
56082
|
*/
|
|
@@ -54969,7 +56363,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54969
56363
|
scopeValue?: string[];
|
|
54970
56364
|
/**
|
|
54971
56365
|
* @remarks
|
|
54972
|
-
* The bandwidth peak
|
|
56366
|
+
* The bandwidth peak allowed for sessions. Unit: Kbit/s. Valid values: 2000 to 100000.
|
|
54973
56367
|
*
|
|
54974
56368
|
* @example
|
|
54975
56369
|
* 2000
|
|
@@ -55057,7 +56451,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
55057
56451
|
usbSupplyRedirectRule?: ModifyCenterPolicyRequestUsbSupplyRedirectRule[];
|
|
55058
56452
|
/**
|
|
55059
56453
|
* @remarks
|
|
55060
|
-
* The average bitrate for video encoding. Valid values: 1000 to 50000.
|
|
56454
|
+
* The average bitrate for video encoding. Unit: Kbit/s. Valid values: 1000 to 50000.
|
|
55061
56455
|
*
|
|
55062
56456
|
* @example
|
|
55063
56457
|
* 2000
|
|
@@ -55081,7 +56475,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
55081
56475
|
videoEncMinQP?: number;
|
|
55082
56476
|
/**
|
|
55083
56477
|
* @remarks
|
|
55084
|
-
* The peak bitrate for video encoding. Valid values: 1000 to 50000.
|
|
56478
|
+
* The peak bitrate allowed for video encoding. Unit: Kbit/s. Valid values: 1000 to 50000.
|
|
55085
56479
|
*
|
|
55086
56480
|
* @example
|
|
55087
56481
|
* 2000
|
|
@@ -67589,6 +68983,8 @@ export default class Client extends OpenApi {
|
|
|
67589
68983
|
}
|
|
67590
68984
|
|
|
67591
68985
|
/**
|
|
68986
|
+
* Clones a policy based on an existing global policy.
|
|
68987
|
+
*
|
|
67592
68988
|
* @param request - CloneCenterPolicyRequest
|
|
67593
68989
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
67594
68990
|
* @returns CloneCenterPolicyResponse
|
|
@@ -67634,6 +69030,8 @@ export default class Client extends OpenApi {
|
|
|
67634
69030
|
}
|
|
67635
69031
|
|
|
67636
69032
|
/**
|
|
69033
|
+
* Clones a policy based on an existing global policy.
|
|
69034
|
+
*
|
|
67637
69035
|
* @param request - CloneCenterPolicyRequest
|
|
67638
69036
|
* @returns CloneCenterPolicyResponse
|
|
67639
69037
|
*/
|
|
@@ -72059,7 +73457,7 @@ export default class Client extends OpenApi {
|
|
|
72059
73457
|
}
|
|
72060
73458
|
|
|
72061
73459
|
/**
|
|
72062
|
-
*
|
|
73460
|
+
* Queries center policies.
|
|
72063
73461
|
*
|
|
72064
73462
|
* @param request - DescribeCenterPolicyListRequest
|
|
72065
73463
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -72110,7 +73508,7 @@ export default class Client extends OpenApi {
|
|
|
72110
73508
|
}
|
|
72111
73509
|
|
|
72112
73510
|
/**
|
|
72113
|
-
*
|
|
73511
|
+
* Queries center policies.
|
|
72114
73512
|
*
|
|
72115
73513
|
* @param request - DescribeCenterPolicyListRequest
|
|
72116
73514
|
* @returns DescribeCenterPolicyListResponse
|
|
@@ -74797,6 +76195,8 @@ export default class Client extends OpenApi {
|
|
|
74797
76195
|
}
|
|
74798
76196
|
|
|
74799
76197
|
/**
|
|
76198
|
+
* Queries the details of screen recording files.
|
|
76199
|
+
*
|
|
74800
76200
|
* @param request - DescribeRecordingsRequest
|
|
74801
76201
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
74802
76202
|
* @returns DescribeRecordingsResponse
|
|
@@ -74866,6 +76266,8 @@ export default class Client extends OpenApi {
|
|
|
74866
76266
|
}
|
|
74867
76267
|
|
|
74868
76268
|
/**
|
|
76269
|
+
* Queries the details of screen recording files.
|
|
76270
|
+
*
|
|
74869
76271
|
* @param request - DescribeRecordingsRequest
|
|
74870
76272
|
* @returns DescribeRecordingsResponse
|
|
74871
76273
|
*/
|
|
@@ -75985,7 +77387,7 @@ export default class Client extends OpenApi {
|
|
|
75985
77387
|
}
|
|
75986
77388
|
|
|
75987
77389
|
/**
|
|
75988
|
-
*
|
|
77390
|
+
* Obtains the download link of the target file.
|
|
75989
77391
|
*
|
|
75990
77392
|
* @param request - DownloadCdsFileRequest
|
|
75991
77393
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -76032,7 +77434,7 @@ export default class Client extends OpenApi {
|
|
|
76032
77434
|
}
|
|
76033
77435
|
|
|
76034
77436
|
/**
|
|
76035
|
-
*
|
|
77437
|
+
* Obtains the download link of the target file.
|
|
76036
77438
|
*
|
|
76037
77439
|
* @param request - DownloadCdsFileRequest
|
|
76038
77440
|
* @returns DownloadCdsFileResponse
|
|
@@ -77021,7 +78423,7 @@ export default class Client extends OpenApi {
|
|
|
77021
78423
|
}
|
|
77022
78424
|
|
|
77023
78425
|
/**
|
|
77024
|
-
* Queries information about Active Directory (AD)
|
|
78426
|
+
* Queries information about Active Directory (AD) accounts after an enterprise AD office network (formerly workspace) interconnects to an AD domain.
|
|
77025
78427
|
*
|
|
77026
78428
|
* @param request - ListOfficeSiteUsersRequest
|
|
77027
78429
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -77084,7 +78486,7 @@ export default class Client extends OpenApi {
|
|
|
77084
78486
|
}
|
|
77085
78487
|
|
|
77086
78488
|
/**
|
|
77087
|
-
* Queries information about Active Directory (AD)
|
|
78489
|
+
* Queries information about Active Directory (AD) accounts after an enterprise AD office network (formerly workspace) interconnects to an AD domain.
|
|
77088
78490
|
*
|
|
77089
78491
|
* @param request - ListOfficeSiteUsersRequest
|
|
77090
78492
|
* @returns ListOfficeSiteUsersResponse
|
|
@@ -77927,6 +79329,8 @@ export default class Client extends OpenApi {
|
|
|
77927
79329
|
}
|
|
77928
79330
|
|
|
77929
79331
|
/**
|
|
79332
|
+
* Modifies a center policy.
|
|
79333
|
+
*
|
|
77930
79334
|
* @param request - ModifyCenterPolicyRequest
|
|
77931
79335
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
77932
79336
|
* @returns ModifyCenterPolicyResponse
|
|
@@ -78360,6 +79764,8 @@ export default class Client extends OpenApi {
|
|
|
78360
79764
|
}
|
|
78361
79765
|
|
|
78362
79766
|
/**
|
|
79767
|
+
* Modifies a center policy.
|
|
79768
|
+
*
|
|
78363
79769
|
* @param request - ModifyCenterPolicyRequest
|
|
78364
79770
|
* @returns ModifyCenterPolicyResponse
|
|
78365
79771
|
*/
|
|
@@ -80681,15 +82087,15 @@ export default class Client extends OpenApi {
|
|
|
80681
82087
|
}
|
|
80682
82088
|
|
|
80683
82089
|
/**
|
|
80684
|
-
*
|
|
82090
|
+
* Rebuilds images for one or more cloud computers.
|
|
80685
82091
|
*
|
|
80686
82092
|
* @remarks
|
|
80687
|
-
*
|
|
80688
|
-
* * You
|
|
80689
|
-
* * GPU
|
|
80690
|
-
*
|
|
80691
|
-
* *
|
|
80692
|
-
* * If the OS
|
|
82093
|
+
* Before you proceed, take note of the following limits:
|
|
82094
|
+
* * You cannot convert a cloud computer\\"s operating system image from one type to another (e.g., Windows to Linux or vice versa) in China (Hong Kong) or overseas regions.
|
|
82095
|
+
* * GPU and non-GPU images are not interchangeable, as graphic-based cloud computers can only use GPU-accelerated images, while other cloud computers are limited to non-GPU-accelerated images.
|
|
82096
|
+
* When a cloud computer’s image is updated, the system initializes its system disk by using the new image, resulting in the following effects:
|
|
82097
|
+
* * All data on the original system disk is erased. Snapshots created from the original system disk become unavailable and are automatically deleted.
|
|
82098
|
+
* * If the OS changes, data on the original data disk is cleared, and snapshots created from the original data disk become unavailable and are automatically deleted. If the OS remains the same, data on the original data disk is retained, and snapshots from the original data disk remain available.
|
|
80693
82099
|
*
|
|
80694
82100
|
* @param request - RebuildDesktopsRequest
|
|
80695
82101
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -80740,15 +82146,15 @@ export default class Client extends OpenApi {
|
|
|
80740
82146
|
}
|
|
80741
82147
|
|
|
80742
82148
|
/**
|
|
80743
|
-
*
|
|
82149
|
+
* Rebuilds images for one or more cloud computers.
|
|
80744
82150
|
*
|
|
80745
82151
|
* @remarks
|
|
80746
|
-
*
|
|
80747
|
-
* * You
|
|
80748
|
-
* * GPU
|
|
80749
|
-
*
|
|
80750
|
-
* *
|
|
80751
|
-
* * If the OS
|
|
82152
|
+
* Before you proceed, take note of the following limits:
|
|
82153
|
+
* * You cannot convert a cloud computer\\"s operating system image from one type to another (e.g., Windows to Linux or vice versa) in China (Hong Kong) or overseas regions.
|
|
82154
|
+
* * GPU and non-GPU images are not interchangeable, as graphic-based cloud computers can only use GPU-accelerated images, while other cloud computers are limited to non-GPU-accelerated images.
|
|
82155
|
+
* When a cloud computer’s image is updated, the system initializes its system disk by using the new image, resulting in the following effects:
|
|
82156
|
+
* * All data on the original system disk is erased. Snapshots created from the original system disk become unavailable and are automatically deleted.
|
|
82157
|
+
* * If the OS changes, data on the original data disk is cleared, and snapshots created from the original data disk become unavailable and are automatically deleted. If the OS remains the same, data on the original data disk is retained, and snapshots from the original data disk remain available.
|
|
80752
82158
|
*
|
|
80753
82159
|
* @param request - RebuildDesktopsRequest
|
|
80754
82160
|
* @returns RebuildDesktopsResponse
|