@alicloud/ecd20200930 4.6.4 → 4.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +2190 -765
- package/dist/client.js +78 -20
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1553 -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,68 @@ 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;
|
|
938
|
+
platforms?: string;
|
|
816
939
|
/**
|
|
940
|
+
* @remarks
|
|
941
|
+
* The redirection type.
|
|
942
|
+
*
|
|
943
|
+
* Valid values:
|
|
944
|
+
*
|
|
945
|
+
* * deviceRedirect: enables device redirection.
|
|
946
|
+
* * usbRedirect: enables USB redirection.
|
|
947
|
+
* * off: disables any type of redirection.
|
|
948
|
+
*
|
|
817
949
|
* @example
|
|
818
950
|
* usbRedirect
|
|
819
951
|
*/
|
|
@@ -825,6 +957,7 @@ export class CreateCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
825
957
|
deviceType: 'DeviceType',
|
|
826
958
|
deviceVid: 'DeviceVid',
|
|
827
959
|
optCommand: 'OptCommand',
|
|
960
|
+
platforms: 'Platforms',
|
|
828
961
|
redirectType: 'RedirectType',
|
|
829
962
|
};
|
|
830
963
|
}
|
|
@@ -836,6 +969,7 @@ export class CreateCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
836
969
|
deviceType: 'string',
|
|
837
970
|
deviceVid: 'string',
|
|
838
971
|
optCommand: 'string',
|
|
972
|
+
platforms: 'string',
|
|
839
973
|
redirectType: 'string',
|
|
840
974
|
};
|
|
841
975
|
}
|
|
@@ -850,13 +984,28 @@ export class CreateCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
850
984
|
}
|
|
851
985
|
|
|
852
986
|
export class CreateCenterPolicyRequestDomainResolveRule extends $dara.Model {
|
|
987
|
+
/**
|
|
988
|
+
* @remarks
|
|
989
|
+
* The policy description.
|
|
990
|
+
*/
|
|
853
991
|
description?: string;
|
|
854
992
|
/**
|
|
993
|
+
* @remarks
|
|
994
|
+
* The domain name.
|
|
995
|
+
*
|
|
855
996
|
* @example
|
|
856
997
|
* *.example.com
|
|
857
998
|
*/
|
|
858
999
|
domain?: string;
|
|
859
1000
|
/**
|
|
1001
|
+
* @remarks
|
|
1002
|
+
* Specifies whether to allow the domain resolution policy to take effect.
|
|
1003
|
+
*
|
|
1004
|
+
* Valid values:
|
|
1005
|
+
*
|
|
1006
|
+
* * allow
|
|
1007
|
+
* * block
|
|
1008
|
+
*
|
|
860
1009
|
* @example
|
|
861
1010
|
* allow
|
|
862
1011
|
*/
|
|
@@ -888,16 +1037,30 @@ export class CreateCenterPolicyRequestDomainResolveRule extends $dara.Model {
|
|
|
888
1037
|
|
|
889
1038
|
export class CreateCenterPolicyRequestNetRedirectRule extends $dara.Model {
|
|
890
1039
|
/**
|
|
1040
|
+
* @remarks
|
|
1041
|
+
* The domain name.
|
|
1042
|
+
*
|
|
891
1043
|
* @example
|
|
892
1044
|
* *.taobao.com
|
|
893
1045
|
*/
|
|
894
1046
|
domain?: string;
|
|
895
1047
|
/**
|
|
1048
|
+
* @remarks
|
|
1049
|
+
* The redirection policy.
|
|
1050
|
+
*
|
|
896
1051
|
* @example
|
|
897
1052
|
* allow
|
|
898
1053
|
*/
|
|
899
1054
|
policy?: string;
|
|
900
1055
|
/**
|
|
1056
|
+
* @remarks
|
|
1057
|
+
* The rule type.
|
|
1058
|
+
*
|
|
1059
|
+
* Valid values:
|
|
1060
|
+
*
|
|
1061
|
+
* * prc: process.
|
|
1062
|
+
* * domain: domain name.
|
|
1063
|
+
*
|
|
901
1064
|
* @example
|
|
902
1065
|
* domain
|
|
903
1066
|
*/
|
|
@@ -928,23 +1091,48 @@ export class CreateCenterPolicyRequestNetRedirectRule extends $dara.Model {
|
|
|
928
1091
|
}
|
|
929
1092
|
|
|
930
1093
|
export class CreateCenterPolicyRequestUsbSupplyRedirectRule extends $dara.Model {
|
|
1094
|
+
/**
|
|
1095
|
+
* @remarks
|
|
1096
|
+
* The rule description.
|
|
1097
|
+
*/
|
|
931
1098
|
description?: string;
|
|
932
1099
|
/**
|
|
1100
|
+
* @remarks
|
|
1101
|
+
* The product ID (PID).
|
|
1102
|
+
*
|
|
933
1103
|
* @example
|
|
934
1104
|
* 08**
|
|
935
1105
|
*/
|
|
936
1106
|
productId?: string;
|
|
937
1107
|
/**
|
|
1108
|
+
* @remarks
|
|
1109
|
+
* Specifies whether to allow USB redirection.
|
|
1110
|
+
*
|
|
1111
|
+
* Valid values:
|
|
1112
|
+
*
|
|
1113
|
+
* * 1: allows USB redirection.
|
|
1114
|
+
* * 2: forbids USB redirection.
|
|
1115
|
+
*
|
|
938
1116
|
* @example
|
|
939
1117
|
* 1
|
|
940
1118
|
*/
|
|
941
1119
|
usbRedirectType?: string;
|
|
942
1120
|
/**
|
|
1121
|
+
* @remarks
|
|
1122
|
+
* The type of the USB redirection rule.
|
|
1123
|
+
*
|
|
1124
|
+
* Valid values:
|
|
1125
|
+
*
|
|
1126
|
+
* * 2: enables USB redirection based on products.
|
|
1127
|
+
*
|
|
943
1128
|
* @example
|
|
944
1129
|
* 2
|
|
945
1130
|
*/
|
|
946
1131
|
usbRuleType?: string;
|
|
947
1132
|
/**
|
|
1133
|
+
* @remarks
|
|
1134
|
+
* 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).
|
|
1135
|
+
*
|
|
948
1136
|
* @example
|
|
949
1137
|
* 04**
|
|
950
1138
|
*/
|
|
@@ -2641,6 +2829,7 @@ export class CreatePolicyGroupRequestDeviceRules extends $dara.Model {
|
|
|
2641
2829
|
* 2:0
|
|
2642
2830
|
*/
|
|
2643
2831
|
optCommand?: string;
|
|
2832
|
+
platforms?: string;
|
|
2644
2833
|
/**
|
|
2645
2834
|
* @remarks
|
|
2646
2835
|
* The redirection type.
|
|
@@ -2662,6 +2851,7 @@ export class CreatePolicyGroupRequestDeviceRules extends $dara.Model {
|
|
|
2662
2851
|
deviceType: 'DeviceType',
|
|
2663
2852
|
deviceVid: 'DeviceVid',
|
|
2664
2853
|
optCommand: 'OptCommand',
|
|
2854
|
+
platforms: 'Platforms',
|
|
2665
2855
|
redirectType: 'RedirectType',
|
|
2666
2856
|
};
|
|
2667
2857
|
}
|
|
@@ -2673,6 +2863,7 @@ export class CreatePolicyGroupRequestDeviceRules extends $dara.Model {
|
|
|
2673
2863
|
deviceType: 'string',
|
|
2674
2864
|
deviceVid: 'string',
|
|
2675
2865
|
optCommand: 'string',
|
|
2866
|
+
platforms: 'string',
|
|
2676
2867
|
redirectType: 'string',
|
|
2677
2868
|
};
|
|
2678
2869
|
}
|
|
@@ -3800,11 +3991,17 @@ export class DescribeCensResponseBodyCens extends $dara.Model {
|
|
|
3800
3991
|
|
|
3801
3992
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeAccessPolicyRules extends $dara.Model {
|
|
3802
3993
|
/**
|
|
3994
|
+
* @remarks
|
|
3995
|
+
* The client CIDR block from which end users can connect to cloud computers. The value is an IPv4 CIDR block.
|
|
3996
|
+
*
|
|
3803
3997
|
* @example
|
|
3804
3998
|
* 47.100.XX.XX/16
|
|
3805
3999
|
*/
|
|
3806
4000
|
cidrIp?: string;
|
|
3807
4001
|
/**
|
|
4002
|
+
* @remarks
|
|
4003
|
+
* The remarks on the client CIDR block.
|
|
4004
|
+
*
|
|
3808
4005
|
* @example
|
|
3809
4006
|
* test
|
|
3810
4007
|
*/
|
|
@@ -3834,36 +4031,57 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeAc
|
|
|
3834
4031
|
|
|
3835
4032
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeSecurityPolicyRules extends $dara.Model {
|
|
3836
4033
|
/**
|
|
4034
|
+
* @remarks
|
|
4035
|
+
* The object to which the security group rule applies. The value is an IPv4 CIDR block.
|
|
4036
|
+
*
|
|
3837
4037
|
* @example
|
|
3838
4038
|
* 47.100.XX.XX/16
|
|
3839
4039
|
*/
|
|
3840
4040
|
cidrIp?: string;
|
|
3841
4041
|
/**
|
|
4042
|
+
* @remarks
|
|
4043
|
+
* The description of the security group rule.
|
|
4044
|
+
*
|
|
3842
4045
|
* @example
|
|
3843
4046
|
* test
|
|
3844
4047
|
*/
|
|
3845
4048
|
description?: string;
|
|
3846
4049
|
/**
|
|
4050
|
+
* @remarks
|
|
4051
|
+
* The protocol type of the security group rule.
|
|
4052
|
+
*
|
|
3847
4053
|
* @example
|
|
3848
4054
|
* tcp
|
|
3849
4055
|
*/
|
|
3850
4056
|
ipProtocol?: string;
|
|
3851
4057
|
/**
|
|
4058
|
+
* @remarks
|
|
4059
|
+
* The authorization policy of the security group rule.
|
|
4060
|
+
*
|
|
3852
4061
|
* @example
|
|
3853
4062
|
* accept
|
|
3854
4063
|
*/
|
|
3855
4064
|
policy?: string;
|
|
3856
4065
|
/**
|
|
4066
|
+
* @remarks
|
|
4067
|
+
* The port range of the security group rule.
|
|
4068
|
+
*
|
|
3857
4069
|
* @example
|
|
3858
4070
|
* 22/22
|
|
3859
4071
|
*/
|
|
3860
4072
|
portRange?: string;
|
|
3861
4073
|
/**
|
|
4074
|
+
* @remarks
|
|
4075
|
+
* The priority of the security group rule. A smaller value indicates a higher priority.
|
|
4076
|
+
*
|
|
3862
4077
|
* @example
|
|
3863
4078
|
* 1
|
|
3864
4079
|
*/
|
|
3865
4080
|
priority?: string;
|
|
3866
4081
|
/**
|
|
4082
|
+
* @remarks
|
|
4083
|
+
* The direction of the security group rule.
|
|
4084
|
+
*
|
|
3867
4085
|
* @example
|
|
3868
4086
|
* inflow
|
|
3869
4087
|
*/
|
|
@@ -3903,11 +4121,17 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeSe
|
|
|
3903
4121
|
|
|
3904
4122
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsClientTypes extends $dara.Model {
|
|
3905
4123
|
/**
|
|
4124
|
+
* @remarks
|
|
4125
|
+
* The client type.
|
|
4126
|
+
*
|
|
3906
4127
|
* @example
|
|
3907
4128
|
* windows
|
|
3908
4129
|
*/
|
|
3909
4130
|
clientType?: string;
|
|
3910
4131
|
/**
|
|
4132
|
+
* @remarks
|
|
4133
|
+
* Indicates whether a specific client type can connect to cloud computers.
|
|
4134
|
+
*
|
|
3911
4135
|
* @example
|
|
3912
4136
|
* on
|
|
3913
4137
|
*/
|
|
@@ -3937,11 +4161,17 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsClientTypes
|
|
|
3937
4161
|
|
|
3938
4162
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRedirects extends $dara.Model {
|
|
3939
4163
|
/**
|
|
4164
|
+
* @remarks
|
|
4165
|
+
* The peripheral type.
|
|
4166
|
+
*
|
|
3940
4167
|
* @example
|
|
3941
4168
|
* camera
|
|
3942
4169
|
*/
|
|
3943
4170
|
deviceType?: string;
|
|
3944
4171
|
/**
|
|
4172
|
+
* @remarks
|
|
4173
|
+
* The redirection type.
|
|
4174
|
+
*
|
|
3945
4175
|
* @example
|
|
3946
4176
|
* usbRedirect
|
|
3947
4177
|
*/
|
|
@@ -3971,31 +4201,50 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRedir
|
|
|
3971
4201
|
|
|
3972
4202
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRules extends $dara.Model {
|
|
3973
4203
|
/**
|
|
4204
|
+
* @remarks
|
|
4205
|
+
* The device name.
|
|
4206
|
+
*
|
|
3974
4207
|
* @example
|
|
3975
4208
|
* sandisk
|
|
3976
4209
|
*/
|
|
3977
4210
|
deviceName?: string;
|
|
3978
4211
|
/**
|
|
4212
|
+
* @remarks
|
|
4213
|
+
* The product ID (PID).
|
|
4214
|
+
*
|
|
3979
4215
|
* @example
|
|
3980
4216
|
* 0x55b1
|
|
3981
4217
|
*/
|
|
3982
4218
|
devicePid?: string;
|
|
3983
4219
|
/**
|
|
4220
|
+
* @remarks
|
|
4221
|
+
* The peripheral type.
|
|
4222
|
+
*
|
|
3984
4223
|
* @example
|
|
3985
4224
|
* storage
|
|
3986
4225
|
*/
|
|
3987
4226
|
deviceType?: string;
|
|
3988
4227
|
/**
|
|
4228
|
+
* @remarks
|
|
4229
|
+
* The vendor ID (VID). For more information, see [Valid USB VIDs](https://www.usb.org/sites/default/files/vendor_ids032322.pdf_1.pdf).
|
|
4230
|
+
*
|
|
3989
4231
|
* @example
|
|
3990
4232
|
* 0x0781
|
|
3991
4233
|
*/
|
|
3992
4234
|
deviceVid?: string;
|
|
3993
4235
|
/**
|
|
4236
|
+
* @remarks
|
|
4237
|
+
* The link optimization command.
|
|
4238
|
+
*
|
|
3994
4239
|
* @example
|
|
3995
4240
|
* 2:0
|
|
3996
4241
|
*/
|
|
3997
4242
|
optCommand?: string;
|
|
4243
|
+
platforms?: string;
|
|
3998
4244
|
/**
|
|
4245
|
+
* @remarks
|
|
4246
|
+
* The redirection type.
|
|
4247
|
+
*
|
|
3999
4248
|
* @example
|
|
4000
4249
|
* usbRedirect
|
|
4001
4250
|
*/
|
|
@@ -4007,6 +4256,7 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRules
|
|
|
4007
4256
|
deviceType: 'DeviceType',
|
|
4008
4257
|
deviceVid: 'DeviceVid',
|
|
4009
4258
|
optCommand: 'OptCommand',
|
|
4259
|
+
platforms: 'Platforms',
|
|
4010
4260
|
redirectType: 'RedirectType',
|
|
4011
4261
|
};
|
|
4012
4262
|
}
|
|
@@ -4018,6 +4268,7 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRules
|
|
|
4018
4268
|
deviceType: 'string',
|
|
4019
4269
|
deviceVid: 'string',
|
|
4020
4270
|
optCommand: 'string',
|
|
4271
|
+
platforms: 'string',
|
|
4021
4272
|
redirectType: 'string',
|
|
4022
4273
|
};
|
|
4023
4274
|
}
|
|
@@ -4032,13 +4283,23 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRules
|
|
|
4032
4283
|
}
|
|
4033
4284
|
|
|
4034
4285
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDomainResolveRule extends $dara.Model {
|
|
4286
|
+
/**
|
|
4287
|
+
* @remarks
|
|
4288
|
+
* The policy description.
|
|
4289
|
+
*/
|
|
4035
4290
|
description?: string;
|
|
4036
4291
|
/**
|
|
4292
|
+
* @remarks
|
|
4293
|
+
* The domain name.
|
|
4294
|
+
*
|
|
4037
4295
|
* @example
|
|
4038
4296
|
* *.example.com
|
|
4039
4297
|
*/
|
|
4040
4298
|
domain?: string;
|
|
4041
4299
|
/**
|
|
4300
|
+
* @remarks
|
|
4301
|
+
* The resolution policy.
|
|
4302
|
+
*
|
|
4042
4303
|
* @example
|
|
4043
4304
|
* allow
|
|
4044
4305
|
*/
|
|
@@ -4070,16 +4331,25 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDomainResol
|
|
|
4070
4331
|
|
|
4071
4332
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsNetRedirectRule extends $dara.Model {
|
|
4072
4333
|
/**
|
|
4334
|
+
* @remarks
|
|
4335
|
+
* The domain name.
|
|
4336
|
+
*
|
|
4073
4337
|
* @example
|
|
4074
4338
|
* *.example.com
|
|
4075
4339
|
*/
|
|
4076
4340
|
domain?: string;
|
|
4077
4341
|
/**
|
|
4342
|
+
* @remarks
|
|
4343
|
+
* The redirection policy.
|
|
4344
|
+
*
|
|
4078
4345
|
* @example
|
|
4079
4346
|
* allow
|
|
4080
4347
|
*/
|
|
4081
4348
|
policy?: string;
|
|
4082
4349
|
/**
|
|
4350
|
+
* @remarks
|
|
4351
|
+
* The rule type.
|
|
4352
|
+
*
|
|
4083
4353
|
* @example
|
|
4084
4354
|
* domain
|
|
4085
4355
|
*/
|
|
@@ -4110,23 +4380,39 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsNetRedirect
|
|
|
4110
4380
|
}
|
|
4111
4381
|
|
|
4112
4382
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsUsbSupplyRedirectRule extends $dara.Model {
|
|
4383
|
+
/**
|
|
4384
|
+
* @remarks
|
|
4385
|
+
* The rule description.
|
|
4386
|
+
*/
|
|
4113
4387
|
description?: string;
|
|
4114
4388
|
/**
|
|
4389
|
+
* @remarks
|
|
4390
|
+
* The product ID (PID).
|
|
4391
|
+
*
|
|
4115
4392
|
* @example
|
|
4116
4393
|
* 08**
|
|
4117
4394
|
*/
|
|
4118
4395
|
productId?: string;
|
|
4119
4396
|
/**
|
|
4397
|
+
* @remarks
|
|
4398
|
+
* Indicates whether USB redirection is allowed.
|
|
4399
|
+
*
|
|
4120
4400
|
* @example
|
|
4121
4401
|
* 1
|
|
4122
4402
|
*/
|
|
4123
4403
|
usbRedirectType?: number;
|
|
4124
4404
|
/**
|
|
4405
|
+
* @remarks
|
|
4406
|
+
* The type of the USB redirection rule.
|
|
4407
|
+
*
|
|
4125
4408
|
* @example
|
|
4126
4409
|
* 1
|
|
4127
4410
|
*/
|
|
4128
4411
|
usbRuleType?: number;
|
|
4129
4412
|
/**
|
|
4413
|
+
* @remarks
|
|
4414
|
+
* 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).
|
|
4415
|
+
*
|
|
4130
4416
|
* @example
|
|
4131
4417
|
* 04**
|
|
4132
4418
|
*/
|
|
@@ -4162,435 +4448,765 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsUsbSupplyRe
|
|
|
4162
4448
|
|
|
4163
4449
|
export class DescribeCenterPolicyListResponseBodyDescribePolicyGroups extends $dara.Model {
|
|
4164
4450
|
/**
|
|
4451
|
+
* @remarks
|
|
4452
|
+
* Indicates whether the admin permissions are granted to end users.
|
|
4453
|
+
*
|
|
4454
|
+
* > This parameter is in private preview and only available to specific users.
|
|
4455
|
+
*
|
|
4165
4456
|
* @example
|
|
4166
4457
|
* deny
|
|
4167
4458
|
*/
|
|
4168
4459
|
adminAccess?: string;
|
|
4169
4460
|
/**
|
|
4461
|
+
* @remarks
|
|
4462
|
+
* Indicates whether anti-screenshot is enabled.
|
|
4463
|
+
*
|
|
4170
4464
|
* @example
|
|
4171
4465
|
* off
|
|
4172
4466
|
*/
|
|
4173
4467
|
appContentProtection?: string;
|
|
4468
|
+
/**
|
|
4469
|
+
* @remarks
|
|
4470
|
+
* The client IP address whitelists.
|
|
4471
|
+
*/
|
|
4174
4472
|
authorizeAccessPolicyRules?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeAccessPolicyRules[];
|
|
4473
|
+
/**
|
|
4474
|
+
* @remarks
|
|
4475
|
+
* The security group rules.
|
|
4476
|
+
*/
|
|
4175
4477
|
authorizeSecurityPolicyRules?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeSecurityPolicyRules[];
|
|
4176
4478
|
/**
|
|
4479
|
+
* @remarks
|
|
4480
|
+
* Indicates whether on-premises webcam redirection is enabled.
|
|
4481
|
+
*
|
|
4177
4482
|
* @example
|
|
4178
4483
|
* on
|
|
4179
4484
|
*/
|
|
4180
4485
|
cameraRedirect?: string;
|
|
4486
|
+
/**
|
|
4487
|
+
* @remarks
|
|
4488
|
+
* The logon method control rules.
|
|
4489
|
+
*/
|
|
4181
4490
|
clientTypes?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsClientTypes[];
|
|
4182
4491
|
/**
|
|
4492
|
+
* @remarks
|
|
4493
|
+
* The read/write permissions on the clipboard.
|
|
4494
|
+
*
|
|
4183
4495
|
* @example
|
|
4184
4496
|
* off
|
|
4185
4497
|
*/
|
|
4186
4498
|
clipboard?: string;
|
|
4187
4499
|
/**
|
|
4500
|
+
* @remarks
|
|
4501
|
+
* Indicates whether color enhancement is enabled for design and 3D applications.
|
|
4502
|
+
*
|
|
4188
4503
|
* @example
|
|
4189
4504
|
* off
|
|
4190
4505
|
*/
|
|
4191
4506
|
colorEnhancement?: string;
|
|
4192
4507
|
/**
|
|
4508
|
+
* @remarks
|
|
4509
|
+
* The CPU underclocking duration. Valid values: 30 to 120. Unit: seconds.
|
|
4510
|
+
*
|
|
4193
4511
|
* @example
|
|
4194
4512
|
* 30
|
|
4195
4513
|
*/
|
|
4196
4514
|
cpuDownGradeDuration?: number;
|
|
4515
|
+
/**
|
|
4516
|
+
* @remarks
|
|
4517
|
+
* The CPU processors.
|
|
4518
|
+
*/
|
|
4197
4519
|
cpuProcessors?: string[];
|
|
4198
4520
|
/**
|
|
4521
|
+
* @remarks
|
|
4522
|
+
* The CPU spike protection policy.
|
|
4523
|
+
*
|
|
4199
4524
|
* @example
|
|
4200
4525
|
* on
|
|
4201
4526
|
*/
|
|
4202
4527
|
cpuProtectedMode?: string;
|
|
4203
4528
|
/**
|
|
4529
|
+
* @remarks
|
|
4530
|
+
* The overall CPU usage. Valid values: 70 to 90. Unit: percentage (%).
|
|
4531
|
+
*
|
|
4204
4532
|
* @example
|
|
4205
4533
|
* 70
|
|
4206
4534
|
*/
|
|
4207
4535
|
cpuRateLimit?: number;
|
|
4208
4536
|
/**
|
|
4537
|
+
* @remarks
|
|
4538
|
+
* The overall CPU sampling duration. Valid values: 10 to 60. Unit: seconds.
|
|
4539
|
+
*
|
|
4209
4540
|
* @example
|
|
4210
4541
|
* 10
|
|
4211
4542
|
*/
|
|
4212
4543
|
cpuSampleDuration?: number;
|
|
4213
4544
|
/**
|
|
4545
|
+
* @remarks
|
|
4546
|
+
* The single-CPU usage. Valid values: 70 to 100. Unit: %.
|
|
4547
|
+
*
|
|
4214
4548
|
* @example
|
|
4215
4549
|
* 70
|
|
4216
4550
|
*/
|
|
4217
4551
|
cpuSingleRateLimit?: number;
|
|
4218
4552
|
/**
|
|
4553
|
+
* @remarks
|
|
4554
|
+
* The number of cloud computers that are associated with the policy.
|
|
4555
|
+
*
|
|
4219
4556
|
* @example
|
|
4220
4557
|
* 1
|
|
4221
4558
|
*/
|
|
4222
4559
|
desktopCount?: number;
|
|
4223
4560
|
/**
|
|
4561
|
+
* @remarks
|
|
4562
|
+
* The number of cloud computer shares that are associated with the policy.
|
|
4563
|
+
*
|
|
4224
4564
|
* @example
|
|
4225
4565
|
* 1
|
|
4226
4566
|
*/
|
|
4227
4567
|
desktopGroupCount?: number;
|
|
4568
|
+
/**
|
|
4569
|
+
* @remarks
|
|
4570
|
+
* The device redirection rules.
|
|
4571
|
+
*/
|
|
4228
4572
|
deviceRedirects?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRedirects[];
|
|
4573
|
+
/**
|
|
4574
|
+
* @remarks
|
|
4575
|
+
* The custom peripheral rules.
|
|
4576
|
+
*/
|
|
4229
4577
|
deviceRules?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRules[];
|
|
4230
4578
|
/**
|
|
4579
|
+
* @remarks
|
|
4580
|
+
* Indicates whether the session is retained after disconnection.
|
|
4581
|
+
*
|
|
4582
|
+
* > This parameter applies only to cloud application policies.
|
|
4583
|
+
*
|
|
4231
4584
|
* @example
|
|
4232
4585
|
* persistent
|
|
4233
4586
|
*/
|
|
4234
4587
|
disconnectKeepSession?: string;
|
|
4235
4588
|
/**
|
|
4589
|
+
* @remarks
|
|
4590
|
+
* The retention period of the session after disconnection. Unit: seconds.
|
|
4591
|
+
*
|
|
4592
|
+
* > This parameter applies only to cloud application policies.
|
|
4593
|
+
*
|
|
4236
4594
|
* @example
|
|
4237
4595
|
* 120
|
|
4238
4596
|
*/
|
|
4239
4597
|
disconnectKeepSessionTime?: number;
|
|
4240
4598
|
/**
|
|
4599
|
+
* @remarks
|
|
4600
|
+
* The display mode.
|
|
4601
|
+
*
|
|
4241
4602
|
* @example
|
|
4242
4603
|
* adminCustom
|
|
4243
4604
|
*/
|
|
4244
4605
|
displayMode?: string;
|
|
4245
4606
|
/**
|
|
4607
|
+
* @remarks
|
|
4608
|
+
* The field where the domain resolution policy is applied.
|
|
4609
|
+
*
|
|
4246
4610
|
* @example
|
|
4247
4611
|
* xxxx
|
|
4248
4612
|
*/
|
|
4249
4613
|
domainRegisterValue?: string;
|
|
4614
|
+
/**
|
|
4615
|
+
* @remarks
|
|
4616
|
+
* The domain resolution policies.
|
|
4617
|
+
*/
|
|
4250
4618
|
domainResolveRule?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDomainResolveRule[];
|
|
4251
4619
|
/**
|
|
4620
|
+
* @remarks
|
|
4621
|
+
* Indicates whether domain name resolution is allowed.
|
|
4622
|
+
*
|
|
4252
4623
|
* @example
|
|
4253
4624
|
* on
|
|
4254
4625
|
*/
|
|
4255
4626
|
domainResolveRuleType?: string;
|
|
4256
4627
|
/**
|
|
4628
|
+
* @remarks
|
|
4629
|
+
* Indicates whether end users are allowed to request administrator help.
|
|
4630
|
+
*
|
|
4257
4631
|
* @example
|
|
4258
4632
|
* off
|
|
4259
4633
|
*/
|
|
4260
4634
|
endUserApplyAdminCoordinate?: string;
|
|
4261
4635
|
/**
|
|
4636
|
+
* @remarks
|
|
4637
|
+
* Indicates whether end users in the same workspace can share cloud computers.
|
|
4638
|
+
*
|
|
4262
4639
|
* @example
|
|
4263
4640
|
* off
|
|
4264
4641
|
*/
|
|
4265
4642
|
endUserGroupCoordinate?: string;
|
|
4266
4643
|
/**
|
|
4644
|
+
* @remarks
|
|
4645
|
+
* Indicates whether image quality control is enabled. For optimal computer performance and user experience in professional design scenarios, we recommend enabling this feature.
|
|
4646
|
+
*
|
|
4267
4647
|
* @example
|
|
4268
4648
|
* off
|
|
4269
4649
|
*/
|
|
4270
4650
|
gpuAcceleration?: string;
|
|
4271
4651
|
/**
|
|
4652
|
+
* @remarks
|
|
4653
|
+
* The web client access policy.
|
|
4654
|
+
*
|
|
4272
4655
|
* @example
|
|
4273
4656
|
* off
|
|
4274
4657
|
*/
|
|
4275
4658
|
html5Access?: string;
|
|
4276
4659
|
/**
|
|
4660
|
+
* @remarks
|
|
4661
|
+
* The file transfer policy of the HTML5 client.
|
|
4662
|
+
*
|
|
4277
4663
|
* @example
|
|
4278
4664
|
* off
|
|
4279
4665
|
*/
|
|
4280
4666
|
html5FileTransfer?: string;
|
|
4281
4667
|
/**
|
|
4668
|
+
* @remarks
|
|
4669
|
+
* The network communication protocol.
|
|
4670
|
+
*
|
|
4282
4671
|
* @example
|
|
4283
4672
|
* tcp
|
|
4284
4673
|
*/
|
|
4285
4674
|
internetCommunicationProtocol?: string;
|
|
4675
|
+
internetPrinter?: string;
|
|
4286
4676
|
/**
|
|
4677
|
+
* @remarks
|
|
4678
|
+
* The read/write permissions on the on-premises drive.
|
|
4679
|
+
*
|
|
4287
4680
|
* @example
|
|
4288
4681
|
* readwrite
|
|
4289
4682
|
*/
|
|
4290
4683
|
localDrive?: string;
|
|
4291
4684
|
/**
|
|
4685
|
+
* @remarks
|
|
4686
|
+
* The maximum duration to retry reconnecting to cloud computers after an unexpected disconnection (non-human causes). Valid values: 30 to 7200. Unit: seconds.
|
|
4687
|
+
*
|
|
4292
4688
|
* @example
|
|
4293
4689
|
* 120
|
|
4294
4690
|
*/
|
|
4295
4691
|
maxReconnectTime?: number;
|
|
4296
4692
|
/**
|
|
4693
|
+
* @remarks
|
|
4694
|
+
* The memory underclocking duration per process. Valid values: 30 to 120. Unit: seconds.
|
|
4695
|
+
*
|
|
4297
4696
|
* @example
|
|
4298
4697
|
* 30
|
|
4299
4698
|
*/
|
|
4300
4699
|
memoryDownGradeDuration?: number;
|
|
4700
|
+
/**
|
|
4701
|
+
* @remarks
|
|
4702
|
+
* The memory processors.
|
|
4703
|
+
*/
|
|
4301
4704
|
memoryProcessors?: string[];
|
|
4302
4705
|
/**
|
|
4706
|
+
* @remarks
|
|
4707
|
+
* The memory spike protection policy.
|
|
4708
|
+
*
|
|
4303
4709
|
* @example
|
|
4304
4710
|
* off
|
|
4305
4711
|
*/
|
|
4306
4712
|
memoryProtectedMode?: string;
|
|
4307
4713
|
/**
|
|
4714
|
+
* @remarks
|
|
4715
|
+
* The overall memory usage. Valid values: 70 to 90. Unit: %.
|
|
4716
|
+
*
|
|
4308
4717
|
* @example
|
|
4309
4718
|
* 70
|
|
4310
4719
|
*/
|
|
4311
4720
|
memoryRateLimit?: number;
|
|
4312
4721
|
/**
|
|
4722
|
+
* @remarks
|
|
4723
|
+
* The overall memory sampling duration. Valid values: 30 to 60. Unit: seconds.
|
|
4724
|
+
*
|
|
4313
4725
|
* @example
|
|
4314
4726
|
* 30
|
|
4315
4727
|
*/
|
|
4316
4728
|
memorySampleDuration?: number;
|
|
4317
4729
|
/**
|
|
4730
|
+
* @remarks
|
|
4731
|
+
* The memory usage per process. Valid values: 30 to 60. Unit: %.
|
|
4732
|
+
*
|
|
4318
4733
|
* @example
|
|
4319
4734
|
* 30
|
|
4320
4735
|
*/
|
|
4321
4736
|
memorySingleRateLimit?: number;
|
|
4322
4737
|
/**
|
|
4738
|
+
* @remarks
|
|
4739
|
+
* 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).
|
|
4740
|
+
*
|
|
4741
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
4742
|
+
*
|
|
4323
4743
|
* @example
|
|
4324
4744
|
* off
|
|
4325
4745
|
*/
|
|
4326
4746
|
mobileRestart?: string;
|
|
4327
4747
|
/**
|
|
4748
|
+
* @remarks
|
|
4749
|
+
* 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).
|
|
4750
|
+
*
|
|
4751
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
4752
|
+
*
|
|
4328
4753
|
* @example
|
|
4329
4754
|
* off
|
|
4330
4755
|
*/
|
|
4331
4756
|
mobileShutdown?: string;
|
|
4332
4757
|
/**
|
|
4758
|
+
* @remarks
|
|
4759
|
+
* The policy name.
|
|
4760
|
+
*
|
|
4333
4761
|
* @example
|
|
4334
4762
|
* testPolicyGroupName
|
|
4335
4763
|
*/
|
|
4336
4764
|
name?: string;
|
|
4337
4765
|
/**
|
|
4766
|
+
* @remarks
|
|
4767
|
+
* The network redirection policy.
|
|
4768
|
+
*
|
|
4769
|
+
* > This parameter is in private preview and only available to specific users.
|
|
4770
|
+
*
|
|
4338
4771
|
* @example
|
|
4339
4772
|
* off
|
|
4340
4773
|
*/
|
|
4341
4774
|
netRedirect?: string;
|
|
4775
|
+
/**
|
|
4776
|
+
* @remarks
|
|
4777
|
+
* The network redirection policies.
|
|
4778
|
+
*
|
|
4779
|
+
* > This parameter is in private preview and only available to specific users.
|
|
4780
|
+
*/
|
|
4342
4781
|
netRedirectRule?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsNetRedirectRule[];
|
|
4343
4782
|
/**
|
|
4783
|
+
* @remarks
|
|
4784
|
+
* Indicates whether a disconnection is enforced upon inactivity.
|
|
4785
|
+
*
|
|
4786
|
+
* > This parameter applies only to cloud application policies.
|
|
4787
|
+
*
|
|
4344
4788
|
* @example
|
|
4345
4789
|
* off
|
|
4346
4790
|
*/
|
|
4347
4791
|
noOperationDisconnect?: string;
|
|
4348
4792
|
/**
|
|
4793
|
+
* @remarks
|
|
4794
|
+
* The duration of disconnection after inactivity. Unit: seconds.
|
|
4795
|
+
*
|
|
4796
|
+
* > This parameter applies only to cloud application policies.
|
|
4797
|
+
*
|
|
4349
4798
|
* @example
|
|
4350
4799
|
* 120
|
|
4351
4800
|
*/
|
|
4352
4801
|
noOperationDisconnectTime?: number;
|
|
4353
4802
|
/**
|
|
4803
|
+
* @remarks
|
|
4804
|
+
* The policy ID.
|
|
4805
|
+
*
|
|
4354
4806
|
* @example
|
|
4355
4807
|
* pg-gx2x1dhsmthe9****
|
|
4356
4808
|
*/
|
|
4357
4809
|
policyGroupId?: string;
|
|
4358
4810
|
/**
|
|
4811
|
+
* @remarks
|
|
4812
|
+
* The policy type.
|
|
4813
|
+
*
|
|
4359
4814
|
* @example
|
|
4360
4815
|
* SYSTEM
|
|
4361
4816
|
*/
|
|
4362
4817
|
policyGroupType?: string;
|
|
4363
4818
|
/**
|
|
4819
|
+
* @remarks
|
|
4820
|
+
* The status of the cloud computer policy.
|
|
4821
|
+
*
|
|
4364
4822
|
* @example
|
|
4365
4823
|
* AVAILABLE
|
|
4366
4824
|
*/
|
|
4367
4825
|
policyStatus?: string;
|
|
4368
4826
|
/**
|
|
4827
|
+
* @remarks
|
|
4828
|
+
* The printer redirection policy.
|
|
4829
|
+
*
|
|
4369
4830
|
* @example
|
|
4370
4831
|
* off
|
|
4371
4832
|
*/
|
|
4372
4833
|
printerRedirection?: string;
|
|
4373
4834
|
/**
|
|
4835
|
+
* @remarks
|
|
4836
|
+
* Indicates whether image quality enhancement is enabled for design and 3D applications.
|
|
4837
|
+
*
|
|
4374
4838
|
* @example
|
|
4375
4839
|
* off
|
|
4376
4840
|
*/
|
|
4377
4841
|
qualityEnhancement?: string;
|
|
4378
4842
|
/**
|
|
4843
|
+
* @remarks
|
|
4844
|
+
* Indicates whether custom screen recording is enabled.
|
|
4845
|
+
*
|
|
4379
4846
|
* @example
|
|
4380
4847
|
* off
|
|
4381
4848
|
*/
|
|
4382
4849
|
recordContent?: string;
|
|
4383
4850
|
/**
|
|
4851
|
+
* @remarks
|
|
4852
|
+
* The duration for which custom screen recordings are kept before they expire. Default value: 30 days.
|
|
4853
|
+
*
|
|
4384
4854
|
* @example
|
|
4385
4855
|
* 30
|
|
4386
4856
|
*/
|
|
4387
4857
|
recordContentExpires?: number;
|
|
4388
4858
|
/**
|
|
4859
|
+
* @remarks
|
|
4860
|
+
* The duration of screen recording after the specified event is detected. Unit: minutes. Valid values: 10 to 60.
|
|
4861
|
+
*
|
|
4389
4862
|
* @example
|
|
4390
4863
|
* 10
|
|
4391
4864
|
*/
|
|
4392
4865
|
recordEventDuration?: number;
|
|
4866
|
+
/**
|
|
4867
|
+
* @remarks
|
|
4868
|
+
* The absolute paths to screen recording files.
|
|
4869
|
+
*/
|
|
4393
4870
|
recordEventFilePaths?: string[];
|
|
4871
|
+
/**
|
|
4872
|
+
* @remarks
|
|
4873
|
+
* The absolute paths to screen recording registries.
|
|
4874
|
+
*/
|
|
4394
4875
|
recordEventRegisters?: string[];
|
|
4395
4876
|
/**
|
|
4877
|
+
* @remarks
|
|
4878
|
+
* Indicates whether screen recording is enabled.
|
|
4879
|
+
*
|
|
4396
4880
|
* @example
|
|
4397
4881
|
* off
|
|
4398
4882
|
*/
|
|
4399
4883
|
recording?: string;
|
|
4400
4884
|
/**
|
|
4885
|
+
* @remarks
|
|
4886
|
+
* Indicates whether audio files generated on cloud computers are recorded.
|
|
4887
|
+
*
|
|
4401
4888
|
* @example
|
|
4402
4889
|
* on
|
|
4403
4890
|
*/
|
|
4404
4891
|
recordingAudio?: string;
|
|
4405
4892
|
/**
|
|
4893
|
+
* @remarks
|
|
4894
|
+
* 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.
|
|
4895
|
+
*
|
|
4406
4896
|
* @example
|
|
4407
4897
|
* 10
|
|
4408
4898
|
*/
|
|
4409
4899
|
recordingDuration?: number;
|
|
4410
4900
|
/**
|
|
4901
|
+
* @remarks
|
|
4902
|
+
* 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.
|
|
4903
|
+
*
|
|
4411
4904
|
* @example
|
|
4412
4905
|
* 08:59:00
|
|
4413
4906
|
*/
|
|
4414
4907
|
recordingEndTime?: string;
|
|
4415
4908
|
/**
|
|
4909
|
+
* @remarks
|
|
4910
|
+
* The retention period of the screen recording file. Valid values: 1 to 180. Unit: days.
|
|
4911
|
+
*
|
|
4416
4912
|
* @example
|
|
4417
4913
|
* 15
|
|
4418
4914
|
*/
|
|
4419
4915
|
recordingExpires?: number;
|
|
4420
4916
|
/**
|
|
4917
|
+
* @remarks
|
|
4918
|
+
* The frame rate of screen recording. Unit: fps.
|
|
4919
|
+
*
|
|
4421
4920
|
* @example
|
|
4422
4921
|
* 5
|
|
4423
4922
|
*/
|
|
4424
4923
|
recordingFps?: number;
|
|
4425
4924
|
/**
|
|
4925
|
+
* @remarks
|
|
4926
|
+
* 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.
|
|
4927
|
+
*
|
|
4426
4928
|
* @example
|
|
4427
4929
|
* 08:00:00
|
|
4428
4930
|
*/
|
|
4429
4931
|
recordingStartTime?: string;
|
|
4430
4932
|
/**
|
|
4933
|
+
* @remarks
|
|
4934
|
+
* Indicates whether to notify end users when screen recording is enabled.
|
|
4935
|
+
*
|
|
4431
4936
|
* @example
|
|
4432
4937
|
* off
|
|
4433
4938
|
*/
|
|
4434
4939
|
recordingUserNotify?: string;
|
|
4940
|
+
/**
|
|
4941
|
+
* @remarks
|
|
4942
|
+
* The notification sent to end users when screen recording is enabled.
|
|
4943
|
+
*/
|
|
4435
4944
|
recordingUserNotifyMessage?: string;
|
|
4436
4945
|
/**
|
|
4946
|
+
* @remarks
|
|
4947
|
+
* The keyboard and mouse control permissions during remote assistance.
|
|
4948
|
+
*
|
|
4437
4949
|
* @example
|
|
4438
4950
|
* fullControl
|
|
4439
4951
|
*/
|
|
4440
4952
|
remoteCoordinate?: string;
|
|
4441
4953
|
/**
|
|
4954
|
+
* @remarks
|
|
4955
|
+
* The height of the resolution. Unit: pixel.
|
|
4956
|
+
*
|
|
4442
4957
|
* @example
|
|
4443
4958
|
* 1280
|
|
4444
4959
|
*/
|
|
4445
4960
|
resolutionHeight?: number;
|
|
4446
4961
|
/**
|
|
4962
|
+
* @remarks
|
|
4963
|
+
* The resolution type.
|
|
4964
|
+
*
|
|
4447
4965
|
* @example
|
|
4448
4966
|
* adaptive
|
|
4449
4967
|
*/
|
|
4450
4968
|
resolutionModel?: string;
|
|
4451
4969
|
/**
|
|
4970
|
+
* @remarks
|
|
4971
|
+
* The width of the resolution. Unit: pixel.
|
|
4972
|
+
*
|
|
4452
4973
|
* @example
|
|
4453
4974
|
* 1920
|
|
4454
4975
|
*/
|
|
4455
4976
|
resolutionWidth?: number;
|
|
4456
4977
|
/**
|
|
4978
|
+
* @remarks
|
|
4979
|
+
* The number of resource groups that are associated with the policy.
|
|
4980
|
+
*
|
|
4457
4981
|
* @example
|
|
4458
4982
|
* 1
|
|
4459
4983
|
*/
|
|
4460
4984
|
resourceGroupCount?: number;
|
|
4985
|
+
safeMenu?: string;
|
|
4461
4986
|
/**
|
|
4987
|
+
* @remarks
|
|
4988
|
+
* The effective scope of the policy.
|
|
4989
|
+
*
|
|
4462
4990
|
* @example
|
|
4463
4991
|
* GLOBAL
|
|
4464
4992
|
*/
|
|
4465
4993
|
scope?: string;
|
|
4994
|
+
/**
|
|
4995
|
+
* @remarks
|
|
4996
|
+
* The effective scopes specified by CIDR blocks.
|
|
4997
|
+
*/
|
|
4466
4998
|
scopeValue?: string[];
|
|
4467
4999
|
/**
|
|
5000
|
+
* @remarks
|
|
5001
|
+
* Indicates whether smoothness enhancement is enabled for daily office use.
|
|
5002
|
+
*
|
|
4468
5003
|
* @example
|
|
4469
5004
|
* off
|
|
4470
5005
|
*/
|
|
4471
5006
|
smoothEnhancement?: string;
|
|
4472
5007
|
/**
|
|
5008
|
+
* @remarks
|
|
5009
|
+
* Indicates whether the metric status entry is displayed in the DesktopAssistant menu.
|
|
5010
|
+
*
|
|
4473
5011
|
* @example
|
|
4474
5012
|
* on
|
|
4475
5013
|
*/
|
|
4476
5014
|
statusMonitor?: string;
|
|
4477
5015
|
/**
|
|
5016
|
+
* @remarks
|
|
5017
|
+
* The streaming mode.
|
|
5018
|
+
*
|
|
4478
5019
|
* @example
|
|
4479
5020
|
* smooth
|
|
4480
5021
|
*/
|
|
4481
5022
|
streamingMode?: string;
|
|
4482
5023
|
/**
|
|
5024
|
+
* @remarks
|
|
5025
|
+
* The target frame rate. Valid values: 10 to 60. Unit: fps.
|
|
5026
|
+
*
|
|
4483
5027
|
* @example
|
|
4484
5028
|
* 30
|
|
4485
5029
|
*/
|
|
4486
5030
|
targetFps?: number;
|
|
4487
5031
|
/**
|
|
5032
|
+
* @remarks
|
|
5033
|
+
* Indicates whether the application taskbar is displayed.
|
|
5034
|
+
*
|
|
5035
|
+
* > This parameter applies only to cloud application policies.
|
|
5036
|
+
*
|
|
4488
5037
|
* @example
|
|
4489
5038
|
* off
|
|
4490
5039
|
*/
|
|
4491
5040
|
taskbar?: string;
|
|
4492
5041
|
/**
|
|
5042
|
+
* @remarks
|
|
5043
|
+
* The USB redirection policy.
|
|
5044
|
+
*
|
|
4493
5045
|
* @example
|
|
4494
5046
|
* off
|
|
4495
5047
|
*/
|
|
4496
5048
|
usbRedirect?: string;
|
|
5049
|
+
/**
|
|
5050
|
+
* @remarks
|
|
5051
|
+
* The USB redirection rules.
|
|
5052
|
+
*/
|
|
4497
5053
|
usbSupplyRedirectRule?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsUsbSupplyRedirectRule[];
|
|
4498
5054
|
/**
|
|
5055
|
+
* @remarks
|
|
5056
|
+
* The average bitrate for video encoding. Valid values: 1000 to 50000.
|
|
5057
|
+
*
|
|
4499
5058
|
* @example
|
|
4500
5059
|
* 1000
|
|
4501
5060
|
*/
|
|
4502
5061
|
videoEncAvgKbps?: number;
|
|
4503
5062
|
/**
|
|
5063
|
+
* @remarks
|
|
5064
|
+
* The maximum QP for video files. Higher QP values result in lower video quality. Valid values: 0 to 51.
|
|
5065
|
+
*
|
|
4504
5066
|
* @example
|
|
4505
5067
|
* 20
|
|
4506
5068
|
*/
|
|
4507
5069
|
videoEncMaxQP?: number;
|
|
4508
5070
|
/**
|
|
5071
|
+
* @remarks
|
|
5072
|
+
* The minimum quantizer parameter (QP) for video files. A lower QP means better video quality. Valid values: 0 to 51.
|
|
5073
|
+
*
|
|
4509
5074
|
* @example
|
|
4510
5075
|
* 20
|
|
4511
5076
|
*/
|
|
4512
5077
|
videoEncMinQP?: number;
|
|
4513
5078
|
/**
|
|
5079
|
+
* @remarks
|
|
5080
|
+
* The peak bitrate for video encoding. Valid values: 1000 to 50000.
|
|
5081
|
+
*
|
|
4514
5082
|
* @example
|
|
4515
5083
|
* 2000
|
|
4516
5084
|
*/
|
|
4517
5085
|
videoEncPeakKbps?: number;
|
|
4518
5086
|
/**
|
|
5087
|
+
* @remarks
|
|
5088
|
+
* The video encoding policy.
|
|
5089
|
+
*
|
|
4519
5090
|
* @example
|
|
4520
5091
|
* qualityFirst
|
|
4521
5092
|
*/
|
|
4522
5093
|
videoEncPolicy?: string;
|
|
4523
5094
|
/**
|
|
5095
|
+
* @remarks
|
|
5096
|
+
* Indicates whether multimedia redirection is enabled.
|
|
5097
|
+
*
|
|
4524
5098
|
* @example
|
|
4525
5099
|
* off
|
|
4526
5100
|
*/
|
|
4527
5101
|
videoRedirect?: string;
|
|
4528
5102
|
/**
|
|
5103
|
+
* @remarks
|
|
5104
|
+
* The image quality policy.
|
|
5105
|
+
*
|
|
4529
5106
|
* @example
|
|
4530
5107
|
* medium
|
|
4531
5108
|
*/
|
|
4532
5109
|
visualQuality?: string;
|
|
4533
5110
|
/**
|
|
5111
|
+
* @remarks
|
|
5112
|
+
* The watermark policy.
|
|
5113
|
+
*
|
|
4534
5114
|
* @example
|
|
4535
5115
|
* on
|
|
4536
5116
|
*/
|
|
4537
5117
|
watermark?: string;
|
|
4538
5118
|
/**
|
|
5119
|
+
* @remarks
|
|
5120
|
+
* Indicates whether anti-screen capture is enabled for invisible watermarks.
|
|
5121
|
+
*
|
|
4539
5122
|
* @example
|
|
4540
5123
|
* off
|
|
4541
5124
|
*/
|
|
4542
5125
|
watermarkAntiCam?: string;
|
|
4543
5126
|
/**
|
|
5127
|
+
* @remarks
|
|
5128
|
+
* The font color of the watermark. Valid values: 0 to 16777215.
|
|
5129
|
+
*
|
|
4544
5130
|
* @example
|
|
4545
5131
|
* 0
|
|
4546
5132
|
*/
|
|
4547
5133
|
watermarkColor?: number;
|
|
4548
5134
|
/**
|
|
5135
|
+
* @remarks
|
|
5136
|
+
* If you set `WatermarkType` to `custom`, you must also specify `WatermarkCustomText`.
|
|
5137
|
+
*
|
|
4549
5138
|
* @example
|
|
4550
5139
|
* custom-watermark
|
|
4551
5140
|
*/
|
|
4552
5141
|
watermarkCustomText?: string;
|
|
4553
5142
|
/**
|
|
5143
|
+
* @remarks
|
|
5144
|
+
* The watermark rotation. Valid values: -10 to -30.
|
|
5145
|
+
*
|
|
4554
5146
|
* @example
|
|
4555
5147
|
* -10
|
|
4556
5148
|
*/
|
|
4557
5149
|
watermarkDegree?: number;
|
|
4558
5150
|
/**
|
|
5151
|
+
* @remarks
|
|
5152
|
+
* The font size of the watermark. Valid values: 10 to 20.
|
|
5153
|
+
*
|
|
4559
5154
|
* @example
|
|
4560
5155
|
* 10
|
|
4561
5156
|
*/
|
|
4562
5157
|
watermarkFontSize?: number;
|
|
4563
5158
|
/**
|
|
5159
|
+
* @remarks
|
|
5160
|
+
* The font style of the watermark.
|
|
5161
|
+
*
|
|
4564
5162
|
* @example
|
|
4565
5163
|
* plain
|
|
4566
5164
|
*/
|
|
4567
5165
|
watermarkFontStyle?: string;
|
|
4568
5166
|
/**
|
|
5167
|
+
* @remarks
|
|
5168
|
+
* The enhancement level for invisible watermarks.
|
|
5169
|
+
*
|
|
4569
5170
|
* @example
|
|
4570
5171
|
* medium
|
|
4571
5172
|
*/
|
|
4572
5173
|
watermarkPower?: string;
|
|
4573
5174
|
/**
|
|
5175
|
+
* @remarks
|
|
5176
|
+
* The number of watermark rows.
|
|
5177
|
+
*
|
|
4574
5178
|
* @example
|
|
4575
5179
|
* 3
|
|
4576
5180
|
*/
|
|
4577
5181
|
watermarkRowAmount?: number;
|
|
4578
5182
|
/**
|
|
5183
|
+
* @remarks
|
|
5184
|
+
* Indicates whether security priority is enabled for invisible watermarks.
|
|
5185
|
+
*
|
|
4579
5186
|
* @example
|
|
4580
5187
|
* on
|
|
4581
5188
|
*/
|
|
4582
5189
|
watermarkSecurity?: string;
|
|
4583
5190
|
/**
|
|
5191
|
+
* @remarks
|
|
5192
|
+
* The watermark transparency. A higher value means the watermark is less transparent. Valid values: 10 to 100.
|
|
5193
|
+
*
|
|
4584
5194
|
* @example
|
|
4585
5195
|
* 10
|
|
4586
5196
|
*/
|
|
4587
5197
|
watermarkTransparencyValue?: number;
|
|
4588
5198
|
/**
|
|
5199
|
+
* @remarks
|
|
5200
|
+
* The watermark type.
|
|
5201
|
+
*
|
|
4589
5202
|
* @example
|
|
4590
5203
|
* EndUserId
|
|
4591
5204
|
*/
|
|
4592
5205
|
watermarkType?: string;
|
|
4593
5206
|
/**
|
|
5207
|
+
* @remarks
|
|
5208
|
+
* Indicates whether the Xiaoying AI Assistant entry is displayed in the DesktopAssistant menu.
|
|
5209
|
+
*
|
|
4594
5210
|
* @example
|
|
4595
5211
|
* on
|
|
4596
5212
|
*/
|
|
@@ -4627,6 +5243,7 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroups extends $d
|
|
|
4627
5243
|
html5Access: 'Html5Access',
|
|
4628
5244
|
html5FileTransfer: 'Html5FileTransfer',
|
|
4629
5245
|
internetCommunicationProtocol: 'InternetCommunicationProtocol',
|
|
5246
|
+
internetPrinter: 'InternetPrinter',
|
|
4630
5247
|
localDrive: 'LocalDrive',
|
|
4631
5248
|
maxReconnectTime: 'MaxReconnectTime',
|
|
4632
5249
|
memoryDownGradeDuration: 'MemoryDownGradeDuration',
|
|
@@ -4666,6 +5283,7 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroups extends $d
|
|
|
4666
5283
|
resolutionModel: 'ResolutionModel',
|
|
4667
5284
|
resolutionWidth: 'ResolutionWidth',
|
|
4668
5285
|
resourceGroupCount: 'ResourceGroupCount',
|
|
5286
|
+
safeMenu: 'SafeMenu',
|
|
4669
5287
|
scope: 'Scope',
|
|
4670
5288
|
scopeValue: 'ScopeValue',
|
|
4671
5289
|
smoothEnhancement: 'SmoothEnhancement',
|
|
@@ -4730,6 +5348,7 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroups extends $d
|
|
|
4730
5348
|
html5Access: 'string',
|
|
4731
5349
|
html5FileTransfer: 'string',
|
|
4732
5350
|
internetCommunicationProtocol: 'string',
|
|
5351
|
+
internetPrinter: 'string',
|
|
4733
5352
|
localDrive: 'string',
|
|
4734
5353
|
maxReconnectTime: 'number',
|
|
4735
5354
|
memoryDownGradeDuration: 'number',
|
|
@@ -4769,6 +5388,7 @@ export class DescribeCenterPolicyListResponseBodyDescribePolicyGroups extends $d
|
|
|
4769
5388
|
resolutionModel: 'string',
|
|
4770
5389
|
resolutionWidth: 'number',
|
|
4771
5390
|
resourceGroupCount: 'number',
|
|
5391
|
+
safeMenu: 'string',
|
|
4772
5392
|
scope: 'string',
|
|
4773
5393
|
scopeValue: { 'type': 'array', 'itemType': 'string' },
|
|
4774
5394
|
smoothEnhancement: 'string',
|
|
@@ -10288,7 +10908,7 @@ export class DescribeGuestApplicationsResponseBodyApplicationsProcessData extend
|
|
|
10288
10908
|
cpuPercent?: number;
|
|
10289
10909
|
/**
|
|
10290
10910
|
* @remarks
|
|
10291
|
-
* The GPU
|
|
10911
|
+
* The GPU usage (%).
|
|
10292
10912
|
*
|
|
10293
10913
|
* @example
|
|
10294
10914
|
* 15
|
|
@@ -10296,7 +10916,7 @@ export class DescribeGuestApplicationsResponseBodyApplicationsProcessData extend
|
|
|
10296
10916
|
gpuPercent?: number;
|
|
10297
10917
|
/**
|
|
10298
10918
|
* @remarks
|
|
10299
|
-
* The I/O read and write performance.
|
|
10919
|
+
* The I/O read and write performance. Unit: byte/s.
|
|
10300
10920
|
*
|
|
10301
10921
|
* @example
|
|
10302
10922
|
* 124906.0
|
|
@@ -10304,7 +10924,7 @@ export class DescribeGuestApplicationsResponseBodyApplicationsProcessData extend
|
|
|
10304
10924
|
iospeed?: number;
|
|
10305
10925
|
/**
|
|
10306
10926
|
* @remarks
|
|
10307
|
-
* The memory
|
|
10927
|
+
* The memory usage (%).
|
|
10308
10928
|
*
|
|
10309
10929
|
* @example
|
|
10310
10930
|
* 34
|
|
@@ -10404,7 +11024,7 @@ export class DescribeGuestApplicationsResponseBodyApplications extends $dara.Mod
|
|
|
10404
11024
|
iconUrl?: string;
|
|
10405
11025
|
/**
|
|
10406
11026
|
* @remarks
|
|
10407
|
-
* The I/O read and write performance.
|
|
11027
|
+
* The I/O read and write performance. Unit: byte/s.
|
|
10408
11028
|
*
|
|
10409
11029
|
* @example
|
|
10410
11030
|
* 124906.0
|
|
@@ -10428,7 +11048,7 @@ export class DescribeGuestApplicationsResponseBodyApplications extends $dara.Mod
|
|
|
10428
11048
|
pid?: number;
|
|
10429
11049
|
/**
|
|
10430
11050
|
* @remarks
|
|
10431
|
-
* The
|
|
11051
|
+
* The processes.
|
|
10432
11052
|
*/
|
|
10433
11053
|
processData?: DescribeGuestApplicationsResponseBodyApplicationsProcessData[];
|
|
10434
11054
|
/**
|
|
@@ -10441,7 +11061,12 @@ export class DescribeGuestApplicationsResponseBodyApplications extends $dara.Mod
|
|
|
10441
11061
|
processPath?: string;
|
|
10442
11062
|
/**
|
|
10443
11063
|
* @remarks
|
|
10444
|
-
* The application
|
|
11064
|
+
* The status of the application.
|
|
11065
|
+
*
|
|
11066
|
+
* Valid value:
|
|
11067
|
+
*
|
|
11068
|
+
* * Idle: The application is installed in the cloud computer but is not running.
|
|
11069
|
+
* * Running: The application has been installed in the cloud computer and is running.
|
|
10445
11070
|
*
|
|
10446
11071
|
* @example
|
|
10447
11072
|
* Running
|
|
@@ -10524,6 +11149,7 @@ export class DescribeImageModifiedRecordsResponseBodyImageModifiedRecords extend
|
|
|
10524
11149
|
* xxxxImageID
|
|
10525
11150
|
*/
|
|
10526
11151
|
newImageName?: string;
|
|
11152
|
+
reason?: string;
|
|
10527
11153
|
/**
|
|
10528
11154
|
* @remarks
|
|
10529
11155
|
* The status of the image modification.
|
|
@@ -10554,6 +11180,7 @@ export class DescribeImageModifiedRecordsResponseBodyImageModifiedRecords extend
|
|
|
10554
11180
|
imageName: 'ImageName',
|
|
10555
11181
|
newImageId: 'NewImageId',
|
|
10556
11182
|
newImageName: 'NewImageName',
|
|
11183
|
+
reason: 'Reason',
|
|
10557
11184
|
status: 'Status',
|
|
10558
11185
|
updateTime: 'UpdateTime',
|
|
10559
11186
|
};
|
|
@@ -10565,6 +11192,7 @@ export class DescribeImageModifiedRecordsResponseBodyImageModifiedRecords extend
|
|
|
10565
11192
|
imageName: 'string',
|
|
10566
11193
|
newImageId: 'string',
|
|
10567
11194
|
newImageName: 'string',
|
|
11195
|
+
reason: 'string',
|
|
10568
11196
|
status: 'number',
|
|
10569
11197
|
updateTime: 'string',
|
|
10570
11198
|
};
|
|
@@ -13336,6 +13964,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRules ext
|
|
|
13336
13964
|
* 2:0
|
|
13337
13965
|
*/
|
|
13338
13966
|
optCommand?: string;
|
|
13967
|
+
platforms?: string;
|
|
13339
13968
|
/**
|
|
13340
13969
|
* @remarks
|
|
13341
13970
|
* The redirection type.
|
|
@@ -13357,6 +13986,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRules ext
|
|
|
13357
13986
|
deviceType: 'DeviceType',
|
|
13358
13987
|
deviceVid: 'DeviceVid',
|
|
13359
13988
|
optCommand: 'OptCommand',
|
|
13989
|
+
platforms: 'Platforms',
|
|
13360
13990
|
redirectType: 'RedirectType',
|
|
13361
13991
|
};
|
|
13362
13992
|
}
|
|
@@ -13368,6 +13998,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroupsDeviceRules ext
|
|
|
13368
13998
|
deviceType: 'string',
|
|
13369
13999
|
deviceVid: 'string',
|
|
13370
14000
|
optCommand: 'string',
|
|
14001
|
+
platforms: 'string',
|
|
13371
14002
|
redirectType: 'string',
|
|
13372
14003
|
};
|
|
13373
14004
|
}
|
|
@@ -13896,6 +14527,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
13896
14527
|
* BOTH
|
|
13897
14528
|
*/
|
|
13898
14529
|
internetCommunicationProtocol?: string;
|
|
14530
|
+
internetPrinter?: string;
|
|
13899
14531
|
/**
|
|
13900
14532
|
* @remarks
|
|
13901
14533
|
* The permissions on local disk mapping.
|
|
@@ -14294,6 +14926,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
14294
14926
|
* center
|
|
14295
14927
|
*/
|
|
14296
14928
|
resourceRegionId?: string;
|
|
14929
|
+
safeMenu?: string;
|
|
14297
14930
|
/**
|
|
14298
14931
|
* @remarks
|
|
14299
14932
|
* The effective scope of the policy.
|
|
@@ -14646,6 +15279,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
14646
15279
|
html5Access: 'Html5Access',
|
|
14647
15280
|
html5FileTransfer: 'Html5FileTransfer',
|
|
14648
15281
|
internetCommunicationProtocol: 'InternetCommunicationProtocol',
|
|
15282
|
+
internetPrinter: 'InternetPrinter',
|
|
14649
15283
|
localDrive: 'LocalDrive',
|
|
14650
15284
|
maxReconnectTime: 'MaxReconnectTime',
|
|
14651
15285
|
memoryDownGradeDuration: 'MemoryDownGradeDuration',
|
|
@@ -14687,6 +15321,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
14687
15321
|
resolutionWidth: 'ResolutionWidth',
|
|
14688
15322
|
resourceGroupCount: 'ResourceGroupCount',
|
|
14689
15323
|
resourceRegionId: 'ResourceRegionId',
|
|
15324
|
+
safeMenu: 'SafeMenu',
|
|
14690
15325
|
scope: 'Scope',
|
|
14691
15326
|
scopeValue: 'ScopeValue',
|
|
14692
15327
|
smoothEnhancement: 'SmoothEnhancement',
|
|
@@ -14754,6 +15389,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
14754
15389
|
html5Access: 'string',
|
|
14755
15390
|
html5FileTransfer: 'string',
|
|
14756
15391
|
internetCommunicationProtocol: 'string',
|
|
15392
|
+
internetPrinter: 'string',
|
|
14757
15393
|
localDrive: 'string',
|
|
14758
15394
|
maxReconnectTime: 'number',
|
|
14759
15395
|
memoryDownGradeDuration: 'number',
|
|
@@ -14795,6 +15431,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
14795
15431
|
resolutionWidth: 'number',
|
|
14796
15432
|
resourceGroupCount: 'number',
|
|
14797
15433
|
resourceRegionId: 'string',
|
|
15434
|
+
safeMenu: 'string',
|
|
14798
15435
|
scope: 'string',
|
|
14799
15436
|
scopeValue: { 'type': 'array', 'itemType': 'string' },
|
|
14800
15437
|
smoothEnhancement: 'string',
|
|
@@ -15210,43 +15847,84 @@ export class DescribePriceForRenewDesktopOversoldGroupResponseBodyData extends $
|
|
|
15210
15847
|
|
|
15211
15848
|
export class DescribeRecordingsResponseBodyRecordings extends $dara.Model {
|
|
15212
15849
|
/**
|
|
15850
|
+
* @remarks
|
|
15851
|
+
* The cloud computer ID.
|
|
15852
|
+
*
|
|
15213
15853
|
* @example
|
|
15214
15854
|
* ecd-10v0vuvm616sk****
|
|
15215
15855
|
*/
|
|
15216
15856
|
desktopId?: string;
|
|
15217
15857
|
/**
|
|
15858
|
+
* @remarks
|
|
15859
|
+
* The cloud computer name.
|
|
15860
|
+
*
|
|
15218
15861
|
* @example
|
|
15219
15862
|
* DemoComputer
|
|
15220
15863
|
*/
|
|
15221
15864
|
desktopName?: string;
|
|
15222
15865
|
/**
|
|
15866
|
+
* @remarks
|
|
15867
|
+
* The end time of the recording.
|
|
15868
|
+
*
|
|
15223
15869
|
* @example
|
|
15224
15870
|
* 2023-04-10T07:26:06Z
|
|
15225
15871
|
*/
|
|
15226
15872
|
endTime?: string;
|
|
15873
|
+
/**
|
|
15874
|
+
* @remarks
|
|
15875
|
+
* The end user IDs.
|
|
15876
|
+
*/
|
|
15227
15877
|
endUserIds?: string[];
|
|
15228
15878
|
/**
|
|
15879
|
+
* @remarks
|
|
15880
|
+
* The file path.
|
|
15881
|
+
*
|
|
15229
15882
|
* @example
|
|
15230
15883
|
* pg-4w5nk44zo5yl129dd/1mk78dugw344.mp4
|
|
15231
15884
|
*/
|
|
15232
15885
|
filePath?: string;
|
|
15233
15886
|
/**
|
|
15887
|
+
* @remarks
|
|
15888
|
+
* The policy ID.
|
|
15889
|
+
*
|
|
15234
15890
|
* @example
|
|
15235
15891
|
* pg-6dn811rzrwh9ws4z6
|
|
15236
15892
|
*/
|
|
15237
15893
|
policyGroupId?: string;
|
|
15238
15894
|
/**
|
|
15895
|
+
* @remarks
|
|
15896
|
+
* The size of the screen recording file. Unit: bytes.
|
|
15897
|
+
*
|
|
15239
15898
|
* @example
|
|
15240
15899
|
* 1742845
|
|
15241
15900
|
*/
|
|
15242
15901
|
recordingSize?: number;
|
|
15243
15902
|
/**
|
|
15903
|
+
* @remarks
|
|
15904
|
+
* The type of event that triggers the recording.
|
|
15905
|
+
*
|
|
15906
|
+
* Valid values:
|
|
15907
|
+
*
|
|
15908
|
+
* * byaction_cmd_ft: triggered by copy-paste or file transfer events.
|
|
15909
|
+
* * period: triggered at scheduled intervals.
|
|
15910
|
+
* * session: triggered by session lifecycle monitoring.
|
|
15911
|
+
* * byaction_commands: triggered by copy-paste only.
|
|
15912
|
+
* * alltime: continuous recording.
|
|
15913
|
+
* * byaction_file_transfer: triggered by file transfer only.
|
|
15914
|
+
*
|
|
15244
15915
|
* @example
|
|
15245
15916
|
* alltime
|
|
15246
15917
|
*/
|
|
15247
15918
|
recordingType?: string;
|
|
15919
|
+
/**
|
|
15920
|
+
* @remarks
|
|
15921
|
+
* The download URL of the screen recording file.
|
|
15922
|
+
*/
|
|
15248
15923
|
signedUrl?: string;
|
|
15249
15924
|
/**
|
|
15925
|
+
* @remarks
|
|
15926
|
+
* The start time of the recording.
|
|
15927
|
+
*
|
|
15250
15928
|
* @example
|
|
15251
15929
|
* 2023-04-10T07:26:06Z
|
|
15252
15930
|
*/
|
|
@@ -17420,28 +18098,52 @@ export class DisconnectDesktopSessionsResponseBodyInvalidSessions extends $dara.
|
|
|
17420
18098
|
}
|
|
17421
18099
|
|
|
17422
18100
|
export class DownloadCdsFileResponseBodyDownloadFileModel extends $dara.Model {
|
|
18101
|
+
/**
|
|
18102
|
+
* @remarks
|
|
18103
|
+
* This parameter is deprecated.
|
|
18104
|
+
*/
|
|
17423
18105
|
downloadType?: string;
|
|
17424
18106
|
/**
|
|
18107
|
+
* @remarks
|
|
18108
|
+
* The download URL.
|
|
18109
|
+
*
|
|
17425
18110
|
* @example
|
|
17426
18111
|
* 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
18112
|
*/
|
|
17428
18113
|
downloadUrl?: string;
|
|
18114
|
+
/**
|
|
18115
|
+
* @remarks
|
|
18116
|
+
* This parameter is deprecated.
|
|
18117
|
+
*/
|
|
17429
18118
|
expirationSecond?: string;
|
|
17430
18119
|
/**
|
|
18120
|
+
* @remarks
|
|
18121
|
+
* The validity period of the download URL.
|
|
18122
|
+
*
|
|
17431
18123
|
* @example
|
|
17432
18124
|
* 2024-07-18T02:55:49.795Z
|
|
17433
18125
|
*/
|
|
17434
18126
|
expirationTime?: string;
|
|
17435
18127
|
/**
|
|
18128
|
+
* @remarks
|
|
18129
|
+
* The file ID.
|
|
18130
|
+
*
|
|
17436
18131
|
* @example
|
|
17437
18132
|
* 667d5a322ebf7409e91c485d808fb3bd8a73efbb
|
|
17438
18133
|
*/
|
|
17439
18134
|
fileId?: string;
|
|
17440
18135
|
/**
|
|
18136
|
+
* @remarks
|
|
18137
|
+
* The size of the file. Unit: bytes.
|
|
18138
|
+
*
|
|
17441
18139
|
* @example
|
|
17442
18140
|
* 1594642
|
|
17443
18141
|
*/
|
|
17444
18142
|
size?: number;
|
|
18143
|
+
/**
|
|
18144
|
+
* @remarks
|
|
18145
|
+
* This parameter is deprecated.
|
|
18146
|
+
*/
|
|
17445
18147
|
streamUrl?: string;
|
|
17446
18148
|
static names(): { [key: string]: string } {
|
|
17447
18149
|
return {
|
|
@@ -18986,7 +19688,7 @@ export class ListOfficeSiteUsersResponseBodyUsers extends $dara.Model {
|
|
|
18986
19688
|
assignedDesktopNumber?: number;
|
|
18987
19689
|
/**
|
|
18988
19690
|
* @remarks
|
|
18989
|
-
* The display name of the
|
|
19691
|
+
* The display name of the AD account.
|
|
18990
19692
|
*
|
|
18991
19693
|
* @example
|
|
18992
19694
|
* Alice
|
|
@@ -18996,7 +19698,7 @@ export class ListOfficeSiteUsersResponseBodyUsers extends $dara.Model {
|
|
|
18996
19698
|
email?: string;
|
|
18997
19699
|
/**
|
|
18998
19700
|
* @remarks
|
|
18999
|
-
* The
|
|
19701
|
+
* The username of the AD account.
|
|
19000
19702
|
*
|
|
19001
19703
|
* @example
|
|
19002
19704
|
* Alice
|
|
@@ -19424,9 +20126,9 @@ export class ModifyCenterPolicyRequestDeviceRedirects extends $dara.Model {
|
|
|
19424
20126
|
*
|
|
19425
20127
|
* Valid values:
|
|
19426
20128
|
*
|
|
19427
|
-
* * deviceRedirect:
|
|
19428
|
-
* * usbRedirect:
|
|
19429
|
-
* * off:
|
|
20129
|
+
* * deviceRedirect: device redirection
|
|
20130
|
+
* * usbRedirect: USB redirection.
|
|
20131
|
+
* * off: any type of redirection.
|
|
19430
20132
|
*
|
|
19431
20133
|
* @example
|
|
19432
20134
|
* deviceRedirect
|
|
@@ -19478,14 +20180,14 @@ export class ModifyCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
19478
20180
|
*
|
|
19479
20181
|
* Valid values:
|
|
19480
20182
|
*
|
|
19481
|
-
* * usbKey:
|
|
20183
|
+
* * usbKey: UKeys
|
|
19482
20184
|
* * other: other peripheral devices.
|
|
19483
20185
|
* * graphicsTablet: graphics tablets.
|
|
19484
20186
|
* * cardReader: card readers.
|
|
19485
20187
|
* * printer: printers.
|
|
19486
20188
|
* * scanner: scanners.
|
|
19487
20189
|
* * storage: storage devices.
|
|
19488
|
-
* * camera: cameras.
|
|
20190
|
+
* * camera: web cameras.
|
|
19489
20191
|
* * networkInterfaceCard: NIC devices.
|
|
19490
20192
|
*
|
|
19491
20193
|
* @example
|
|
@@ -19508,15 +20210,16 @@ export class ModifyCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
19508
20210
|
* 2:0
|
|
19509
20211
|
*/
|
|
19510
20212
|
optCommand?: string;
|
|
20213
|
+
platforms?: string;
|
|
19511
20214
|
/**
|
|
19512
20215
|
* @remarks
|
|
19513
20216
|
* The redirection type.
|
|
19514
20217
|
*
|
|
19515
20218
|
* Valid values:
|
|
19516
20219
|
*
|
|
19517
|
-
* * deviceRedirect:
|
|
19518
|
-
* * usbRedirect:
|
|
19519
|
-
* * off:
|
|
20220
|
+
* * deviceRedirect: device redirection
|
|
20221
|
+
* * usbRedirect: USB redirection.
|
|
20222
|
+
* * off: any type of redirection.
|
|
19520
20223
|
*
|
|
19521
20224
|
* @example
|
|
19522
20225
|
* usbRedirect
|
|
@@ -19529,6 +20232,7 @@ export class ModifyCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
19529
20232
|
deviceType: 'DeviceType',
|
|
19530
20233
|
deviceVid: 'DeviceVid',
|
|
19531
20234
|
optCommand: 'OptCommand',
|
|
20235
|
+
platforms: 'Platforms',
|
|
19532
20236
|
redirectType: 'RedirectType',
|
|
19533
20237
|
};
|
|
19534
20238
|
}
|
|
@@ -19540,6 +20244,7 @@ export class ModifyCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
19540
20244
|
deviceType: 'string',
|
|
19541
20245
|
deviceVid: 'string',
|
|
19542
20246
|
optCommand: 'string',
|
|
20247
|
+
platforms: 'string',
|
|
19543
20248
|
redirectType: 'string',
|
|
19544
20249
|
};
|
|
19545
20250
|
}
|
|
@@ -20778,6 +21483,7 @@ export class ModifyPolicyGroupRequestDeviceRules extends $dara.Model {
|
|
|
20778
21483
|
* 2:0
|
|
20779
21484
|
*/
|
|
20780
21485
|
optCommand?: string;
|
|
21486
|
+
platforms?: string;
|
|
20781
21487
|
/**
|
|
20782
21488
|
* @remarks
|
|
20783
21489
|
* The redirection type.
|
|
@@ -20799,6 +21505,7 @@ export class ModifyPolicyGroupRequestDeviceRules extends $dara.Model {
|
|
|
20799
21505
|
deviceType: 'DeviceType',
|
|
20800
21506
|
deviceVid: 'DeviceVid',
|
|
20801
21507
|
optCommand: 'OptCommand',
|
|
21508
|
+
platforms: 'Platforms',
|
|
20802
21509
|
redirectType: 'RedirectType',
|
|
20803
21510
|
};
|
|
20804
21511
|
}
|
|
@@ -20810,6 +21517,7 @@ export class ModifyPolicyGroupRequestDeviceRules extends $dara.Model {
|
|
|
20810
21517
|
deviceType: 'string',
|
|
20811
21518
|
deviceVid: 'string',
|
|
20812
21519
|
optCommand: 'string',
|
|
21520
|
+
platforms: 'string',
|
|
20813
21521
|
redirectType: 'string',
|
|
20814
21522
|
};
|
|
20815
21523
|
}
|
|
@@ -21186,7 +21894,7 @@ export class ModifyTimerGroupRequestConfigTimers extends $dara.Model {
|
|
|
21186
21894
|
* @remarks
|
|
21187
21895
|
* The cron expression specified in the scheduled task.
|
|
21188
21896
|
*
|
|
21189
|
-
* > The time must be in UTC. For example,
|
|
21897
|
+
* > 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
21898
|
*
|
|
21191
21899
|
* @example
|
|
21192
21900
|
* 0 0 16 ? * 1,2,3,4,5,6,7
|
|
@@ -21224,7 +21932,7 @@ export class ModifyTimerGroupRequestConfigTimers extends $dara.Model {
|
|
|
21224
21932
|
operationType?: string;
|
|
21225
21933
|
/**
|
|
21226
21934
|
* @remarks
|
|
21227
|
-
* The process whitelist. If whitelisted processes are running, the scheduled task
|
|
21935
|
+
* The process whitelist. If whitelisted processes are running, the scheduled task does not take effect upon inactivity.
|
|
21228
21936
|
*/
|
|
21229
21937
|
processWhitelist?: string[];
|
|
21230
21938
|
/**
|
|
@@ -21245,7 +21953,7 @@ export class ModifyTimerGroupRequestConfigTimers extends $dara.Model {
|
|
|
21245
21953
|
* @remarks
|
|
21246
21954
|
* The scheduled task type.
|
|
21247
21955
|
*
|
|
21248
|
-
* Valid
|
|
21956
|
+
* Valid value:
|
|
21249
21957
|
*
|
|
21250
21958
|
* * NoOperationDisconnect: scheduled disconnection upon inactivity.
|
|
21251
21959
|
* * NoConnect: scheduled disconnection upon specified operation (OperationType).
|
|
@@ -24881,9 +25589,11 @@ export class CancelCopyImageResponse extends $dara.Model {
|
|
|
24881
25589
|
export class CloneCenterPolicyRequest extends $dara.Model {
|
|
24882
25590
|
/**
|
|
24883
25591
|
* @remarks
|
|
24884
|
-
* The business type.
|
|
25592
|
+
* The business type.
|
|
24885
25593
|
*
|
|
24886
|
-
*
|
|
25594
|
+
* Valid values:
|
|
25595
|
+
*
|
|
25596
|
+
* * 1: public cloud
|
|
24887
25597
|
* * 8: commercial edition.
|
|
24888
25598
|
*
|
|
24889
25599
|
* This parameter is required.
|
|
@@ -24914,7 +25624,7 @@ export class CloneCenterPolicyRequest extends $dara.Model {
|
|
|
24914
25624
|
policyGroupId?: string;
|
|
24915
25625
|
/**
|
|
24916
25626
|
* @remarks
|
|
24917
|
-
* The region ID.
|
|
25627
|
+
* The region ID. Set the value to cn-shanghai.
|
|
24918
25628
|
*
|
|
24919
25629
|
* This parameter is required.
|
|
24920
25630
|
*
|
|
@@ -24924,10 +25634,12 @@ export class CloneCenterPolicyRequest extends $dara.Model {
|
|
|
24924
25634
|
regionId?: string;
|
|
24925
25635
|
/**
|
|
24926
25636
|
* @remarks
|
|
24927
|
-
* The resource type.
|
|
25637
|
+
* The resource type.
|
|
25638
|
+
*
|
|
25639
|
+
* Valid values:
|
|
24928
25640
|
*
|
|
24929
|
-
* * desktop: cloud computers.
|
|
24930
25641
|
* * app: cloud applications.
|
|
25642
|
+
* * desktop: cloud computers.
|
|
24931
25643
|
*
|
|
24932
25644
|
* This parameter is required.
|
|
24933
25645
|
*
|
|
@@ -28178,19 +28890,53 @@ export class CreateCdsFileShareLinkResponse extends $dara.Model {
|
|
|
28178
28890
|
|
|
28179
28891
|
export class CreateCenterPolicyRequest extends $dara.Model {
|
|
28180
28892
|
/**
|
|
28893
|
+
* @remarks
|
|
28894
|
+
* Specifies whether to grant the admin permissions to end users.
|
|
28895
|
+
*
|
|
28896
|
+
* > This parameter is in private preview and only available to specific users.
|
|
28897
|
+
*
|
|
28898
|
+
* Valid values:
|
|
28899
|
+
*
|
|
28900
|
+
* * allow: forcibly grants admin permissions.
|
|
28901
|
+
* * deny: forcibly rejects granting admin permissions.
|
|
28902
|
+
* * inherited: inherits the admin permissions from the user dimension.
|
|
28903
|
+
*
|
|
28181
28904
|
* @example
|
|
28182
28905
|
* deny
|
|
28183
28906
|
*/
|
|
28184
28907
|
adminAccess?: string;
|
|
28185
28908
|
/**
|
|
28909
|
+
* @remarks
|
|
28910
|
+
* The anti-screenshot policy.
|
|
28911
|
+
*
|
|
28912
|
+
* Valid values:
|
|
28913
|
+
*
|
|
28914
|
+
* * off (default): disables anti-screenshot.
|
|
28915
|
+
* * on: enables anti-screenshot.
|
|
28916
|
+
*
|
|
28186
28917
|
* @example
|
|
28187
28918
|
* off
|
|
28188
28919
|
*/
|
|
28189
28920
|
appContentProtection?: string;
|
|
28921
|
+
/**
|
|
28922
|
+
* @remarks
|
|
28923
|
+
* 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.
|
|
28924
|
+
*/
|
|
28190
28925
|
authorizeAccessPolicyRule?: CreateCenterPolicyRequestAuthorizeAccessPolicyRule[];
|
|
28926
|
+
/**
|
|
28927
|
+
* @remarks
|
|
28928
|
+
* The security group rule.
|
|
28929
|
+
*/
|
|
28191
28930
|
authorizeSecurityPolicyRule?: CreateCenterPolicyRequestAuthorizeSecurityPolicyRule[];
|
|
28192
28931
|
/**
|
|
28193
28932
|
* @remarks
|
|
28933
|
+
* The business type.
|
|
28934
|
+
*
|
|
28935
|
+
* Valid values:
|
|
28936
|
+
*
|
|
28937
|
+
* * 1: public cloud.
|
|
28938
|
+
* * 8: commercial edition.
|
|
28939
|
+
*
|
|
28194
28940
|
* This parameter is required.
|
|
28195
28941
|
*
|
|
28196
28942
|
* @example
|
|
@@ -28198,158 +28944,374 @@ export class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
28198
28944
|
*/
|
|
28199
28945
|
businessType?: number;
|
|
28200
28946
|
/**
|
|
28947
|
+
* @remarks
|
|
28948
|
+
* The on-premises camera redirection policy. This parameter only applies if DeviceRedirects does not include an on-premises camera redirection policy.
|
|
28949
|
+
*
|
|
28950
|
+
* Valid values:
|
|
28951
|
+
*
|
|
28952
|
+
* * deviceRedirect: enables device redirection.
|
|
28953
|
+
* * off: disables device redirection.
|
|
28954
|
+
*
|
|
28201
28955
|
* @example
|
|
28202
28956
|
* off
|
|
28203
28957
|
*/
|
|
28204
28958
|
cameraRedirect?: string;
|
|
28959
|
+
/**
|
|
28960
|
+
* @remarks
|
|
28961
|
+
* The types of Alibaba Cloud Workspace clients that end users can use to connect to cloud computers.
|
|
28962
|
+
*/
|
|
28205
28963
|
clientType?: CreateCenterPolicyRequestClientType[];
|
|
28206
28964
|
/**
|
|
28965
|
+
* @remarks
|
|
28966
|
+
* The read/write permissions on the clipboard.
|
|
28967
|
+
*
|
|
28968
|
+
* Valid values:
|
|
28969
|
+
*
|
|
28970
|
+
* * read: specifies one-way transfer You can copy files only from on-premises devices to cloud computers.
|
|
28971
|
+
* * readwrite: specifies two-way transfer. You can copy files between on-premises devices and cloud computers.
|
|
28972
|
+
* * write: specifies one-way transfer. You can only copy files from cloud computers to on-premises devices.
|
|
28973
|
+
* * off (default): disables all transfers, both one-way and two-way. Files cannot be copied directly between on-premises devices and cloud computers.
|
|
28974
|
+
*
|
|
28207
28975
|
* @example
|
|
28208
28976
|
* off
|
|
28209
28977
|
*/
|
|
28210
28978
|
clipboard?: string;
|
|
28211
28979
|
/**
|
|
28980
|
+
* @remarks
|
|
28981
|
+
* Specifies whether to enable color enhancement for design and 3D applications.
|
|
28982
|
+
*
|
|
28983
|
+
* Valid values:
|
|
28984
|
+
*
|
|
28985
|
+
* * off: doesn\\"t enable color enhancement for design and 3D applications.
|
|
28986
|
+
* * on: enables color enhancement for design and 3D applications.
|
|
28987
|
+
*
|
|
28212
28988
|
* @example
|
|
28213
28989
|
* off
|
|
28214
28990
|
*/
|
|
28215
28991
|
colorEnhancement?: string;
|
|
28216
28992
|
/**
|
|
28993
|
+
* @remarks
|
|
28994
|
+
* The CPU underclocking duration. Valid values: 30 to 120. Unit: seconds.
|
|
28995
|
+
*
|
|
28217
28996
|
* @example
|
|
28218
28997
|
* 30
|
|
28219
28998
|
*/
|
|
28220
28999
|
cpuDownGradeDuration?: number;
|
|
29000
|
+
/**
|
|
29001
|
+
* @remarks
|
|
29002
|
+
* The CPU processors.
|
|
29003
|
+
*/
|
|
28221
29004
|
cpuProcessors?: string[];
|
|
28222
29005
|
/**
|
|
29006
|
+
* @remarks
|
|
29007
|
+
* The CPU spike protection policy.
|
|
29008
|
+
*
|
|
29009
|
+
* Valid values:
|
|
29010
|
+
*
|
|
29011
|
+
* * off: disables CPU spike protection.
|
|
29012
|
+
* * on: enables CPU spike protection.
|
|
29013
|
+
*
|
|
28223
29014
|
* @example
|
|
28224
29015
|
* off
|
|
28225
29016
|
*/
|
|
28226
29017
|
cpuProtectedMode?: string;
|
|
28227
29018
|
/**
|
|
29019
|
+
* @remarks
|
|
29020
|
+
* The overall CPU usage. Valid values: 70 to 90. Unit: percentage (%).
|
|
29021
|
+
*
|
|
28228
29022
|
* @example
|
|
28229
29023
|
* 70
|
|
28230
29024
|
*/
|
|
28231
29025
|
cpuRateLimit?: number;
|
|
28232
29026
|
/**
|
|
29027
|
+
* @remarks
|
|
29028
|
+
* The overall CPU sampling duration. Valid values: 10 to 60. Unit: seconds.
|
|
29029
|
+
*
|
|
28233
29030
|
* @example
|
|
28234
29031
|
* 60
|
|
28235
29032
|
*/
|
|
28236
29033
|
cpuSampleDuration?: number;
|
|
28237
29034
|
/**
|
|
29035
|
+
* @remarks
|
|
29036
|
+
* The single-CPU usage. Valid values: 70 to 100. Unit: %.
|
|
29037
|
+
*
|
|
28238
29038
|
* @example
|
|
28239
29039
|
* 70
|
|
28240
29040
|
*/
|
|
28241
29041
|
cpuSingleRateLimit?: number;
|
|
28242
29042
|
/**
|
|
29043
|
+
* @remarks
|
|
29044
|
+
* Specifies whether to display the peripheral connection prompt.
|
|
29045
|
+
*
|
|
28243
29046
|
* @example
|
|
28244
29047
|
* off
|
|
28245
29048
|
*/
|
|
28246
29049
|
deviceConnectHint?: string;
|
|
29050
|
+
/**
|
|
29051
|
+
* @remarks
|
|
29052
|
+
* The device redirection rules.
|
|
29053
|
+
*/
|
|
28247
29054
|
deviceRedirects?: CreateCenterPolicyRequestDeviceRedirects[];
|
|
29055
|
+
/**
|
|
29056
|
+
* @remarks
|
|
29057
|
+
* The custom peripheral rules.
|
|
29058
|
+
*/
|
|
28248
29059
|
deviceRules?: CreateCenterPolicyRequestDeviceRules[];
|
|
28249
29060
|
/**
|
|
29061
|
+
* @remarks
|
|
29062
|
+
* Specifies whether to retain the session upon disconnection.
|
|
29063
|
+
*
|
|
29064
|
+
* > This parameter applies only to cloud application policies.
|
|
29065
|
+
*
|
|
29066
|
+
* Valid values:
|
|
29067
|
+
*
|
|
29068
|
+
* * customTime: retains the session for a specified time period.
|
|
29069
|
+
* * persistent: retains the session permanently.
|
|
29070
|
+
*
|
|
28250
29071
|
* @example
|
|
28251
29072
|
* customTime
|
|
28252
29073
|
*/
|
|
28253
29074
|
disconnectKeepSession?: string;
|
|
28254
29075
|
/**
|
|
29076
|
+
* @remarks
|
|
29077
|
+
* The retention period of the session after disconnection. Valid values: 30 to 7200. Unit: seconds.
|
|
29078
|
+
*
|
|
29079
|
+
* > This parameter applies only to cloud application policies.
|
|
29080
|
+
*
|
|
28255
29081
|
* @example
|
|
28256
29082
|
* 30
|
|
28257
29083
|
*/
|
|
28258
29084
|
disconnectKeepSessionTime?: number;
|
|
28259
29085
|
/**
|
|
29086
|
+
* @remarks
|
|
29087
|
+
* The display mode.
|
|
29088
|
+
*
|
|
29089
|
+
* Valid values:
|
|
29090
|
+
*
|
|
29091
|
+
* * clientCustom: suitable for user-defined scenarios.
|
|
29092
|
+
* * adminOffice: suitable for daily office scenarios.
|
|
29093
|
+
* * adminDesign: suitable for design and 3D application scenarios.
|
|
29094
|
+
* * adminCustom: suitable for admin-customized scenarios.
|
|
29095
|
+
*
|
|
28260
29096
|
* @example
|
|
28261
29097
|
* clientCustom
|
|
28262
29098
|
*/
|
|
28263
29099
|
displayMode?: string;
|
|
29100
|
+
/**
|
|
29101
|
+
* @remarks
|
|
29102
|
+
* The domain resolution policies.
|
|
29103
|
+
*/
|
|
28264
29104
|
domainResolveRule?: CreateCenterPolicyRequestDomainResolveRule[];
|
|
28265
29105
|
/**
|
|
29106
|
+
* @remarks
|
|
29107
|
+
* Specifies whether to enforce the domain resolution policy.
|
|
29108
|
+
*
|
|
29109
|
+
* Valid values:
|
|
29110
|
+
*
|
|
29111
|
+
* * off: disables the domain resolution policy.
|
|
29112
|
+
* * on: enables the domain resolution policy.
|
|
29113
|
+
*
|
|
28266
29114
|
* @example
|
|
28267
29115
|
* off
|
|
28268
29116
|
*/
|
|
28269
29117
|
domainResolveRuleType?: string;
|
|
28270
29118
|
/**
|
|
29119
|
+
* @remarks
|
|
29120
|
+
* Specifies whether to enforce session bandwidth limit.
|
|
29121
|
+
*
|
|
29122
|
+
* Valid values:
|
|
29123
|
+
*
|
|
29124
|
+
* * off: doesn\\"t enforce session bandwidth limit.
|
|
29125
|
+
* * on: enforces session bandwidth limit.
|
|
29126
|
+
*
|
|
28271
29127
|
* @example
|
|
28272
29128
|
* off
|
|
28273
29129
|
*/
|
|
28274
29130
|
enableSessionRateLimiting?: string;
|
|
28275
29131
|
/**
|
|
29132
|
+
* @remarks
|
|
29133
|
+
* Specifies whether to enable end users to request administrator help.
|
|
29134
|
+
*
|
|
29135
|
+
* Valid values:
|
|
29136
|
+
*
|
|
29137
|
+
* * off: disables end users to request administrator help.
|
|
29138
|
+
* * on: enables end users to request administrator help.
|
|
29139
|
+
*
|
|
28276
29140
|
* @example
|
|
28277
29141
|
* off
|
|
28278
29142
|
*/
|
|
28279
29143
|
endUserApplyAdminCoordinate?: string;
|
|
28280
29144
|
/**
|
|
29145
|
+
* @remarks
|
|
29146
|
+
* Specifies whether end users in the same workspace can share cloud computers.
|
|
29147
|
+
*
|
|
29148
|
+
* Valid values:
|
|
29149
|
+
*
|
|
29150
|
+
* * off: End users in the same workspace cannot share cloud computers.
|
|
29151
|
+
* * on: End users in the same workspace can share cloud computers
|
|
29152
|
+
*
|
|
28281
29153
|
* @example
|
|
28282
29154
|
* off
|
|
28283
29155
|
*/
|
|
28284
29156
|
endUserGroupCoordinate?: string;
|
|
28285
29157
|
/**
|
|
29158
|
+
* @remarks
|
|
29159
|
+
* Specifies whether to enable file transfer.
|
|
29160
|
+
*
|
|
28286
29161
|
* @example
|
|
28287
29162
|
* off
|
|
28288
29163
|
*/
|
|
28289
29164
|
fileMigrate?: string;
|
|
28290
29165
|
/**
|
|
29166
|
+
* @remarks
|
|
29167
|
+
* Specifies whether to enable image quality control. This feature is highly recommended for professional design scenarios where computer performance and user experience are critical.
|
|
29168
|
+
*
|
|
29169
|
+
* Valid values:
|
|
29170
|
+
*
|
|
29171
|
+
* * off: doesn\\"t enable image quality control.
|
|
29172
|
+
* * on: enables image quality control.
|
|
29173
|
+
*
|
|
28291
29174
|
* @example
|
|
28292
29175
|
* off
|
|
28293
29176
|
*/
|
|
28294
29177
|
gpuAcceleration?: string;
|
|
28295
29178
|
/**
|
|
29179
|
+
* @remarks
|
|
29180
|
+
* The file transfer policy on the web client.
|
|
29181
|
+
*
|
|
29182
|
+
* Valid values:
|
|
29183
|
+
*
|
|
29184
|
+
* * all: File upload and download are supported.
|
|
29185
|
+
* * download: Only file download is supported.
|
|
29186
|
+
* * upload: Only file upload is supported.
|
|
29187
|
+
* * off (default): File upload and download are not supported.
|
|
29188
|
+
*
|
|
28296
29189
|
* @example
|
|
28297
29190
|
* off
|
|
28298
29191
|
*/
|
|
28299
29192
|
html5FileTransfer?: string;
|
|
28300
29193
|
/**
|
|
29194
|
+
* @remarks
|
|
29195
|
+
* The network communication protocol.
|
|
29196
|
+
*
|
|
29197
|
+
* Valid values:
|
|
29198
|
+
*
|
|
29199
|
+
* * tcp: TCP is used when UDP/AST is restricted.
|
|
29200
|
+
* * rtc: AST is used for high-frequency audio and video streaming.
|
|
29201
|
+
* * auto: UTO enables automatic switch between AST and UDP modes based on desktop content.
|
|
29202
|
+
* * both: UDP is ideal for office and HD graphic design use.
|
|
29203
|
+
*
|
|
28301
29204
|
* @example
|
|
28302
29205
|
* both
|
|
28303
29206
|
*/
|
|
28304
29207
|
internetCommunicationProtocol?: string;
|
|
29208
|
+
internetPrinter?: string;
|
|
28305
29209
|
/**
|
|
29210
|
+
* @remarks
|
|
29211
|
+
* The read/write permissions on the on-premises drive.
|
|
29212
|
+
*
|
|
29213
|
+
* Valid values:
|
|
29214
|
+
*
|
|
29215
|
+
* * read: read-only. Cloud computers support on-premises disk mapping, but only for reading (copying) files—not modifying them.
|
|
29216
|
+
* * readwrite: read and write. Cloud computers support on-premises disk mapping, allowing you to read (copy) and write (modify) on-premises files.
|
|
29217
|
+
* * off (default): none. Cloud computers don\\"t support on-premises disk mapping.
|
|
29218
|
+
*
|
|
28306
29219
|
* @example
|
|
28307
29220
|
* off
|
|
28308
29221
|
*/
|
|
28309
29222
|
localDrive?: string;
|
|
28310
29223
|
/**
|
|
29224
|
+
* @remarks
|
|
29225
|
+
* The maximum duration to retry reconnecting to cloud computers after an unexpected disconnection (non-human causes). Valid values: 30 to 7200. Unit: seconds.
|
|
29226
|
+
*
|
|
28311
29227
|
* @example
|
|
28312
29228
|
* 120
|
|
28313
29229
|
*/
|
|
28314
29230
|
maxReconnectTime?: number;
|
|
28315
29231
|
/**
|
|
29232
|
+
* @remarks
|
|
29233
|
+
* The memory underclocking duration per process. Valid values: 30 to 120. Unit: seconds.
|
|
29234
|
+
*
|
|
28316
29235
|
* @example
|
|
28317
29236
|
* 40
|
|
28318
29237
|
*/
|
|
28319
29238
|
memoryDownGradeDuration?: number;
|
|
29239
|
+
/**
|
|
29240
|
+
* @remarks
|
|
29241
|
+
* The memory processors.
|
|
29242
|
+
*/
|
|
28320
29243
|
memoryProcessors?: string[];
|
|
28321
29244
|
/**
|
|
29245
|
+
* @remarks
|
|
29246
|
+
* The memory spike protection policy.
|
|
29247
|
+
*
|
|
29248
|
+
* Valid values:
|
|
29249
|
+
*
|
|
29250
|
+
* * off: disables memory spike protection.
|
|
29251
|
+
* * on: enables memory spike protection.
|
|
29252
|
+
*
|
|
28322
29253
|
* @example
|
|
28323
29254
|
* off
|
|
28324
29255
|
*/
|
|
28325
29256
|
memoryProtectedMode?: string;
|
|
28326
29257
|
/**
|
|
29258
|
+
* @remarks
|
|
29259
|
+
* The overall memory usage. Valid values: 70 to 90. Unit: %.
|
|
29260
|
+
*
|
|
28327
29261
|
* @example
|
|
28328
29262
|
* 70
|
|
28329
29263
|
*/
|
|
28330
29264
|
memoryRateLimit?: number;
|
|
28331
29265
|
/**
|
|
29266
|
+
* @remarks
|
|
29267
|
+
* The overall memory sampling duration. Valid values: 30 to 60. Unit: seconds.
|
|
29268
|
+
*
|
|
28332
29269
|
* @example
|
|
28333
29270
|
* 40
|
|
28334
29271
|
*/
|
|
28335
29272
|
memorySampleDuration?: number;
|
|
28336
29273
|
/**
|
|
29274
|
+
* @remarks
|
|
29275
|
+
* The memory usage per process. Valid values: 30 to 60. Unit: %.
|
|
29276
|
+
*
|
|
28337
29277
|
* @example
|
|
28338
29278
|
* 40
|
|
28339
29279
|
*/
|
|
28340
29280
|
memorySingleRateLimit?: number;
|
|
28341
29281
|
/**
|
|
29282
|
+
* @remarks
|
|
29283
|
+
* 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).
|
|
29284
|
+
*
|
|
29285
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
29286
|
+
*
|
|
29287
|
+
* Valid values:
|
|
29288
|
+
*
|
|
29289
|
+
* * off: doesn\\"t display the Restart button in the DesktopAssistant menu.
|
|
29290
|
+
* * on: displays the Restart button in the DesktopAssistant menu.
|
|
29291
|
+
*
|
|
28342
29292
|
* @example
|
|
28343
29293
|
* off
|
|
28344
29294
|
*/
|
|
28345
29295
|
mobileRestart?: string;
|
|
28346
29296
|
/**
|
|
29297
|
+
* @remarks
|
|
29298
|
+
* 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).
|
|
29299
|
+
*
|
|
29300
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
29301
|
+
*
|
|
29302
|
+
* Valid values:
|
|
29303
|
+
*
|
|
29304
|
+
* * off: doesn\\"t display the Stop button in the DesktopAssistant menu.
|
|
29305
|
+
* * on: displays the Stop button in the DesktopAssistant menu.
|
|
29306
|
+
*
|
|
28347
29307
|
* @example
|
|
28348
29308
|
* off
|
|
28349
29309
|
*/
|
|
28350
29310
|
mobileShutdown?: string;
|
|
28351
29311
|
/**
|
|
28352
29312
|
* @remarks
|
|
29313
|
+
* The policy name.
|
|
29314
|
+
*
|
|
28353
29315
|
* This parameter is required.
|
|
28354
29316
|
*
|
|
28355
29317
|
* @example
|
|
@@ -28357,82 +29319,193 @@ export class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
28357
29319
|
*/
|
|
28358
29320
|
name?: string;
|
|
28359
29321
|
/**
|
|
29322
|
+
* @remarks
|
|
29323
|
+
* The network redirection policy.
|
|
29324
|
+
*
|
|
29325
|
+
* > This parameter is in private preview and only available to specific users.
|
|
29326
|
+
*
|
|
29327
|
+
* Valid values:
|
|
29328
|
+
*
|
|
29329
|
+
* * all: enables network redirection globally.
|
|
29330
|
+
* * off (default): disables network redirection.
|
|
29331
|
+
* * on: enables the whitelist mode.
|
|
29332
|
+
*
|
|
28360
29333
|
* @example
|
|
28361
29334
|
* off
|
|
28362
29335
|
*/
|
|
28363
29336
|
netRedirect?: string;
|
|
29337
|
+
/**
|
|
29338
|
+
* @remarks
|
|
29339
|
+
* The network redirection policies.
|
|
29340
|
+
*
|
|
29341
|
+
* > This parameter is in private preview and only available to specific users.
|
|
29342
|
+
*/
|
|
28364
29343
|
netRedirectRule?: CreateCenterPolicyRequestNetRedirectRule[];
|
|
28365
29344
|
/**
|
|
29345
|
+
* @remarks
|
|
29346
|
+
* Specifies whether to enforce a disconnection upon inactivity.
|
|
29347
|
+
*
|
|
29348
|
+
* > This parameter applies only to cloud application policies.
|
|
29349
|
+
*
|
|
29350
|
+
* Valid values:
|
|
29351
|
+
*
|
|
29352
|
+
* * off: doesn\\"t enforce a disconnection upon inactivity.
|
|
29353
|
+
* * on: enforces a disconnection upon inactivity.
|
|
29354
|
+
*
|
|
28366
29355
|
* @example
|
|
28367
29356
|
* off
|
|
28368
29357
|
*/
|
|
28369
29358
|
noOperationDisconnect?: string;
|
|
28370
29359
|
/**
|
|
29360
|
+
* @remarks
|
|
29361
|
+
* The duration of disconnection after inactivity. Valid values: 120 to 7200. Unit: seconds.
|
|
29362
|
+
*
|
|
29363
|
+
* > This parameter applies only to cloud application policies.
|
|
29364
|
+
*
|
|
28371
29365
|
* @example
|
|
28372
29366
|
* 120
|
|
28373
29367
|
*/
|
|
28374
29368
|
noOperationDisconnectTime?: number;
|
|
28375
29369
|
/**
|
|
29370
|
+
* @remarks
|
|
29371
|
+
* The printer redirection policy. This parameter only applies if DeviceRedirects does not include a printer redirection policy.
|
|
29372
|
+
*
|
|
29373
|
+
* Valid values:
|
|
29374
|
+
*
|
|
29375
|
+
* * deviceRedirect (default):enables device redirection.
|
|
29376
|
+
* * usbRedirect: enables USB redirection.
|
|
29377
|
+
* * off: disables any type of redirection.
|
|
29378
|
+
*
|
|
28376
29379
|
* @example
|
|
28377
29380
|
* off
|
|
28378
29381
|
*/
|
|
28379
29382
|
printerRedirect?: string;
|
|
28380
29383
|
/**
|
|
29384
|
+
* @remarks
|
|
29385
|
+
* Specifies whether to enable image quality enhancement for design and 3D applications.
|
|
29386
|
+
*
|
|
29387
|
+
* Valid values:
|
|
29388
|
+
*
|
|
29389
|
+
* * off: doesn\\"t enable image quality enhancement for design and 3D applications.
|
|
29390
|
+
* * on: enables image quality enhancement for design and 3D applications.
|
|
29391
|
+
*
|
|
28381
29392
|
* @example
|
|
28382
29393
|
* off
|
|
28383
29394
|
*/
|
|
28384
29395
|
qualityEnhancement?: string;
|
|
28385
29396
|
/**
|
|
29397
|
+
* @remarks
|
|
29398
|
+
* The duration of screen recording after the specified event is detected. Unit: minutes. Valid values: 10 to 60.
|
|
29399
|
+
*
|
|
28386
29400
|
* @example
|
|
28387
29401
|
* 10
|
|
28388
29402
|
*/
|
|
28389
29403
|
recordEventDuration?: number;
|
|
29404
|
+
/**
|
|
29405
|
+
* @remarks
|
|
29406
|
+
* The absolute paths to screen recording files.
|
|
29407
|
+
*/
|
|
28390
29408
|
recordEventFilePaths?: string[];
|
|
29409
|
+
/**
|
|
29410
|
+
* @remarks
|
|
29411
|
+
* The absolute paths to screen recording registries.
|
|
29412
|
+
*/
|
|
28391
29413
|
recordEventRegisters?: string[];
|
|
29414
|
+
/**
|
|
29415
|
+
* @remarks
|
|
29416
|
+
* The event that triggers screen recording.
|
|
29417
|
+
*/
|
|
28392
29418
|
recordEvents?: string[];
|
|
28393
29419
|
/**
|
|
29420
|
+
* @remarks
|
|
29421
|
+
* The screen recording policy.
|
|
29422
|
+
*
|
|
29423
|
+
* Valid values:
|
|
29424
|
+
*
|
|
29425
|
+
* * period: Screen recording occurs at set intervals.
|
|
29426
|
+
* * session: Screen recording is limited to sessions only.
|
|
29427
|
+
* * off: Screen recording is disabled.
|
|
29428
|
+
* * alltime: Screen recording is always enabled.
|
|
29429
|
+
*
|
|
28394
29430
|
* @example
|
|
28395
29431
|
* off
|
|
28396
29432
|
*/
|
|
28397
29433
|
recording?: string;
|
|
28398
29434
|
/**
|
|
29435
|
+
* @remarks
|
|
29436
|
+
* Specifies whether to record audio files generated on cloud computers.
|
|
29437
|
+
*
|
|
29438
|
+
* Valid values:
|
|
29439
|
+
*
|
|
29440
|
+
* * off: doesn\\"t record audio files generated on cloud computers.
|
|
29441
|
+
* * on: records audio files generated on cloud computers.
|
|
29442
|
+
*
|
|
28399
29443
|
* @example
|
|
28400
29444
|
* on
|
|
28401
29445
|
*/
|
|
28402
29446
|
recordingAudio?: string;
|
|
28403
29447
|
/**
|
|
29448
|
+
* @remarks
|
|
29449
|
+
* 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
|
|
29450
|
+
*
|
|
28404
29451
|
* @example
|
|
28405
29452
|
* 10
|
|
28406
29453
|
*/
|
|
28407
29454
|
recordingDuration?: number;
|
|
28408
29455
|
/**
|
|
29456
|
+
* @remarks
|
|
29457
|
+
* The screen recording\\"s end time in HH:MM:SS format. The value is meaningful only if `Recording` is set to `PERIOD`.
|
|
29458
|
+
*
|
|
28409
29459
|
* @example
|
|
28410
29460
|
* 08:59:00
|
|
28411
29461
|
*/
|
|
28412
29462
|
recordingEndTime?: string;
|
|
28413
29463
|
/**
|
|
29464
|
+
* @remarks
|
|
29465
|
+
* The retention period of the screen recording file. Valid values: 1 to 180. Unit: days.
|
|
29466
|
+
*
|
|
28414
29467
|
* @example
|
|
28415
29468
|
* 15
|
|
28416
29469
|
*/
|
|
28417
29470
|
recordingExpires?: number;
|
|
28418
29471
|
/**
|
|
29472
|
+
* @remarks
|
|
29473
|
+
* The frame rate of screen recording. Unit: fps.
|
|
29474
|
+
*
|
|
28419
29475
|
* @example
|
|
28420
29476
|
* 2
|
|
28421
29477
|
*/
|
|
28422
29478
|
recordingFps?: string;
|
|
28423
29479
|
/**
|
|
29480
|
+
* @remarks
|
|
29481
|
+
* The screen recording\\"s start time in HH:MM:SS format. The value is meaningful only if `Recording` is set to `PERIOD`.
|
|
29482
|
+
*
|
|
28424
29483
|
* @example
|
|
28425
29484
|
* 08:00:00
|
|
28426
29485
|
*/
|
|
28427
29486
|
recordingStartTime?: string;
|
|
28428
29487
|
/**
|
|
29488
|
+
* @remarks
|
|
29489
|
+
* Specifies whether to notify end users when screen recording is enabled.
|
|
29490
|
+
*
|
|
29491
|
+
* Valid values:
|
|
29492
|
+
*
|
|
29493
|
+
* * off: doesn\\"t notify end users when screen recording is enabled.
|
|
29494
|
+
* * on: notifies end users when screen recording is enabled.
|
|
29495
|
+
*
|
|
28429
29496
|
* @example
|
|
28430
29497
|
* off
|
|
28431
29498
|
*/
|
|
28432
29499
|
recordingUserNotify?: string;
|
|
29500
|
+
/**
|
|
29501
|
+
* @remarks
|
|
29502
|
+
* The notification sent to end users when screen recording is enabled.
|
|
29503
|
+
*/
|
|
28433
29504
|
recordingUserNotifyMessage?: string;
|
|
28434
29505
|
/**
|
|
28435
29506
|
* @remarks
|
|
29507
|
+
* The region ID. Set the value to cn-shanghai.
|
|
29508
|
+
*
|
|
28436
29509
|
* This parameter is required.
|
|
28437
29510
|
*
|
|
28438
29511
|
* @example
|
|
@@ -28440,186 +29513,412 @@ export class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
28440
29513
|
*/
|
|
28441
29514
|
regionId?: string;
|
|
28442
29515
|
/**
|
|
29516
|
+
* @remarks
|
|
29517
|
+
* The keyboard and mouse control permissions during remote assistance.
|
|
29518
|
+
*
|
|
29519
|
+
* Valid values:
|
|
29520
|
+
*
|
|
29521
|
+
* * optionalControl: By default, keyboard and mouse control is disabled during remote assistance. You can request permissions as needed.
|
|
29522
|
+
* * fullControl: Keyboard and mouse control is enabled during remote assistance.
|
|
29523
|
+
* * disableControl: Keyboard and mouse control is disabled during remote assistance.
|
|
29524
|
+
*
|
|
28443
29525
|
* @example
|
|
28444
29526
|
* fullControl
|
|
28445
29527
|
*/
|
|
28446
29528
|
remoteCoordinate?: string;
|
|
28447
29529
|
/**
|
|
29530
|
+
* @remarks
|
|
29531
|
+
* The computer reset setting.
|
|
29532
|
+
*
|
|
28448
29533
|
* @example
|
|
28449
29534
|
* off
|
|
28450
29535
|
*/
|
|
28451
29536
|
resetDesktop?: string;
|
|
28452
29537
|
/**
|
|
29538
|
+
* @remarks
|
|
29539
|
+
* The height of the resolution. Unit: pixel. Valid values for cloud applications: 500 to 50000. Valid values for cloud computers: 480 to 4096.
|
|
29540
|
+
*
|
|
28453
29541
|
* @example
|
|
28454
29542
|
* 1280
|
|
28455
29543
|
*/
|
|
28456
29544
|
resolutionHeight?: number;
|
|
28457
29545
|
/**
|
|
29546
|
+
* @remarks
|
|
29547
|
+
* The resolution type.
|
|
29548
|
+
*
|
|
29549
|
+
* Valid values:
|
|
29550
|
+
*
|
|
29551
|
+
* * adaptive: adaptive resolution.
|
|
29552
|
+
* * customer: fixed resolution.
|
|
29553
|
+
*
|
|
28458
29554
|
* @example
|
|
28459
29555
|
* adaptive
|
|
28460
29556
|
*/
|
|
28461
29557
|
resolutionModel?: string;
|
|
28462
29558
|
/**
|
|
29559
|
+
* @remarks
|
|
29560
|
+
* The width of the resolution. Unit: pixel. Valid values for cloud applications: 500 to 50000. Valid values for cloud computers: 480 to 4096.
|
|
29561
|
+
*
|
|
28463
29562
|
* @example
|
|
28464
29563
|
* 720
|
|
28465
29564
|
*/
|
|
28466
29565
|
resolutionWidth?: number;
|
|
28467
29566
|
/**
|
|
28468
29567
|
* @remarks
|
|
29568
|
+
* The resource type.
|
|
29569
|
+
*
|
|
29570
|
+
* Valid values:
|
|
29571
|
+
*
|
|
29572
|
+
* * app: cloud applications.
|
|
29573
|
+
* * Desktop: cloud computers.
|
|
29574
|
+
*
|
|
28469
29575
|
* This parameter is required.
|
|
28470
29576
|
*
|
|
28471
29577
|
* @example
|
|
28472
29578
|
* desktop
|
|
28473
29579
|
*/
|
|
28474
29580
|
resourceType?: string;
|
|
29581
|
+
safeMenu?: string;
|
|
28475
29582
|
/**
|
|
29583
|
+
* @remarks
|
|
29584
|
+
* The effective scope of the policy.
|
|
29585
|
+
*
|
|
29586
|
+
* Valid values:
|
|
29587
|
+
*
|
|
29588
|
+
* * IP: The policy applies to specific IP addresses.
|
|
29589
|
+
* * GLOBAL: The policy applies globally.
|
|
29590
|
+
*
|
|
28476
29591
|
* @example
|
|
28477
29592
|
* GLOBAL
|
|
28478
29593
|
*/
|
|
28479
29594
|
scope?: string;
|
|
29595
|
+
/**
|
|
29596
|
+
* @remarks
|
|
29597
|
+
* 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.
|
|
29598
|
+
*/
|
|
28480
29599
|
scopeValue?: string[];
|
|
28481
29600
|
/**
|
|
29601
|
+
* @remarks
|
|
29602
|
+
* The bandwidth peak of the session. Valid values: 2000 to 100000.
|
|
29603
|
+
*
|
|
28482
29604
|
* @example
|
|
28483
29605
|
* 2000
|
|
28484
29606
|
*/
|
|
28485
29607
|
sessionMaxRateKbps?: number;
|
|
28486
29608
|
/**
|
|
29609
|
+
* @remarks
|
|
29610
|
+
* Specifies whether to enable smoothness enhancement for daily office use.
|
|
29611
|
+
*
|
|
29612
|
+
* Valid values:
|
|
29613
|
+
*
|
|
29614
|
+
* * off: doesn\\"t enable smoothness enhancement for daily office use.
|
|
29615
|
+
* * on: enables smoothness enhancement for daily office use.
|
|
29616
|
+
*
|
|
28487
29617
|
* @example
|
|
28488
29618
|
* off
|
|
28489
29619
|
*/
|
|
28490
29620
|
smoothEnhancement?: string;
|
|
28491
29621
|
/**
|
|
29622
|
+
* @remarks
|
|
29623
|
+
* Specifies whether to display the metric status entry in the DesktopAssistant menu.
|
|
29624
|
+
*
|
|
29625
|
+
* Valid values:
|
|
29626
|
+
*
|
|
29627
|
+
* * off: doesn\\"t display the metric status entry in the DesktopAssistant menu.
|
|
29628
|
+
* * on: displays the metric status entry in the DesktopAssistant menu.
|
|
29629
|
+
*
|
|
28492
29630
|
* @example
|
|
28493
29631
|
* off
|
|
28494
29632
|
*/
|
|
28495
29633
|
statusMonitor?: string;
|
|
28496
29634
|
/**
|
|
29635
|
+
* @remarks
|
|
29636
|
+
* The streaming mode.
|
|
29637
|
+
*
|
|
29638
|
+
* Valid values:
|
|
29639
|
+
*
|
|
29640
|
+
* * intelligent
|
|
29641
|
+
* * smooth
|
|
29642
|
+
*
|
|
28497
29643
|
* @example
|
|
28498
29644
|
* smooth
|
|
28499
29645
|
*/
|
|
28500
29646
|
streamingMode?: string;
|
|
28501
29647
|
/**
|
|
29648
|
+
* @remarks
|
|
29649
|
+
* The target frame rate. Valid values: 10 to 60.
|
|
29650
|
+
*
|
|
28502
29651
|
* @example
|
|
28503
29652
|
* 30
|
|
28504
29653
|
*/
|
|
28505
29654
|
targetFps?: number;
|
|
28506
29655
|
/**
|
|
29656
|
+
* @remarks
|
|
29657
|
+
* Specifies whether to display the application taskbar.
|
|
29658
|
+
*
|
|
29659
|
+
* > This parameter applies only to cloud application policies.
|
|
29660
|
+
*
|
|
29661
|
+
* Valid values:
|
|
29662
|
+
*
|
|
29663
|
+
* * off: doesn\\"t display the application taskbar.
|
|
29664
|
+
* * on: displays the application taskbar.
|
|
29665
|
+
*
|
|
28507
29666
|
* @example
|
|
28508
29667
|
* off
|
|
28509
29668
|
*/
|
|
28510
29669
|
taskbar?: string;
|
|
28511
29670
|
/**
|
|
29671
|
+
* @remarks
|
|
29672
|
+
* Specifies whether to enable USB redirection.
|
|
29673
|
+
*
|
|
29674
|
+
* Valid values:
|
|
29675
|
+
*
|
|
29676
|
+
* * off (default): doesn\\"t enable USB redirection.
|
|
29677
|
+
* * on: enables USB redirection.
|
|
29678
|
+
*
|
|
28512
29679
|
* @example
|
|
28513
29680
|
* off
|
|
28514
29681
|
*/
|
|
28515
29682
|
usbRedirect?: string;
|
|
29683
|
+
/**
|
|
29684
|
+
* @remarks
|
|
29685
|
+
* The USB redirection rules.
|
|
29686
|
+
*/
|
|
28516
29687
|
usbSupplyRedirectRule?: CreateCenterPolicyRequestUsbSupplyRedirectRule[];
|
|
28517
29688
|
/**
|
|
29689
|
+
* @remarks
|
|
29690
|
+
* The average bitrate for video encoding. Valid values: 1000 to 50000.
|
|
29691
|
+
*
|
|
28518
29692
|
* @example
|
|
28519
29693
|
* 2000
|
|
28520
29694
|
*/
|
|
28521
29695
|
videoEncAvgKbps?: number;
|
|
28522
29696
|
/**
|
|
29697
|
+
* @remarks
|
|
29698
|
+
* The maximum QP for video files. Higher QP values result in lower video quality. Valid values: 0 to 51.
|
|
29699
|
+
*
|
|
28523
29700
|
* @example
|
|
28524
29701
|
* 30
|
|
28525
29702
|
*/
|
|
28526
29703
|
videoEncMaxQP?: number;
|
|
28527
29704
|
/**
|
|
29705
|
+
* @remarks
|
|
29706
|
+
* The minimum quantizer parameter (QP) for video files. A lower QP means better video quality. Valid values: 0 to 51.
|
|
29707
|
+
*
|
|
28528
29708
|
* @example
|
|
28529
29709
|
* 30
|
|
28530
29710
|
*/
|
|
28531
29711
|
videoEncMinQP?: number;
|
|
28532
29712
|
/**
|
|
29713
|
+
* @remarks
|
|
29714
|
+
* The peak bitrate for video encoding. Valid values: 1000 to 50000.
|
|
29715
|
+
*
|
|
28533
29716
|
* @example
|
|
28534
29717
|
* 2000
|
|
28535
29718
|
*/
|
|
28536
29719
|
videoEncPeakKbps?: number;
|
|
28537
29720
|
/**
|
|
29721
|
+
* @remarks
|
|
29722
|
+
* The video encoding policy.
|
|
29723
|
+
*
|
|
29724
|
+
* Valid values:
|
|
29725
|
+
*
|
|
29726
|
+
* * qualityFirst: prioritizes image quality.
|
|
29727
|
+
* * bandwidthFirst: prioritizes bandwidth.
|
|
29728
|
+
*
|
|
28538
29729
|
* @example
|
|
28539
29730
|
* qualityFirst
|
|
28540
29731
|
*/
|
|
28541
29732
|
videoEncPolicy?: string;
|
|
28542
29733
|
/**
|
|
29734
|
+
* @remarks
|
|
29735
|
+
* The multimedia redirection policy.
|
|
29736
|
+
*
|
|
29737
|
+
* Valid values:
|
|
29738
|
+
*
|
|
29739
|
+
* * off: disables multimedia redirection.
|
|
29740
|
+
* * on: enables multimedia redirection.
|
|
29741
|
+
*
|
|
28543
29742
|
* @example
|
|
28544
29743
|
* on
|
|
28545
29744
|
*/
|
|
28546
29745
|
videoRedirect?: string;
|
|
28547
29746
|
/**
|
|
29747
|
+
* @remarks
|
|
29748
|
+
* The image display quality.
|
|
29749
|
+
*
|
|
29750
|
+
* Valid values:
|
|
29751
|
+
*
|
|
29752
|
+
* * high: high-definition (HD).
|
|
29753
|
+
* * low: smoothness.
|
|
29754
|
+
* * lossless: no quality loss.
|
|
29755
|
+
* * medium (default): scenario-specific adaptation.
|
|
29756
|
+
*
|
|
28548
29757
|
* @example
|
|
28549
29758
|
* low
|
|
28550
29759
|
*/
|
|
28551
29760
|
visualQuality?: string;
|
|
28552
29761
|
/**
|
|
29762
|
+
* @remarks
|
|
29763
|
+
* The watermark policy.
|
|
29764
|
+
*
|
|
29765
|
+
* Valid values:
|
|
29766
|
+
*
|
|
29767
|
+
* * blind: displays invisible watermarks.
|
|
29768
|
+
* * off (default): displays no watermark.
|
|
29769
|
+
* * on: displays visible watermarks.
|
|
29770
|
+
*
|
|
28553
29771
|
* @example
|
|
28554
29772
|
* off
|
|
28555
29773
|
*/
|
|
28556
29774
|
watermark?: string;
|
|
28557
29775
|
/**
|
|
29776
|
+
* @remarks
|
|
29777
|
+
* Specifies whether to enable anti-screen capture for invisible watermarks.
|
|
29778
|
+
*
|
|
29779
|
+
* Valid values:
|
|
29780
|
+
*
|
|
29781
|
+
* * off: disables anti-screen capture for invisible watermarks.
|
|
29782
|
+
* * on: enables anti-screen capture for invisible watermarks.
|
|
29783
|
+
*
|
|
28558
29784
|
* @example
|
|
28559
29785
|
* off
|
|
28560
29786
|
*/
|
|
28561
29787
|
watermarkAntiCam?: string;
|
|
28562
29788
|
/**
|
|
29789
|
+
* @remarks
|
|
29790
|
+
* The font color of the watermark. Valid values: 0 to 16777215.
|
|
29791
|
+
*
|
|
28563
29792
|
* @example
|
|
28564
29793
|
* 0
|
|
28565
29794
|
*/
|
|
28566
29795
|
watermarkColor?: number;
|
|
28567
29796
|
/**
|
|
29797
|
+
* @remarks
|
|
29798
|
+
* The number of watermark columns. Valid values: 3 to 10.
|
|
29799
|
+
*
|
|
28568
29800
|
* @example
|
|
28569
29801
|
* 3
|
|
28570
29802
|
*/
|
|
28571
29803
|
watermarkColumnAmount?: number;
|
|
28572
29804
|
/**
|
|
29805
|
+
* @remarks
|
|
29806
|
+
* If you set `WatermarkType` to `custom`, you must also specify `WatermarkCustomText`.
|
|
29807
|
+
*
|
|
28573
29808
|
* @example
|
|
28574
29809
|
* test
|
|
28575
29810
|
*/
|
|
28576
29811
|
watermarkCustomText?: string;
|
|
28577
29812
|
/**
|
|
29813
|
+
* @remarks
|
|
29814
|
+
* The watermark rotation. Valid values: -10 to -30.
|
|
29815
|
+
*
|
|
28578
29816
|
* @example
|
|
28579
29817
|
* -10
|
|
28580
29818
|
*/
|
|
28581
29819
|
watermarkDegree?: number;
|
|
28582
29820
|
/**
|
|
29821
|
+
* @remarks
|
|
29822
|
+
* The font size of the watermark. Valid values: 10 to 20.
|
|
29823
|
+
*
|
|
28583
29824
|
* @example
|
|
28584
29825
|
* 10
|
|
28585
29826
|
*/
|
|
28586
29827
|
watermarkFontSize?: number;
|
|
28587
29828
|
/**
|
|
29829
|
+
* @remarks
|
|
29830
|
+
* The font style of the watermark.
|
|
29831
|
+
*
|
|
29832
|
+
* Valid values:
|
|
29833
|
+
*
|
|
29834
|
+
* * plain
|
|
29835
|
+
* * bold
|
|
29836
|
+
*
|
|
28588
29837
|
* @example
|
|
28589
29838
|
* plain
|
|
28590
29839
|
*/
|
|
28591
29840
|
watermarkFontStyle?: string;
|
|
28592
29841
|
/**
|
|
29842
|
+
* @remarks
|
|
29843
|
+
* The enhancement level for invisible watermarks.
|
|
29844
|
+
*
|
|
29845
|
+
* Valid values:
|
|
29846
|
+
*
|
|
29847
|
+
* * high
|
|
29848
|
+
* * low
|
|
29849
|
+
* * medium
|
|
29850
|
+
*
|
|
28593
29851
|
* @example
|
|
28594
29852
|
* medium
|
|
28595
29853
|
*/
|
|
28596
29854
|
watermarkPower?: string;
|
|
28597
29855
|
/**
|
|
29856
|
+
* @remarks
|
|
29857
|
+
* The number of watermark rows. Valid values: 3 to 10.
|
|
29858
|
+
*
|
|
28598
29859
|
* @example
|
|
28599
29860
|
* 3
|
|
28600
29861
|
*/
|
|
28601
29862
|
watermarkRowAmount?: number;
|
|
28602
29863
|
/**
|
|
29864
|
+
* @remarks
|
|
29865
|
+
* Specifies whether to enable security priority for invisible watermarks.
|
|
29866
|
+
*
|
|
29867
|
+
* Valid values:
|
|
29868
|
+
*
|
|
29869
|
+
* * off: disables security priority for invisible watermarks.
|
|
29870
|
+
* * on: enables security priority for invisible watermarks.
|
|
29871
|
+
*
|
|
28603
29872
|
* @example
|
|
28604
29873
|
* on
|
|
28605
29874
|
*/
|
|
28606
29875
|
watermarkSecurity?: string;
|
|
28607
29876
|
/**
|
|
29877
|
+
* @remarks
|
|
29878
|
+
* The watermark opacity. A higher value makes the watermark more opaque. Valid values: 10 to 100.
|
|
29879
|
+
*
|
|
28608
29880
|
* @example
|
|
28609
29881
|
* 10
|
|
28610
29882
|
*/
|
|
28611
29883
|
watermarkTransparencyValue?: number;
|
|
28612
29884
|
/**
|
|
29885
|
+
* @remarks
|
|
29886
|
+
* The watermark type. You can specify up to three types. Separate multiple values with commas (,).
|
|
29887
|
+
*
|
|
29888
|
+
* > If you provide `custom` as the value for this parameter, you must configure `WatermarkCustomText` to specify custom text.
|
|
29889
|
+
*
|
|
29890
|
+
* Valid values:
|
|
29891
|
+
*
|
|
29892
|
+
* * EndUserId: the username.
|
|
29893
|
+
* * Custom: the custom text.
|
|
29894
|
+
* * DesktopIp: the IP address of the cloud computer.
|
|
29895
|
+
* * ClientIp: the IP address of the client.
|
|
29896
|
+
* * HostName: the rightmost 15 digits of the cloud computer ID.
|
|
29897
|
+
* * ClientTime: the current time displayed on the cloud computer.
|
|
29898
|
+
*
|
|
28613
29899
|
* @example
|
|
28614
29900
|
* EndUserId,HostName,ClientTime
|
|
28615
29901
|
*/
|
|
28616
29902
|
watermarkType?: string;
|
|
28617
29903
|
/**
|
|
29904
|
+
* @remarks
|
|
29905
|
+
* Specifies whether to enable Cloud Computer Manager.
|
|
29906
|
+
*
|
|
28618
29907
|
* @example
|
|
28619
29908
|
* off
|
|
28620
29909
|
*/
|
|
28621
29910
|
wuyingKeeper?: string;
|
|
28622
29911
|
/**
|
|
29912
|
+
* @remarks
|
|
29913
|
+
* 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).
|
|
29914
|
+
*
|
|
29915
|
+
* > This feature applies to only desktop clients of version 7.7.0 or later.
|
|
29916
|
+
*
|
|
29917
|
+
* Valid values:
|
|
29918
|
+
*
|
|
29919
|
+
* * off: doesn\\"t display the Xiaoying AI Assistant option in the DesktopAssistant menu.
|
|
29920
|
+
* * on: displays the Xiaoying AI Assistant option in the DesktopAssistant menu.
|
|
29921
|
+
*
|
|
28623
29922
|
* @example
|
|
28624
29923
|
* on
|
|
28625
29924
|
*/
|
|
@@ -28656,6 +29955,7 @@ export class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
28656
29955
|
gpuAcceleration: 'GpuAcceleration',
|
|
28657
29956
|
html5FileTransfer: 'Html5FileTransfer',
|
|
28658
29957
|
internetCommunicationProtocol: 'InternetCommunicationProtocol',
|
|
29958
|
+
internetPrinter: 'InternetPrinter',
|
|
28659
29959
|
localDrive: 'LocalDrive',
|
|
28660
29960
|
maxReconnectTime: 'MaxReconnectTime',
|
|
28661
29961
|
memoryDownGradeDuration: 'MemoryDownGradeDuration',
|
|
@@ -28693,6 +29993,7 @@ export class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
28693
29993
|
resolutionModel: 'ResolutionModel',
|
|
28694
29994
|
resolutionWidth: 'ResolutionWidth',
|
|
28695
29995
|
resourceType: 'ResourceType',
|
|
29996
|
+
safeMenu: 'SafeMenu',
|
|
28696
29997
|
scope: 'Scope',
|
|
28697
29998
|
scopeValue: 'ScopeValue',
|
|
28698
29999
|
sessionMaxRateKbps: 'SessionMaxRateKbps',
|
|
@@ -28760,6 +30061,7 @@ export class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
28760
30061
|
gpuAcceleration: 'string',
|
|
28761
30062
|
html5FileTransfer: 'string',
|
|
28762
30063
|
internetCommunicationProtocol: 'string',
|
|
30064
|
+
internetPrinter: 'string',
|
|
28763
30065
|
localDrive: 'string',
|
|
28764
30066
|
maxReconnectTime: 'number',
|
|
28765
30067
|
memoryDownGradeDuration: 'number',
|
|
@@ -28797,6 +30099,7 @@ export class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
28797
30099
|
resolutionModel: 'string',
|
|
28798
30100
|
resolutionWidth: 'number',
|
|
28799
30101
|
resourceType: 'string',
|
|
30102
|
+
safeMenu: 'string',
|
|
28800
30103
|
scope: 'string',
|
|
28801
30104
|
scopeValue: { 'type': 'array', 'itemType': 'string' },
|
|
28802
30105
|
sessionMaxRateKbps: 'number',
|
|
@@ -28885,11 +30188,17 @@ export class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
28885
30188
|
|
|
28886
30189
|
export class CreateCenterPolicyResponseBody extends $dara.Model {
|
|
28887
30190
|
/**
|
|
30191
|
+
* @remarks
|
|
30192
|
+
* The cloud computer policy ID.
|
|
30193
|
+
*
|
|
28888
30194
|
* @example
|
|
28889
30195
|
* pg-gx2x1dhsmthe9****
|
|
28890
30196
|
*/
|
|
28891
30197
|
policyGroupId?: string;
|
|
28892
30198
|
/**
|
|
30199
|
+
* @remarks
|
|
30200
|
+
* The request ID.
|
|
30201
|
+
*
|
|
28893
30202
|
* @example
|
|
28894
30203
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
28895
30204
|
*/
|
|
@@ -30840,8 +32149,6 @@ export class CreateDesktopsRequest extends $dara.Model {
|
|
|
30840
32149
|
* @remarks
|
|
30841
32150
|
* The ID of the policy.
|
|
30842
32151
|
*
|
|
30843
|
-
* This parameter is required.
|
|
30844
|
-
*
|
|
30845
32152
|
* @example
|
|
30846
32153
|
* system-all-enabled-policy
|
|
30847
32154
|
*/
|
|
@@ -31294,8 +32601,6 @@ export class CreateDesktopsShrinkRequest extends $dara.Model {
|
|
|
31294
32601
|
* @remarks
|
|
31295
32602
|
* The ID of the policy.
|
|
31296
32603
|
*
|
|
31297
|
-
* This parameter is required.
|
|
31298
|
-
*
|
|
31299
32604
|
* @example
|
|
31300
32605
|
* system-all-enabled-policy
|
|
31301
32606
|
*/
|
|
@@ -37552,6 +38857,13 @@ export class DescribeCensResponse extends $dara.Model {
|
|
|
37552
38857
|
export class DescribeCenterPolicyListRequest extends $dara.Model {
|
|
37553
38858
|
/**
|
|
37554
38859
|
* @remarks
|
|
38860
|
+
* The business type.
|
|
38861
|
+
*
|
|
38862
|
+
* Valid values:
|
|
38863
|
+
*
|
|
38864
|
+
* * 1: public cloud.
|
|
38865
|
+
* * 8: commercial edition.
|
|
38866
|
+
*
|
|
37555
38867
|
* This parameter is required.
|
|
37556
38868
|
*
|
|
37557
38869
|
* @example
|
|
@@ -37559,18 +38871,36 @@ export class DescribeCenterPolicyListRequest extends $dara.Model {
|
|
|
37559
38871
|
*/
|
|
37560
38872
|
businessType?: number;
|
|
37561
38873
|
/**
|
|
38874
|
+
* @remarks
|
|
38875
|
+
* The page number.\\
|
|
38876
|
+
* Default value: 1.
|
|
38877
|
+
*
|
|
37562
38878
|
* @example
|
|
37563
38879
|
* 1
|
|
37564
38880
|
*/
|
|
37565
38881
|
pageNumber?: number;
|
|
37566
38882
|
/**
|
|
38883
|
+
* @remarks
|
|
38884
|
+
* The number of entries per page.
|
|
38885
|
+
*
|
|
37567
38886
|
* @example
|
|
37568
38887
|
* 20
|
|
37569
38888
|
*/
|
|
37570
38889
|
pageSize?: number;
|
|
38890
|
+
/**
|
|
38891
|
+
* @remarks
|
|
38892
|
+
* The IDs of the cloud computer policies.
|
|
38893
|
+
*/
|
|
37571
38894
|
policyGroupId?: string[];
|
|
37572
38895
|
/**
|
|
37573
38896
|
* @remarks
|
|
38897
|
+
* The resource type.
|
|
38898
|
+
*
|
|
38899
|
+
* Valid values:
|
|
38900
|
+
*
|
|
38901
|
+
* * app: cloud applications.
|
|
38902
|
+
* * desktop: cloud computers.
|
|
38903
|
+
*
|
|
37574
38904
|
* This parameter is required.
|
|
37575
38905
|
*
|
|
37576
38906
|
* @example
|
|
@@ -37578,6 +38908,14 @@ export class DescribeCenterPolicyListRequest extends $dara.Model {
|
|
|
37578
38908
|
*/
|
|
37579
38909
|
resourceType?: string;
|
|
37580
38910
|
/**
|
|
38911
|
+
* @remarks
|
|
38912
|
+
* The effective scope of the cloud computer policy.
|
|
38913
|
+
*
|
|
38914
|
+
* Valid values:
|
|
38915
|
+
*
|
|
38916
|
+
* * IP: The policy applies to specific IP addresses.
|
|
38917
|
+
* * GLOBAL: The policy applies globally.
|
|
38918
|
+
*
|
|
37581
38919
|
* @example
|
|
37582
38920
|
* GLOBAL
|
|
37583
38921
|
*/
|
|
@@ -37617,13 +38955,23 @@ export class DescribeCenterPolicyListRequest extends $dara.Model {
|
|
|
37617
38955
|
}
|
|
37618
38956
|
|
|
37619
38957
|
export class DescribeCenterPolicyListResponseBody extends $dara.Model {
|
|
38958
|
+
/**
|
|
38959
|
+
* @remarks
|
|
38960
|
+
* The cloud computer policies.
|
|
38961
|
+
*/
|
|
37620
38962
|
describePolicyGroups?: DescribeCenterPolicyListResponseBodyDescribePolicyGroups[];
|
|
37621
38963
|
/**
|
|
38964
|
+
* @remarks
|
|
38965
|
+
* The request ID.
|
|
38966
|
+
*
|
|
37622
38967
|
* @example
|
|
37623
38968
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
37624
38969
|
*/
|
|
37625
38970
|
requestId?: string;
|
|
37626
38971
|
/**
|
|
38972
|
+
* @remarks
|
|
38973
|
+
* The total number of entries returned.
|
|
38974
|
+
*
|
|
37627
38975
|
* @example
|
|
37628
38976
|
* 20
|
|
37629
38977
|
*/
|
|
@@ -37931,7 +39279,7 @@ export class DescribeClientEventsRequest extends $dara.Model {
|
|
|
37931
39279
|
export class DescribeClientEventsResponseBody extends $dara.Model {
|
|
37932
39280
|
/**
|
|
37933
39281
|
* @remarks
|
|
37934
|
-
* The
|
|
39282
|
+
* The user events.
|
|
37935
39283
|
*/
|
|
37936
39284
|
events?: DescribeClientEventsResponseBodyEvents[];
|
|
37937
39285
|
/**
|
|
@@ -41077,7 +42425,7 @@ export class DescribeDesktopsRequest extends $dara.Model {
|
|
|
41077
42425
|
export class DescribeDesktopsResponseBody extends $dara.Model {
|
|
41078
42426
|
/**
|
|
41079
42427
|
* @remarks
|
|
41080
|
-
* The
|
|
42428
|
+
* The cloud computers.
|
|
41081
42429
|
*/
|
|
41082
42430
|
desktops?: DescribeDesktopsResponseBodyDesktops[];
|
|
41083
42431
|
/**
|
|
@@ -41671,11 +43019,10 @@ export class DescribeDirectoriesRequest extends $dara.Model {
|
|
|
41671
43019
|
* @remarks
|
|
41672
43020
|
* The directory type.
|
|
41673
43021
|
*
|
|
41674
|
-
* Valid
|
|
43022
|
+
* Valid value:
|
|
41675
43023
|
*
|
|
41676
|
-
* * SIMPLE:
|
|
41677
|
-
* * AD_CONNECTOR:
|
|
41678
|
-
* * RAM: a RAM directory
|
|
43024
|
+
* * SIMPLE: the convenience directory.
|
|
43025
|
+
* * AD_CONNECTOR: the Active Directory (AD) directory.
|
|
41679
43026
|
*
|
|
41680
43027
|
* @example
|
|
41681
43028
|
* RAM
|
|
@@ -42681,7 +44028,7 @@ export class DescribeGuestApplicationsRequest extends $dara.Model {
|
|
|
42681
44028
|
desktopId?: string;
|
|
42682
44029
|
/**
|
|
42683
44030
|
* @remarks
|
|
42684
|
-
* The ID
|
|
44031
|
+
* The user ID.
|
|
42685
44032
|
*
|
|
42686
44033
|
* This parameter is required.
|
|
42687
44034
|
*
|
|
@@ -42691,7 +44038,7 @@ export class DescribeGuestApplicationsRequest extends $dara.Model {
|
|
|
42691
44038
|
endUserId?: string;
|
|
42692
44039
|
/**
|
|
42693
44040
|
* @remarks
|
|
42694
|
-
* The region ID. You can call the [DescribeRegions](
|
|
44041
|
+
* 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
44042
|
*
|
|
42696
44043
|
* This parameter is required.
|
|
42697
44044
|
*
|
|
@@ -42727,7 +44074,7 @@ export class DescribeGuestApplicationsRequest extends $dara.Model {
|
|
|
42727
44074
|
export class DescribeGuestApplicationsResponseBody extends $dara.Model {
|
|
42728
44075
|
/**
|
|
42729
44076
|
* @remarks
|
|
42730
|
-
* The
|
|
44077
|
+
* The applications.
|
|
42731
44078
|
*/
|
|
42732
44079
|
applications?: DescribeGuestApplicationsResponseBodyApplications[];
|
|
42733
44080
|
/**
|
|
@@ -45397,37 +46744,66 @@ export class DescribePriceForRenewDesktopOversoldGroupResponse extends $dara.Mod
|
|
|
45397
46744
|
|
|
45398
46745
|
export class DescribeRecordingsRequest extends $dara.Model {
|
|
45399
46746
|
/**
|
|
46747
|
+
* @remarks
|
|
46748
|
+
* 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.
|
|
46749
|
+
*
|
|
45400
46750
|
* @example
|
|
45401
46751
|
* ecd-hlh41mk78dugw****
|
|
45402
46752
|
*/
|
|
45403
46753
|
desktopId?: string;
|
|
45404
46754
|
/**
|
|
46755
|
+
* @remarks
|
|
46756
|
+
* The end time of the query. Specify the time in the `YYYYMMDDhhmmss` format. The time must be in UTC+8.
|
|
46757
|
+
*
|
|
45405
46758
|
* @example
|
|
45406
46759
|
* 20230424004441
|
|
45407
46760
|
*/
|
|
45408
46761
|
endTime?: string;
|
|
45409
46762
|
/**
|
|
46763
|
+
* @remarks
|
|
46764
|
+
* The maximum number of entries per page.
|
|
46765
|
+
*
|
|
46766
|
+
* Maximum value: 100.
|
|
46767
|
+
*
|
|
46768
|
+
* Default value: 10.
|
|
46769
|
+
*
|
|
45410
46770
|
* @example
|
|
45411
46771
|
* 20
|
|
45412
46772
|
*/
|
|
45413
46773
|
maxResults?: number;
|
|
45414
46774
|
/**
|
|
46775
|
+
* @remarks
|
|
46776
|
+
* Specifies whether to return a URL.
|
|
46777
|
+
*
|
|
46778
|
+
* Valid values:
|
|
46779
|
+
*
|
|
46780
|
+
* * true
|
|
46781
|
+
* * false (default)
|
|
46782
|
+
*
|
|
45415
46783
|
* @example
|
|
45416
46784
|
* false
|
|
45417
46785
|
*/
|
|
45418
46786
|
needSignedUrl?: boolean;
|
|
45419
46787
|
/**
|
|
46788
|
+
* @remarks
|
|
46789
|
+
* 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`.
|
|
46790
|
+
*
|
|
45420
46791
|
* @example
|
|
45421
46792
|
* aGN4YzAxQGNuLWhhbmd6aG91LjExNzU5NTMyNjgzMTQ1****
|
|
45422
46793
|
*/
|
|
45423
46794
|
nextToken?: string;
|
|
45424
46795
|
/**
|
|
46796
|
+
* @remarks
|
|
46797
|
+
* The policy ID.
|
|
46798
|
+
*
|
|
45425
46799
|
* @example
|
|
45426
46800
|
* pg-gx2x1dhsmthe9****
|
|
45427
46801
|
*/
|
|
45428
46802
|
policyGroupId?: string;
|
|
45429
46803
|
/**
|
|
45430
46804
|
* @remarks
|
|
46805
|
+
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
46806
|
+
*
|
|
45431
46807
|
* This parameter is required.
|
|
45432
46808
|
*
|
|
45433
46809
|
* @example
|
|
@@ -45435,13 +46811,33 @@ export class DescribeRecordingsRequest extends $dara.Model {
|
|
|
45435
46811
|
*/
|
|
45436
46812
|
regionId?: string;
|
|
45437
46813
|
/**
|
|
46814
|
+
* @remarks
|
|
46815
|
+
* The validity period of the returned URL. Unit: minutes.
|
|
46816
|
+
*
|
|
45438
46817
|
* @example
|
|
45439
46818
|
* 10
|
|
45440
46819
|
*/
|
|
45441
46820
|
signedUrlExpireMinutes?: number;
|
|
46821
|
+
/**
|
|
46822
|
+
* @remarks
|
|
46823
|
+
* 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.
|
|
46824
|
+
*
|
|
46825
|
+
* @example
|
|
46826
|
+
* 2025-01-27T02:30:10Z
|
|
46827
|
+
*/
|
|
45442
46828
|
standardEndTime?: string;
|
|
46829
|
+
/**
|
|
46830
|
+
* @remarks
|
|
46831
|
+
* 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.
|
|
46832
|
+
*
|
|
46833
|
+
* @example
|
|
46834
|
+
* 2025-01-27T02:20:10Z
|
|
46835
|
+
*/
|
|
45443
46836
|
standardStartTime?: string;
|
|
45444
46837
|
/**
|
|
46838
|
+
* @remarks
|
|
46839
|
+
* The start time of the query. Specify the time in the `YYYYMMDDhhmmss` format. The time must be in UTC+8.
|
|
46840
|
+
*
|
|
45445
46841
|
* @example
|
|
45446
46842
|
* 20230424000000
|
|
45447
46843
|
*/
|
|
@@ -45489,12 +46885,22 @@ export class DescribeRecordingsRequest extends $dara.Model {
|
|
|
45489
46885
|
|
|
45490
46886
|
export class DescribeRecordingsResponseBody extends $dara.Model {
|
|
45491
46887
|
/**
|
|
46888
|
+
* @remarks
|
|
46889
|
+
* 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.
|
|
46890
|
+
*
|
|
45492
46891
|
* @example
|
|
45493
46892
|
* AAAAAV3MpHK1AP0pfERHZN5pu6nbCQ7ar+fECeh1IuWQXi39R5eoJ68zWp99mTAKRRNRhw==
|
|
45494
46893
|
*/
|
|
45495
46894
|
nextToken?: string;
|
|
46895
|
+
/**
|
|
46896
|
+
* @remarks
|
|
46897
|
+
* The screen recording files.
|
|
46898
|
+
*/
|
|
45496
46899
|
recordings?: DescribeRecordingsResponseBodyRecordings[];
|
|
45497
46900
|
/**
|
|
46901
|
+
* @remarks
|
|
46902
|
+
* The request ID.
|
|
46903
|
+
*
|
|
45498
46904
|
* @example
|
|
45499
46905
|
* 327CFE78-1C0D-51AC-A9C6-BCEDF0DD44D6
|
|
45500
46906
|
*/
|
|
@@ -46370,10 +47776,10 @@ export class DescribeSnapshotsRequest extends $dara.Model {
|
|
|
46370
47776
|
endTime?: string;
|
|
46371
47777
|
/**
|
|
46372
47778
|
* @remarks
|
|
46373
|
-
* The
|
|
47779
|
+
* The number of entries per page.
|
|
46374
47780
|
*
|
|
46375
|
-
* *
|
|
46376
|
-
* * Default value: 10
|
|
47781
|
+
* * Maximum value: 100.
|
|
47782
|
+
* * Default value: 10.
|
|
46377
47783
|
*
|
|
46378
47784
|
* @example
|
|
46379
47785
|
* 10
|
|
@@ -47376,7 +48782,7 @@ export class DescribeUsersInGroupRequest extends $dara.Model {
|
|
|
47376
48782
|
export class DescribeUsersInGroupResponseBody extends $dara.Model {
|
|
47377
48783
|
/**
|
|
47378
48784
|
* @remarks
|
|
47379
|
-
* The
|
|
48785
|
+
* The authorized users.
|
|
47380
48786
|
*/
|
|
47381
48787
|
endUsers?: DescribeUsersInGroupResponseBodyEndUsers[];
|
|
47382
48788
|
/**
|
|
@@ -48502,27 +49908,41 @@ export class DissociateNetworkPackageResponse extends $dara.Model {
|
|
|
48502
49908
|
|
|
48503
49909
|
export class DownloadCdsFileRequest extends $dara.Model {
|
|
48504
49910
|
/**
|
|
49911
|
+
* @remarks
|
|
49912
|
+
* The enterprise drive ID.
|
|
49913
|
+
*
|
|
48505
49914
|
* @example
|
|
48506
49915
|
* cn-hangzhou+cds-643267****
|
|
48507
49916
|
*/
|
|
48508
49917
|
cdsId?: string;
|
|
48509
49918
|
/**
|
|
49919
|
+
* @remarks
|
|
49920
|
+
* The user ID.
|
|
49921
|
+
*
|
|
48510
49922
|
* @example
|
|
48511
49923
|
* user****
|
|
48512
49924
|
*/
|
|
48513
49925
|
endUserId?: string;
|
|
48514
49926
|
/**
|
|
49927
|
+
* @remarks
|
|
49928
|
+
* The file ID.
|
|
49929
|
+
*
|
|
48515
49930
|
* @example
|
|
48516
49931
|
* 63f3257b68b018170b194d87b875512d108f****
|
|
48517
49932
|
*/
|
|
48518
49933
|
fileId?: string;
|
|
48519
49934
|
/**
|
|
49935
|
+
* @remarks
|
|
49936
|
+
* The team ID.
|
|
49937
|
+
*
|
|
48520
49938
|
* @example
|
|
48521
49939
|
* cg-i1ruuudp92qpj****
|
|
48522
49940
|
*/
|
|
48523
49941
|
groupId?: string;
|
|
48524
49942
|
/**
|
|
48525
49943
|
* @remarks
|
|
49944
|
+
* The region ID.
|
|
49945
|
+
*
|
|
48526
49946
|
* This parameter is required.
|
|
48527
49947
|
*
|
|
48528
49948
|
* @example
|
|
@@ -48559,18 +49979,31 @@ export class DownloadCdsFileRequest extends $dara.Model {
|
|
|
48559
49979
|
}
|
|
48560
49980
|
|
|
48561
49981
|
export class DownloadCdsFileResponseBody extends $dara.Model {
|
|
49982
|
+
/**
|
|
49983
|
+
* @remarks
|
|
49984
|
+
* The download URL of the file.
|
|
49985
|
+
*/
|
|
48562
49986
|
downloadFileModel?: DownloadCdsFileResponseBodyDownloadFileModel;
|
|
48563
49987
|
/**
|
|
49988
|
+
* @remarks
|
|
49989
|
+
* The response message.
|
|
49990
|
+
*
|
|
48564
49991
|
* @example
|
|
48565
49992
|
* success
|
|
48566
49993
|
*/
|
|
48567
49994
|
message?: string;
|
|
48568
49995
|
/**
|
|
49996
|
+
* @remarks
|
|
49997
|
+
* The request ID.
|
|
49998
|
+
*
|
|
48569
49999
|
* @example
|
|
48570
50000
|
* E3ED9519-DD73-5C86-9C0A-43C9281C****
|
|
48571
50001
|
*/
|
|
48572
50002
|
requestId?: string;
|
|
48573
50003
|
/**
|
|
50004
|
+
* @remarks
|
|
50005
|
+
* Indicates whether the request was successful.
|
|
50006
|
+
*
|
|
48574
50007
|
* @example
|
|
48575
50008
|
* true
|
|
48576
50009
|
*/
|
|
@@ -51342,7 +52775,7 @@ export class ListDirectoryUsersResponseBody extends $dara.Model {
|
|
|
51342
52775
|
requestId?: string;
|
|
51343
52776
|
/**
|
|
51344
52777
|
* @remarks
|
|
51345
|
-
* The
|
|
52778
|
+
* 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
52779
|
*/
|
|
51347
52780
|
users?: ListDirectoryUsersResponseBodyUsers[];
|
|
51348
52781
|
static names(): { [key: string]: string } {
|
|
@@ -51785,7 +53218,7 @@ export class ListOfficeSiteUsersRequest extends $dara.Model {
|
|
|
51785
53218
|
officeSiteId?: string;
|
|
51786
53219
|
/**
|
|
51787
53220
|
* @remarks
|
|
51788
|
-
* The region ID. You can call the [DescribeRegions](
|
|
53221
|
+
* 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
53222
|
*
|
|
51790
53223
|
* This parameter is required.
|
|
51791
53224
|
*
|
|
@@ -51850,8 +53283,8 @@ export class ListOfficeSiteUsersResponseBody extends $dara.Model {
|
|
|
51850
53283
|
requestId?: string;
|
|
51851
53284
|
/**
|
|
51852
53285
|
* @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.
|
|
53286
|
+
* The usernames of the AD accounts.\\
|
|
53287
|
+
* If the only Administrator and Guest users exist in the enterprise AD directory, an empty User array is returned.
|
|
51855
53288
|
*/
|
|
51856
53289
|
users?: ListOfficeSiteUsersResponseBodyUsers[];
|
|
51857
53290
|
static names(): { [key: string]: string } {
|
|
@@ -54273,7 +55706,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54273
55706
|
*
|
|
54274
55707
|
* Valid values:
|
|
54275
55708
|
*
|
|
54276
|
-
* * 1: public cloud
|
|
55709
|
+
* * 1: public cloud
|
|
54277
55710
|
* * 8: commercial edition.
|
|
54278
55711
|
*
|
|
54279
55712
|
* This parameter is required.
|
|
@@ -54461,12 +55894,12 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54461
55894
|
domainResolveRuleType?: string;
|
|
54462
55895
|
/**
|
|
54463
55896
|
* @remarks
|
|
54464
|
-
* Specifies whether to enforce
|
|
55897
|
+
* Specifies whether to enforce a bandwidth limit for sessions.
|
|
54465
55898
|
*
|
|
54466
55899
|
* Valid values:
|
|
54467
55900
|
*
|
|
54468
|
-
* * off: doesn\\"t enforce
|
|
54469
|
-
* * on: enforces
|
|
55901
|
+
* * off: doesn\\"t enforce a bandwidth limit for sessions.
|
|
55902
|
+
* * on: enforces a bandwidth limit for sessions.
|
|
54470
55903
|
*
|
|
54471
55904
|
* @example
|
|
54472
55905
|
* off
|
|
@@ -54487,12 +55920,12 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54487
55920
|
endUserApplyAdminCoordinate?: string;
|
|
54488
55921
|
/**
|
|
54489
55922
|
* @remarks
|
|
54490
|
-
* Specifies whether end users
|
|
55923
|
+
* Specifies whether to allow end users from the same office network to share cloud computers.
|
|
54491
55924
|
*
|
|
54492
55925
|
* Valid values:
|
|
54493
55926
|
*
|
|
54494
|
-
* * off:
|
|
54495
|
-
* * on:
|
|
55927
|
+
* * off: doesn\\"t allow end users from the same office network to share cloud computers.
|
|
55928
|
+
* * on: allows end users from the same office network to share cloud computers.
|
|
54496
55929
|
*
|
|
54497
55930
|
* @example
|
|
54498
55931
|
* off
|
|
@@ -54554,6 +55987,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54554
55987
|
* both
|
|
54555
55988
|
*/
|
|
54556
55989
|
internetCommunicationProtocol?: string;
|
|
55990
|
+
internetPrinter?: string;
|
|
54557
55991
|
/**
|
|
54558
55992
|
* @remarks
|
|
54559
55993
|
* The read/write permissions on the on-premises drive.
|
|
@@ -54628,14 +56062,14 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54628
56062
|
memorySingleRateLimit?: number;
|
|
54629
56063
|
/**
|
|
54630
56064
|
* @remarks
|
|
54631
|
-
* Specifies whether to display the Restart button in the DesktopAssistant menu when end users connect to cloud computers from
|
|
56065
|
+
* Specifies whether to display the Restart button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
54632
56066
|
*
|
|
54633
56067
|
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
54634
56068
|
*
|
|
54635
56069
|
* Valid values:
|
|
54636
56070
|
*
|
|
54637
|
-
* * off: doesn\\"t display the Restart button in the DesktopAssistant menu.
|
|
54638
|
-
* * on: displays the Restart button in the DesktopAssistant menu.
|
|
56071
|
+
* * off: doesn\\"t display the Restart button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
56072
|
+
* * on: displays the Restart button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
54639
56073
|
*
|
|
54640
56074
|
* @example
|
|
54641
56075
|
* off
|
|
@@ -54643,14 +56077,14 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54643
56077
|
mobileRestart?: string;
|
|
54644
56078
|
/**
|
|
54645
56079
|
* @remarks
|
|
54646
|
-
* Specifies whether to display the Stop button in the DesktopAssistant menu when end users connect to cloud computers from
|
|
56080
|
+
* Specifies whether to display the Stop button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
54647
56081
|
*
|
|
54648
56082
|
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
54649
56083
|
*
|
|
54650
56084
|
* Valid values:
|
|
54651
56085
|
*
|
|
54652
|
-
* * off: doesn\\"t display the Stop button in the DesktopAssistant menu.
|
|
54653
|
-
* * on: displays the Stop button in the DesktopAssistant menu.
|
|
56086
|
+
* * off: doesn\\"t display the Stop button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
56087
|
+
* * on: displays the Stop button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
54654
56088
|
*
|
|
54655
56089
|
* @example
|
|
54656
56090
|
* off
|
|
@@ -54682,7 +56116,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54682
56116
|
netRedirect?: string;
|
|
54683
56117
|
/**
|
|
54684
56118
|
* @remarks
|
|
54685
|
-
* The network redirection
|
|
56119
|
+
* The network redirection rules.
|
|
54686
56120
|
*
|
|
54687
56121
|
* > This parameter is in private preview and only available to specific users.
|
|
54688
56122
|
*/
|
|
@@ -54949,6 +56383,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54949
56383
|
* The security group rules that you want to delete.
|
|
54950
56384
|
*/
|
|
54951
56385
|
revokeSecurityPolicyRule?: ModifyCenterPolicyRequestRevokeSecurityPolicyRule[];
|
|
56386
|
+
safeMenu?: string;
|
|
54952
56387
|
/**
|
|
54953
56388
|
* @remarks
|
|
54954
56389
|
* The effective scope of the policy.
|
|
@@ -54969,7 +56404,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
54969
56404
|
scopeValue?: string[];
|
|
54970
56405
|
/**
|
|
54971
56406
|
* @remarks
|
|
54972
|
-
* The bandwidth peak
|
|
56407
|
+
* The bandwidth peak allowed for sessions. Unit: Kbit/s. Valid values: 2000 to 100000.
|
|
54973
56408
|
*
|
|
54974
56409
|
* @example
|
|
54975
56410
|
* 2000
|
|
@@ -55057,7 +56492,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
55057
56492
|
usbSupplyRedirectRule?: ModifyCenterPolicyRequestUsbSupplyRedirectRule[];
|
|
55058
56493
|
/**
|
|
55059
56494
|
* @remarks
|
|
55060
|
-
* The average bitrate for video encoding. Valid values: 1000 to 50000.
|
|
56495
|
+
* The average bitrate for video encoding. Unit: Kbit/s. Valid values: 1000 to 50000.
|
|
55061
56496
|
*
|
|
55062
56497
|
* @example
|
|
55063
56498
|
* 2000
|
|
@@ -55081,7 +56516,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
55081
56516
|
videoEncMinQP?: number;
|
|
55082
56517
|
/**
|
|
55083
56518
|
* @remarks
|
|
55084
|
-
* The peak bitrate for video encoding. Valid values: 1000 to 50000.
|
|
56519
|
+
* The peak bitrate allowed for video encoding. Unit: Kbit/s. Valid values: 1000 to 50000.
|
|
55085
56520
|
*
|
|
55086
56521
|
* @example
|
|
55087
56522
|
* 2000
|
|
@@ -55330,6 +56765,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
55330
56765
|
gpuAcceleration: 'GpuAcceleration',
|
|
55331
56766
|
html5FileTransfer: 'Html5FileTransfer',
|
|
55332
56767
|
internetCommunicationProtocol: 'InternetCommunicationProtocol',
|
|
56768
|
+
internetPrinter: 'InternetPrinter',
|
|
55333
56769
|
localDrive: 'LocalDrive',
|
|
55334
56770
|
maxReconnectTime: 'MaxReconnectTime',
|
|
55335
56771
|
memoryDownGradeDuration: 'MemoryDownGradeDuration',
|
|
@@ -55370,6 +56806,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
55370
56806
|
resourceType: 'ResourceType',
|
|
55371
56807
|
revokeAccessPolicyRule: 'RevokeAccessPolicyRule',
|
|
55372
56808
|
revokeSecurityPolicyRule: 'RevokeSecurityPolicyRule',
|
|
56809
|
+
safeMenu: 'SafeMenu',
|
|
55373
56810
|
scope: 'Scope',
|
|
55374
56811
|
scopeValue: 'ScopeValue',
|
|
55375
56812
|
sessionMaxRateKbps: 'SessionMaxRateKbps',
|
|
@@ -55437,6 +56874,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
55437
56874
|
gpuAcceleration: 'string',
|
|
55438
56875
|
html5FileTransfer: 'string',
|
|
55439
56876
|
internetCommunicationProtocol: 'string',
|
|
56877
|
+
internetPrinter: 'string',
|
|
55440
56878
|
localDrive: 'string',
|
|
55441
56879
|
maxReconnectTime: 'number',
|
|
55442
56880
|
memoryDownGradeDuration: 'number',
|
|
@@ -55477,6 +56915,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
55477
56915
|
resourceType: 'string',
|
|
55478
56916
|
revokeAccessPolicyRule: { 'type': 'array', 'itemType': ModifyCenterPolicyRequestRevokeAccessPolicyRule },
|
|
55479
56917
|
revokeSecurityPolicyRule: { 'type': 'array', 'itemType': ModifyCenterPolicyRequestRevokeSecurityPolicyRule },
|
|
56918
|
+
safeMenu: 'string',
|
|
55480
56919
|
scope: 'string',
|
|
55481
56920
|
scopeValue: { 'type': 'array', 'itemType': 'string' },
|
|
55482
56921
|
sessionMaxRateKbps: 'number',
|
|
@@ -67589,6 +69028,8 @@ export default class Client extends OpenApi {
|
|
|
67589
69028
|
}
|
|
67590
69029
|
|
|
67591
69030
|
/**
|
|
69031
|
+
* Clones a policy based on an existing global policy.
|
|
69032
|
+
*
|
|
67592
69033
|
* @param request - CloneCenterPolicyRequest
|
|
67593
69034
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
67594
69035
|
* @returns CloneCenterPolicyResponse
|
|
@@ -67634,6 +69075,8 @@ export default class Client extends OpenApi {
|
|
|
67634
69075
|
}
|
|
67635
69076
|
|
|
67636
69077
|
/**
|
|
69078
|
+
* Clones a policy based on an existing global policy.
|
|
69079
|
+
*
|
|
67637
69080
|
* @param request - CloneCenterPolicyRequest
|
|
67638
69081
|
* @returns CloneCenterPolicyResponse
|
|
67639
69082
|
*/
|
|
@@ -68697,6 +70140,8 @@ export default class Client extends OpenApi {
|
|
|
68697
70140
|
}
|
|
68698
70141
|
|
|
68699
70142
|
/**
|
|
70143
|
+
* 创建无地域策略
|
|
70144
|
+
*
|
|
68700
70145
|
* @param request - CreateCenterPolicyRequest
|
|
68701
70146
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
68702
70147
|
* @returns CreateCenterPolicyResponse
|
|
@@ -68824,6 +70269,10 @@ export default class Client extends OpenApi {
|
|
|
68824
70269
|
query["InternetCommunicationProtocol"] = request.internetCommunicationProtocol;
|
|
68825
70270
|
}
|
|
68826
70271
|
|
|
70272
|
+
if (!$dara.isNull(request.internetPrinter)) {
|
|
70273
|
+
query["InternetPrinter"] = request.internetPrinter;
|
|
70274
|
+
}
|
|
70275
|
+
|
|
68827
70276
|
if (!$dara.isNull(request.localDrive)) {
|
|
68828
70277
|
query["LocalDrive"] = request.localDrive;
|
|
68829
70278
|
}
|
|
@@ -68972,6 +70421,10 @@ export default class Client extends OpenApi {
|
|
|
68972
70421
|
query["ResourceType"] = request.resourceType;
|
|
68973
70422
|
}
|
|
68974
70423
|
|
|
70424
|
+
if (!$dara.isNull(request.safeMenu)) {
|
|
70425
|
+
query["SafeMenu"] = request.safeMenu;
|
|
70426
|
+
}
|
|
70427
|
+
|
|
68975
70428
|
if (!$dara.isNull(request.scope)) {
|
|
68976
70429
|
query["Scope"] = request.scope;
|
|
68977
70430
|
}
|
|
@@ -69118,6 +70571,8 @@ export default class Client extends OpenApi {
|
|
|
69118
70571
|
}
|
|
69119
70572
|
|
|
69120
70573
|
/**
|
|
70574
|
+
* 创建无地域策略
|
|
70575
|
+
*
|
|
69121
70576
|
* @param request - CreateCenterPolicyRequest
|
|
69122
70577
|
* @returns CreateCenterPolicyResponse
|
|
69123
70578
|
*/
|
|
@@ -72059,7 +73514,7 @@ export default class Client extends OpenApi {
|
|
|
72059
73514
|
}
|
|
72060
73515
|
|
|
72061
73516
|
/**
|
|
72062
|
-
*
|
|
73517
|
+
* Queries center policies.
|
|
72063
73518
|
*
|
|
72064
73519
|
* @param request - DescribeCenterPolicyListRequest
|
|
72065
73520
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -72110,7 +73565,7 @@ export default class Client extends OpenApi {
|
|
|
72110
73565
|
}
|
|
72111
73566
|
|
|
72112
73567
|
/**
|
|
72113
|
-
*
|
|
73568
|
+
* Queries center policies.
|
|
72114
73569
|
*
|
|
72115
73570
|
* @param request - DescribeCenterPolicyListRequest
|
|
72116
73571
|
* @returns DescribeCenterPolicyListResponse
|
|
@@ -74797,6 +76252,8 @@ export default class Client extends OpenApi {
|
|
|
74797
76252
|
}
|
|
74798
76253
|
|
|
74799
76254
|
/**
|
|
76255
|
+
* Queries the details of screen recording files.
|
|
76256
|
+
*
|
|
74800
76257
|
* @param request - DescribeRecordingsRequest
|
|
74801
76258
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
74802
76259
|
* @returns DescribeRecordingsResponse
|
|
@@ -74866,6 +76323,8 @@ export default class Client extends OpenApi {
|
|
|
74866
76323
|
}
|
|
74867
76324
|
|
|
74868
76325
|
/**
|
|
76326
|
+
* Queries the details of screen recording files.
|
|
76327
|
+
*
|
|
74869
76328
|
* @param request - DescribeRecordingsRequest
|
|
74870
76329
|
* @returns DescribeRecordingsResponse
|
|
74871
76330
|
*/
|
|
@@ -75985,7 +77444,7 @@ export default class Client extends OpenApi {
|
|
|
75985
77444
|
}
|
|
75986
77445
|
|
|
75987
77446
|
/**
|
|
75988
|
-
*
|
|
77447
|
+
* Obtains the download link of the target file.
|
|
75989
77448
|
*
|
|
75990
77449
|
* @param request - DownloadCdsFileRequest
|
|
75991
77450
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -76032,7 +77491,7 @@ export default class Client extends OpenApi {
|
|
|
76032
77491
|
}
|
|
76033
77492
|
|
|
76034
77493
|
/**
|
|
76035
|
-
*
|
|
77494
|
+
* Obtains the download link of the target file.
|
|
76036
77495
|
*
|
|
76037
77496
|
* @param request - DownloadCdsFileRequest
|
|
76038
77497
|
* @returns DownloadCdsFileResponse
|
|
@@ -77021,7 +78480,7 @@ export default class Client extends OpenApi {
|
|
|
77021
78480
|
}
|
|
77022
78481
|
|
|
77023
78482
|
/**
|
|
77024
|
-
* Queries information about Active Directory (AD)
|
|
78483
|
+
* Queries information about Active Directory (AD) accounts after an enterprise AD office network (formerly workspace) interconnects to an AD domain.
|
|
77025
78484
|
*
|
|
77026
78485
|
* @param request - ListOfficeSiteUsersRequest
|
|
77027
78486
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -77084,7 +78543,7 @@ export default class Client extends OpenApi {
|
|
|
77084
78543
|
}
|
|
77085
78544
|
|
|
77086
78545
|
/**
|
|
77087
|
-
* Queries information about Active Directory (AD)
|
|
78546
|
+
* Queries information about Active Directory (AD) accounts after an enterprise AD office network (formerly workspace) interconnects to an AD domain.
|
|
77088
78547
|
*
|
|
77089
78548
|
* @param request - ListOfficeSiteUsersRequest
|
|
77090
78549
|
* @returns ListOfficeSiteUsersResponse
|
|
@@ -77927,6 +79386,8 @@ export default class Client extends OpenApi {
|
|
|
77927
79386
|
}
|
|
77928
79387
|
|
|
77929
79388
|
/**
|
|
79389
|
+
* Modifies a center policy.
|
|
79390
|
+
*
|
|
77930
79391
|
* @param request - ModifyCenterPolicyRequest
|
|
77931
79392
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
77932
79393
|
* @returns ModifyCenterPolicyResponse
|
|
@@ -78054,6 +79515,10 @@ export default class Client extends OpenApi {
|
|
|
78054
79515
|
query["InternetCommunicationProtocol"] = request.internetCommunicationProtocol;
|
|
78055
79516
|
}
|
|
78056
79517
|
|
|
79518
|
+
if (!$dara.isNull(request.internetPrinter)) {
|
|
79519
|
+
query["InternetPrinter"] = request.internetPrinter;
|
|
79520
|
+
}
|
|
79521
|
+
|
|
78057
79522
|
if (!$dara.isNull(request.localDrive)) {
|
|
78058
79523
|
query["LocalDrive"] = request.localDrive;
|
|
78059
79524
|
}
|
|
@@ -78214,6 +79679,10 @@ export default class Client extends OpenApi {
|
|
|
78214
79679
|
query["RevokeSecurityPolicyRule"] = request.revokeSecurityPolicyRule;
|
|
78215
79680
|
}
|
|
78216
79681
|
|
|
79682
|
+
if (!$dara.isNull(request.safeMenu)) {
|
|
79683
|
+
query["SafeMenu"] = request.safeMenu;
|
|
79684
|
+
}
|
|
79685
|
+
|
|
78217
79686
|
if (!$dara.isNull(request.scope)) {
|
|
78218
79687
|
query["Scope"] = request.scope;
|
|
78219
79688
|
}
|
|
@@ -78360,6 +79829,8 @@ export default class Client extends OpenApi {
|
|
|
78360
79829
|
}
|
|
78361
79830
|
|
|
78362
79831
|
/**
|
|
79832
|
+
* Modifies a center policy.
|
|
79833
|
+
*
|
|
78363
79834
|
* @param request - ModifyCenterPolicyRequest
|
|
78364
79835
|
* @returns ModifyCenterPolicyResponse
|
|
78365
79836
|
*/
|
|
@@ -80681,15 +82152,15 @@ export default class Client extends OpenApi {
|
|
|
80681
82152
|
}
|
|
80682
82153
|
|
|
80683
82154
|
/**
|
|
80684
|
-
*
|
|
82155
|
+
* Rebuilds images for one or more cloud computers.
|
|
80685
82156
|
*
|
|
80686
82157
|
* @remarks
|
|
80687
|
-
*
|
|
80688
|
-
* * You
|
|
80689
|
-
* * GPU
|
|
80690
|
-
*
|
|
80691
|
-
* *
|
|
80692
|
-
* * If the OS
|
|
82158
|
+
* Before you proceed, take note of the following limits:
|
|
82159
|
+
* * 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.
|
|
82160
|
+
* * 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.
|
|
82161
|
+
* When a cloud computer’s image is updated, the system initializes its system disk by using the new image, resulting in the following effects:
|
|
82162
|
+
* * All data on the original system disk is erased. Snapshots created from the original system disk become unavailable and are automatically deleted.
|
|
82163
|
+
* * 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
82164
|
*
|
|
80694
82165
|
* @param request - RebuildDesktopsRequest
|
|
80695
82166
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -80740,15 +82211,15 @@ export default class Client extends OpenApi {
|
|
|
80740
82211
|
}
|
|
80741
82212
|
|
|
80742
82213
|
/**
|
|
80743
|
-
*
|
|
82214
|
+
* Rebuilds images for one or more cloud computers.
|
|
80744
82215
|
*
|
|
80745
82216
|
* @remarks
|
|
80746
|
-
*
|
|
80747
|
-
* * You
|
|
80748
|
-
* * GPU
|
|
80749
|
-
*
|
|
80750
|
-
* *
|
|
80751
|
-
* * If the OS
|
|
82217
|
+
* Before you proceed, take note of the following limits:
|
|
82218
|
+
* * 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.
|
|
82219
|
+
* * 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.
|
|
82220
|
+
* When a cloud computer’s image is updated, the system initializes its system disk by using the new image, resulting in the following effects:
|
|
82221
|
+
* * All data on the original system disk is erased. Snapshots created from the original system disk become unavailable and are automatically deleted.
|
|
82222
|
+
* * 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
82223
|
*
|
|
80753
82224
|
* @param request - RebuildDesktopsRequest
|
|
80754
82225
|
* @returns RebuildDesktopsResponse
|