@alicloud/ecd20200930 4.6.4 → 4.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +2171 -765
- package/dist/client.js +32 -20
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1488 -82
package/dist/client.d.ts
CHANGED
|
@@ -455,11 +455,17 @@ export declare class CreateCdsFileResponseBodyFileModel extends $dara.Model {
|
|
|
455
455
|
}
|
|
456
456
|
export declare class CreateCenterPolicyRequestAuthorizeAccessPolicyRule extends $dara.Model {
|
|
457
457
|
/**
|
|
458
|
+
* @remarks
|
|
459
|
+
* The client CIDR block from which end users can connect to cloud computers. Specify an IPv4 CIDR block.
|
|
460
|
+
*
|
|
458
461
|
* @example
|
|
459
462
|
* 47.100.XX.XX/16
|
|
460
463
|
*/
|
|
461
464
|
cidrIp?: string;
|
|
462
465
|
/**
|
|
466
|
+
* @remarks
|
|
467
|
+
* The description of the client IP address whitelist.
|
|
468
|
+
*
|
|
463
469
|
* @example
|
|
464
470
|
* test
|
|
465
471
|
*/
|
|
@@ -477,36 +483,84 @@ export declare class CreateCenterPolicyRequestAuthorizeAccessPolicyRule extends
|
|
|
477
483
|
}
|
|
478
484
|
export declare class CreateCenterPolicyRequestAuthorizeSecurityPolicyRule extends $dara.Model {
|
|
479
485
|
/**
|
|
486
|
+
* @remarks
|
|
487
|
+
* The object of the security group rule. Specify an IPv4 CIDR block.
|
|
488
|
+
*
|
|
480
489
|
* @example
|
|
481
490
|
* 10.0.XX.XX/8
|
|
482
491
|
*/
|
|
483
492
|
cidrIp?: string;
|
|
484
493
|
/**
|
|
494
|
+
* @remarks
|
|
495
|
+
* The description of the security group rule.
|
|
496
|
+
*
|
|
485
497
|
* @example
|
|
486
498
|
* test
|
|
487
499
|
*/
|
|
488
500
|
description?: string;
|
|
489
501
|
/**
|
|
502
|
+
* @remarks
|
|
503
|
+
* The protocol type of the security group rule.
|
|
504
|
+
*
|
|
505
|
+
* Valid values:
|
|
506
|
+
*
|
|
507
|
+
* * TCP: the Transmission Control Protocol (TCP) protocol.
|
|
508
|
+
* * UDP: the User Datagram Protocol (UDP) protocol.
|
|
509
|
+
* * ALL: any type of protocol.
|
|
510
|
+
* * GRE: the Generic Routing Encapsulation (GRE) protocol.
|
|
511
|
+
* * ICMP: the Internet Control Message Protocol (ICMP) for (IPv4).
|
|
512
|
+
*
|
|
490
513
|
* @example
|
|
491
514
|
* TCP
|
|
492
515
|
*/
|
|
493
516
|
ipProtocol?: string;
|
|
494
517
|
/**
|
|
518
|
+
* @remarks
|
|
519
|
+
* The authorization policy of the security group rule.
|
|
520
|
+
*
|
|
521
|
+
* Valid values:
|
|
522
|
+
*
|
|
523
|
+
* * drop: denies all access requests. If no \\"\\"access denied\\"\\" messages are returned, the requests either timed out or failed.
|
|
524
|
+
* * accept (default): accepts all requests.
|
|
525
|
+
*
|
|
495
526
|
* @example
|
|
496
527
|
* accept
|
|
497
528
|
*/
|
|
498
529
|
policy?: string;
|
|
499
530
|
/**
|
|
531
|
+
* @remarks
|
|
532
|
+
* The port range of the security group rule. The value range of this parameter varies based on the value of IpProtocol.
|
|
533
|
+
*
|
|
534
|
+
* * 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.
|
|
535
|
+
* * If IpProtocol is set to ICMP, set the value to -1/-1.
|
|
536
|
+
* * If IpProtocol is set to GRE, set the value to -1/-1.
|
|
537
|
+
* * If IpProtocol is set to ALL, set the value to -1/-1.
|
|
538
|
+
*
|
|
539
|
+
* For more information about the common ports, see [Common ports](https://help.aliyun.com/document_detail/40724.html).
|
|
540
|
+
*
|
|
500
541
|
* @example
|
|
501
542
|
* 22/22
|
|
502
543
|
*/
|
|
503
544
|
portRange?: string;
|
|
504
545
|
/**
|
|
546
|
+
* @remarks
|
|
547
|
+
* The priority of the security group rule. A smaller value specifies a higher priority.\\
|
|
548
|
+
* Valid values: 1 to 60.\\
|
|
549
|
+
* Default value: 1.
|
|
550
|
+
*
|
|
505
551
|
* @example
|
|
506
552
|
* 1
|
|
507
553
|
*/
|
|
508
554
|
priority?: string;
|
|
509
555
|
/**
|
|
556
|
+
* @remarks
|
|
557
|
+
* The direction of the security group rule.
|
|
558
|
+
*
|
|
559
|
+
* Valid values:
|
|
560
|
+
*
|
|
561
|
+
* * outflow: outbound.
|
|
562
|
+
* * inflow: inbound.
|
|
563
|
+
*
|
|
510
564
|
* @example
|
|
511
565
|
* inflow
|
|
512
566
|
*/
|
|
@@ -524,11 +578,32 @@ export declare class CreateCenterPolicyRequestAuthorizeSecurityPolicyRule extend
|
|
|
524
578
|
}
|
|
525
579
|
export declare class CreateCenterPolicyRequestClientType extends $dara.Model {
|
|
526
580
|
/**
|
|
581
|
+
* @remarks
|
|
582
|
+
* The type of the Alibaba Cloud Workspace client that end users can use to connect to cloud computers.
|
|
583
|
+
*
|
|
584
|
+
* Valid values:
|
|
585
|
+
*
|
|
586
|
+
* * html5: the web client.
|
|
587
|
+
* * android: the Android client.
|
|
588
|
+
* * ios: the iOS client.
|
|
589
|
+
* * windows: the Windows client.
|
|
590
|
+
* * macos: the macOS client.
|
|
591
|
+
*
|
|
527
592
|
* @example
|
|
528
593
|
* windows
|
|
529
594
|
*/
|
|
530
595
|
clientType?: string;
|
|
531
596
|
/**
|
|
597
|
+
* @remarks
|
|
598
|
+
* Specifies whether end users can use the specified type of Alibaba Cloud Workspace client to connect to cloud computers.
|
|
599
|
+
*
|
|
600
|
+
* > If you don\\"t specify `ClientType`, any client can be used to connect to cloud computers.
|
|
601
|
+
*
|
|
602
|
+
* Valid values:
|
|
603
|
+
*
|
|
604
|
+
* * off: End users cannot use the specified type of Alibaba Cloud Workspace client to connect to cloud computers.
|
|
605
|
+
* * on: End users can use the specified type of Alibaba Cloud Workspace client to connect to cloud computers.
|
|
606
|
+
*
|
|
532
607
|
* @example
|
|
533
608
|
* off
|
|
534
609
|
*/
|
|
@@ -546,11 +621,31 @@ export declare class CreateCenterPolicyRequestClientType extends $dara.Model {
|
|
|
546
621
|
}
|
|
547
622
|
export declare class CreateCenterPolicyRequestDeviceRedirects extends $dara.Model {
|
|
548
623
|
/**
|
|
624
|
+
* @remarks
|
|
625
|
+
* The peripheral type.
|
|
626
|
+
*
|
|
627
|
+
* Valid values:
|
|
628
|
+
*
|
|
629
|
+
* * printer
|
|
630
|
+
* * scanner
|
|
631
|
+
* * serialport
|
|
632
|
+
* * camera
|
|
633
|
+
* * adb
|
|
634
|
+
*
|
|
549
635
|
* @example
|
|
550
636
|
* camera
|
|
551
637
|
*/
|
|
552
638
|
deviceType?: string;
|
|
553
639
|
/**
|
|
640
|
+
* @remarks
|
|
641
|
+
* The redirection type.
|
|
642
|
+
*
|
|
643
|
+
* Valid values:
|
|
644
|
+
*
|
|
645
|
+
* * deviceRedirect: enables device redirection.
|
|
646
|
+
* * usbRedirect: enables USB redirection.
|
|
647
|
+
* * off: disables any type of redirection.
|
|
648
|
+
*
|
|
554
649
|
* @example
|
|
555
650
|
* usbRedirect
|
|
556
651
|
*/
|
|
@@ -568,31 +663,67 @@ export declare class CreateCenterPolicyRequestDeviceRedirects extends $dara.Mode
|
|
|
568
663
|
}
|
|
569
664
|
export declare class CreateCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
570
665
|
/**
|
|
666
|
+
* @remarks
|
|
667
|
+
* The device name.
|
|
668
|
+
*
|
|
571
669
|
* @example
|
|
572
670
|
* sandisk
|
|
573
671
|
*/
|
|
574
672
|
deviceName?: string;
|
|
575
673
|
/**
|
|
674
|
+
* @remarks
|
|
675
|
+
* The product ID (PID).
|
|
676
|
+
*
|
|
576
677
|
* @example
|
|
577
678
|
* 0x55b1
|
|
578
679
|
*/
|
|
579
680
|
devicePid?: string;
|
|
580
681
|
/**
|
|
682
|
+
* @remarks
|
|
683
|
+
* The peripheral type.
|
|
684
|
+
*
|
|
685
|
+
* Valid values:
|
|
686
|
+
*
|
|
687
|
+
* * usbKey: U keys.
|
|
688
|
+
* * other: other peripheral devices.
|
|
689
|
+
* * graphicsTablet: graphics tablets.
|
|
690
|
+
* * cardReader: card readers.
|
|
691
|
+
* * printer: printers.
|
|
692
|
+
* * scanner: scanners.
|
|
693
|
+
* * storage: storage devices.
|
|
694
|
+
* * camera: cameras.
|
|
695
|
+
* * networkInterfaceCard: NIC devices.
|
|
696
|
+
*
|
|
581
697
|
* @example
|
|
582
698
|
* storage
|
|
583
699
|
*/
|
|
584
700
|
deviceType?: string;
|
|
585
701
|
/**
|
|
702
|
+
* @remarks
|
|
703
|
+
* The vendor ID (VID). For more information, see [Valid USB VIDs](https://www.usb.org/sites/default/files/vendor_ids032322.pdf_1.pdf).
|
|
704
|
+
*
|
|
586
705
|
* @example
|
|
587
706
|
* 0x0781
|
|
588
707
|
*/
|
|
589
708
|
deviceVid?: string;
|
|
590
709
|
/**
|
|
710
|
+
* @remarks
|
|
711
|
+
* The link optimization command.
|
|
712
|
+
*
|
|
591
713
|
* @example
|
|
592
714
|
* 2:0
|
|
593
715
|
*/
|
|
594
716
|
optCommand?: string;
|
|
595
717
|
/**
|
|
718
|
+
* @remarks
|
|
719
|
+
* The redirection type.
|
|
720
|
+
*
|
|
721
|
+
* Valid values:
|
|
722
|
+
*
|
|
723
|
+
* * deviceRedirect: enables device redirection.
|
|
724
|
+
* * usbRedirect: enables USB redirection.
|
|
725
|
+
* * off: disables any type of redirection.
|
|
726
|
+
*
|
|
596
727
|
* @example
|
|
597
728
|
* usbRedirect
|
|
598
729
|
*/
|
|
@@ -609,13 +740,28 @@ export declare class CreateCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
609
740
|
});
|
|
610
741
|
}
|
|
611
742
|
export declare class CreateCenterPolicyRequestDomainResolveRule extends $dara.Model {
|
|
743
|
+
/**
|
|
744
|
+
* @remarks
|
|
745
|
+
* The policy description.
|
|
746
|
+
*/
|
|
612
747
|
description?: string;
|
|
613
748
|
/**
|
|
749
|
+
* @remarks
|
|
750
|
+
* The domain name.
|
|
751
|
+
*
|
|
614
752
|
* @example
|
|
615
753
|
* *.example.com
|
|
616
754
|
*/
|
|
617
755
|
domain?: string;
|
|
618
756
|
/**
|
|
757
|
+
* @remarks
|
|
758
|
+
* Specifies whether to allow the domain resolution policy to take effect.
|
|
759
|
+
*
|
|
760
|
+
* Valid values:
|
|
761
|
+
*
|
|
762
|
+
* * allow
|
|
763
|
+
* * block
|
|
764
|
+
*
|
|
619
765
|
* @example
|
|
620
766
|
* allow
|
|
621
767
|
*/
|
|
@@ -633,16 +779,30 @@ export declare class CreateCenterPolicyRequestDomainResolveRule extends $dara.Mo
|
|
|
633
779
|
}
|
|
634
780
|
export declare class CreateCenterPolicyRequestNetRedirectRule extends $dara.Model {
|
|
635
781
|
/**
|
|
782
|
+
* @remarks
|
|
783
|
+
* The domain name.
|
|
784
|
+
*
|
|
636
785
|
* @example
|
|
637
786
|
* *.taobao.com
|
|
638
787
|
*/
|
|
639
788
|
domain?: string;
|
|
640
789
|
/**
|
|
790
|
+
* @remarks
|
|
791
|
+
* The redirection policy.
|
|
792
|
+
*
|
|
641
793
|
* @example
|
|
642
794
|
* allow
|
|
643
795
|
*/
|
|
644
796
|
policy?: string;
|
|
645
797
|
/**
|
|
798
|
+
* @remarks
|
|
799
|
+
* The rule type.
|
|
800
|
+
*
|
|
801
|
+
* Valid values:
|
|
802
|
+
*
|
|
803
|
+
* * prc: process.
|
|
804
|
+
* * domain: domain name.
|
|
805
|
+
*
|
|
646
806
|
* @example
|
|
647
807
|
* domain
|
|
648
808
|
*/
|
|
@@ -659,23 +819,48 @@ export declare class CreateCenterPolicyRequestNetRedirectRule extends $dara.Mode
|
|
|
659
819
|
});
|
|
660
820
|
}
|
|
661
821
|
export declare class CreateCenterPolicyRequestUsbSupplyRedirectRule extends $dara.Model {
|
|
822
|
+
/**
|
|
823
|
+
* @remarks
|
|
824
|
+
* The rule description.
|
|
825
|
+
*/
|
|
662
826
|
description?: string;
|
|
663
827
|
/**
|
|
828
|
+
* @remarks
|
|
829
|
+
* The product ID (PID).
|
|
830
|
+
*
|
|
664
831
|
* @example
|
|
665
832
|
* 08**
|
|
666
833
|
*/
|
|
667
834
|
productId?: string;
|
|
668
835
|
/**
|
|
836
|
+
* @remarks
|
|
837
|
+
* Specifies whether to allow USB redirection.
|
|
838
|
+
*
|
|
839
|
+
* Valid values:
|
|
840
|
+
*
|
|
841
|
+
* * 1: allows USB redirection.
|
|
842
|
+
* * 2: forbids USB redirection.
|
|
843
|
+
*
|
|
669
844
|
* @example
|
|
670
845
|
* 1
|
|
671
846
|
*/
|
|
672
847
|
usbRedirectType?: string;
|
|
673
848
|
/**
|
|
849
|
+
* @remarks
|
|
850
|
+
* The type of the USB redirection rule.
|
|
851
|
+
*
|
|
852
|
+
* Valid values:
|
|
853
|
+
*
|
|
854
|
+
* * 2: enables USB redirection based on products.
|
|
855
|
+
*
|
|
674
856
|
* @example
|
|
675
857
|
* 2
|
|
676
858
|
*/
|
|
677
859
|
usbRuleType?: string;
|
|
678
860
|
/**
|
|
861
|
+
* @remarks
|
|
862
|
+
* 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).
|
|
863
|
+
*
|
|
679
864
|
* @example
|
|
680
865
|
* 04**
|
|
681
866
|
*/
|
|
@@ -2918,11 +3103,17 @@ export declare class DescribeCensResponseBodyCens extends $dara.Model {
|
|
|
2918
3103
|
}
|
|
2919
3104
|
export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeAccessPolicyRules extends $dara.Model {
|
|
2920
3105
|
/**
|
|
3106
|
+
* @remarks
|
|
3107
|
+
* The client CIDR block from which end users can connect to cloud computers. The value is an IPv4 CIDR block.
|
|
3108
|
+
*
|
|
2921
3109
|
* @example
|
|
2922
3110
|
* 47.100.XX.XX/16
|
|
2923
3111
|
*/
|
|
2924
3112
|
cidrIp?: string;
|
|
2925
3113
|
/**
|
|
3114
|
+
* @remarks
|
|
3115
|
+
* The remarks on the client CIDR block.
|
|
3116
|
+
*
|
|
2926
3117
|
* @example
|
|
2927
3118
|
* test
|
|
2928
3119
|
*/
|
|
@@ -2940,36 +3131,57 @@ export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAut
|
|
|
2940
3131
|
}
|
|
2941
3132
|
export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeSecurityPolicyRules extends $dara.Model {
|
|
2942
3133
|
/**
|
|
3134
|
+
* @remarks
|
|
3135
|
+
* The object to which the security group rule applies. The value is an IPv4 CIDR block.
|
|
3136
|
+
*
|
|
2943
3137
|
* @example
|
|
2944
3138
|
* 47.100.XX.XX/16
|
|
2945
3139
|
*/
|
|
2946
3140
|
cidrIp?: string;
|
|
2947
3141
|
/**
|
|
3142
|
+
* @remarks
|
|
3143
|
+
* The description of the security group rule.
|
|
3144
|
+
*
|
|
2948
3145
|
* @example
|
|
2949
3146
|
* test
|
|
2950
3147
|
*/
|
|
2951
3148
|
description?: string;
|
|
2952
3149
|
/**
|
|
3150
|
+
* @remarks
|
|
3151
|
+
* The protocol type of the security group rule.
|
|
3152
|
+
*
|
|
2953
3153
|
* @example
|
|
2954
3154
|
* tcp
|
|
2955
3155
|
*/
|
|
2956
3156
|
ipProtocol?: string;
|
|
2957
3157
|
/**
|
|
3158
|
+
* @remarks
|
|
3159
|
+
* The authorization policy of the security group rule.
|
|
3160
|
+
*
|
|
2958
3161
|
* @example
|
|
2959
3162
|
* accept
|
|
2960
3163
|
*/
|
|
2961
3164
|
policy?: string;
|
|
2962
3165
|
/**
|
|
3166
|
+
* @remarks
|
|
3167
|
+
* The port range of the security group rule.
|
|
3168
|
+
*
|
|
2963
3169
|
* @example
|
|
2964
3170
|
* 22/22
|
|
2965
3171
|
*/
|
|
2966
3172
|
portRange?: string;
|
|
2967
3173
|
/**
|
|
3174
|
+
* @remarks
|
|
3175
|
+
* The priority of the security group rule. A smaller value indicates a higher priority.
|
|
3176
|
+
*
|
|
2968
3177
|
* @example
|
|
2969
3178
|
* 1
|
|
2970
3179
|
*/
|
|
2971
3180
|
priority?: string;
|
|
2972
3181
|
/**
|
|
3182
|
+
* @remarks
|
|
3183
|
+
* The direction of the security group rule.
|
|
3184
|
+
*
|
|
2973
3185
|
* @example
|
|
2974
3186
|
* inflow
|
|
2975
3187
|
*/
|
|
@@ -2987,11 +3199,17 @@ export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAut
|
|
|
2987
3199
|
}
|
|
2988
3200
|
export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsClientTypes extends $dara.Model {
|
|
2989
3201
|
/**
|
|
3202
|
+
* @remarks
|
|
3203
|
+
* The client type.
|
|
3204
|
+
*
|
|
2990
3205
|
* @example
|
|
2991
3206
|
* windows
|
|
2992
3207
|
*/
|
|
2993
3208
|
clientType?: string;
|
|
2994
3209
|
/**
|
|
3210
|
+
* @remarks
|
|
3211
|
+
* Indicates whether a specific client type can connect to cloud computers.
|
|
3212
|
+
*
|
|
2995
3213
|
* @example
|
|
2996
3214
|
* on
|
|
2997
3215
|
*/
|
|
@@ -3009,11 +3227,17 @@ export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsCli
|
|
|
3009
3227
|
}
|
|
3010
3228
|
export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRedirects extends $dara.Model {
|
|
3011
3229
|
/**
|
|
3230
|
+
* @remarks
|
|
3231
|
+
* The peripheral type.
|
|
3232
|
+
*
|
|
3012
3233
|
* @example
|
|
3013
3234
|
* camera
|
|
3014
3235
|
*/
|
|
3015
3236
|
deviceType?: string;
|
|
3016
3237
|
/**
|
|
3238
|
+
* @remarks
|
|
3239
|
+
* The redirection type.
|
|
3240
|
+
*
|
|
3017
3241
|
* @example
|
|
3018
3242
|
* usbRedirect
|
|
3019
3243
|
*/
|
|
@@ -3031,31 +3255,49 @@ export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDev
|
|
|
3031
3255
|
}
|
|
3032
3256
|
export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRules extends $dara.Model {
|
|
3033
3257
|
/**
|
|
3258
|
+
* @remarks
|
|
3259
|
+
* The device name.
|
|
3260
|
+
*
|
|
3034
3261
|
* @example
|
|
3035
3262
|
* sandisk
|
|
3036
3263
|
*/
|
|
3037
3264
|
deviceName?: string;
|
|
3038
3265
|
/**
|
|
3266
|
+
* @remarks
|
|
3267
|
+
* The product ID (PID).
|
|
3268
|
+
*
|
|
3039
3269
|
* @example
|
|
3040
3270
|
* 0x55b1
|
|
3041
3271
|
*/
|
|
3042
3272
|
devicePid?: string;
|
|
3043
3273
|
/**
|
|
3274
|
+
* @remarks
|
|
3275
|
+
* The peripheral type.
|
|
3276
|
+
*
|
|
3044
3277
|
* @example
|
|
3045
3278
|
* storage
|
|
3046
3279
|
*/
|
|
3047
3280
|
deviceType?: string;
|
|
3048
3281
|
/**
|
|
3282
|
+
* @remarks
|
|
3283
|
+
* The vendor ID (VID). For more information, see [Valid USB VIDs](https://www.usb.org/sites/default/files/vendor_ids032322.pdf_1.pdf).
|
|
3284
|
+
*
|
|
3049
3285
|
* @example
|
|
3050
3286
|
* 0x0781
|
|
3051
3287
|
*/
|
|
3052
3288
|
deviceVid?: string;
|
|
3053
3289
|
/**
|
|
3290
|
+
* @remarks
|
|
3291
|
+
* The link optimization command.
|
|
3292
|
+
*
|
|
3054
3293
|
* @example
|
|
3055
3294
|
* 2:0
|
|
3056
3295
|
*/
|
|
3057
3296
|
optCommand?: string;
|
|
3058
3297
|
/**
|
|
3298
|
+
* @remarks
|
|
3299
|
+
* The redirection type.
|
|
3300
|
+
*
|
|
3059
3301
|
* @example
|
|
3060
3302
|
* usbRedirect
|
|
3061
3303
|
*/
|
|
@@ -3072,13 +3314,23 @@ export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDev
|
|
|
3072
3314
|
});
|
|
3073
3315
|
}
|
|
3074
3316
|
export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDomainResolveRule extends $dara.Model {
|
|
3317
|
+
/**
|
|
3318
|
+
* @remarks
|
|
3319
|
+
* The policy description.
|
|
3320
|
+
*/
|
|
3075
3321
|
description?: string;
|
|
3076
3322
|
/**
|
|
3323
|
+
* @remarks
|
|
3324
|
+
* The domain name.
|
|
3325
|
+
*
|
|
3077
3326
|
* @example
|
|
3078
3327
|
* *.example.com
|
|
3079
3328
|
*/
|
|
3080
3329
|
domain?: string;
|
|
3081
3330
|
/**
|
|
3331
|
+
* @remarks
|
|
3332
|
+
* The resolution policy.
|
|
3333
|
+
*
|
|
3082
3334
|
* @example
|
|
3083
3335
|
* allow
|
|
3084
3336
|
*/
|
|
@@ -3096,16 +3348,25 @@ export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDom
|
|
|
3096
3348
|
}
|
|
3097
3349
|
export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsNetRedirectRule extends $dara.Model {
|
|
3098
3350
|
/**
|
|
3351
|
+
* @remarks
|
|
3352
|
+
* The domain name.
|
|
3353
|
+
*
|
|
3099
3354
|
* @example
|
|
3100
3355
|
* *.example.com
|
|
3101
3356
|
*/
|
|
3102
3357
|
domain?: string;
|
|
3103
3358
|
/**
|
|
3359
|
+
* @remarks
|
|
3360
|
+
* The redirection policy.
|
|
3361
|
+
*
|
|
3104
3362
|
* @example
|
|
3105
3363
|
* allow
|
|
3106
3364
|
*/
|
|
3107
3365
|
policy?: string;
|
|
3108
3366
|
/**
|
|
3367
|
+
* @remarks
|
|
3368
|
+
* The rule type.
|
|
3369
|
+
*
|
|
3109
3370
|
* @example
|
|
3110
3371
|
* domain
|
|
3111
3372
|
*/
|
|
@@ -3122,23 +3383,39 @@ export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsNet
|
|
|
3122
3383
|
});
|
|
3123
3384
|
}
|
|
3124
3385
|
export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsUsbSupplyRedirectRule extends $dara.Model {
|
|
3386
|
+
/**
|
|
3387
|
+
* @remarks
|
|
3388
|
+
* The rule description.
|
|
3389
|
+
*/
|
|
3125
3390
|
description?: string;
|
|
3126
3391
|
/**
|
|
3392
|
+
* @remarks
|
|
3393
|
+
* The product ID (PID).
|
|
3394
|
+
*
|
|
3127
3395
|
* @example
|
|
3128
3396
|
* 08**
|
|
3129
3397
|
*/
|
|
3130
3398
|
productId?: string;
|
|
3131
3399
|
/**
|
|
3400
|
+
* @remarks
|
|
3401
|
+
* Indicates whether USB redirection is allowed.
|
|
3402
|
+
*
|
|
3132
3403
|
* @example
|
|
3133
3404
|
* 1
|
|
3134
3405
|
*/
|
|
3135
3406
|
usbRedirectType?: number;
|
|
3136
3407
|
/**
|
|
3408
|
+
* @remarks
|
|
3409
|
+
* The type of the USB redirection rule.
|
|
3410
|
+
*
|
|
3137
3411
|
* @example
|
|
3138
3412
|
* 1
|
|
3139
3413
|
*/
|
|
3140
3414
|
usbRuleType?: number;
|
|
3141
3415
|
/**
|
|
3416
|
+
* @remarks
|
|
3417
|
+
* 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).
|
|
3418
|
+
*
|
|
3142
3419
|
* @example
|
|
3143
3420
|
* 04**
|
|
3144
3421
|
*/
|
|
@@ -3156,435 +3433,763 @@ export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroupsUsb
|
|
|
3156
3433
|
}
|
|
3157
3434
|
export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroups extends $dara.Model {
|
|
3158
3435
|
/**
|
|
3436
|
+
* @remarks
|
|
3437
|
+
* Indicates whether the admin permissions are granted to end users.
|
|
3438
|
+
*
|
|
3439
|
+
* > This parameter is in private preview and only available to specific users.
|
|
3440
|
+
*
|
|
3159
3441
|
* @example
|
|
3160
3442
|
* deny
|
|
3161
3443
|
*/
|
|
3162
3444
|
adminAccess?: string;
|
|
3163
3445
|
/**
|
|
3446
|
+
* @remarks
|
|
3447
|
+
* Indicates whether anti-screenshot is enabled.
|
|
3448
|
+
*
|
|
3164
3449
|
* @example
|
|
3165
3450
|
* off
|
|
3166
3451
|
*/
|
|
3167
3452
|
appContentProtection?: string;
|
|
3453
|
+
/**
|
|
3454
|
+
* @remarks
|
|
3455
|
+
* The client IP address whitelists.
|
|
3456
|
+
*/
|
|
3168
3457
|
authorizeAccessPolicyRules?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeAccessPolicyRules[];
|
|
3458
|
+
/**
|
|
3459
|
+
* @remarks
|
|
3460
|
+
* The security group rules.
|
|
3461
|
+
*/
|
|
3169
3462
|
authorizeSecurityPolicyRules?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsAuthorizeSecurityPolicyRules[];
|
|
3170
3463
|
/**
|
|
3464
|
+
* @remarks
|
|
3465
|
+
* Indicates whether on-premises webcam redirection is enabled.
|
|
3466
|
+
*
|
|
3171
3467
|
* @example
|
|
3172
3468
|
* on
|
|
3173
3469
|
*/
|
|
3174
3470
|
cameraRedirect?: string;
|
|
3471
|
+
/**
|
|
3472
|
+
* @remarks
|
|
3473
|
+
* The logon method control rules.
|
|
3474
|
+
*/
|
|
3175
3475
|
clientTypes?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsClientTypes[];
|
|
3176
3476
|
/**
|
|
3477
|
+
* @remarks
|
|
3478
|
+
* The read/write permissions on the clipboard.
|
|
3479
|
+
*
|
|
3177
3480
|
* @example
|
|
3178
3481
|
* off
|
|
3179
3482
|
*/
|
|
3180
3483
|
clipboard?: string;
|
|
3181
3484
|
/**
|
|
3485
|
+
* @remarks
|
|
3486
|
+
* Indicates whether color enhancement is enabled for design and 3D applications.
|
|
3487
|
+
*
|
|
3182
3488
|
* @example
|
|
3183
3489
|
* off
|
|
3184
3490
|
*/
|
|
3185
3491
|
colorEnhancement?: string;
|
|
3186
3492
|
/**
|
|
3493
|
+
* @remarks
|
|
3494
|
+
* The CPU underclocking duration. Valid values: 30 to 120. Unit: seconds.
|
|
3495
|
+
*
|
|
3187
3496
|
* @example
|
|
3188
3497
|
* 30
|
|
3189
3498
|
*/
|
|
3190
3499
|
cpuDownGradeDuration?: number;
|
|
3500
|
+
/**
|
|
3501
|
+
* @remarks
|
|
3502
|
+
* The CPU processors.
|
|
3503
|
+
*/
|
|
3191
3504
|
cpuProcessors?: string[];
|
|
3192
3505
|
/**
|
|
3506
|
+
* @remarks
|
|
3507
|
+
* The CPU spike protection policy.
|
|
3508
|
+
*
|
|
3193
3509
|
* @example
|
|
3194
3510
|
* on
|
|
3195
3511
|
*/
|
|
3196
3512
|
cpuProtectedMode?: string;
|
|
3197
3513
|
/**
|
|
3514
|
+
* @remarks
|
|
3515
|
+
* The overall CPU usage. Valid values: 70 to 90. Unit: percentage (%).
|
|
3516
|
+
*
|
|
3198
3517
|
* @example
|
|
3199
3518
|
* 70
|
|
3200
3519
|
*/
|
|
3201
3520
|
cpuRateLimit?: number;
|
|
3202
3521
|
/**
|
|
3522
|
+
* @remarks
|
|
3523
|
+
* The overall CPU sampling duration. Valid values: 10 to 60. Unit: seconds.
|
|
3524
|
+
*
|
|
3203
3525
|
* @example
|
|
3204
3526
|
* 10
|
|
3205
3527
|
*/
|
|
3206
3528
|
cpuSampleDuration?: number;
|
|
3207
3529
|
/**
|
|
3530
|
+
* @remarks
|
|
3531
|
+
* The single-CPU usage. Valid values: 70 to 100. Unit: %.
|
|
3532
|
+
*
|
|
3208
3533
|
* @example
|
|
3209
3534
|
* 70
|
|
3210
3535
|
*/
|
|
3211
3536
|
cpuSingleRateLimit?: number;
|
|
3212
3537
|
/**
|
|
3538
|
+
* @remarks
|
|
3539
|
+
* The number of cloud computers that are associated with the policy.
|
|
3540
|
+
*
|
|
3213
3541
|
* @example
|
|
3214
3542
|
* 1
|
|
3215
3543
|
*/
|
|
3216
3544
|
desktopCount?: number;
|
|
3217
3545
|
/**
|
|
3546
|
+
* @remarks
|
|
3547
|
+
* The number of cloud computer shares that are associated with the policy.
|
|
3548
|
+
*
|
|
3218
3549
|
* @example
|
|
3219
3550
|
* 1
|
|
3220
3551
|
*/
|
|
3221
3552
|
desktopGroupCount?: number;
|
|
3553
|
+
/**
|
|
3554
|
+
* @remarks
|
|
3555
|
+
* The device redirection rules.
|
|
3556
|
+
*/
|
|
3222
3557
|
deviceRedirects?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRedirects[];
|
|
3558
|
+
/**
|
|
3559
|
+
* @remarks
|
|
3560
|
+
* The custom peripheral rules.
|
|
3561
|
+
*/
|
|
3223
3562
|
deviceRules?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDeviceRules[];
|
|
3224
3563
|
/**
|
|
3564
|
+
* @remarks
|
|
3565
|
+
* Indicates whether the session is retained after disconnection.
|
|
3566
|
+
*
|
|
3567
|
+
* > This parameter applies only to cloud application policies.
|
|
3568
|
+
*
|
|
3225
3569
|
* @example
|
|
3226
3570
|
* persistent
|
|
3227
3571
|
*/
|
|
3228
3572
|
disconnectKeepSession?: string;
|
|
3229
3573
|
/**
|
|
3574
|
+
* @remarks
|
|
3575
|
+
* The retention period of the session after disconnection. Unit: seconds.
|
|
3576
|
+
*
|
|
3577
|
+
* > This parameter applies only to cloud application policies.
|
|
3578
|
+
*
|
|
3230
3579
|
* @example
|
|
3231
3580
|
* 120
|
|
3232
3581
|
*/
|
|
3233
3582
|
disconnectKeepSessionTime?: number;
|
|
3234
3583
|
/**
|
|
3584
|
+
* @remarks
|
|
3585
|
+
* The display mode.
|
|
3586
|
+
*
|
|
3235
3587
|
* @example
|
|
3236
3588
|
* adminCustom
|
|
3237
3589
|
*/
|
|
3238
3590
|
displayMode?: string;
|
|
3239
3591
|
/**
|
|
3592
|
+
* @remarks
|
|
3593
|
+
* The field where the domain resolution policy is applied.
|
|
3594
|
+
*
|
|
3240
3595
|
* @example
|
|
3241
3596
|
* xxxx
|
|
3242
3597
|
*/
|
|
3243
3598
|
domainRegisterValue?: string;
|
|
3599
|
+
/**
|
|
3600
|
+
* @remarks
|
|
3601
|
+
* The domain resolution policies.
|
|
3602
|
+
*/
|
|
3244
3603
|
domainResolveRule?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsDomainResolveRule[];
|
|
3245
3604
|
/**
|
|
3605
|
+
* @remarks
|
|
3606
|
+
* Indicates whether domain name resolution is allowed.
|
|
3607
|
+
*
|
|
3246
3608
|
* @example
|
|
3247
3609
|
* on
|
|
3248
3610
|
*/
|
|
3249
3611
|
domainResolveRuleType?: string;
|
|
3250
3612
|
/**
|
|
3613
|
+
* @remarks
|
|
3614
|
+
* Indicates whether end users are allowed to request administrator help.
|
|
3615
|
+
*
|
|
3251
3616
|
* @example
|
|
3252
3617
|
* off
|
|
3253
3618
|
*/
|
|
3254
3619
|
endUserApplyAdminCoordinate?: string;
|
|
3255
3620
|
/**
|
|
3621
|
+
* @remarks
|
|
3622
|
+
* Indicates whether end users in the same workspace can share cloud computers.
|
|
3623
|
+
*
|
|
3256
3624
|
* @example
|
|
3257
3625
|
* off
|
|
3258
3626
|
*/
|
|
3259
3627
|
endUserGroupCoordinate?: string;
|
|
3260
3628
|
/**
|
|
3629
|
+
* @remarks
|
|
3630
|
+
* Indicates whether image quality control is enabled. For optimal computer performance and user experience in professional design scenarios, we recommend enabling this feature.
|
|
3631
|
+
*
|
|
3261
3632
|
* @example
|
|
3262
3633
|
* off
|
|
3263
3634
|
*/
|
|
3264
3635
|
gpuAcceleration?: string;
|
|
3265
3636
|
/**
|
|
3637
|
+
* @remarks
|
|
3638
|
+
* The web client access policy.
|
|
3639
|
+
*
|
|
3266
3640
|
* @example
|
|
3267
3641
|
* off
|
|
3268
3642
|
*/
|
|
3269
3643
|
html5Access?: string;
|
|
3270
3644
|
/**
|
|
3645
|
+
* @remarks
|
|
3646
|
+
* The file transfer policy of the HTML5 client.
|
|
3647
|
+
*
|
|
3271
3648
|
* @example
|
|
3272
3649
|
* off
|
|
3273
3650
|
*/
|
|
3274
3651
|
html5FileTransfer?: string;
|
|
3275
3652
|
/**
|
|
3653
|
+
* @remarks
|
|
3654
|
+
* The network communication protocol.
|
|
3655
|
+
*
|
|
3276
3656
|
* @example
|
|
3277
3657
|
* tcp
|
|
3278
3658
|
*/
|
|
3279
3659
|
internetCommunicationProtocol?: string;
|
|
3280
3660
|
/**
|
|
3661
|
+
* @remarks
|
|
3662
|
+
* The read/write permissions on the on-premises drive.
|
|
3663
|
+
*
|
|
3281
3664
|
* @example
|
|
3282
3665
|
* readwrite
|
|
3283
3666
|
*/
|
|
3284
3667
|
localDrive?: string;
|
|
3285
3668
|
/**
|
|
3669
|
+
* @remarks
|
|
3670
|
+
* The maximum duration to retry reconnecting to cloud computers after an unexpected disconnection (non-human causes). Valid values: 30 to 7200. Unit: seconds.
|
|
3671
|
+
*
|
|
3286
3672
|
* @example
|
|
3287
3673
|
* 120
|
|
3288
3674
|
*/
|
|
3289
3675
|
maxReconnectTime?: number;
|
|
3290
3676
|
/**
|
|
3677
|
+
* @remarks
|
|
3678
|
+
* The memory underclocking duration per process. Valid values: 30 to 120. Unit: seconds.
|
|
3679
|
+
*
|
|
3291
3680
|
* @example
|
|
3292
3681
|
* 30
|
|
3293
3682
|
*/
|
|
3294
3683
|
memoryDownGradeDuration?: number;
|
|
3684
|
+
/**
|
|
3685
|
+
* @remarks
|
|
3686
|
+
* The memory processors.
|
|
3687
|
+
*/
|
|
3295
3688
|
memoryProcessors?: string[];
|
|
3296
3689
|
/**
|
|
3690
|
+
* @remarks
|
|
3691
|
+
* The memory spike protection policy.
|
|
3692
|
+
*
|
|
3297
3693
|
* @example
|
|
3298
3694
|
* off
|
|
3299
3695
|
*/
|
|
3300
3696
|
memoryProtectedMode?: string;
|
|
3301
3697
|
/**
|
|
3698
|
+
* @remarks
|
|
3699
|
+
* The overall memory usage. Valid values: 70 to 90. Unit: %.
|
|
3700
|
+
*
|
|
3302
3701
|
* @example
|
|
3303
3702
|
* 70
|
|
3304
3703
|
*/
|
|
3305
3704
|
memoryRateLimit?: number;
|
|
3306
3705
|
/**
|
|
3706
|
+
* @remarks
|
|
3707
|
+
* The overall memory sampling duration. Valid values: 30 to 60. Unit: seconds.
|
|
3708
|
+
*
|
|
3307
3709
|
* @example
|
|
3308
3710
|
* 30
|
|
3309
3711
|
*/
|
|
3310
3712
|
memorySampleDuration?: number;
|
|
3311
3713
|
/**
|
|
3714
|
+
* @remarks
|
|
3715
|
+
* The memory usage per process. Valid values: 30 to 60. Unit: %.
|
|
3716
|
+
*
|
|
3312
3717
|
* @example
|
|
3313
3718
|
* 30
|
|
3314
3719
|
*/
|
|
3315
3720
|
memorySingleRateLimit?: number;
|
|
3316
3721
|
/**
|
|
3722
|
+
* @remarks
|
|
3723
|
+
* 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).
|
|
3724
|
+
*
|
|
3725
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
3726
|
+
*
|
|
3317
3727
|
* @example
|
|
3318
3728
|
* off
|
|
3319
3729
|
*/
|
|
3320
3730
|
mobileRestart?: string;
|
|
3321
3731
|
/**
|
|
3732
|
+
* @remarks
|
|
3733
|
+
* 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).
|
|
3734
|
+
*
|
|
3735
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
3736
|
+
*
|
|
3322
3737
|
* @example
|
|
3323
3738
|
* off
|
|
3324
3739
|
*/
|
|
3325
3740
|
mobileShutdown?: string;
|
|
3326
3741
|
/**
|
|
3742
|
+
* @remarks
|
|
3743
|
+
* The policy name.
|
|
3744
|
+
*
|
|
3327
3745
|
* @example
|
|
3328
3746
|
* testPolicyGroupName
|
|
3329
3747
|
*/
|
|
3330
3748
|
name?: string;
|
|
3331
3749
|
/**
|
|
3750
|
+
* @remarks
|
|
3751
|
+
* The network redirection policy.
|
|
3752
|
+
*
|
|
3753
|
+
* > This parameter is in private preview and only available to specific users.
|
|
3754
|
+
*
|
|
3332
3755
|
* @example
|
|
3333
3756
|
* off
|
|
3334
3757
|
*/
|
|
3335
3758
|
netRedirect?: string;
|
|
3759
|
+
/**
|
|
3760
|
+
* @remarks
|
|
3761
|
+
* The network redirection policies.
|
|
3762
|
+
*
|
|
3763
|
+
* > This parameter is in private preview and only available to specific users.
|
|
3764
|
+
*/
|
|
3336
3765
|
netRedirectRule?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsNetRedirectRule[];
|
|
3337
3766
|
/**
|
|
3767
|
+
* @remarks
|
|
3768
|
+
* Indicates whether a disconnection is enforced upon inactivity.
|
|
3769
|
+
*
|
|
3770
|
+
* > This parameter applies only to cloud application policies.
|
|
3771
|
+
*
|
|
3338
3772
|
* @example
|
|
3339
3773
|
* off
|
|
3340
3774
|
*/
|
|
3341
3775
|
noOperationDisconnect?: string;
|
|
3342
3776
|
/**
|
|
3777
|
+
* @remarks
|
|
3778
|
+
* The duration of disconnection after inactivity. Unit: seconds.
|
|
3779
|
+
*
|
|
3780
|
+
* > This parameter applies only to cloud application policies.
|
|
3781
|
+
*
|
|
3343
3782
|
* @example
|
|
3344
3783
|
* 120
|
|
3345
3784
|
*/
|
|
3346
3785
|
noOperationDisconnectTime?: number;
|
|
3347
3786
|
/**
|
|
3787
|
+
* @remarks
|
|
3788
|
+
* The policy ID.
|
|
3789
|
+
*
|
|
3348
3790
|
* @example
|
|
3349
3791
|
* pg-gx2x1dhsmthe9****
|
|
3350
3792
|
*/
|
|
3351
3793
|
policyGroupId?: string;
|
|
3352
3794
|
/**
|
|
3795
|
+
* @remarks
|
|
3796
|
+
* The policy type.
|
|
3797
|
+
*
|
|
3353
3798
|
* @example
|
|
3354
3799
|
* SYSTEM
|
|
3355
3800
|
*/
|
|
3356
3801
|
policyGroupType?: string;
|
|
3357
3802
|
/**
|
|
3803
|
+
* @remarks
|
|
3804
|
+
* The status of the cloud computer policy.
|
|
3805
|
+
*
|
|
3358
3806
|
* @example
|
|
3359
3807
|
* AVAILABLE
|
|
3360
3808
|
*/
|
|
3361
3809
|
policyStatus?: string;
|
|
3362
3810
|
/**
|
|
3811
|
+
* @remarks
|
|
3812
|
+
* The printer redirection policy.
|
|
3813
|
+
*
|
|
3363
3814
|
* @example
|
|
3364
3815
|
* off
|
|
3365
3816
|
*/
|
|
3366
3817
|
printerRedirection?: string;
|
|
3367
3818
|
/**
|
|
3819
|
+
* @remarks
|
|
3820
|
+
* Indicates whether image quality enhancement is enabled for design and 3D applications.
|
|
3821
|
+
*
|
|
3368
3822
|
* @example
|
|
3369
3823
|
* off
|
|
3370
3824
|
*/
|
|
3371
3825
|
qualityEnhancement?: string;
|
|
3372
3826
|
/**
|
|
3827
|
+
* @remarks
|
|
3828
|
+
* Indicates whether custom screen recording is enabled.
|
|
3829
|
+
*
|
|
3373
3830
|
* @example
|
|
3374
3831
|
* off
|
|
3375
3832
|
*/
|
|
3376
3833
|
recordContent?: string;
|
|
3377
3834
|
/**
|
|
3835
|
+
* @remarks
|
|
3836
|
+
* The duration for which custom screen recordings are kept before they expire. Default value: 30 days.
|
|
3837
|
+
*
|
|
3378
3838
|
* @example
|
|
3379
3839
|
* 30
|
|
3380
3840
|
*/
|
|
3381
3841
|
recordContentExpires?: number;
|
|
3382
3842
|
/**
|
|
3843
|
+
* @remarks
|
|
3844
|
+
* The duration of screen recording after the specified event is detected. Unit: minutes. Valid values: 10 to 60.
|
|
3845
|
+
*
|
|
3383
3846
|
* @example
|
|
3384
3847
|
* 10
|
|
3385
3848
|
*/
|
|
3386
3849
|
recordEventDuration?: number;
|
|
3850
|
+
/**
|
|
3851
|
+
* @remarks
|
|
3852
|
+
* The absolute paths to screen recording files.
|
|
3853
|
+
*/
|
|
3387
3854
|
recordEventFilePaths?: string[];
|
|
3855
|
+
/**
|
|
3856
|
+
* @remarks
|
|
3857
|
+
* The absolute paths to screen recording registries.
|
|
3858
|
+
*/
|
|
3388
3859
|
recordEventRegisters?: string[];
|
|
3389
3860
|
/**
|
|
3861
|
+
* @remarks
|
|
3862
|
+
* Indicates whether screen recording is enabled.
|
|
3863
|
+
*
|
|
3390
3864
|
* @example
|
|
3391
3865
|
* off
|
|
3392
3866
|
*/
|
|
3393
3867
|
recording?: string;
|
|
3394
3868
|
/**
|
|
3869
|
+
* @remarks
|
|
3870
|
+
* Indicates whether audio files generated on cloud computers are recorded.
|
|
3871
|
+
*
|
|
3395
3872
|
* @example
|
|
3396
3873
|
* on
|
|
3397
3874
|
*/
|
|
3398
3875
|
recordingAudio?: string;
|
|
3399
3876
|
/**
|
|
3877
|
+
* @remarks
|
|
3878
|
+
* 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.
|
|
3879
|
+
*
|
|
3400
3880
|
* @example
|
|
3401
3881
|
* 10
|
|
3402
3882
|
*/
|
|
3403
3883
|
recordingDuration?: number;
|
|
3404
3884
|
/**
|
|
3885
|
+
* @remarks
|
|
3886
|
+
* 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.
|
|
3887
|
+
*
|
|
3405
3888
|
* @example
|
|
3406
3889
|
* 08:59:00
|
|
3407
3890
|
*/
|
|
3408
3891
|
recordingEndTime?: string;
|
|
3409
3892
|
/**
|
|
3893
|
+
* @remarks
|
|
3894
|
+
* The retention period of the screen recording file. Valid values: 1 to 180. Unit: days.
|
|
3895
|
+
*
|
|
3410
3896
|
* @example
|
|
3411
3897
|
* 15
|
|
3412
3898
|
*/
|
|
3413
3899
|
recordingExpires?: number;
|
|
3414
3900
|
/**
|
|
3901
|
+
* @remarks
|
|
3902
|
+
* The frame rate of screen recording. Unit: fps.
|
|
3903
|
+
*
|
|
3415
3904
|
* @example
|
|
3416
3905
|
* 5
|
|
3417
3906
|
*/
|
|
3418
3907
|
recordingFps?: number;
|
|
3419
3908
|
/**
|
|
3909
|
+
* @remarks
|
|
3910
|
+
* 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.
|
|
3911
|
+
*
|
|
3420
3912
|
* @example
|
|
3421
3913
|
* 08:00:00
|
|
3422
3914
|
*/
|
|
3423
3915
|
recordingStartTime?: string;
|
|
3424
3916
|
/**
|
|
3917
|
+
* @remarks
|
|
3918
|
+
* Indicates whether to notify end users when screen recording is enabled.
|
|
3919
|
+
*
|
|
3425
3920
|
* @example
|
|
3426
3921
|
* off
|
|
3427
3922
|
*/
|
|
3428
3923
|
recordingUserNotify?: string;
|
|
3924
|
+
/**
|
|
3925
|
+
* @remarks
|
|
3926
|
+
* The notification sent to end users when screen recording is enabled.
|
|
3927
|
+
*/
|
|
3429
3928
|
recordingUserNotifyMessage?: string;
|
|
3430
3929
|
/**
|
|
3930
|
+
* @remarks
|
|
3931
|
+
* The keyboard and mouse control permissions during remote assistance.
|
|
3932
|
+
*
|
|
3431
3933
|
* @example
|
|
3432
3934
|
* fullControl
|
|
3433
3935
|
*/
|
|
3434
3936
|
remoteCoordinate?: string;
|
|
3435
3937
|
/**
|
|
3938
|
+
* @remarks
|
|
3939
|
+
* The height of the resolution. Unit: pixel.
|
|
3940
|
+
*
|
|
3436
3941
|
* @example
|
|
3437
3942
|
* 1280
|
|
3438
3943
|
*/
|
|
3439
3944
|
resolutionHeight?: number;
|
|
3440
3945
|
/**
|
|
3946
|
+
* @remarks
|
|
3947
|
+
* The resolution type.
|
|
3948
|
+
*
|
|
3441
3949
|
* @example
|
|
3442
3950
|
* adaptive
|
|
3443
3951
|
*/
|
|
3444
3952
|
resolutionModel?: string;
|
|
3445
3953
|
/**
|
|
3954
|
+
* @remarks
|
|
3955
|
+
* The width of the resolution. Unit: pixel.
|
|
3956
|
+
*
|
|
3446
3957
|
* @example
|
|
3447
3958
|
* 1920
|
|
3448
3959
|
*/
|
|
3449
3960
|
resolutionWidth?: number;
|
|
3450
3961
|
/**
|
|
3962
|
+
* @remarks
|
|
3963
|
+
* The number of resource groups that are associated with the policy.
|
|
3964
|
+
*
|
|
3451
3965
|
* @example
|
|
3452
3966
|
* 1
|
|
3453
3967
|
*/
|
|
3454
3968
|
resourceGroupCount?: number;
|
|
3455
3969
|
/**
|
|
3970
|
+
* @remarks
|
|
3971
|
+
* The effective scope of the policy.
|
|
3972
|
+
*
|
|
3456
3973
|
* @example
|
|
3457
3974
|
* GLOBAL
|
|
3458
3975
|
*/
|
|
3459
3976
|
scope?: string;
|
|
3977
|
+
/**
|
|
3978
|
+
* @remarks
|
|
3979
|
+
* The effective scopes specified by CIDR blocks.
|
|
3980
|
+
*/
|
|
3460
3981
|
scopeValue?: string[];
|
|
3461
3982
|
/**
|
|
3983
|
+
* @remarks
|
|
3984
|
+
* Indicates whether smoothness enhancement is enabled for daily office use.
|
|
3985
|
+
*
|
|
3462
3986
|
* @example
|
|
3463
3987
|
* off
|
|
3464
3988
|
*/
|
|
3465
3989
|
smoothEnhancement?: string;
|
|
3466
3990
|
/**
|
|
3991
|
+
* @remarks
|
|
3992
|
+
* Indicates whether the metric status entry is displayed in the DesktopAssistant menu.
|
|
3993
|
+
*
|
|
3467
3994
|
* @example
|
|
3468
3995
|
* on
|
|
3469
3996
|
*/
|
|
3470
3997
|
statusMonitor?: string;
|
|
3471
3998
|
/**
|
|
3999
|
+
* @remarks
|
|
4000
|
+
* The streaming mode.
|
|
4001
|
+
*
|
|
3472
4002
|
* @example
|
|
3473
4003
|
* smooth
|
|
3474
4004
|
*/
|
|
3475
4005
|
streamingMode?: string;
|
|
3476
4006
|
/**
|
|
4007
|
+
* @remarks
|
|
4008
|
+
* The target frame rate. Valid values: 10 to 60. Unit: fps.
|
|
4009
|
+
*
|
|
3477
4010
|
* @example
|
|
3478
4011
|
* 30
|
|
3479
4012
|
*/
|
|
3480
4013
|
targetFps?: number;
|
|
3481
4014
|
/**
|
|
4015
|
+
* @remarks
|
|
4016
|
+
* Indicates whether the application taskbar is displayed.
|
|
4017
|
+
*
|
|
4018
|
+
* > This parameter applies only to cloud application policies.
|
|
4019
|
+
*
|
|
3482
4020
|
* @example
|
|
3483
4021
|
* off
|
|
3484
4022
|
*/
|
|
3485
4023
|
taskbar?: string;
|
|
3486
4024
|
/**
|
|
4025
|
+
* @remarks
|
|
4026
|
+
* The USB redirection policy.
|
|
4027
|
+
*
|
|
3487
4028
|
* @example
|
|
3488
4029
|
* off
|
|
3489
4030
|
*/
|
|
3490
4031
|
usbRedirect?: string;
|
|
4032
|
+
/**
|
|
4033
|
+
* @remarks
|
|
4034
|
+
* The USB redirection rules.
|
|
4035
|
+
*/
|
|
3491
4036
|
usbSupplyRedirectRule?: DescribeCenterPolicyListResponseBodyDescribePolicyGroupsUsbSupplyRedirectRule[];
|
|
3492
4037
|
/**
|
|
4038
|
+
* @remarks
|
|
4039
|
+
* The average bitrate for video encoding. Valid values: 1000 to 50000.
|
|
4040
|
+
*
|
|
3493
4041
|
* @example
|
|
3494
4042
|
* 1000
|
|
3495
4043
|
*/
|
|
3496
4044
|
videoEncAvgKbps?: number;
|
|
3497
4045
|
/**
|
|
4046
|
+
* @remarks
|
|
4047
|
+
* The maximum QP for video files. Higher QP values result in lower video quality. Valid values: 0 to 51.
|
|
4048
|
+
*
|
|
3498
4049
|
* @example
|
|
3499
4050
|
* 20
|
|
3500
4051
|
*/
|
|
3501
4052
|
videoEncMaxQP?: number;
|
|
3502
4053
|
/**
|
|
4054
|
+
* @remarks
|
|
4055
|
+
* The minimum quantizer parameter (QP) for video files. A lower QP means better video quality. Valid values: 0 to 51.
|
|
4056
|
+
*
|
|
3503
4057
|
* @example
|
|
3504
4058
|
* 20
|
|
3505
4059
|
*/
|
|
3506
4060
|
videoEncMinQP?: number;
|
|
3507
4061
|
/**
|
|
4062
|
+
* @remarks
|
|
4063
|
+
* The peak bitrate for video encoding. Valid values: 1000 to 50000.
|
|
4064
|
+
*
|
|
3508
4065
|
* @example
|
|
3509
4066
|
* 2000
|
|
3510
4067
|
*/
|
|
3511
4068
|
videoEncPeakKbps?: number;
|
|
3512
4069
|
/**
|
|
3513
|
-
* @
|
|
4070
|
+
* @remarks
|
|
4071
|
+
* The video encoding policy.
|
|
4072
|
+
*
|
|
4073
|
+
* @example
|
|
3514
4074
|
* qualityFirst
|
|
3515
4075
|
*/
|
|
3516
4076
|
videoEncPolicy?: string;
|
|
3517
4077
|
/**
|
|
4078
|
+
* @remarks
|
|
4079
|
+
* Indicates whether multimedia redirection is enabled.
|
|
4080
|
+
*
|
|
3518
4081
|
* @example
|
|
3519
4082
|
* off
|
|
3520
4083
|
*/
|
|
3521
4084
|
videoRedirect?: string;
|
|
3522
4085
|
/**
|
|
4086
|
+
* @remarks
|
|
4087
|
+
* The image quality policy.
|
|
4088
|
+
*
|
|
3523
4089
|
* @example
|
|
3524
4090
|
* medium
|
|
3525
4091
|
*/
|
|
3526
4092
|
visualQuality?: string;
|
|
3527
4093
|
/**
|
|
4094
|
+
* @remarks
|
|
4095
|
+
* The watermark policy.
|
|
4096
|
+
*
|
|
3528
4097
|
* @example
|
|
3529
4098
|
* on
|
|
3530
4099
|
*/
|
|
3531
4100
|
watermark?: string;
|
|
3532
4101
|
/**
|
|
4102
|
+
* @remarks
|
|
4103
|
+
* Indicates whether anti-screen capture is enabled for invisible watermarks.
|
|
4104
|
+
*
|
|
3533
4105
|
* @example
|
|
3534
4106
|
* off
|
|
3535
4107
|
*/
|
|
3536
4108
|
watermarkAntiCam?: string;
|
|
3537
4109
|
/**
|
|
4110
|
+
* @remarks
|
|
4111
|
+
* The font color of the watermark. Valid values: 0 to 16777215.
|
|
4112
|
+
*
|
|
3538
4113
|
* @example
|
|
3539
4114
|
* 0
|
|
3540
4115
|
*/
|
|
3541
4116
|
watermarkColor?: number;
|
|
3542
4117
|
/**
|
|
4118
|
+
* @remarks
|
|
4119
|
+
* If you set `WatermarkType` to `custom`, you must also specify `WatermarkCustomText`.
|
|
4120
|
+
*
|
|
3543
4121
|
* @example
|
|
3544
4122
|
* custom-watermark
|
|
3545
4123
|
*/
|
|
3546
4124
|
watermarkCustomText?: string;
|
|
3547
4125
|
/**
|
|
4126
|
+
* @remarks
|
|
4127
|
+
* The watermark rotation. Valid values: -10 to -30.
|
|
4128
|
+
*
|
|
3548
4129
|
* @example
|
|
3549
4130
|
* -10
|
|
3550
4131
|
*/
|
|
3551
4132
|
watermarkDegree?: number;
|
|
3552
4133
|
/**
|
|
4134
|
+
* @remarks
|
|
4135
|
+
* The font size of the watermark. Valid values: 10 to 20.
|
|
4136
|
+
*
|
|
3553
4137
|
* @example
|
|
3554
4138
|
* 10
|
|
3555
4139
|
*/
|
|
3556
4140
|
watermarkFontSize?: number;
|
|
3557
4141
|
/**
|
|
4142
|
+
* @remarks
|
|
4143
|
+
* The font style of the watermark.
|
|
4144
|
+
*
|
|
3558
4145
|
* @example
|
|
3559
4146
|
* plain
|
|
3560
4147
|
*/
|
|
3561
4148
|
watermarkFontStyle?: string;
|
|
3562
4149
|
/**
|
|
4150
|
+
* @remarks
|
|
4151
|
+
* The enhancement level for invisible watermarks.
|
|
4152
|
+
*
|
|
3563
4153
|
* @example
|
|
3564
4154
|
* medium
|
|
3565
4155
|
*/
|
|
3566
4156
|
watermarkPower?: string;
|
|
3567
4157
|
/**
|
|
4158
|
+
* @remarks
|
|
4159
|
+
* The number of watermark rows.
|
|
4160
|
+
*
|
|
3568
4161
|
* @example
|
|
3569
4162
|
* 3
|
|
3570
4163
|
*/
|
|
3571
4164
|
watermarkRowAmount?: number;
|
|
3572
4165
|
/**
|
|
4166
|
+
* @remarks
|
|
4167
|
+
* Indicates whether security priority is enabled for invisible watermarks.
|
|
4168
|
+
*
|
|
3573
4169
|
* @example
|
|
3574
4170
|
* on
|
|
3575
4171
|
*/
|
|
3576
4172
|
watermarkSecurity?: string;
|
|
3577
4173
|
/**
|
|
4174
|
+
* @remarks
|
|
4175
|
+
* The watermark transparency. A higher value means the watermark is less transparent. Valid values: 10 to 100.
|
|
4176
|
+
*
|
|
3578
4177
|
* @example
|
|
3579
4178
|
* 10
|
|
3580
4179
|
*/
|
|
3581
4180
|
watermarkTransparencyValue?: number;
|
|
3582
4181
|
/**
|
|
4182
|
+
* @remarks
|
|
4183
|
+
* The watermark type.
|
|
4184
|
+
*
|
|
3583
4185
|
* @example
|
|
3584
4186
|
* EndUserId
|
|
3585
4187
|
*/
|
|
3586
4188
|
watermarkType?: string;
|
|
3587
4189
|
/**
|
|
4190
|
+
* @remarks
|
|
4191
|
+
* Indicates whether the Xiaoying AI Assistant entry is displayed in the DesktopAssistant menu.
|
|
4192
|
+
*
|
|
3588
4193
|
* @example
|
|
3589
4194
|
* on
|
|
3590
4195
|
*/
|
|
@@ -7767,7 +8372,7 @@ export declare class DescribeGuestApplicationsResponseBodyApplicationsProcessDat
|
|
|
7767
8372
|
cpuPercent?: number;
|
|
7768
8373
|
/**
|
|
7769
8374
|
* @remarks
|
|
7770
|
-
* The GPU
|
|
8375
|
+
* The GPU usage (%).
|
|
7771
8376
|
*
|
|
7772
8377
|
* @example
|
|
7773
8378
|
* 15
|
|
@@ -7775,7 +8380,7 @@ export declare class DescribeGuestApplicationsResponseBodyApplicationsProcessDat
|
|
|
7775
8380
|
gpuPercent?: number;
|
|
7776
8381
|
/**
|
|
7777
8382
|
* @remarks
|
|
7778
|
-
* The I/O read and write performance.
|
|
8383
|
+
* The I/O read and write performance. Unit: byte/s.
|
|
7779
8384
|
*
|
|
7780
8385
|
* @example
|
|
7781
8386
|
* 124906.0
|
|
@@ -7783,7 +8388,7 @@ export declare class DescribeGuestApplicationsResponseBodyApplicationsProcessDat
|
|
|
7783
8388
|
iospeed?: number;
|
|
7784
8389
|
/**
|
|
7785
8390
|
* @remarks
|
|
7786
|
-
* The memory
|
|
8391
|
+
* The memory usage (%).
|
|
7787
8392
|
*
|
|
7788
8393
|
* @example
|
|
7789
8394
|
* 34
|
|
@@ -7859,7 +8464,7 @@ export declare class DescribeGuestApplicationsResponseBodyApplications extends $
|
|
|
7859
8464
|
iconUrl?: string;
|
|
7860
8465
|
/**
|
|
7861
8466
|
* @remarks
|
|
7862
|
-
* The I/O read and write performance.
|
|
8467
|
+
* The I/O read and write performance. Unit: byte/s.
|
|
7863
8468
|
*
|
|
7864
8469
|
* @example
|
|
7865
8470
|
* 124906.0
|
|
@@ -7883,7 +8488,7 @@ export declare class DescribeGuestApplicationsResponseBodyApplications extends $
|
|
|
7883
8488
|
pid?: number;
|
|
7884
8489
|
/**
|
|
7885
8490
|
* @remarks
|
|
7886
|
-
* The
|
|
8491
|
+
* The processes.
|
|
7887
8492
|
*/
|
|
7888
8493
|
processData?: DescribeGuestApplicationsResponseBodyApplicationsProcessData[];
|
|
7889
8494
|
/**
|
|
@@ -7896,7 +8501,12 @@ export declare class DescribeGuestApplicationsResponseBodyApplications extends $
|
|
|
7896
8501
|
processPath?: string;
|
|
7897
8502
|
/**
|
|
7898
8503
|
* @remarks
|
|
7899
|
-
* The application
|
|
8504
|
+
* The status of the application.
|
|
8505
|
+
*
|
|
8506
|
+
* Valid value:
|
|
8507
|
+
*
|
|
8508
|
+
* * Idle: The application is installed in the cloud computer but is not running.
|
|
8509
|
+
* * Running: The application has been installed in the cloud computer and is running.
|
|
7900
8510
|
*
|
|
7901
8511
|
* @example
|
|
7902
8512
|
* Running
|
|
@@ -11578,43 +12188,84 @@ export declare class DescribePriceForRenewDesktopOversoldGroupResponseBodyData e
|
|
|
11578
12188
|
}
|
|
11579
12189
|
export declare class DescribeRecordingsResponseBodyRecordings extends $dara.Model {
|
|
11580
12190
|
/**
|
|
12191
|
+
* @remarks
|
|
12192
|
+
* The cloud computer ID.
|
|
12193
|
+
*
|
|
11581
12194
|
* @example
|
|
11582
12195
|
* ecd-10v0vuvm616sk****
|
|
11583
12196
|
*/
|
|
11584
12197
|
desktopId?: string;
|
|
11585
12198
|
/**
|
|
12199
|
+
* @remarks
|
|
12200
|
+
* The cloud computer name.
|
|
12201
|
+
*
|
|
11586
12202
|
* @example
|
|
11587
12203
|
* DemoComputer
|
|
11588
12204
|
*/
|
|
11589
12205
|
desktopName?: string;
|
|
11590
12206
|
/**
|
|
12207
|
+
* @remarks
|
|
12208
|
+
* The end time of the recording.
|
|
12209
|
+
*
|
|
11591
12210
|
* @example
|
|
11592
12211
|
* 2023-04-10T07:26:06Z
|
|
11593
12212
|
*/
|
|
11594
12213
|
endTime?: string;
|
|
12214
|
+
/**
|
|
12215
|
+
* @remarks
|
|
12216
|
+
* The end user IDs.
|
|
12217
|
+
*/
|
|
11595
12218
|
endUserIds?: string[];
|
|
11596
12219
|
/**
|
|
12220
|
+
* @remarks
|
|
12221
|
+
* The file path.
|
|
12222
|
+
*
|
|
11597
12223
|
* @example
|
|
11598
12224
|
* pg-4w5nk44zo5yl129dd/1mk78dugw344.mp4
|
|
11599
12225
|
*/
|
|
11600
12226
|
filePath?: string;
|
|
11601
12227
|
/**
|
|
12228
|
+
* @remarks
|
|
12229
|
+
* The policy ID.
|
|
12230
|
+
*
|
|
11602
12231
|
* @example
|
|
11603
12232
|
* pg-6dn811rzrwh9ws4z6
|
|
11604
12233
|
*/
|
|
11605
12234
|
policyGroupId?: string;
|
|
11606
12235
|
/**
|
|
12236
|
+
* @remarks
|
|
12237
|
+
* The size of the screen recording file. Unit: bytes.
|
|
12238
|
+
*
|
|
11607
12239
|
* @example
|
|
11608
12240
|
* 1742845
|
|
11609
12241
|
*/
|
|
11610
12242
|
recordingSize?: number;
|
|
11611
12243
|
/**
|
|
12244
|
+
* @remarks
|
|
12245
|
+
* The type of event that triggers the recording.
|
|
12246
|
+
*
|
|
12247
|
+
* Valid values:
|
|
12248
|
+
*
|
|
12249
|
+
* * byaction_cmd_ft: triggered by copy-paste or file transfer events.
|
|
12250
|
+
* * period: triggered at scheduled intervals.
|
|
12251
|
+
* * session: triggered by session lifecycle monitoring.
|
|
12252
|
+
* * byaction_commands: triggered by copy-paste only.
|
|
12253
|
+
* * alltime: continuous recording.
|
|
12254
|
+
* * byaction_file_transfer: triggered by file transfer only.
|
|
12255
|
+
*
|
|
11612
12256
|
* @example
|
|
11613
12257
|
* alltime
|
|
11614
12258
|
*/
|
|
11615
12259
|
recordingType?: string;
|
|
12260
|
+
/**
|
|
12261
|
+
* @remarks
|
|
12262
|
+
* The download URL of the screen recording file.
|
|
12263
|
+
*/
|
|
11616
12264
|
signedUrl?: string;
|
|
11617
12265
|
/**
|
|
12266
|
+
* @remarks
|
|
12267
|
+
* The start time of the recording.
|
|
12268
|
+
*
|
|
11618
12269
|
* @example
|
|
11619
12270
|
* 2023-04-10T07:26:06Z
|
|
11620
12271
|
*/
|
|
@@ -13213,28 +13864,52 @@ export declare class DisconnectDesktopSessionsResponseBodyInvalidSessions extend
|
|
|
13213
13864
|
});
|
|
13214
13865
|
}
|
|
13215
13866
|
export declare class DownloadCdsFileResponseBodyDownloadFileModel extends $dara.Model {
|
|
13867
|
+
/**
|
|
13868
|
+
* @remarks
|
|
13869
|
+
* This parameter is deprecated.
|
|
13870
|
+
*/
|
|
13216
13871
|
downloadType?: string;
|
|
13217
13872
|
/**
|
|
13873
|
+
* @remarks
|
|
13874
|
+
* The download URL.
|
|
13875
|
+
*
|
|
13218
13876
|
* @example
|
|
13219
13877
|
* 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
|
|
13220
13878
|
*/
|
|
13221
13879
|
downloadUrl?: string;
|
|
13880
|
+
/**
|
|
13881
|
+
* @remarks
|
|
13882
|
+
* This parameter is deprecated.
|
|
13883
|
+
*/
|
|
13222
13884
|
expirationSecond?: string;
|
|
13223
13885
|
/**
|
|
13886
|
+
* @remarks
|
|
13887
|
+
* The validity period of the download URL.
|
|
13888
|
+
*
|
|
13224
13889
|
* @example
|
|
13225
13890
|
* 2024-07-18T02:55:49.795Z
|
|
13226
13891
|
*/
|
|
13227
13892
|
expirationTime?: string;
|
|
13228
13893
|
/**
|
|
13894
|
+
* @remarks
|
|
13895
|
+
* The file ID.
|
|
13896
|
+
*
|
|
13229
13897
|
* @example
|
|
13230
13898
|
* 667d5a322ebf7409e91c485d808fb3bd8a73efbb
|
|
13231
13899
|
*/
|
|
13232
13900
|
fileId?: string;
|
|
13233
13901
|
/**
|
|
13902
|
+
* @remarks
|
|
13903
|
+
* The size of the file. Unit: bytes.
|
|
13904
|
+
*
|
|
13234
13905
|
* @example
|
|
13235
13906
|
* 1594642
|
|
13236
13907
|
*/
|
|
13237
13908
|
size?: number;
|
|
13909
|
+
/**
|
|
13910
|
+
* @remarks
|
|
13911
|
+
* This parameter is deprecated.
|
|
13912
|
+
*/
|
|
13238
13913
|
streamUrl?: string;
|
|
13239
13914
|
static names(): {
|
|
13240
13915
|
[key: string]: string;
|
|
@@ -14445,7 +15120,7 @@ export declare class ListOfficeSiteUsersResponseBodyUsers extends $dara.Model {
|
|
|
14445
15120
|
assignedDesktopNumber?: number;
|
|
14446
15121
|
/**
|
|
14447
15122
|
* @remarks
|
|
14448
|
-
* The display name of the
|
|
15123
|
+
* The display name of the AD account.
|
|
14449
15124
|
*
|
|
14450
15125
|
* @example
|
|
14451
15126
|
* Alice
|
|
@@ -14455,7 +15130,7 @@ export declare class ListOfficeSiteUsersResponseBodyUsers extends $dara.Model {
|
|
|
14455
15130
|
email?: string;
|
|
14456
15131
|
/**
|
|
14457
15132
|
* @remarks
|
|
14458
|
-
* The
|
|
15133
|
+
* The username of the AD account.
|
|
14459
15134
|
*
|
|
14460
15135
|
* @example
|
|
14461
15136
|
* Alice
|
|
@@ -14773,9 +15448,9 @@ export declare class ModifyCenterPolicyRequestDeviceRedirects extends $dara.Mode
|
|
|
14773
15448
|
*
|
|
14774
15449
|
* Valid values:
|
|
14775
15450
|
*
|
|
14776
|
-
* * deviceRedirect:
|
|
14777
|
-
* * usbRedirect:
|
|
14778
|
-
* * off:
|
|
15451
|
+
* * deviceRedirect: device redirection
|
|
15452
|
+
* * usbRedirect: USB redirection.
|
|
15453
|
+
* * off: any type of redirection.
|
|
14779
15454
|
*
|
|
14780
15455
|
* @example
|
|
14781
15456
|
* deviceRedirect
|
|
@@ -14815,14 +15490,14 @@ export declare class ModifyCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
14815
15490
|
*
|
|
14816
15491
|
* Valid values:
|
|
14817
15492
|
*
|
|
14818
|
-
* * usbKey:
|
|
15493
|
+
* * usbKey: UKeys
|
|
14819
15494
|
* * other: other peripheral devices.
|
|
14820
15495
|
* * graphicsTablet: graphics tablets.
|
|
14821
15496
|
* * cardReader: card readers.
|
|
14822
15497
|
* * printer: printers.
|
|
14823
15498
|
* * scanner: scanners.
|
|
14824
15499
|
* * storage: storage devices.
|
|
14825
|
-
* * camera: cameras.
|
|
15500
|
+
* * camera: web cameras.
|
|
14826
15501
|
* * networkInterfaceCard: NIC devices.
|
|
14827
15502
|
*
|
|
14828
15503
|
* @example
|
|
@@ -14851,9 +15526,9 @@ export declare class ModifyCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
14851
15526
|
*
|
|
14852
15527
|
* Valid values:
|
|
14853
15528
|
*
|
|
14854
|
-
* * deviceRedirect:
|
|
14855
|
-
* * usbRedirect:
|
|
14856
|
-
* * off:
|
|
15529
|
+
* * deviceRedirect: device redirection
|
|
15530
|
+
* * usbRedirect: USB redirection.
|
|
15531
|
+
* * off: any type of redirection.
|
|
14857
15532
|
*
|
|
14858
15533
|
* @example
|
|
14859
15534
|
* usbRedirect
|
|
@@ -16169,7 +16844,7 @@ export declare class ModifyTimerGroupRequestConfigTimers extends $dara.Model {
|
|
|
16169
16844
|
* @remarks
|
|
16170
16845
|
* The cron expression specified in the scheduled task.
|
|
16171
16846
|
*
|
|
16172
|
-
* > The time must be in UTC. For example,
|
|
16847
|
+
* > 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.
|
|
16173
16848
|
*
|
|
16174
16849
|
* @example
|
|
16175
16850
|
* 0 0 16 ? * 1,2,3,4,5,6,7
|
|
@@ -16207,7 +16882,7 @@ export declare class ModifyTimerGroupRequestConfigTimers extends $dara.Model {
|
|
|
16207
16882
|
operationType?: string;
|
|
16208
16883
|
/**
|
|
16209
16884
|
* @remarks
|
|
16210
|
-
* The process whitelist. If whitelisted processes are running, the scheduled task
|
|
16885
|
+
* The process whitelist. If whitelisted processes are running, the scheduled task does not take effect upon inactivity.
|
|
16211
16886
|
*/
|
|
16212
16887
|
processWhitelist?: string[];
|
|
16213
16888
|
/**
|
|
@@ -16228,7 +16903,7 @@ export declare class ModifyTimerGroupRequestConfigTimers extends $dara.Model {
|
|
|
16228
16903
|
* @remarks
|
|
16229
16904
|
* The scheduled task type.
|
|
16230
16905
|
*
|
|
16231
|
-
* Valid
|
|
16906
|
+
* Valid value:
|
|
16232
16907
|
*
|
|
16233
16908
|
* * NoOperationDisconnect: scheduled disconnection upon inactivity.
|
|
16234
16909
|
* * NoConnect: scheduled disconnection upon specified operation (OperationType).
|
|
@@ -18685,9 +19360,11 @@ export declare class CancelCopyImageResponse extends $dara.Model {
|
|
|
18685
19360
|
export declare class CloneCenterPolicyRequest extends $dara.Model {
|
|
18686
19361
|
/**
|
|
18687
19362
|
* @remarks
|
|
18688
|
-
* The business type.
|
|
19363
|
+
* The business type.
|
|
18689
19364
|
*
|
|
18690
|
-
*
|
|
19365
|
+
* Valid values:
|
|
19366
|
+
*
|
|
19367
|
+
* * 1: public cloud
|
|
18691
19368
|
* * 8: commercial edition.
|
|
18692
19369
|
*
|
|
18693
19370
|
* This parameter is required.
|
|
@@ -18718,7 +19395,7 @@ export declare class CloneCenterPolicyRequest extends $dara.Model {
|
|
|
18718
19395
|
policyGroupId?: string;
|
|
18719
19396
|
/**
|
|
18720
19397
|
* @remarks
|
|
18721
|
-
* The region ID.
|
|
19398
|
+
* The region ID. Set the value to cn-shanghai.
|
|
18722
19399
|
*
|
|
18723
19400
|
* This parameter is required.
|
|
18724
19401
|
*
|
|
@@ -18728,10 +19405,12 @@ export declare class CloneCenterPolicyRequest extends $dara.Model {
|
|
|
18728
19405
|
regionId?: string;
|
|
18729
19406
|
/**
|
|
18730
19407
|
* @remarks
|
|
18731
|
-
* The resource type.
|
|
19408
|
+
* The resource type.
|
|
19409
|
+
*
|
|
19410
|
+
* Valid values:
|
|
18732
19411
|
*
|
|
18733
|
-
* * desktop: cloud computers.
|
|
18734
19412
|
* * app: cloud applications.
|
|
19413
|
+
* * desktop: cloud computers.
|
|
18735
19414
|
*
|
|
18736
19415
|
* This parameter is required.
|
|
18737
19416
|
*
|
|
@@ -21113,19 +21792,53 @@ export declare class CreateCdsFileShareLinkResponse extends $dara.Model {
|
|
|
21113
21792
|
}
|
|
21114
21793
|
export declare class CreateCenterPolicyRequest extends $dara.Model {
|
|
21115
21794
|
/**
|
|
21795
|
+
* @remarks
|
|
21796
|
+
* Specifies whether to grant the admin permissions to end users.
|
|
21797
|
+
*
|
|
21798
|
+
* > This parameter is in private preview and only available to specific users.
|
|
21799
|
+
*
|
|
21800
|
+
* Valid values:
|
|
21801
|
+
*
|
|
21802
|
+
* * allow: forcibly grants admin permissions.
|
|
21803
|
+
* * deny: forcibly rejects granting admin permissions.
|
|
21804
|
+
* * inherited: inherits the admin permissions from the user dimension.
|
|
21805
|
+
*
|
|
21116
21806
|
* @example
|
|
21117
21807
|
* deny
|
|
21118
21808
|
*/
|
|
21119
21809
|
adminAccess?: string;
|
|
21120
21810
|
/**
|
|
21811
|
+
* @remarks
|
|
21812
|
+
* The anti-screenshot policy.
|
|
21813
|
+
*
|
|
21814
|
+
* Valid values:
|
|
21815
|
+
*
|
|
21816
|
+
* * off (default): disables anti-screenshot.
|
|
21817
|
+
* * on: enables anti-screenshot.
|
|
21818
|
+
*
|
|
21121
21819
|
* @example
|
|
21122
21820
|
* off
|
|
21123
21821
|
*/
|
|
21124
21822
|
appContentProtection?: string;
|
|
21823
|
+
/**
|
|
21824
|
+
* @remarks
|
|
21825
|
+
* 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.
|
|
21826
|
+
*/
|
|
21125
21827
|
authorizeAccessPolicyRule?: CreateCenterPolicyRequestAuthorizeAccessPolicyRule[];
|
|
21828
|
+
/**
|
|
21829
|
+
* @remarks
|
|
21830
|
+
* The security group rule.
|
|
21831
|
+
*/
|
|
21126
21832
|
authorizeSecurityPolicyRule?: CreateCenterPolicyRequestAuthorizeSecurityPolicyRule[];
|
|
21127
21833
|
/**
|
|
21128
21834
|
* @remarks
|
|
21835
|
+
* The business type.
|
|
21836
|
+
*
|
|
21837
|
+
* Valid values:
|
|
21838
|
+
*
|
|
21839
|
+
* * 1: public cloud.
|
|
21840
|
+
* * 8: commercial edition.
|
|
21841
|
+
*
|
|
21129
21842
|
* This parameter is required.
|
|
21130
21843
|
*
|
|
21131
21844
|
* @example
|
|
@@ -21133,158 +21846,373 @@ export declare class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
21133
21846
|
*/
|
|
21134
21847
|
businessType?: number;
|
|
21135
21848
|
/**
|
|
21849
|
+
* @remarks
|
|
21850
|
+
* The on-premises camera redirection policy. This parameter only applies if DeviceRedirects does not include an on-premises camera redirection policy.
|
|
21851
|
+
*
|
|
21852
|
+
* Valid values:
|
|
21853
|
+
*
|
|
21854
|
+
* * deviceRedirect: enables device redirection.
|
|
21855
|
+
* * off: disables device redirection.
|
|
21856
|
+
*
|
|
21136
21857
|
* @example
|
|
21137
21858
|
* off
|
|
21138
21859
|
*/
|
|
21139
21860
|
cameraRedirect?: string;
|
|
21861
|
+
/**
|
|
21862
|
+
* @remarks
|
|
21863
|
+
* The types of Alibaba Cloud Workspace clients that end users can use to connect to cloud computers.
|
|
21864
|
+
*/
|
|
21140
21865
|
clientType?: CreateCenterPolicyRequestClientType[];
|
|
21141
21866
|
/**
|
|
21867
|
+
* @remarks
|
|
21868
|
+
* The read/write permissions on the clipboard.
|
|
21869
|
+
*
|
|
21870
|
+
* Valid values:
|
|
21871
|
+
*
|
|
21872
|
+
* * read: specifies one-way transfer You can copy files only from on-premises devices to cloud computers.
|
|
21873
|
+
* * readwrite: specifies two-way transfer. You can copy files between on-premises devices and cloud computers.
|
|
21874
|
+
* * write: specifies one-way transfer. You can only copy files from cloud computers to on-premises devices.
|
|
21875
|
+
* * off (default): disables all transfers, both one-way and two-way. Files cannot be copied directly between on-premises devices and cloud computers.
|
|
21876
|
+
*
|
|
21142
21877
|
* @example
|
|
21143
21878
|
* off
|
|
21144
21879
|
*/
|
|
21145
21880
|
clipboard?: string;
|
|
21146
21881
|
/**
|
|
21882
|
+
* @remarks
|
|
21883
|
+
* Specifies whether to enable color enhancement for design and 3D applications.
|
|
21884
|
+
*
|
|
21885
|
+
* Valid values:
|
|
21886
|
+
*
|
|
21887
|
+
* * off: doesn\\"t enable color enhancement for design and 3D applications.
|
|
21888
|
+
* * on: enables color enhancement for design and 3D applications.
|
|
21889
|
+
*
|
|
21147
21890
|
* @example
|
|
21148
21891
|
* off
|
|
21149
21892
|
*/
|
|
21150
21893
|
colorEnhancement?: string;
|
|
21151
21894
|
/**
|
|
21895
|
+
* @remarks
|
|
21896
|
+
* The CPU underclocking duration. Valid values: 30 to 120. Unit: seconds.
|
|
21897
|
+
*
|
|
21152
21898
|
* @example
|
|
21153
21899
|
* 30
|
|
21154
21900
|
*/
|
|
21155
21901
|
cpuDownGradeDuration?: number;
|
|
21902
|
+
/**
|
|
21903
|
+
* @remarks
|
|
21904
|
+
* The CPU processors.
|
|
21905
|
+
*/
|
|
21156
21906
|
cpuProcessors?: string[];
|
|
21157
21907
|
/**
|
|
21908
|
+
* @remarks
|
|
21909
|
+
* The CPU spike protection policy.
|
|
21910
|
+
*
|
|
21911
|
+
* Valid values:
|
|
21912
|
+
*
|
|
21913
|
+
* * off: disables CPU spike protection.
|
|
21914
|
+
* * on: enables CPU spike protection.
|
|
21915
|
+
*
|
|
21158
21916
|
* @example
|
|
21159
21917
|
* off
|
|
21160
21918
|
*/
|
|
21161
21919
|
cpuProtectedMode?: string;
|
|
21162
21920
|
/**
|
|
21921
|
+
* @remarks
|
|
21922
|
+
* The overall CPU usage. Valid values: 70 to 90. Unit: percentage (%).
|
|
21923
|
+
*
|
|
21163
21924
|
* @example
|
|
21164
21925
|
* 70
|
|
21165
21926
|
*/
|
|
21166
21927
|
cpuRateLimit?: number;
|
|
21167
21928
|
/**
|
|
21929
|
+
* @remarks
|
|
21930
|
+
* The overall CPU sampling duration. Valid values: 10 to 60. Unit: seconds.
|
|
21931
|
+
*
|
|
21168
21932
|
* @example
|
|
21169
21933
|
* 60
|
|
21170
21934
|
*/
|
|
21171
21935
|
cpuSampleDuration?: number;
|
|
21172
21936
|
/**
|
|
21937
|
+
* @remarks
|
|
21938
|
+
* The single-CPU usage. Valid values: 70 to 100. Unit: %.
|
|
21939
|
+
*
|
|
21173
21940
|
* @example
|
|
21174
21941
|
* 70
|
|
21175
21942
|
*/
|
|
21176
21943
|
cpuSingleRateLimit?: number;
|
|
21177
21944
|
/**
|
|
21945
|
+
* @remarks
|
|
21946
|
+
* Specifies whether to display the peripheral connection prompt.
|
|
21947
|
+
*
|
|
21178
21948
|
* @example
|
|
21179
21949
|
* off
|
|
21180
21950
|
*/
|
|
21181
21951
|
deviceConnectHint?: string;
|
|
21952
|
+
/**
|
|
21953
|
+
* @remarks
|
|
21954
|
+
* The device redirection rules.
|
|
21955
|
+
*/
|
|
21182
21956
|
deviceRedirects?: CreateCenterPolicyRequestDeviceRedirects[];
|
|
21957
|
+
/**
|
|
21958
|
+
* @remarks
|
|
21959
|
+
* The custom peripheral rules.
|
|
21960
|
+
*/
|
|
21183
21961
|
deviceRules?: CreateCenterPolicyRequestDeviceRules[];
|
|
21184
21962
|
/**
|
|
21963
|
+
* @remarks
|
|
21964
|
+
* Specifies whether to retain the session upon disconnection.
|
|
21965
|
+
*
|
|
21966
|
+
* > This parameter applies only to cloud application policies.
|
|
21967
|
+
*
|
|
21968
|
+
* Valid values:
|
|
21969
|
+
*
|
|
21970
|
+
* * customTime: retains the session for a specified time period.
|
|
21971
|
+
* * persistent: retains the session permanently.
|
|
21972
|
+
*
|
|
21185
21973
|
* @example
|
|
21186
21974
|
* customTime
|
|
21187
21975
|
*/
|
|
21188
21976
|
disconnectKeepSession?: string;
|
|
21189
21977
|
/**
|
|
21978
|
+
* @remarks
|
|
21979
|
+
* The retention period of the session after disconnection. Valid values: 30 to 7200. Unit: seconds.
|
|
21980
|
+
*
|
|
21981
|
+
* > This parameter applies only to cloud application policies.
|
|
21982
|
+
*
|
|
21190
21983
|
* @example
|
|
21191
21984
|
* 30
|
|
21192
21985
|
*/
|
|
21193
21986
|
disconnectKeepSessionTime?: number;
|
|
21194
21987
|
/**
|
|
21988
|
+
* @remarks
|
|
21989
|
+
* The display mode.
|
|
21990
|
+
*
|
|
21991
|
+
* Valid values:
|
|
21992
|
+
*
|
|
21993
|
+
* * clientCustom: suitable for user-defined scenarios.
|
|
21994
|
+
* * adminOffice: suitable for daily office scenarios.
|
|
21995
|
+
* * adminDesign: suitable for design and 3D application scenarios.
|
|
21996
|
+
* * adminCustom: suitable for admin-customized scenarios.
|
|
21997
|
+
*
|
|
21195
21998
|
* @example
|
|
21196
21999
|
* clientCustom
|
|
21197
22000
|
*/
|
|
21198
22001
|
displayMode?: string;
|
|
22002
|
+
/**
|
|
22003
|
+
* @remarks
|
|
22004
|
+
* The domain resolution policies.
|
|
22005
|
+
*/
|
|
21199
22006
|
domainResolveRule?: CreateCenterPolicyRequestDomainResolveRule[];
|
|
21200
22007
|
/**
|
|
22008
|
+
* @remarks
|
|
22009
|
+
* Specifies whether to enforce the domain resolution policy.
|
|
22010
|
+
*
|
|
22011
|
+
* Valid values:
|
|
22012
|
+
*
|
|
22013
|
+
* * off: disables the domain resolution policy.
|
|
22014
|
+
* * on: enables the domain resolution policy.
|
|
22015
|
+
*
|
|
21201
22016
|
* @example
|
|
21202
22017
|
* off
|
|
21203
22018
|
*/
|
|
21204
22019
|
domainResolveRuleType?: string;
|
|
21205
22020
|
/**
|
|
22021
|
+
* @remarks
|
|
22022
|
+
* Specifies whether to enforce session bandwidth limit.
|
|
22023
|
+
*
|
|
22024
|
+
* Valid values:
|
|
22025
|
+
*
|
|
22026
|
+
* * off: doesn\\"t enforce session bandwidth limit.
|
|
22027
|
+
* * on: enforces session bandwidth limit.
|
|
22028
|
+
*
|
|
21206
22029
|
* @example
|
|
21207
22030
|
* off
|
|
21208
22031
|
*/
|
|
21209
22032
|
enableSessionRateLimiting?: string;
|
|
21210
22033
|
/**
|
|
22034
|
+
* @remarks
|
|
22035
|
+
* Specifies whether to enable end users to request administrator help.
|
|
22036
|
+
*
|
|
22037
|
+
* Valid values:
|
|
22038
|
+
*
|
|
22039
|
+
* * off: disables end users to request administrator help.
|
|
22040
|
+
* * on: enables end users to request administrator help.
|
|
22041
|
+
*
|
|
21211
22042
|
* @example
|
|
21212
22043
|
* off
|
|
21213
22044
|
*/
|
|
21214
22045
|
endUserApplyAdminCoordinate?: string;
|
|
21215
22046
|
/**
|
|
22047
|
+
* @remarks
|
|
22048
|
+
* Specifies whether end users in the same workspace can share cloud computers.
|
|
22049
|
+
*
|
|
22050
|
+
* Valid values:
|
|
22051
|
+
*
|
|
22052
|
+
* * off: End users in the same workspace cannot share cloud computers.
|
|
22053
|
+
* * on: End users in the same workspace can share cloud computers
|
|
22054
|
+
*
|
|
21216
22055
|
* @example
|
|
21217
22056
|
* off
|
|
21218
22057
|
*/
|
|
21219
22058
|
endUserGroupCoordinate?: string;
|
|
21220
22059
|
/**
|
|
22060
|
+
* @remarks
|
|
22061
|
+
* Specifies whether to enable file transfer.
|
|
22062
|
+
*
|
|
21221
22063
|
* @example
|
|
21222
22064
|
* off
|
|
21223
22065
|
*/
|
|
21224
22066
|
fileMigrate?: string;
|
|
21225
22067
|
/**
|
|
22068
|
+
* @remarks
|
|
22069
|
+
* Specifies whether to enable image quality control. This feature is highly recommended for professional design scenarios where computer performance and user experience are critical.
|
|
22070
|
+
*
|
|
22071
|
+
* Valid values:
|
|
22072
|
+
*
|
|
22073
|
+
* * off: doesn\\"t enable image quality control.
|
|
22074
|
+
* * on: enables image quality control.
|
|
22075
|
+
*
|
|
21226
22076
|
* @example
|
|
21227
22077
|
* off
|
|
21228
22078
|
*/
|
|
21229
22079
|
gpuAcceleration?: string;
|
|
21230
22080
|
/**
|
|
22081
|
+
* @remarks
|
|
22082
|
+
* The file transfer policy on the web client.
|
|
22083
|
+
*
|
|
22084
|
+
* Valid values:
|
|
22085
|
+
*
|
|
22086
|
+
* * all: File upload and download are supported.
|
|
22087
|
+
* * download: Only file download is supported.
|
|
22088
|
+
* * upload: Only file upload is supported.
|
|
22089
|
+
* * off (default): File upload and download are not supported.
|
|
22090
|
+
*
|
|
21231
22091
|
* @example
|
|
21232
22092
|
* off
|
|
21233
22093
|
*/
|
|
21234
22094
|
html5FileTransfer?: string;
|
|
21235
22095
|
/**
|
|
22096
|
+
* @remarks
|
|
22097
|
+
* The network communication protocol.
|
|
22098
|
+
*
|
|
22099
|
+
* Valid values:
|
|
22100
|
+
*
|
|
22101
|
+
* * tcp: TCP is used when UDP/AST is restricted.
|
|
22102
|
+
* * rtc: AST is used for high-frequency audio and video streaming.
|
|
22103
|
+
* * auto: UTO enables automatic switch between AST and UDP modes based on desktop content.
|
|
22104
|
+
* * both: UDP is ideal for office and HD graphic design use.
|
|
22105
|
+
*
|
|
21236
22106
|
* @example
|
|
21237
22107
|
* both
|
|
21238
22108
|
*/
|
|
21239
22109
|
internetCommunicationProtocol?: string;
|
|
21240
22110
|
/**
|
|
22111
|
+
* @remarks
|
|
22112
|
+
* The read/write permissions on the on-premises drive.
|
|
22113
|
+
*
|
|
22114
|
+
* Valid values:
|
|
22115
|
+
*
|
|
22116
|
+
* * read: read-only. Cloud computers support on-premises disk mapping, but only for reading (copying) files—not modifying them.
|
|
22117
|
+
* * readwrite: read and write. Cloud computers support on-premises disk mapping, allowing you to read (copy) and write (modify) on-premises files.
|
|
22118
|
+
* * off (default): none. Cloud computers don\\"t support on-premises disk mapping.
|
|
22119
|
+
*
|
|
21241
22120
|
* @example
|
|
21242
22121
|
* off
|
|
21243
22122
|
*/
|
|
21244
22123
|
localDrive?: string;
|
|
21245
22124
|
/**
|
|
22125
|
+
* @remarks
|
|
22126
|
+
* The maximum duration to retry reconnecting to cloud computers after an unexpected disconnection (non-human causes). Valid values: 30 to 7200. Unit: seconds.
|
|
22127
|
+
*
|
|
21246
22128
|
* @example
|
|
21247
22129
|
* 120
|
|
21248
22130
|
*/
|
|
21249
22131
|
maxReconnectTime?: number;
|
|
21250
22132
|
/**
|
|
22133
|
+
* @remarks
|
|
22134
|
+
* The memory underclocking duration per process. Valid values: 30 to 120. Unit: seconds.
|
|
22135
|
+
*
|
|
21251
22136
|
* @example
|
|
21252
22137
|
* 40
|
|
21253
22138
|
*/
|
|
21254
22139
|
memoryDownGradeDuration?: number;
|
|
22140
|
+
/**
|
|
22141
|
+
* @remarks
|
|
22142
|
+
* The memory processors.
|
|
22143
|
+
*/
|
|
21255
22144
|
memoryProcessors?: string[];
|
|
21256
22145
|
/**
|
|
22146
|
+
* @remarks
|
|
22147
|
+
* The memory spike protection policy.
|
|
22148
|
+
*
|
|
22149
|
+
* Valid values:
|
|
22150
|
+
*
|
|
22151
|
+
* * off: disables memory spike protection.
|
|
22152
|
+
* * on: enables memory spike protection.
|
|
22153
|
+
*
|
|
21257
22154
|
* @example
|
|
21258
22155
|
* off
|
|
21259
22156
|
*/
|
|
21260
22157
|
memoryProtectedMode?: string;
|
|
21261
22158
|
/**
|
|
22159
|
+
* @remarks
|
|
22160
|
+
* The overall memory usage. Valid values: 70 to 90. Unit: %.
|
|
22161
|
+
*
|
|
21262
22162
|
* @example
|
|
21263
22163
|
* 70
|
|
21264
22164
|
*/
|
|
21265
22165
|
memoryRateLimit?: number;
|
|
21266
22166
|
/**
|
|
22167
|
+
* @remarks
|
|
22168
|
+
* The overall memory sampling duration. Valid values: 30 to 60. Unit: seconds.
|
|
22169
|
+
*
|
|
21267
22170
|
* @example
|
|
21268
22171
|
* 40
|
|
21269
22172
|
*/
|
|
21270
22173
|
memorySampleDuration?: number;
|
|
21271
22174
|
/**
|
|
22175
|
+
* @remarks
|
|
22176
|
+
* The memory usage per process. Valid values: 30 to 60. Unit: %.
|
|
22177
|
+
*
|
|
21272
22178
|
* @example
|
|
21273
22179
|
* 40
|
|
21274
22180
|
*/
|
|
21275
22181
|
memorySingleRateLimit?: number;
|
|
21276
22182
|
/**
|
|
22183
|
+
* @remarks
|
|
22184
|
+
* 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).
|
|
22185
|
+
*
|
|
22186
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
22187
|
+
*
|
|
22188
|
+
* Valid values:
|
|
22189
|
+
*
|
|
22190
|
+
* * off: doesn\\"t display the Restart button in the DesktopAssistant menu.
|
|
22191
|
+
* * on: displays the Restart button in the DesktopAssistant menu.
|
|
22192
|
+
*
|
|
21277
22193
|
* @example
|
|
21278
22194
|
* off
|
|
21279
22195
|
*/
|
|
21280
22196
|
mobileRestart?: string;
|
|
21281
22197
|
/**
|
|
22198
|
+
* @remarks
|
|
22199
|
+
* 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).
|
|
22200
|
+
*
|
|
22201
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
22202
|
+
*
|
|
22203
|
+
* Valid values:
|
|
22204
|
+
*
|
|
22205
|
+
* * off: doesn\\"t display the Stop button in the DesktopAssistant menu.
|
|
22206
|
+
* * on: displays the Stop button in the DesktopAssistant menu.
|
|
22207
|
+
*
|
|
21282
22208
|
* @example
|
|
21283
22209
|
* off
|
|
21284
22210
|
*/
|
|
21285
22211
|
mobileShutdown?: string;
|
|
21286
22212
|
/**
|
|
21287
22213
|
* @remarks
|
|
22214
|
+
* The policy name.
|
|
22215
|
+
*
|
|
21288
22216
|
* This parameter is required.
|
|
21289
22217
|
*
|
|
21290
22218
|
* @example
|
|
@@ -21292,82 +22220,193 @@ export declare class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
21292
22220
|
*/
|
|
21293
22221
|
name?: string;
|
|
21294
22222
|
/**
|
|
22223
|
+
* @remarks
|
|
22224
|
+
* The network redirection policy.
|
|
22225
|
+
*
|
|
22226
|
+
* > This parameter is in private preview and only available to specific users.
|
|
22227
|
+
*
|
|
22228
|
+
* Valid values:
|
|
22229
|
+
*
|
|
22230
|
+
* * all: enables network redirection globally.
|
|
22231
|
+
* * off (default): disables network redirection.
|
|
22232
|
+
* * on: enables the whitelist mode.
|
|
22233
|
+
*
|
|
21295
22234
|
* @example
|
|
21296
22235
|
* off
|
|
21297
22236
|
*/
|
|
21298
22237
|
netRedirect?: string;
|
|
22238
|
+
/**
|
|
22239
|
+
* @remarks
|
|
22240
|
+
* The network redirection policies.
|
|
22241
|
+
*
|
|
22242
|
+
* > This parameter is in private preview and only available to specific users.
|
|
22243
|
+
*/
|
|
21299
22244
|
netRedirectRule?: CreateCenterPolicyRequestNetRedirectRule[];
|
|
21300
22245
|
/**
|
|
22246
|
+
* @remarks
|
|
22247
|
+
* Specifies whether to enforce a disconnection upon inactivity.
|
|
22248
|
+
*
|
|
22249
|
+
* > This parameter applies only to cloud application policies.
|
|
22250
|
+
*
|
|
22251
|
+
* Valid values:
|
|
22252
|
+
*
|
|
22253
|
+
* * off: doesn\\"t enforce a disconnection upon inactivity.
|
|
22254
|
+
* * on: enforces a disconnection upon inactivity.
|
|
22255
|
+
*
|
|
21301
22256
|
* @example
|
|
21302
22257
|
* off
|
|
21303
22258
|
*/
|
|
21304
22259
|
noOperationDisconnect?: string;
|
|
21305
22260
|
/**
|
|
22261
|
+
* @remarks
|
|
22262
|
+
* The duration of disconnection after inactivity. Valid values: 120 to 7200. Unit: seconds.
|
|
22263
|
+
*
|
|
22264
|
+
* > This parameter applies only to cloud application policies.
|
|
22265
|
+
*
|
|
21306
22266
|
* @example
|
|
21307
22267
|
* 120
|
|
21308
22268
|
*/
|
|
21309
22269
|
noOperationDisconnectTime?: number;
|
|
21310
22270
|
/**
|
|
22271
|
+
* @remarks
|
|
22272
|
+
* The printer redirection policy. This parameter only applies if DeviceRedirects does not include a printer redirection policy.
|
|
22273
|
+
*
|
|
22274
|
+
* Valid values:
|
|
22275
|
+
*
|
|
22276
|
+
* * deviceRedirect (default):enables device redirection.
|
|
22277
|
+
* * usbRedirect: enables USB redirection.
|
|
22278
|
+
* * off: disables any type of redirection.
|
|
22279
|
+
*
|
|
21311
22280
|
* @example
|
|
21312
22281
|
* off
|
|
21313
22282
|
*/
|
|
21314
22283
|
printerRedirect?: string;
|
|
21315
22284
|
/**
|
|
22285
|
+
* @remarks
|
|
22286
|
+
* Specifies whether to enable image quality enhancement for design and 3D applications.
|
|
22287
|
+
*
|
|
22288
|
+
* Valid values:
|
|
22289
|
+
*
|
|
22290
|
+
* * off: doesn\\"t enable image quality enhancement for design and 3D applications.
|
|
22291
|
+
* * on: enables image quality enhancement for design and 3D applications.
|
|
22292
|
+
*
|
|
21316
22293
|
* @example
|
|
21317
22294
|
* off
|
|
21318
22295
|
*/
|
|
21319
22296
|
qualityEnhancement?: string;
|
|
21320
22297
|
/**
|
|
22298
|
+
* @remarks
|
|
22299
|
+
* The duration of screen recording after the specified event is detected. Unit: minutes. Valid values: 10 to 60.
|
|
22300
|
+
*
|
|
21321
22301
|
* @example
|
|
21322
22302
|
* 10
|
|
21323
22303
|
*/
|
|
21324
22304
|
recordEventDuration?: number;
|
|
22305
|
+
/**
|
|
22306
|
+
* @remarks
|
|
22307
|
+
* The absolute paths to screen recording files.
|
|
22308
|
+
*/
|
|
21325
22309
|
recordEventFilePaths?: string[];
|
|
22310
|
+
/**
|
|
22311
|
+
* @remarks
|
|
22312
|
+
* The absolute paths to screen recording registries.
|
|
22313
|
+
*/
|
|
21326
22314
|
recordEventRegisters?: string[];
|
|
22315
|
+
/**
|
|
22316
|
+
* @remarks
|
|
22317
|
+
* The event that triggers screen recording.
|
|
22318
|
+
*/
|
|
21327
22319
|
recordEvents?: string[];
|
|
21328
22320
|
/**
|
|
22321
|
+
* @remarks
|
|
22322
|
+
* The screen recording policy.
|
|
22323
|
+
*
|
|
22324
|
+
* Valid values:
|
|
22325
|
+
*
|
|
22326
|
+
* * period: Screen recording occurs at set intervals.
|
|
22327
|
+
* * session: Screen recording is limited to sessions only.
|
|
22328
|
+
* * off: Screen recording is disabled.
|
|
22329
|
+
* * alltime: Screen recording is always enabled.
|
|
22330
|
+
*
|
|
21329
22331
|
* @example
|
|
21330
22332
|
* off
|
|
21331
22333
|
*/
|
|
21332
22334
|
recording?: string;
|
|
21333
22335
|
/**
|
|
22336
|
+
* @remarks
|
|
22337
|
+
* Specifies whether to record audio files generated on cloud computers.
|
|
22338
|
+
*
|
|
22339
|
+
* Valid values:
|
|
22340
|
+
*
|
|
22341
|
+
* * off: doesn\\"t record audio files generated on cloud computers.
|
|
22342
|
+
* * on: records audio files generated on cloud computers.
|
|
22343
|
+
*
|
|
21334
22344
|
* @example
|
|
21335
22345
|
* on
|
|
21336
22346
|
*/
|
|
21337
22347
|
recordingAudio?: string;
|
|
21338
22348
|
/**
|
|
22349
|
+
* @remarks
|
|
22350
|
+
* 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
|
|
22351
|
+
*
|
|
21339
22352
|
* @example
|
|
21340
22353
|
* 10
|
|
21341
22354
|
*/
|
|
21342
22355
|
recordingDuration?: number;
|
|
21343
22356
|
/**
|
|
22357
|
+
* @remarks
|
|
22358
|
+
* The screen recording\\"s end time in HH:MM:SS format. The value is meaningful only if `Recording` is set to `PERIOD`.
|
|
22359
|
+
*
|
|
21344
22360
|
* @example
|
|
21345
22361
|
* 08:59:00
|
|
21346
22362
|
*/
|
|
21347
22363
|
recordingEndTime?: string;
|
|
21348
22364
|
/**
|
|
22365
|
+
* @remarks
|
|
22366
|
+
* The retention period of the screen recording file. Valid values: 1 to 180. Unit: days.
|
|
22367
|
+
*
|
|
21349
22368
|
* @example
|
|
21350
22369
|
* 15
|
|
21351
22370
|
*/
|
|
21352
22371
|
recordingExpires?: number;
|
|
21353
22372
|
/**
|
|
22373
|
+
* @remarks
|
|
22374
|
+
* The frame rate of screen recording. Unit: fps.
|
|
22375
|
+
*
|
|
21354
22376
|
* @example
|
|
21355
22377
|
* 2
|
|
21356
22378
|
*/
|
|
21357
22379
|
recordingFps?: string;
|
|
21358
22380
|
/**
|
|
22381
|
+
* @remarks
|
|
22382
|
+
* The screen recording\\"s start time in HH:MM:SS format. The value is meaningful only if `Recording` is set to `PERIOD`.
|
|
22383
|
+
*
|
|
21359
22384
|
* @example
|
|
21360
22385
|
* 08:00:00
|
|
21361
22386
|
*/
|
|
21362
22387
|
recordingStartTime?: string;
|
|
21363
22388
|
/**
|
|
22389
|
+
* @remarks
|
|
22390
|
+
* Specifies whether to notify end users when screen recording is enabled.
|
|
22391
|
+
*
|
|
22392
|
+
* Valid values:
|
|
22393
|
+
*
|
|
22394
|
+
* * off: doesn\\"t notify end users when screen recording is enabled.
|
|
22395
|
+
* * on: notifies end users when screen recording is enabled.
|
|
22396
|
+
*
|
|
21364
22397
|
* @example
|
|
21365
22398
|
* off
|
|
21366
22399
|
*/
|
|
21367
22400
|
recordingUserNotify?: string;
|
|
22401
|
+
/**
|
|
22402
|
+
* @remarks
|
|
22403
|
+
* The notification sent to end users when screen recording is enabled.
|
|
22404
|
+
*/
|
|
21368
22405
|
recordingUserNotifyMessage?: string;
|
|
21369
22406
|
/**
|
|
21370
22407
|
* @remarks
|
|
22408
|
+
* The region ID. Set the value to cn-shanghai.
|
|
22409
|
+
*
|
|
21371
22410
|
* This parameter is required.
|
|
21372
22411
|
*
|
|
21373
22412
|
* @example
|
|
@@ -21375,32 +22414,65 @@ export declare class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
21375
22414
|
*/
|
|
21376
22415
|
regionId?: string;
|
|
21377
22416
|
/**
|
|
22417
|
+
* @remarks
|
|
22418
|
+
* The keyboard and mouse control permissions during remote assistance.
|
|
22419
|
+
*
|
|
22420
|
+
* Valid values:
|
|
22421
|
+
*
|
|
22422
|
+
* * optionalControl: By default, keyboard and mouse control is disabled during remote assistance. You can request permissions as needed.
|
|
22423
|
+
* * fullControl: Keyboard and mouse control is enabled during remote assistance.
|
|
22424
|
+
* * disableControl: Keyboard and mouse control is disabled during remote assistance.
|
|
22425
|
+
*
|
|
21378
22426
|
* @example
|
|
21379
22427
|
* fullControl
|
|
21380
22428
|
*/
|
|
21381
22429
|
remoteCoordinate?: string;
|
|
21382
22430
|
/**
|
|
22431
|
+
* @remarks
|
|
22432
|
+
* The computer reset setting.
|
|
22433
|
+
*
|
|
21383
22434
|
* @example
|
|
21384
22435
|
* off
|
|
21385
22436
|
*/
|
|
21386
22437
|
resetDesktop?: string;
|
|
21387
22438
|
/**
|
|
22439
|
+
* @remarks
|
|
22440
|
+
* The height of the resolution. Unit: pixel. Valid values for cloud applications: 500 to 50000. Valid values for cloud computers: 480 to 4096.
|
|
22441
|
+
*
|
|
21388
22442
|
* @example
|
|
21389
22443
|
* 1280
|
|
21390
22444
|
*/
|
|
21391
22445
|
resolutionHeight?: number;
|
|
21392
22446
|
/**
|
|
22447
|
+
* @remarks
|
|
22448
|
+
* The resolution type.
|
|
22449
|
+
*
|
|
22450
|
+
* Valid values:
|
|
22451
|
+
*
|
|
22452
|
+
* * adaptive: adaptive resolution.
|
|
22453
|
+
* * customer: fixed resolution.
|
|
22454
|
+
*
|
|
21393
22455
|
* @example
|
|
21394
22456
|
* adaptive
|
|
21395
22457
|
*/
|
|
21396
22458
|
resolutionModel?: string;
|
|
21397
22459
|
/**
|
|
22460
|
+
* @remarks
|
|
22461
|
+
* The width of the resolution. Unit: pixel. Valid values for cloud applications: 500 to 50000. Valid values for cloud computers: 480 to 4096.
|
|
22462
|
+
*
|
|
21398
22463
|
* @example
|
|
21399
22464
|
* 720
|
|
21400
22465
|
*/
|
|
21401
22466
|
resolutionWidth?: number;
|
|
21402
22467
|
/**
|
|
21403
22468
|
* @remarks
|
|
22469
|
+
* The resource type.
|
|
22470
|
+
*
|
|
22471
|
+
* Valid values:
|
|
22472
|
+
*
|
|
22473
|
+
* * app: cloud applications.
|
|
22474
|
+
* * Desktop: cloud computers.
|
|
22475
|
+
*
|
|
21404
22476
|
* This parameter is required.
|
|
21405
22477
|
*
|
|
21406
22478
|
* @example
|
|
@@ -21408,153 +22480,345 @@ export declare class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
21408
22480
|
*/
|
|
21409
22481
|
resourceType?: string;
|
|
21410
22482
|
/**
|
|
22483
|
+
* @remarks
|
|
22484
|
+
* The effective scope of the policy.
|
|
22485
|
+
*
|
|
22486
|
+
* Valid values:
|
|
22487
|
+
*
|
|
22488
|
+
* * IP: The policy applies to specific IP addresses.
|
|
22489
|
+
* * GLOBAL: The policy applies globally.
|
|
22490
|
+
*
|
|
21411
22491
|
* @example
|
|
21412
22492
|
* GLOBAL
|
|
21413
22493
|
*/
|
|
21414
22494
|
scope?: string;
|
|
22495
|
+
/**
|
|
22496
|
+
* @remarks
|
|
22497
|
+
* 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.
|
|
22498
|
+
*/
|
|
21415
22499
|
scopeValue?: string[];
|
|
21416
22500
|
/**
|
|
22501
|
+
* @remarks
|
|
22502
|
+
* The bandwidth peak of the session. Valid values: 2000 to 100000.
|
|
22503
|
+
*
|
|
21417
22504
|
* @example
|
|
21418
22505
|
* 2000
|
|
21419
22506
|
*/
|
|
21420
22507
|
sessionMaxRateKbps?: number;
|
|
21421
22508
|
/**
|
|
22509
|
+
* @remarks
|
|
22510
|
+
* Specifies whether to enable smoothness enhancement for daily office use.
|
|
22511
|
+
*
|
|
22512
|
+
* Valid values:
|
|
22513
|
+
*
|
|
22514
|
+
* * off: doesn\\"t enable smoothness enhancement for daily office use.
|
|
22515
|
+
* * on: enables smoothness enhancement for daily office use.
|
|
22516
|
+
*
|
|
21422
22517
|
* @example
|
|
21423
22518
|
* off
|
|
21424
22519
|
*/
|
|
21425
22520
|
smoothEnhancement?: string;
|
|
21426
22521
|
/**
|
|
22522
|
+
* @remarks
|
|
22523
|
+
* Specifies whether to display the metric status entry in the DesktopAssistant menu.
|
|
22524
|
+
*
|
|
22525
|
+
* Valid values:
|
|
22526
|
+
*
|
|
22527
|
+
* * off: doesn\\"t display the metric status entry in the DesktopAssistant menu.
|
|
22528
|
+
* * on: displays the metric status entry in the DesktopAssistant menu.
|
|
22529
|
+
*
|
|
21427
22530
|
* @example
|
|
21428
22531
|
* off
|
|
21429
22532
|
*/
|
|
21430
22533
|
statusMonitor?: string;
|
|
21431
22534
|
/**
|
|
22535
|
+
* @remarks
|
|
22536
|
+
* The streaming mode.
|
|
22537
|
+
*
|
|
22538
|
+
* Valid values:
|
|
22539
|
+
*
|
|
22540
|
+
* * intelligent
|
|
22541
|
+
* * smooth
|
|
22542
|
+
*
|
|
21432
22543
|
* @example
|
|
21433
22544
|
* smooth
|
|
21434
22545
|
*/
|
|
21435
22546
|
streamingMode?: string;
|
|
21436
22547
|
/**
|
|
22548
|
+
* @remarks
|
|
22549
|
+
* The target frame rate. Valid values: 10 to 60.
|
|
22550
|
+
*
|
|
21437
22551
|
* @example
|
|
21438
22552
|
* 30
|
|
21439
22553
|
*/
|
|
21440
22554
|
targetFps?: number;
|
|
21441
22555
|
/**
|
|
22556
|
+
* @remarks
|
|
22557
|
+
* Specifies whether to display the application taskbar.
|
|
22558
|
+
*
|
|
22559
|
+
* > This parameter applies only to cloud application policies.
|
|
22560
|
+
*
|
|
22561
|
+
* Valid values:
|
|
22562
|
+
*
|
|
22563
|
+
* * off: doesn\\"t display the application taskbar.
|
|
22564
|
+
* * on: displays the application taskbar.
|
|
22565
|
+
*
|
|
21442
22566
|
* @example
|
|
21443
22567
|
* off
|
|
21444
22568
|
*/
|
|
21445
22569
|
taskbar?: string;
|
|
21446
22570
|
/**
|
|
22571
|
+
* @remarks
|
|
22572
|
+
* Specifies whether to enable USB redirection.
|
|
22573
|
+
*
|
|
22574
|
+
* Valid values:
|
|
22575
|
+
*
|
|
22576
|
+
* * off (default): doesn\\"t enable USB redirection.
|
|
22577
|
+
* * on: enables USB redirection.
|
|
22578
|
+
*
|
|
21447
22579
|
* @example
|
|
21448
22580
|
* off
|
|
21449
22581
|
*/
|
|
21450
22582
|
usbRedirect?: string;
|
|
22583
|
+
/**
|
|
22584
|
+
* @remarks
|
|
22585
|
+
* The USB redirection rules.
|
|
22586
|
+
*/
|
|
21451
22587
|
usbSupplyRedirectRule?: CreateCenterPolicyRequestUsbSupplyRedirectRule[];
|
|
21452
22588
|
/**
|
|
22589
|
+
* @remarks
|
|
22590
|
+
* The average bitrate for video encoding. Valid values: 1000 to 50000.
|
|
22591
|
+
*
|
|
21453
22592
|
* @example
|
|
21454
22593
|
* 2000
|
|
21455
22594
|
*/
|
|
21456
22595
|
videoEncAvgKbps?: number;
|
|
21457
22596
|
/**
|
|
22597
|
+
* @remarks
|
|
22598
|
+
* The maximum QP for video files. Higher QP values result in lower video quality. Valid values: 0 to 51.
|
|
22599
|
+
*
|
|
21458
22600
|
* @example
|
|
21459
22601
|
* 30
|
|
21460
22602
|
*/
|
|
21461
22603
|
videoEncMaxQP?: number;
|
|
21462
22604
|
/**
|
|
22605
|
+
* @remarks
|
|
22606
|
+
* The minimum quantizer parameter (QP) for video files. A lower QP means better video quality. Valid values: 0 to 51.
|
|
22607
|
+
*
|
|
21463
22608
|
* @example
|
|
21464
22609
|
* 30
|
|
21465
22610
|
*/
|
|
21466
22611
|
videoEncMinQP?: number;
|
|
21467
22612
|
/**
|
|
22613
|
+
* @remarks
|
|
22614
|
+
* The peak bitrate for video encoding. Valid values: 1000 to 50000.
|
|
22615
|
+
*
|
|
21468
22616
|
* @example
|
|
21469
22617
|
* 2000
|
|
21470
22618
|
*/
|
|
21471
22619
|
videoEncPeakKbps?: number;
|
|
21472
22620
|
/**
|
|
22621
|
+
* @remarks
|
|
22622
|
+
* The video encoding policy.
|
|
22623
|
+
*
|
|
22624
|
+
* Valid values:
|
|
22625
|
+
*
|
|
22626
|
+
* * qualityFirst: prioritizes image quality.
|
|
22627
|
+
* * bandwidthFirst: prioritizes bandwidth.
|
|
22628
|
+
*
|
|
21473
22629
|
* @example
|
|
21474
22630
|
* qualityFirst
|
|
21475
22631
|
*/
|
|
21476
22632
|
videoEncPolicy?: string;
|
|
21477
22633
|
/**
|
|
22634
|
+
* @remarks
|
|
22635
|
+
* The multimedia redirection policy.
|
|
22636
|
+
*
|
|
22637
|
+
* Valid values:
|
|
22638
|
+
*
|
|
22639
|
+
* * off: disables multimedia redirection.
|
|
22640
|
+
* * on: enables multimedia redirection.
|
|
22641
|
+
*
|
|
21478
22642
|
* @example
|
|
21479
22643
|
* on
|
|
21480
22644
|
*/
|
|
21481
22645
|
videoRedirect?: string;
|
|
21482
22646
|
/**
|
|
22647
|
+
* @remarks
|
|
22648
|
+
* The image display quality.
|
|
22649
|
+
*
|
|
22650
|
+
* Valid values:
|
|
22651
|
+
*
|
|
22652
|
+
* * high: high-definition (HD).
|
|
22653
|
+
* * low: smoothness.
|
|
22654
|
+
* * lossless: no quality loss.
|
|
22655
|
+
* * medium (default): scenario-specific adaptation.
|
|
22656
|
+
*
|
|
21483
22657
|
* @example
|
|
21484
22658
|
* low
|
|
21485
22659
|
*/
|
|
21486
22660
|
visualQuality?: string;
|
|
21487
22661
|
/**
|
|
22662
|
+
* @remarks
|
|
22663
|
+
* The watermark policy.
|
|
22664
|
+
*
|
|
22665
|
+
* Valid values:
|
|
22666
|
+
*
|
|
22667
|
+
* * blind: displays invisible watermarks.
|
|
22668
|
+
* * off (default): displays no watermark.
|
|
22669
|
+
* * on: displays visible watermarks.
|
|
22670
|
+
*
|
|
21488
22671
|
* @example
|
|
21489
22672
|
* off
|
|
21490
22673
|
*/
|
|
21491
22674
|
watermark?: string;
|
|
21492
22675
|
/**
|
|
22676
|
+
* @remarks
|
|
22677
|
+
* Specifies whether to enable anti-screen capture for invisible watermarks.
|
|
22678
|
+
*
|
|
22679
|
+
* Valid values:
|
|
22680
|
+
*
|
|
22681
|
+
* * off: disables anti-screen capture for invisible watermarks.
|
|
22682
|
+
* * on: enables anti-screen capture for invisible watermarks.
|
|
22683
|
+
*
|
|
21493
22684
|
* @example
|
|
21494
22685
|
* off
|
|
21495
22686
|
*/
|
|
21496
22687
|
watermarkAntiCam?: string;
|
|
21497
22688
|
/**
|
|
22689
|
+
* @remarks
|
|
22690
|
+
* The font color of the watermark. Valid values: 0 to 16777215.
|
|
22691
|
+
*
|
|
21498
22692
|
* @example
|
|
21499
22693
|
* 0
|
|
21500
22694
|
*/
|
|
21501
22695
|
watermarkColor?: number;
|
|
21502
22696
|
/**
|
|
22697
|
+
* @remarks
|
|
22698
|
+
* The number of watermark columns. Valid values: 3 to 10.
|
|
22699
|
+
*
|
|
21503
22700
|
* @example
|
|
21504
22701
|
* 3
|
|
21505
22702
|
*/
|
|
21506
22703
|
watermarkColumnAmount?: number;
|
|
21507
22704
|
/**
|
|
22705
|
+
* @remarks
|
|
22706
|
+
* If you set `WatermarkType` to `custom`, you must also specify `WatermarkCustomText`.
|
|
22707
|
+
*
|
|
21508
22708
|
* @example
|
|
21509
22709
|
* test
|
|
21510
22710
|
*/
|
|
21511
22711
|
watermarkCustomText?: string;
|
|
21512
22712
|
/**
|
|
22713
|
+
* @remarks
|
|
22714
|
+
* The watermark rotation. Valid values: -10 to -30.
|
|
22715
|
+
*
|
|
21513
22716
|
* @example
|
|
21514
22717
|
* -10
|
|
21515
22718
|
*/
|
|
21516
22719
|
watermarkDegree?: number;
|
|
21517
22720
|
/**
|
|
22721
|
+
* @remarks
|
|
22722
|
+
* The font size of the watermark. Valid values: 10 to 20.
|
|
22723
|
+
*
|
|
21518
22724
|
* @example
|
|
21519
22725
|
* 10
|
|
21520
22726
|
*/
|
|
21521
22727
|
watermarkFontSize?: number;
|
|
21522
22728
|
/**
|
|
22729
|
+
* @remarks
|
|
22730
|
+
* The font style of the watermark.
|
|
22731
|
+
*
|
|
22732
|
+
* Valid values:
|
|
22733
|
+
*
|
|
22734
|
+
* * plain
|
|
22735
|
+
* * bold
|
|
22736
|
+
*
|
|
21523
22737
|
* @example
|
|
21524
22738
|
* plain
|
|
21525
22739
|
*/
|
|
21526
22740
|
watermarkFontStyle?: string;
|
|
21527
22741
|
/**
|
|
22742
|
+
* @remarks
|
|
22743
|
+
* The enhancement level for invisible watermarks.
|
|
22744
|
+
*
|
|
22745
|
+
* Valid values:
|
|
22746
|
+
*
|
|
22747
|
+
* * high
|
|
22748
|
+
* * low
|
|
22749
|
+
* * medium
|
|
22750
|
+
*
|
|
21528
22751
|
* @example
|
|
21529
22752
|
* medium
|
|
21530
22753
|
*/
|
|
21531
22754
|
watermarkPower?: string;
|
|
21532
22755
|
/**
|
|
22756
|
+
* @remarks
|
|
22757
|
+
* The number of watermark rows. Valid values: 3 to 10.
|
|
22758
|
+
*
|
|
21533
22759
|
* @example
|
|
21534
22760
|
* 3
|
|
21535
22761
|
*/
|
|
21536
22762
|
watermarkRowAmount?: number;
|
|
21537
22763
|
/**
|
|
22764
|
+
* @remarks
|
|
22765
|
+
* Specifies whether to enable security priority for invisible watermarks.
|
|
22766
|
+
*
|
|
22767
|
+
* Valid values:
|
|
22768
|
+
*
|
|
22769
|
+
* * off: disables security priority for invisible watermarks.
|
|
22770
|
+
* * on: enables security priority for invisible watermarks.
|
|
22771
|
+
*
|
|
21538
22772
|
* @example
|
|
21539
22773
|
* on
|
|
21540
22774
|
*/
|
|
21541
22775
|
watermarkSecurity?: string;
|
|
21542
22776
|
/**
|
|
22777
|
+
* @remarks
|
|
22778
|
+
* The watermark opacity. A higher value makes the watermark more opaque. Valid values: 10 to 100.
|
|
22779
|
+
*
|
|
21543
22780
|
* @example
|
|
21544
22781
|
* 10
|
|
21545
22782
|
*/
|
|
21546
22783
|
watermarkTransparencyValue?: number;
|
|
21547
22784
|
/**
|
|
22785
|
+
* @remarks
|
|
22786
|
+
* The watermark type. You can specify up to three types. Separate multiple values with commas (,).
|
|
22787
|
+
*
|
|
22788
|
+
* > If you provide `custom` as the value for this parameter, you must configure `WatermarkCustomText` to specify custom text.
|
|
22789
|
+
*
|
|
22790
|
+
* Valid values:
|
|
22791
|
+
*
|
|
22792
|
+
* * EndUserId: the username.
|
|
22793
|
+
* * Custom: the custom text.
|
|
22794
|
+
* * DesktopIp: the IP address of the cloud computer.
|
|
22795
|
+
* * ClientIp: the IP address of the client.
|
|
22796
|
+
* * HostName: the rightmost 15 digits of the cloud computer ID.
|
|
22797
|
+
* * ClientTime: the current time displayed on the cloud computer.
|
|
22798
|
+
*
|
|
21548
22799
|
* @example
|
|
21549
22800
|
* EndUserId,HostName,ClientTime
|
|
21550
22801
|
*/
|
|
21551
22802
|
watermarkType?: string;
|
|
21552
22803
|
/**
|
|
22804
|
+
* @remarks
|
|
22805
|
+
* Specifies whether to enable Cloud Computer Manager.
|
|
22806
|
+
*
|
|
21553
22807
|
* @example
|
|
21554
22808
|
* off
|
|
21555
22809
|
*/
|
|
21556
22810
|
wuyingKeeper?: string;
|
|
21557
22811
|
/**
|
|
22812
|
+
* @remarks
|
|
22813
|
+
* 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).
|
|
22814
|
+
*
|
|
22815
|
+
* > This feature applies to only desktop clients of version 7.7.0 or later.
|
|
22816
|
+
*
|
|
22817
|
+
* Valid values:
|
|
22818
|
+
*
|
|
22819
|
+
* * off: doesn\\"t display the Xiaoying AI Assistant option in the DesktopAssistant menu.
|
|
22820
|
+
* * on: displays the Xiaoying AI Assistant option in the DesktopAssistant menu.
|
|
22821
|
+
*
|
|
21558
22822
|
* @example
|
|
21559
22823
|
* on
|
|
21560
22824
|
*/
|
|
@@ -21572,11 +22836,17 @@ export declare class CreateCenterPolicyRequest extends $dara.Model {
|
|
|
21572
22836
|
}
|
|
21573
22837
|
export declare class CreateCenterPolicyResponseBody extends $dara.Model {
|
|
21574
22838
|
/**
|
|
22839
|
+
* @remarks
|
|
22840
|
+
* The cloud computer policy ID.
|
|
22841
|
+
*
|
|
21575
22842
|
* @example
|
|
21576
22843
|
* pg-gx2x1dhsmthe9****
|
|
21577
22844
|
*/
|
|
21578
22845
|
policyGroupId?: string;
|
|
21579
22846
|
/**
|
|
22847
|
+
* @remarks
|
|
22848
|
+
* The request ID.
|
|
22849
|
+
*
|
|
21580
22850
|
* @example
|
|
21581
22851
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
21582
22852
|
*/
|
|
@@ -23060,366 +24330,362 @@ export declare class CreateDesktopsRequest extends $dara.Model {
|
|
|
23060
24330
|
* @remarks
|
|
23061
24331
|
* The ID of the policy.
|
|
23062
24332
|
*
|
|
24333
|
+
* @example
|
|
24334
|
+
* system-all-enabled-policy
|
|
24335
|
+
*/
|
|
24336
|
+
policyGroupId?: string;
|
|
24337
|
+
/**
|
|
24338
|
+
* @remarks
|
|
24339
|
+
* The ID of the sales promotion.
|
|
24340
|
+
*
|
|
24341
|
+
* @example
|
|
24342
|
+
* 23141
|
|
24343
|
+
*/
|
|
24344
|
+
promotionId?: string;
|
|
24345
|
+
/**
|
|
24346
|
+
* @remarks
|
|
24347
|
+
* The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/196646.html) operation to query the most recent region list.
|
|
24348
|
+
*
|
|
23063
24349
|
* This parameter is required.
|
|
23064
24350
|
*
|
|
23065
24351
|
* @example
|
|
23066
|
-
*
|
|
23067
|
-
*/
|
|
23068
|
-
|
|
23069
|
-
/**
|
|
23070
|
-
* @remarks
|
|
23071
|
-
* The ID of the
|
|
23072
|
-
*
|
|
23073
|
-
* @example
|
|
23074
|
-
*
|
|
23075
|
-
*/
|
|
23076
|
-
|
|
23077
|
-
/**
|
|
23078
|
-
* @remarks
|
|
23079
|
-
* The
|
|
23080
|
-
*
|
|
23081
|
-
*
|
|
23082
|
-
*
|
|
23083
|
-
|
|
23084
|
-
|
|
23085
|
-
|
|
23086
|
-
|
|
23087
|
-
|
|
23088
|
-
*
|
|
23089
|
-
*
|
|
23090
|
-
*
|
|
23091
|
-
|
|
23092
|
-
|
|
23093
|
-
|
|
23094
|
-
|
|
23095
|
-
|
|
23096
|
-
|
|
23097
|
-
|
|
23098
|
-
|
|
23099
|
-
* @
|
|
23100
|
-
*
|
|
23101
|
-
|
|
23102
|
-
|
|
23103
|
-
|
|
23104
|
-
|
|
23105
|
-
|
|
23106
|
-
|
|
23107
|
-
* @
|
|
23108
|
-
*
|
|
23109
|
-
|
|
23110
|
-
|
|
23111
|
-
|
|
23112
|
-
*
|
|
23113
|
-
*
|
|
23114
|
-
|
|
23115
|
-
|
|
23116
|
-
|
|
23117
|
-
*
|
|
23118
|
-
*
|
|
23119
|
-
*
|
|
23120
|
-
*
|
|
23121
|
-
*
|
|
23122
|
-
|
|
23123
|
-
|
|
23124
|
-
|
|
23125
|
-
*
|
|
23126
|
-
*
|
|
23127
|
-
*
|
|
23128
|
-
*
|
|
23129
|
-
*
|
|
23130
|
-
*
|
|
23131
|
-
*
|
|
23132
|
-
*
|
|
23133
|
-
*
|
|
23134
|
-
|
|
23135
|
-
|
|
23136
|
-
|
|
23137
|
-
*
|
|
23138
|
-
*
|
|
23139
|
-
|
|
23140
|
-
|
|
23141
|
-
|
|
23142
|
-
*
|
|
23143
|
-
*
|
|
23144
|
-
*
|
|
23145
|
-
*
|
|
23146
|
-
*
|
|
23147
|
-
|
|
23148
|
-
|
|
23149
|
-
|
|
23150
|
-
* @
|
|
23151
|
-
*
|
|
23152
|
-
|
|
23153
|
-
|
|
23154
|
-
|
|
23155
|
-
|
|
23156
|
-
|
|
23157
|
-
|
|
23158
|
-
|
|
23159
|
-
|
|
23160
|
-
*
|
|
23161
|
-
*
|
|
23162
|
-
*
|
|
23163
|
-
|
|
23164
|
-
|
|
23165
|
-
|
|
23166
|
-
|
|
23167
|
-
|
|
23168
|
-
*
|
|
23169
|
-
*
|
|
23170
|
-
*
|
|
23171
|
-
|
|
23172
|
-
|
|
23173
|
-
|
|
23174
|
-
|
|
23175
|
-
|
|
23176
|
-
|
|
23177
|
-
|
|
23178
|
-
|
|
23179
|
-
|
|
23180
|
-
|
|
23181
|
-
|
|
23182
|
-
|
|
23183
|
-
|
|
23184
|
-
|
|
23185
|
-
|
|
23186
|
-
*
|
|
23187
|
-
*
|
|
23188
|
-
*
|
|
23189
|
-
|
|
23190
|
-
|
|
23191
|
-
|
|
23192
|
-
|
|
23193
|
-
|
|
23194
|
-
|
|
23195
|
-
|
|
23196
|
-
|
|
23197
|
-
|
|
23198
|
-
|
|
23199
|
-
|
|
23200
|
-
|
|
23201
|
-
|
|
23202
|
-
|
|
23203
|
-
|
|
23204
|
-
*
|
|
23205
|
-
*
|
|
23206
|
-
*
|
|
23207
|
-
|
|
23208
|
-
|
|
23209
|
-
|
|
23210
|
-
|
|
23211
|
-
|
|
23212
|
-
*
|
|
23213
|
-
*
|
|
23214
|
-
*
|
|
23215
|
-
|
|
23216
|
-
|
|
23217
|
-
|
|
23218
|
-
|
|
23219
|
-
|
|
23220
|
-
*
|
|
23221
|
-
*
|
|
23222
|
-
*
|
|
23223
|
-
|
|
23224
|
-
|
|
23225
|
-
|
|
23226
|
-
|
|
23227
|
-
|
|
23228
|
-
*
|
|
23229
|
-
*
|
|
23230
|
-
*
|
|
23231
|
-
*
|
|
23232
|
-
*
|
|
23233
|
-
|
|
23234
|
-
|
|
23235
|
-
|
|
23236
|
-
*
|
|
23237
|
-
*
|
|
23238
|
-
*
|
|
23239
|
-
*
|
|
23240
|
-
*
|
|
23241
|
-
|
|
23242
|
-
|
|
23243
|
-
|
|
23244
|
-
*
|
|
23245
|
-
*
|
|
23246
|
-
*
|
|
23247
|
-
*
|
|
23248
|
-
*
|
|
23249
|
-
|
|
23250
|
-
|
|
23251
|
-
|
|
23252
|
-
*
|
|
23253
|
-
*
|
|
23254
|
-
|
|
23255
|
-
|
|
23256
|
-
|
|
23257
|
-
*
|
|
23258
|
-
*
|
|
23259
|
-
*
|
|
23260
|
-
*
|
|
23261
|
-
*
|
|
23262
|
-
|
|
23263
|
-
|
|
23264
|
-
|
|
23265
|
-
* @
|
|
23266
|
-
*
|
|
23267
|
-
|
|
23268
|
-
|
|
23269
|
-
|
|
23270
|
-
*
|
|
23271
|
-
*
|
|
23272
|
-
|
|
23273
|
-
|
|
23274
|
-
|
|
23275
|
-
|
|
23276
|
-
|
|
23277
|
-
*
|
|
23278
|
-
*
|
|
23279
|
-
*
|
|
23280
|
-
|
|
23281
|
-
|
|
23282
|
-
|
|
23283
|
-
*
|
|
23284
|
-
*
|
|
23285
|
-
*
|
|
23286
|
-
*
|
|
23287
|
-
*
|
|
23288
|
-
*
|
|
23289
|
-
*
|
|
23290
|
-
*
|
|
23291
|
-
*
|
|
23292
|
-
|
|
23293
|
-
|
|
23294
|
-
|
|
23295
|
-
*
|
|
23296
|
-
*
|
|
23297
|
-
*
|
|
23298
|
-
*
|
|
23299
|
-
*
|
|
23300
|
-
|
|
23301
|
-
|
|
23302
|
-
|
|
23303
|
-
*
|
|
23304
|
-
*
|
|
23305
|
-
*
|
|
23306
|
-
*
|
|
23307
|
-
*
|
|
23308
|
-
|
|
23309
|
-
|
|
23310
|
-
|
|
23311
|
-
*
|
|
23312
|
-
*
|
|
23313
|
-
*
|
|
23314
|
-
*
|
|
23315
|
-
*
|
|
23316
|
-
|
|
23317
|
-
|
|
23318
|
-
|
|
23319
|
-
|
|
23320
|
-
|
|
23321
|
-
*
|
|
23322
|
-
*
|
|
23323
|
-
*
|
|
23324
|
-
|
|
23325
|
-
|
|
23326
|
-
|
|
23327
|
-
|
|
23328
|
-
|
|
23329
|
-
*
|
|
23330
|
-
*
|
|
23331
|
-
*
|
|
23332
|
-
*
|
|
23333
|
-
|
|
23334
|
-
|
|
23335
|
-
|
|
23336
|
-
|
|
23337
|
-
*
|
|
23338
|
-
*
|
|
23339
|
-
*
|
|
23340
|
-
*
|
|
23341
|
-
*
|
|
23342
|
-
|
|
23343
|
-
|
|
23344
|
-
|
|
23345
|
-
|
|
23346
|
-
*
|
|
23347
|
-
* The
|
|
23348
|
-
*
|
|
23349
|
-
*
|
|
23350
|
-
*
|
|
23351
|
-
|
|
23352
|
-
|
|
23353
|
-
|
|
23354
|
-
|
|
23355
|
-
*
|
|
23356
|
-
*
|
|
23357
|
-
|
|
23358
|
-
|
|
23359
|
-
|
|
23360
|
-
*
|
|
23361
|
-
*
|
|
23362
|
-
*
|
|
23363
|
-
*
|
|
23364
|
-
*
|
|
23365
|
-
|
|
23366
|
-
|
|
23367
|
-
|
|
23368
|
-
* @
|
|
23369
|
-
*
|
|
23370
|
-
|
|
23371
|
-
|
|
23372
|
-
|
|
23373
|
-
*
|
|
23374
|
-
*
|
|
23375
|
-
|
|
23376
|
-
|
|
23377
|
-
|
|
23378
|
-
*
|
|
23379
|
-
*
|
|
23380
|
-
*
|
|
23381
|
-
*
|
|
23382
|
-
*
|
|
23383
|
-
|
|
23384
|
-
|
|
23385
|
-
|
|
23386
|
-
* @
|
|
23387
|
-
*
|
|
23388
|
-
|
|
23389
|
-
|
|
23390
|
-
|
|
23391
|
-
*
|
|
23392
|
-
*
|
|
23393
|
-
*
|
|
23394
|
-
*
|
|
23395
|
-
*
|
|
23396
|
-
|
|
23397
|
-
|
|
23398
|
-
|
|
23399
|
-
*
|
|
23400
|
-
*
|
|
23401
|
-
*
|
|
23402
|
-
*
|
|
23403
|
-
*
|
|
23404
|
-
* @example
|
|
23405
|
-
* 1
|
|
23406
|
-
*/
|
|
23407
|
-
period?: number;
|
|
23408
|
-
/**
|
|
23409
|
-
* @remarks
|
|
23410
|
-
* The unit of the subscription duration.
|
|
23411
|
-
*
|
|
23412
|
-
* @example
|
|
23413
|
-
* Month
|
|
23414
|
-
*/
|
|
23415
|
-
periodUnit?: string;
|
|
23416
|
-
/**
|
|
23417
|
-
* @remarks
|
|
23418
|
-
* The ID of the policy.
|
|
23419
|
-
*
|
|
23420
|
-
* This parameter is required.
|
|
23421
|
-
*
|
|
23422
|
-
* @example
|
|
24352
|
+
* cn-hangzhou
|
|
24353
|
+
*/
|
|
24354
|
+
regionId?: string;
|
|
24355
|
+
/**
|
|
24356
|
+
* @remarks
|
|
24357
|
+
* The ID of the resource group.
|
|
24358
|
+
*
|
|
24359
|
+
* @example
|
|
24360
|
+
* rg-3mtuc28rx95lx****
|
|
24361
|
+
*/
|
|
24362
|
+
resourceGroupId?: string;
|
|
24363
|
+
/**
|
|
24364
|
+
* @remarks
|
|
24365
|
+
* The ID of the saving plan.
|
|
24366
|
+
*
|
|
24367
|
+
* @example
|
|
24368
|
+
* spn-4b945dc4Wktd****
|
|
24369
|
+
*/
|
|
24370
|
+
savingPlanId?: string;
|
|
24371
|
+
/**
|
|
24372
|
+
* @remarks
|
|
24373
|
+
* The ID of the auto-snapshot policy.
|
|
24374
|
+
*
|
|
24375
|
+
* @example
|
|
24376
|
+
* sp-28mp6my0l6zow****
|
|
24377
|
+
*/
|
|
24378
|
+
snapshotPolicyId?: string;
|
|
24379
|
+
/**
|
|
24380
|
+
* @remarks
|
|
24381
|
+
* The tags that you want to add to the cloud desktop.
|
|
24382
|
+
*/
|
|
24383
|
+
tag?: CreateDesktopsRequestTag[];
|
|
24384
|
+
/**
|
|
24385
|
+
* @remarks
|
|
24386
|
+
* The ID of the timer group.
|
|
24387
|
+
*
|
|
24388
|
+
* @example
|
|
24389
|
+
* ccg-0caoeogrk9m5****
|
|
24390
|
+
*/
|
|
24391
|
+
timerGroupId?: string;
|
|
24392
|
+
/**
|
|
24393
|
+
* @remarks
|
|
24394
|
+
* How the cloud computers are assigned.
|
|
24395
|
+
*
|
|
24396
|
+
* > If you do not specify the `EndUserId` parameter, the cloud computers are not assigned to end users after the cloud computers are created.
|
|
24397
|
+
*
|
|
24398
|
+
* Default value: ALL. Valid values:
|
|
24399
|
+
*
|
|
24400
|
+
* * ALL: If you specify the EndUserId parameter, the cloud computers are assigned to all specified end users after the cloud computers are created.
|
|
24401
|
+
*
|
|
24402
|
+
* <!-- -->
|
|
24403
|
+
*
|
|
24404
|
+
* <!-- -->
|
|
24405
|
+
*
|
|
24406
|
+
* <!-- -->
|
|
24407
|
+
*
|
|
24408
|
+
* * PER_USER: If you specify the EndUserId parameter, the cloud computers are evenly assigned to the specified end users after the cloud computers are created.
|
|
24409
|
+
*
|
|
24410
|
+
* <!-- -->
|
|
24411
|
+
*
|
|
24412
|
+
* <!-- -->
|
|
24413
|
+
*
|
|
24414
|
+
* In this case, you must make sure that the value of the Amount parameter can be divided by the N value of the EndUserId.N parameter that you specify.
|
|
24415
|
+
*
|
|
24416
|
+
* <!-- -->
|
|
24417
|
+
*
|
|
24418
|
+
* @example
|
|
24419
|
+
* ALL
|
|
24420
|
+
*/
|
|
24421
|
+
userAssignMode?: string;
|
|
24422
|
+
/**
|
|
24423
|
+
* @remarks
|
|
24424
|
+
* Details about the custom command scripts.
|
|
24425
|
+
*/
|
|
24426
|
+
userCommands?: CreateDesktopsRequestUserCommands[];
|
|
24427
|
+
/**
|
|
24428
|
+
* @remarks
|
|
24429
|
+
* > This parameter is not publicly available.
|
|
24430
|
+
*
|
|
24431
|
+
* @example
|
|
24432
|
+
* To be hidden.
|
|
24433
|
+
*/
|
|
24434
|
+
userName?: string;
|
|
24435
|
+
/**
|
|
24436
|
+
* @remarks
|
|
24437
|
+
* Specifies whether to enable disk encryption.
|
|
24438
|
+
*
|
|
24439
|
+
* @example
|
|
24440
|
+
* false
|
|
24441
|
+
*/
|
|
24442
|
+
volumeEncryptionEnabled?: boolean;
|
|
24443
|
+
/**
|
|
24444
|
+
* @remarks
|
|
24445
|
+
* The ID of the Key Management Service (KMS) key that you want to use when disk encryption is enabled. You can call the [ListKeys](https://help.aliyun.com/document_detail/28951.html) operation to obtain a list of KMS keys.
|
|
24446
|
+
*
|
|
24447
|
+
* @example
|
|
24448
|
+
* 08c33a6f-4e0a-4a1b-a3fa-7ddfa1d4****
|
|
24449
|
+
*/
|
|
24450
|
+
volumeEncryptionKey?: string;
|
|
24451
|
+
/**
|
|
24452
|
+
* @remarks
|
|
24453
|
+
* > This parameter is not publicly available.
|
|
24454
|
+
*
|
|
24455
|
+
* @example
|
|
24456
|
+
* To be hidden.
|
|
24457
|
+
*/
|
|
24458
|
+
vpcId?: string;
|
|
24459
|
+
static names(): {
|
|
24460
|
+
[key: string]: string;
|
|
24461
|
+
};
|
|
24462
|
+
static types(): {
|
|
24463
|
+
[key: string]: any;
|
|
24464
|
+
};
|
|
24465
|
+
validate(): void;
|
|
24466
|
+
constructor(map?: {
|
|
24467
|
+
[key: string]: any;
|
|
24468
|
+
});
|
|
24469
|
+
}
|
|
24470
|
+
export declare class CreateDesktopsShrinkRequest extends $dara.Model {
|
|
24471
|
+
/**
|
|
24472
|
+
* @remarks
|
|
24473
|
+
* The number of cloud computers that you want to create. Valid values: 1 to 300. Default value: 1.
|
|
24474
|
+
*
|
|
24475
|
+
* @example
|
|
24476
|
+
* 1
|
|
24477
|
+
*/
|
|
24478
|
+
amount?: number;
|
|
24479
|
+
/**
|
|
24480
|
+
* @remarks
|
|
24481
|
+
* Specifies whether to enable automatic payment.
|
|
24482
|
+
*
|
|
24483
|
+
* @example
|
|
24484
|
+
* false
|
|
24485
|
+
*/
|
|
24486
|
+
autoPay?: boolean;
|
|
24487
|
+
/**
|
|
24488
|
+
* @remarks
|
|
24489
|
+
* Specifies whether to enable auto-renewal. This parameter takes effect only when the ChargeType parameter is set to PrePaid.
|
|
24490
|
+
*
|
|
24491
|
+
* @example
|
|
24492
|
+
* false
|
|
24493
|
+
*/
|
|
24494
|
+
autoRenew?: boolean;
|
|
24495
|
+
/**
|
|
24496
|
+
* @remarks
|
|
24497
|
+
* The ID of the cloud computer template.
|
|
24498
|
+
*
|
|
24499
|
+
* @example
|
|
24500
|
+
* b-je9hani001wfn****
|
|
24501
|
+
*/
|
|
24502
|
+
bundleId?: string;
|
|
24503
|
+
/**
|
|
24504
|
+
* @remarks
|
|
24505
|
+
* The cloud computer templates.
|
|
24506
|
+
*
|
|
24507
|
+
* **if can be null:**
|
|
24508
|
+
* true
|
|
24509
|
+
*/
|
|
24510
|
+
bundleModels?: CreateDesktopsShrinkRequestBundleModels[];
|
|
24511
|
+
/**
|
|
24512
|
+
* @remarks
|
|
24513
|
+
* The billing method of the cloud computers.
|
|
24514
|
+
*
|
|
24515
|
+
* Default value: PostPaid. Valid values:
|
|
24516
|
+
*
|
|
24517
|
+
* * Postpaid: pay-as-you-go
|
|
24518
|
+
*
|
|
24519
|
+
* <!-- -->
|
|
24520
|
+
*
|
|
24521
|
+
* <!-- -->
|
|
24522
|
+
*
|
|
24523
|
+
* <!-- -->
|
|
24524
|
+
*
|
|
24525
|
+
* * PrePaid: subscription
|
|
24526
|
+
*
|
|
24527
|
+
* <!-- -->
|
|
24528
|
+
*
|
|
24529
|
+
* <!-- -->
|
|
24530
|
+
*
|
|
24531
|
+
* <!-- -->
|
|
24532
|
+
*
|
|
24533
|
+
* @example
|
|
24534
|
+
* PrePaid
|
|
24535
|
+
*/
|
|
24536
|
+
chargeType?: string;
|
|
24537
|
+
/**
|
|
24538
|
+
* @remarks
|
|
24539
|
+
* The input parameters used when no templates are used.
|
|
24540
|
+
*/
|
|
24541
|
+
desktopAttachmentShrink?: string;
|
|
24542
|
+
/**
|
|
24543
|
+
* @remarks
|
|
24544
|
+
* The private IP address of the cloud computer.
|
|
24545
|
+
*
|
|
24546
|
+
* @example
|
|
24547
|
+
* 10.0.0.1
|
|
24548
|
+
*/
|
|
24549
|
+
desktopMemberIp?: string;
|
|
24550
|
+
/**
|
|
24551
|
+
* @remarks
|
|
24552
|
+
* The name of the cloud computer. The name must meet the following requirements:
|
|
24553
|
+
*
|
|
24554
|
+
* * The name must be 1 to 64 characters in length.
|
|
24555
|
+
* * The name must start with a letter but cannot start with `http://` or `https://`.
|
|
24556
|
+
* * The name can only contain letters, digits, colons (:), underscores (_), periods (.), and hyphens (-).
|
|
24557
|
+
*
|
|
24558
|
+
* @example
|
|
24559
|
+
* testDesktopName
|
|
24560
|
+
*/
|
|
24561
|
+
desktopName?: string;
|
|
24562
|
+
/**
|
|
24563
|
+
* @remarks
|
|
24564
|
+
* Specifies whether to automatically add suffixes to the names of cloud computers when you create multiple cloud computers at the same time.
|
|
24565
|
+
*
|
|
24566
|
+
* Default value: true. Valid values:
|
|
24567
|
+
*
|
|
24568
|
+
* * true
|
|
24569
|
+
*
|
|
24570
|
+
* <!-- -->
|
|
24571
|
+
*
|
|
24572
|
+
* <!-- -->
|
|
24573
|
+
*
|
|
24574
|
+
* <!-- -->
|
|
24575
|
+
*
|
|
24576
|
+
* * False
|
|
24577
|
+
*
|
|
24578
|
+
* <!-- -->
|
|
24579
|
+
*
|
|
24580
|
+
* <!-- -->
|
|
24581
|
+
*
|
|
24582
|
+
* <!-- -->
|
|
24583
|
+
*
|
|
24584
|
+
* @example
|
|
24585
|
+
* false
|
|
24586
|
+
*/
|
|
24587
|
+
desktopNameSuffix?: boolean;
|
|
24588
|
+
/**
|
|
24589
|
+
* @remarks
|
|
24590
|
+
* The details of the scheduled task on cloud computers.
|
|
24591
|
+
*
|
|
24592
|
+
* **if can be null:**
|
|
24593
|
+
* true
|
|
24594
|
+
*/
|
|
24595
|
+
desktopTimers?: CreateDesktopsShrinkRequestDesktopTimers[];
|
|
24596
|
+
/**
|
|
24597
|
+
* @remarks
|
|
24598
|
+
* > This parameter is not publicly available.
|
|
24599
|
+
*
|
|
24600
|
+
* @example
|
|
24601
|
+
* To be hidden.
|
|
24602
|
+
*/
|
|
24603
|
+
directoryId?: string;
|
|
24604
|
+
/**
|
|
24605
|
+
* @remarks
|
|
24606
|
+
* The IDs of the end users to which you want to assign the cloud computers. You can specify 1 to 100 IDs.
|
|
24607
|
+
*
|
|
24608
|
+
* @example
|
|
24609
|
+
* 123456789
|
|
24610
|
+
*/
|
|
24611
|
+
endUserId?: string[];
|
|
24612
|
+
extendInfo?: string;
|
|
24613
|
+
/**
|
|
24614
|
+
* @remarks
|
|
24615
|
+
* The ID of the cloud computer pool.
|
|
24616
|
+
*
|
|
24617
|
+
* @example
|
|
24618
|
+
* dg-boyczi8enfyc5****
|
|
24619
|
+
*/
|
|
24620
|
+
groupId?: string;
|
|
24621
|
+
/**
|
|
24622
|
+
* @remarks
|
|
24623
|
+
* The custom hostnames of the cloud computers. This parameter is valid only if the office network is an AD office network and the operating system type of the cloud computers is Windows.
|
|
24624
|
+
*
|
|
24625
|
+
* The hostnames must meet the following requirements:
|
|
24626
|
+
*
|
|
24627
|
+
* * The hostnames must be 2 to 15 characters in length.
|
|
24628
|
+
* * The hostnames can contain only letters, digits, and hyphens (-). The hostnames cannot start or end with a hyphen (-), contain consecutive hyphens (-), or contain only digits.
|
|
24629
|
+
*
|
|
24630
|
+
* When you create multiple cloud computers, you can use the `name_prefix[begin_number,bits]name_suffix` naming format to name the cloud computers. For example, if you set the value of the Hostname parameter to ecd-[1,4]-test, the hostname of the first cloud computer is ecd-0001-test, the hostname of the second cloud computer is ecd-0002-test, and so on.
|
|
24631
|
+
*
|
|
24632
|
+
* * `name_prefix`: the prefix of the hostname.
|
|
24633
|
+
* * `[begin_number,bits]`: the sequential number in the hostname. The `begin_number` value is the starting digit. Valid values of begin_number: 0 to 999999. Default value: 0. The `bits` value is the number of digits. Valid values: 1 to 6. Default value: 6.
|
|
24634
|
+
* * `name_suffix`: the suffix of the hostname.
|
|
24635
|
+
*
|
|
24636
|
+
* @example
|
|
24637
|
+
* testhost
|
|
24638
|
+
*/
|
|
24639
|
+
hostname?: string;
|
|
24640
|
+
/**
|
|
24641
|
+
* @remarks
|
|
24642
|
+
* > This parameter is not publicly available.
|
|
24643
|
+
*/
|
|
24644
|
+
monthDesktopSetting?: CreateDesktopsShrinkRequestMonthDesktopSetting;
|
|
24645
|
+
/**
|
|
24646
|
+
* @remarks
|
|
24647
|
+
* The office network ID.
|
|
24648
|
+
*
|
|
24649
|
+
* @example
|
|
24650
|
+
* cn-hangzhou+os-c5cy7q578s8jc****
|
|
24651
|
+
*/
|
|
24652
|
+
officeSiteId?: string;
|
|
24653
|
+
/**
|
|
24654
|
+
* @remarks
|
|
24655
|
+
* The subscription duration of the cloud desktop that you want to create. The unit is specified by the `PeriodUnit` parameter. This parameter takes effect and is required only when the `ChargeType` parameter is set to `PrePaid`.
|
|
24656
|
+
*
|
|
24657
|
+
* * Valid values if the `PeriodUnit` parameter is set to `Month`:
|
|
24658
|
+
*
|
|
24659
|
+
* * 1
|
|
24660
|
+
* * 2
|
|
24661
|
+
* * 3
|
|
24662
|
+
* * 6
|
|
24663
|
+
*
|
|
24664
|
+
* * Valid values if the `PeriodUnit` parameter is set to `Year`:
|
|
24665
|
+
*
|
|
24666
|
+
* * 1
|
|
24667
|
+
* * 2
|
|
24668
|
+
* * 3
|
|
24669
|
+
* * 4
|
|
24670
|
+
* * 5
|
|
24671
|
+
*
|
|
24672
|
+
* @example
|
|
24673
|
+
* 1
|
|
24674
|
+
*/
|
|
24675
|
+
period?: number;
|
|
24676
|
+
/**
|
|
24677
|
+
* @remarks
|
|
24678
|
+
* The unit of the subscription duration.
|
|
24679
|
+
*
|
|
24680
|
+
* @example
|
|
24681
|
+
* Month
|
|
24682
|
+
*/
|
|
24683
|
+
periodUnit?: string;
|
|
24684
|
+
/**
|
|
24685
|
+
* @remarks
|
|
24686
|
+
* The ID of the policy.
|
|
24687
|
+
*
|
|
24688
|
+
* @example
|
|
23423
24689
|
* system-all-enabled-policy
|
|
23424
24690
|
*/
|
|
23425
24691
|
policyGroupId?: string;
|
|
@@ -27816,6 +29082,13 @@ export declare class DescribeCensResponse extends $dara.Model {
|
|
|
27816
29082
|
export declare class DescribeCenterPolicyListRequest extends $dara.Model {
|
|
27817
29083
|
/**
|
|
27818
29084
|
* @remarks
|
|
29085
|
+
* The business type.
|
|
29086
|
+
*
|
|
29087
|
+
* Valid values:
|
|
29088
|
+
*
|
|
29089
|
+
* * 1: public cloud.
|
|
29090
|
+
* * 8: commercial edition.
|
|
29091
|
+
*
|
|
27819
29092
|
* This parameter is required.
|
|
27820
29093
|
*
|
|
27821
29094
|
* @example
|
|
@@ -27823,18 +29096,36 @@ export declare class DescribeCenterPolicyListRequest extends $dara.Model {
|
|
|
27823
29096
|
*/
|
|
27824
29097
|
businessType?: number;
|
|
27825
29098
|
/**
|
|
29099
|
+
* @remarks
|
|
29100
|
+
* The page number.\\
|
|
29101
|
+
* Default value: 1.
|
|
29102
|
+
*
|
|
27826
29103
|
* @example
|
|
27827
29104
|
* 1
|
|
27828
29105
|
*/
|
|
27829
29106
|
pageNumber?: number;
|
|
27830
29107
|
/**
|
|
29108
|
+
* @remarks
|
|
29109
|
+
* The number of entries per page.
|
|
29110
|
+
*
|
|
27831
29111
|
* @example
|
|
27832
29112
|
* 20
|
|
27833
29113
|
*/
|
|
27834
29114
|
pageSize?: number;
|
|
29115
|
+
/**
|
|
29116
|
+
* @remarks
|
|
29117
|
+
* The IDs of the cloud computer policies.
|
|
29118
|
+
*/
|
|
27835
29119
|
policyGroupId?: string[];
|
|
27836
29120
|
/**
|
|
27837
29121
|
* @remarks
|
|
29122
|
+
* The resource type.
|
|
29123
|
+
*
|
|
29124
|
+
* Valid values:
|
|
29125
|
+
*
|
|
29126
|
+
* * app: cloud applications.
|
|
29127
|
+
* * desktop: cloud computers.
|
|
29128
|
+
*
|
|
27838
29129
|
* This parameter is required.
|
|
27839
29130
|
*
|
|
27840
29131
|
* @example
|
|
@@ -27842,6 +29133,14 @@ export declare class DescribeCenterPolicyListRequest extends $dara.Model {
|
|
|
27842
29133
|
*/
|
|
27843
29134
|
resourceType?: string;
|
|
27844
29135
|
/**
|
|
29136
|
+
* @remarks
|
|
29137
|
+
* The effective scope of the cloud computer policy.
|
|
29138
|
+
*
|
|
29139
|
+
* Valid values:
|
|
29140
|
+
*
|
|
29141
|
+
* * IP: The policy applies to specific IP addresses.
|
|
29142
|
+
* * GLOBAL: The policy applies globally.
|
|
29143
|
+
*
|
|
27845
29144
|
* @example
|
|
27846
29145
|
* GLOBAL
|
|
27847
29146
|
*/
|
|
@@ -27858,13 +29157,23 @@ export declare class DescribeCenterPolicyListRequest extends $dara.Model {
|
|
|
27858
29157
|
});
|
|
27859
29158
|
}
|
|
27860
29159
|
export declare class DescribeCenterPolicyListResponseBody extends $dara.Model {
|
|
29160
|
+
/**
|
|
29161
|
+
* @remarks
|
|
29162
|
+
* The cloud computer policies.
|
|
29163
|
+
*/
|
|
27861
29164
|
describePolicyGroups?: DescribeCenterPolicyListResponseBodyDescribePolicyGroups[];
|
|
27862
29165
|
/**
|
|
29166
|
+
* @remarks
|
|
29167
|
+
* The request ID.
|
|
29168
|
+
*
|
|
27863
29169
|
* @example
|
|
27864
29170
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
27865
29171
|
*/
|
|
27866
29172
|
requestId?: string;
|
|
27867
29173
|
/**
|
|
29174
|
+
* @remarks
|
|
29175
|
+
* The total number of entries returned.
|
|
29176
|
+
*
|
|
27868
29177
|
* @example
|
|
27869
29178
|
* 20
|
|
27870
29179
|
*/
|
|
@@ -28094,7 +29403,7 @@ export declare class DescribeClientEventsRequest extends $dara.Model {
|
|
|
28094
29403
|
export declare class DescribeClientEventsResponseBody extends $dara.Model {
|
|
28095
29404
|
/**
|
|
28096
29405
|
* @remarks
|
|
28097
|
-
* The
|
|
29406
|
+
* The user events.
|
|
28098
29407
|
*/
|
|
28099
29408
|
events?: DescribeClientEventsResponseBodyEvents[];
|
|
28100
29409
|
/**
|
|
@@ -30282,7 +31591,7 @@ export declare class DescribeDesktopsRequest extends $dara.Model {
|
|
|
30282
31591
|
export declare class DescribeDesktopsResponseBody extends $dara.Model {
|
|
30283
31592
|
/**
|
|
30284
31593
|
* @remarks
|
|
30285
|
-
* The
|
|
31594
|
+
* The cloud computers.
|
|
30286
31595
|
*/
|
|
30287
31596
|
desktops?: DescribeDesktopsResponseBodyDesktops[];
|
|
30288
31597
|
/**
|
|
@@ -30698,11 +32007,10 @@ export declare class DescribeDirectoriesRequest extends $dara.Model {
|
|
|
30698
32007
|
* @remarks
|
|
30699
32008
|
* The directory type.
|
|
30700
32009
|
*
|
|
30701
|
-
* Valid
|
|
32010
|
+
* Valid value:
|
|
30702
32011
|
*
|
|
30703
|
-
* * SIMPLE:
|
|
30704
|
-
* * AD_CONNECTOR:
|
|
30705
|
-
* * RAM: a RAM directory
|
|
32012
|
+
* * SIMPLE: the convenience directory.
|
|
32013
|
+
* * AD_CONNECTOR: the Active Directory (AD) directory.
|
|
30706
32014
|
*
|
|
30707
32015
|
* @example
|
|
30708
32016
|
* RAM
|
|
@@ -31414,7 +32722,7 @@ export declare class DescribeGuestApplicationsRequest extends $dara.Model {
|
|
|
31414
32722
|
desktopId?: string;
|
|
31415
32723
|
/**
|
|
31416
32724
|
* @remarks
|
|
31417
|
-
* The ID
|
|
32725
|
+
* The user ID.
|
|
31418
32726
|
*
|
|
31419
32727
|
* This parameter is required.
|
|
31420
32728
|
*
|
|
@@ -31424,7 +32732,7 @@ export declare class DescribeGuestApplicationsRequest extends $dara.Model {
|
|
|
31424
32732
|
endUserId?: string;
|
|
31425
32733
|
/**
|
|
31426
32734
|
* @remarks
|
|
31427
|
-
* The region ID. You can call the [DescribeRegions](
|
|
32735
|
+
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
31428
32736
|
*
|
|
31429
32737
|
* This parameter is required.
|
|
31430
32738
|
*
|
|
@@ -31446,7 +32754,7 @@ export declare class DescribeGuestApplicationsRequest extends $dara.Model {
|
|
|
31446
32754
|
export declare class DescribeGuestApplicationsResponseBody extends $dara.Model {
|
|
31447
32755
|
/**
|
|
31448
32756
|
* @remarks
|
|
31449
|
-
* The
|
|
32757
|
+
* The applications.
|
|
31450
32758
|
*/
|
|
31451
32759
|
applications?: DescribeGuestApplicationsResponseBodyApplications[];
|
|
31452
32760
|
/**
|
|
@@ -33268,37 +34576,66 @@ export declare class DescribePriceForRenewDesktopOversoldGroupResponse extends $
|
|
|
33268
34576
|
}
|
|
33269
34577
|
export declare class DescribeRecordingsRequest extends $dara.Model {
|
|
33270
34578
|
/**
|
|
34579
|
+
* @remarks
|
|
34580
|
+
* 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.
|
|
34581
|
+
*
|
|
33271
34582
|
* @example
|
|
33272
34583
|
* ecd-hlh41mk78dugw****
|
|
33273
34584
|
*/
|
|
33274
34585
|
desktopId?: string;
|
|
33275
34586
|
/**
|
|
34587
|
+
* @remarks
|
|
34588
|
+
* The end time of the query. Specify the time in the `YYYYMMDDhhmmss` format. The time must be in UTC+8.
|
|
34589
|
+
*
|
|
33276
34590
|
* @example
|
|
33277
34591
|
* 20230424004441
|
|
33278
34592
|
*/
|
|
33279
34593
|
endTime?: string;
|
|
33280
34594
|
/**
|
|
34595
|
+
* @remarks
|
|
34596
|
+
* The maximum number of entries per page.
|
|
34597
|
+
*
|
|
34598
|
+
* Maximum value: 100.
|
|
34599
|
+
*
|
|
34600
|
+
* Default value: 10.
|
|
34601
|
+
*
|
|
33281
34602
|
* @example
|
|
33282
34603
|
* 20
|
|
33283
34604
|
*/
|
|
33284
34605
|
maxResults?: number;
|
|
33285
34606
|
/**
|
|
34607
|
+
* @remarks
|
|
34608
|
+
* Specifies whether to return a URL.
|
|
34609
|
+
*
|
|
34610
|
+
* Valid values:
|
|
34611
|
+
*
|
|
34612
|
+
* * true
|
|
34613
|
+
* * false (default)
|
|
34614
|
+
*
|
|
33286
34615
|
* @example
|
|
33287
34616
|
* false
|
|
33288
34617
|
*/
|
|
33289
34618
|
needSignedUrl?: boolean;
|
|
33290
34619
|
/**
|
|
34620
|
+
* @remarks
|
|
34621
|
+
* 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`.
|
|
34622
|
+
*
|
|
33291
34623
|
* @example
|
|
33292
34624
|
* aGN4YzAxQGNuLWhhbmd6aG91LjExNzU5NTMyNjgzMTQ1****
|
|
33293
34625
|
*/
|
|
33294
34626
|
nextToken?: string;
|
|
33295
34627
|
/**
|
|
34628
|
+
* @remarks
|
|
34629
|
+
* The policy ID.
|
|
34630
|
+
*
|
|
33296
34631
|
* @example
|
|
33297
34632
|
* pg-gx2x1dhsmthe9****
|
|
33298
34633
|
*/
|
|
33299
34634
|
policyGroupId?: string;
|
|
33300
34635
|
/**
|
|
33301
34636
|
* @remarks
|
|
34637
|
+
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
34638
|
+
*
|
|
33302
34639
|
* This parameter is required.
|
|
33303
34640
|
*
|
|
33304
34641
|
* @example
|
|
@@ -33306,13 +34643,33 @@ export declare class DescribeRecordingsRequest extends $dara.Model {
|
|
|
33306
34643
|
*/
|
|
33307
34644
|
regionId?: string;
|
|
33308
34645
|
/**
|
|
34646
|
+
* @remarks
|
|
34647
|
+
* The validity period of the returned URL. Unit: minutes.
|
|
34648
|
+
*
|
|
33309
34649
|
* @example
|
|
33310
34650
|
* 10
|
|
33311
34651
|
*/
|
|
33312
34652
|
signedUrlExpireMinutes?: number;
|
|
34653
|
+
/**
|
|
34654
|
+
* @remarks
|
|
34655
|
+
* 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.
|
|
34656
|
+
*
|
|
34657
|
+
* @example
|
|
34658
|
+
* 2025-01-27T02:30:10Z
|
|
34659
|
+
*/
|
|
33313
34660
|
standardEndTime?: string;
|
|
34661
|
+
/**
|
|
34662
|
+
* @remarks
|
|
34663
|
+
* 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.
|
|
34664
|
+
*
|
|
34665
|
+
* @example
|
|
34666
|
+
* 2025-01-27T02:20:10Z
|
|
34667
|
+
*/
|
|
33314
34668
|
standardStartTime?: string;
|
|
33315
34669
|
/**
|
|
34670
|
+
* @remarks
|
|
34671
|
+
* The start time of the query. Specify the time in the `YYYYMMDDhhmmss` format. The time must be in UTC+8.
|
|
34672
|
+
*
|
|
33316
34673
|
* @example
|
|
33317
34674
|
* 20230424000000
|
|
33318
34675
|
*/
|
|
@@ -33330,12 +34687,22 @@ export declare class DescribeRecordingsRequest extends $dara.Model {
|
|
|
33330
34687
|
}
|
|
33331
34688
|
export declare class DescribeRecordingsResponseBody extends $dara.Model {
|
|
33332
34689
|
/**
|
|
34690
|
+
* @remarks
|
|
34691
|
+
* 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.
|
|
34692
|
+
*
|
|
33333
34693
|
* @example
|
|
33334
34694
|
* AAAAAV3MpHK1AP0pfERHZN5pu6nbCQ7ar+fECeh1IuWQXi39R5eoJ68zWp99mTAKRRNRhw==
|
|
33335
34695
|
*/
|
|
33336
34696
|
nextToken?: string;
|
|
34697
|
+
/**
|
|
34698
|
+
* @remarks
|
|
34699
|
+
* The screen recording files.
|
|
34700
|
+
*/
|
|
33337
34701
|
recordings?: DescribeRecordingsResponseBodyRecordings[];
|
|
33338
34702
|
/**
|
|
34703
|
+
* @remarks
|
|
34704
|
+
* The request ID.
|
|
34705
|
+
*
|
|
33339
34706
|
* @example
|
|
33340
34707
|
* 327CFE78-1C0D-51AC-A9C6-BCEDF0DD44D6
|
|
33341
34708
|
*/
|
|
@@ -33915,10 +35282,10 @@ export declare class DescribeSnapshotsRequest extends $dara.Model {
|
|
|
33915
35282
|
endTime?: string;
|
|
33916
35283
|
/**
|
|
33917
35284
|
* @remarks
|
|
33918
|
-
* The
|
|
35285
|
+
* The number of entries per page.
|
|
33919
35286
|
*
|
|
33920
|
-
* *
|
|
33921
|
-
* * Default value: 10
|
|
35287
|
+
* * Maximum value: 100.
|
|
35288
|
+
* * Default value: 10.
|
|
33922
35289
|
*
|
|
33923
35290
|
* @example
|
|
33924
35291
|
* 10
|
|
@@ -34599,7 +35966,7 @@ export declare class DescribeUsersInGroupRequest extends $dara.Model {
|
|
|
34599
35966
|
export declare class DescribeUsersInGroupResponseBody extends $dara.Model {
|
|
34600
35967
|
/**
|
|
34601
35968
|
* @remarks
|
|
34602
|
-
* The
|
|
35969
|
+
* The authorized users.
|
|
34603
35970
|
*/
|
|
34604
35971
|
endUsers?: DescribeUsersInGroupResponseBodyEndUsers[];
|
|
34605
35972
|
/**
|
|
@@ -34945,10 +36312,341 @@ export declare class DetachCenRequest extends $dara.Model {
|
|
|
34945
36312
|
[key: string]: any;
|
|
34946
36313
|
});
|
|
34947
36314
|
}
|
|
34948
|
-
export declare class DetachCenResponseBody extends $dara.Model {
|
|
36315
|
+
export declare class DetachCenResponseBody extends $dara.Model {
|
|
36316
|
+
/**
|
|
36317
|
+
* @remarks
|
|
36318
|
+
* The request ID.
|
|
36319
|
+
*
|
|
36320
|
+
* @example
|
|
36321
|
+
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
36322
|
+
*/
|
|
36323
|
+
requestId?: string;
|
|
36324
|
+
static names(): {
|
|
36325
|
+
[key: string]: string;
|
|
36326
|
+
};
|
|
36327
|
+
static types(): {
|
|
36328
|
+
[key: string]: any;
|
|
36329
|
+
};
|
|
36330
|
+
validate(): void;
|
|
36331
|
+
constructor(map?: {
|
|
36332
|
+
[key: string]: any;
|
|
36333
|
+
});
|
|
36334
|
+
}
|
|
36335
|
+
export declare class DetachCenResponse extends $dara.Model {
|
|
36336
|
+
headers?: {
|
|
36337
|
+
[key: string]: string;
|
|
36338
|
+
};
|
|
36339
|
+
statusCode?: number;
|
|
36340
|
+
body?: DetachCenResponseBody;
|
|
36341
|
+
static names(): {
|
|
36342
|
+
[key: string]: string;
|
|
36343
|
+
};
|
|
36344
|
+
static types(): {
|
|
36345
|
+
[key: string]: any;
|
|
36346
|
+
};
|
|
36347
|
+
validate(): void;
|
|
36348
|
+
constructor(map?: {
|
|
36349
|
+
[key: string]: any;
|
|
36350
|
+
});
|
|
36351
|
+
}
|
|
36352
|
+
export declare class DetachEndUserRequest extends $dara.Model {
|
|
36353
|
+
/**
|
|
36354
|
+
* @remarks
|
|
36355
|
+
* The address of the Active Directory (AD) office network.
|
|
36356
|
+
*
|
|
36357
|
+
* @example
|
|
36358
|
+
* xn--0zw****
|
|
36359
|
+
*/
|
|
36360
|
+
adDomain?: string;
|
|
36361
|
+
/**
|
|
36362
|
+
* @remarks
|
|
36363
|
+
* The type of the client.
|
|
36364
|
+
*
|
|
36365
|
+
* Valid values:
|
|
36366
|
+
*
|
|
36367
|
+
* * 1: hardware client.
|
|
36368
|
+
*
|
|
36369
|
+
* This parameter is required.
|
|
36370
|
+
*
|
|
36371
|
+
* @example
|
|
36372
|
+
* 2
|
|
36373
|
+
*/
|
|
36374
|
+
clientType?: string;
|
|
36375
|
+
/**
|
|
36376
|
+
* @remarks
|
|
36377
|
+
* The serial number (SN) of the hardware client.
|
|
36378
|
+
*
|
|
36379
|
+
* This parameter is required.
|
|
36380
|
+
*
|
|
36381
|
+
* @example
|
|
36382
|
+
* F9E52EDCCB2B****
|
|
36383
|
+
*/
|
|
36384
|
+
deviceId?: string;
|
|
36385
|
+
/**
|
|
36386
|
+
* @remarks
|
|
36387
|
+
* The ID of the convenient office network.
|
|
36388
|
+
*
|
|
36389
|
+
* @example
|
|
36390
|
+
* cn-hangzhou+dir-jedbpr4sl9l37****
|
|
36391
|
+
*/
|
|
36392
|
+
directoryId?: string;
|
|
36393
|
+
/**
|
|
36394
|
+
* @remarks
|
|
36395
|
+
* The ID of the user that you want to unbind from the hardware client.
|
|
36396
|
+
*
|
|
36397
|
+
* This parameter is required.
|
|
36398
|
+
*
|
|
36399
|
+
* @example
|
|
36400
|
+
* moli
|
|
36401
|
+
*/
|
|
36402
|
+
endUserId?: string;
|
|
36403
|
+
/**
|
|
36404
|
+
* @remarks
|
|
36405
|
+
* The ID of the region. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/196646.html) operation to query the regions supported by WUYING Workspace.
|
|
36406
|
+
*
|
|
36407
|
+
* @example
|
|
36408
|
+
* cn-shanghai
|
|
36409
|
+
*/
|
|
36410
|
+
region?: string;
|
|
36411
|
+
static names(): {
|
|
36412
|
+
[key: string]: string;
|
|
36413
|
+
};
|
|
36414
|
+
static types(): {
|
|
36415
|
+
[key: string]: any;
|
|
36416
|
+
};
|
|
36417
|
+
validate(): void;
|
|
36418
|
+
constructor(map?: {
|
|
36419
|
+
[key: string]: any;
|
|
36420
|
+
});
|
|
36421
|
+
}
|
|
36422
|
+
export declare class DetachEndUserResponseBody extends $dara.Model {
|
|
36423
|
+
/**
|
|
36424
|
+
* @remarks
|
|
36425
|
+
* The ID of the request.
|
|
36426
|
+
*
|
|
36427
|
+
* @example
|
|
36428
|
+
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
36429
|
+
*/
|
|
36430
|
+
requestId?: string;
|
|
36431
|
+
static names(): {
|
|
36432
|
+
[key: string]: string;
|
|
36433
|
+
};
|
|
36434
|
+
static types(): {
|
|
36435
|
+
[key: string]: any;
|
|
36436
|
+
};
|
|
36437
|
+
validate(): void;
|
|
36438
|
+
constructor(map?: {
|
|
36439
|
+
[key: string]: any;
|
|
36440
|
+
});
|
|
36441
|
+
}
|
|
36442
|
+
export declare class DetachEndUserResponse extends $dara.Model {
|
|
36443
|
+
headers?: {
|
|
36444
|
+
[key: string]: string;
|
|
36445
|
+
};
|
|
36446
|
+
statusCode?: number;
|
|
36447
|
+
body?: DetachEndUserResponseBody;
|
|
36448
|
+
static names(): {
|
|
36449
|
+
[key: string]: string;
|
|
36450
|
+
};
|
|
36451
|
+
static types(): {
|
|
36452
|
+
[key: string]: any;
|
|
36453
|
+
};
|
|
36454
|
+
validate(): void;
|
|
36455
|
+
constructor(map?: {
|
|
36456
|
+
[key: string]: any;
|
|
36457
|
+
});
|
|
36458
|
+
}
|
|
36459
|
+
export declare class DisableDesktopsInGroupRequest extends $dara.Model {
|
|
36460
|
+
/**
|
|
36461
|
+
* @remarks
|
|
36462
|
+
* The ID of the cloud computer share.
|
|
36463
|
+
*
|
|
36464
|
+
* This parameter is required.
|
|
36465
|
+
*
|
|
36466
|
+
* @example
|
|
36467
|
+
* dg-2i8qxpv6t1a03****
|
|
36468
|
+
*/
|
|
36469
|
+
desktopGroupId?: string;
|
|
36470
|
+
/**
|
|
36471
|
+
* @remarks
|
|
36472
|
+
* The IDs of the cloud computers.
|
|
36473
|
+
*
|
|
36474
|
+
* This parameter is required.
|
|
36475
|
+
*/
|
|
36476
|
+
desktopIds?: string[];
|
|
36477
|
+
/**
|
|
36478
|
+
* @remarks
|
|
36479
|
+
* The ID of the region. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/196646.html) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
36480
|
+
*
|
|
36481
|
+
* This parameter is required.
|
|
36482
|
+
*
|
|
36483
|
+
* @example
|
|
36484
|
+
* cn-hangzhou
|
|
36485
|
+
*/
|
|
36486
|
+
regionId?: string;
|
|
36487
|
+
static names(): {
|
|
36488
|
+
[key: string]: string;
|
|
36489
|
+
};
|
|
36490
|
+
static types(): {
|
|
36491
|
+
[key: string]: any;
|
|
36492
|
+
};
|
|
36493
|
+
validate(): void;
|
|
36494
|
+
constructor(map?: {
|
|
36495
|
+
[key: string]: any;
|
|
36496
|
+
});
|
|
36497
|
+
}
|
|
36498
|
+
export declare class DisableDesktopsInGroupResponseBody extends $dara.Model {
|
|
36499
|
+
/**
|
|
36500
|
+
* @remarks
|
|
36501
|
+
* The ID of the request.
|
|
36502
|
+
*
|
|
36503
|
+
* @example
|
|
36504
|
+
* 34FB4D97-C0D9-5534-ABC6-90C7EBD5****
|
|
36505
|
+
*/
|
|
36506
|
+
requestId?: string;
|
|
36507
|
+
static names(): {
|
|
36508
|
+
[key: string]: string;
|
|
36509
|
+
};
|
|
36510
|
+
static types(): {
|
|
36511
|
+
[key: string]: any;
|
|
36512
|
+
};
|
|
36513
|
+
validate(): void;
|
|
36514
|
+
constructor(map?: {
|
|
36515
|
+
[key: string]: any;
|
|
36516
|
+
});
|
|
36517
|
+
}
|
|
36518
|
+
export declare class DisableDesktopsInGroupResponse extends $dara.Model {
|
|
36519
|
+
headers?: {
|
|
36520
|
+
[key: string]: string;
|
|
36521
|
+
};
|
|
36522
|
+
statusCode?: number;
|
|
36523
|
+
body?: DisableDesktopsInGroupResponseBody;
|
|
36524
|
+
static names(): {
|
|
36525
|
+
[key: string]: string;
|
|
36526
|
+
};
|
|
36527
|
+
static types(): {
|
|
36528
|
+
[key: string]: any;
|
|
36529
|
+
};
|
|
36530
|
+
validate(): void;
|
|
36531
|
+
constructor(map?: {
|
|
36532
|
+
[key: string]: any;
|
|
36533
|
+
});
|
|
36534
|
+
}
|
|
36535
|
+
export declare class DisconnectDesktopSessionsRequest extends $dara.Model {
|
|
36536
|
+
/**
|
|
36537
|
+
* @remarks
|
|
36538
|
+
* Specifies whether to perform precheck. If you perform precheck, the system does not disconnect from desktop sessions. Only the sessions that do not meet specific conditions are returned.
|
|
36539
|
+
*
|
|
36540
|
+
* @example
|
|
36541
|
+
* true
|
|
36542
|
+
*/
|
|
36543
|
+
preCheck?: boolean;
|
|
36544
|
+
/**
|
|
36545
|
+
* @remarks
|
|
36546
|
+
* The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/196646.html) operation to query the most recent region list.
|
|
36547
|
+
*
|
|
36548
|
+
* This parameter is required.
|
|
36549
|
+
*
|
|
36550
|
+
* @example
|
|
36551
|
+
* cn-hangzhou
|
|
36552
|
+
*/
|
|
36553
|
+
regionId?: string;
|
|
36554
|
+
/**
|
|
36555
|
+
* @remarks
|
|
36556
|
+
* The session details.
|
|
36557
|
+
*
|
|
36558
|
+
* This parameter is required.
|
|
36559
|
+
*/
|
|
36560
|
+
sessions?: DisconnectDesktopSessionsRequestSessions[];
|
|
36561
|
+
static names(): {
|
|
36562
|
+
[key: string]: string;
|
|
36563
|
+
};
|
|
36564
|
+
static types(): {
|
|
36565
|
+
[key: string]: any;
|
|
36566
|
+
};
|
|
36567
|
+
validate(): void;
|
|
36568
|
+
constructor(map?: {
|
|
36569
|
+
[key: string]: any;
|
|
36570
|
+
});
|
|
36571
|
+
}
|
|
36572
|
+
export declare class DisconnectDesktopSessionsResponseBody extends $dara.Model {
|
|
36573
|
+
/**
|
|
36574
|
+
* @remarks
|
|
36575
|
+
* The list of invalid sessions.
|
|
36576
|
+
*/
|
|
36577
|
+
invalidSessions?: DisconnectDesktopSessionsResponseBodyInvalidSessions[];
|
|
36578
|
+
/**
|
|
36579
|
+
* @remarks
|
|
36580
|
+
* The request ID.
|
|
36581
|
+
*
|
|
36582
|
+
* @example
|
|
36583
|
+
* 2507CFA8-FEAB-5208-98F5-5E028C50XXXX
|
|
36584
|
+
*/
|
|
36585
|
+
requestId?: string;
|
|
36586
|
+
static names(): {
|
|
36587
|
+
[key: string]: string;
|
|
36588
|
+
};
|
|
36589
|
+
static types(): {
|
|
36590
|
+
[key: string]: any;
|
|
36591
|
+
};
|
|
36592
|
+
validate(): void;
|
|
36593
|
+
constructor(map?: {
|
|
36594
|
+
[key: string]: any;
|
|
36595
|
+
});
|
|
36596
|
+
}
|
|
36597
|
+
export declare class DisconnectDesktopSessionsResponse extends $dara.Model {
|
|
36598
|
+
headers?: {
|
|
36599
|
+
[key: string]: string;
|
|
36600
|
+
};
|
|
36601
|
+
statusCode?: number;
|
|
36602
|
+
body?: DisconnectDesktopSessionsResponseBody;
|
|
36603
|
+
static names(): {
|
|
36604
|
+
[key: string]: string;
|
|
36605
|
+
};
|
|
36606
|
+
static types(): {
|
|
36607
|
+
[key: string]: any;
|
|
36608
|
+
};
|
|
36609
|
+
validate(): void;
|
|
36610
|
+
constructor(map?: {
|
|
36611
|
+
[key: string]: any;
|
|
36612
|
+
});
|
|
36613
|
+
}
|
|
36614
|
+
export declare class DissociateNetworkPackageRequest extends $dara.Model {
|
|
36615
|
+
/**
|
|
36616
|
+
* @remarks
|
|
36617
|
+
* The ID of the premium bandwidth plan. You can call the [DescribeNetworkPackages](https://help.aliyun.com/document_detail/216079.html) operation to obtain the ID.
|
|
36618
|
+
*
|
|
36619
|
+
* This parameter is required.
|
|
36620
|
+
*
|
|
36621
|
+
* @example
|
|
36622
|
+
* np-*********
|
|
36623
|
+
*/
|
|
36624
|
+
networkPackageId?: string;
|
|
36625
|
+
/**
|
|
36626
|
+
* @remarks
|
|
36627
|
+
* The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/196646.html) operation to query the most recent region list.
|
|
36628
|
+
*
|
|
36629
|
+
* This parameter is required.
|
|
36630
|
+
*
|
|
36631
|
+
* @example
|
|
36632
|
+
* cn-hangzhou
|
|
36633
|
+
*/
|
|
36634
|
+
regionId?: string;
|
|
36635
|
+
static names(): {
|
|
36636
|
+
[key: string]: string;
|
|
36637
|
+
};
|
|
36638
|
+
static types(): {
|
|
36639
|
+
[key: string]: any;
|
|
36640
|
+
};
|
|
36641
|
+
validate(): void;
|
|
36642
|
+
constructor(map?: {
|
|
36643
|
+
[key: string]: any;
|
|
36644
|
+
});
|
|
36645
|
+
}
|
|
36646
|
+
export declare class DissociateNetworkPackageResponseBody extends $dara.Model {
|
|
34949
36647
|
/**
|
|
34950
36648
|
* @remarks
|
|
34951
|
-
* The request
|
|
36649
|
+
* The ID of the request.
|
|
34952
36650
|
*
|
|
34953
36651
|
* @example
|
|
34954
36652
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
@@ -34965,12 +36663,12 @@ export declare class DetachCenResponseBody extends $dara.Model {
|
|
|
34965
36663
|
[key: string]: any;
|
|
34966
36664
|
});
|
|
34967
36665
|
}
|
|
34968
|
-
export declare class
|
|
36666
|
+
export declare class DissociateNetworkPackageResponse extends $dara.Model {
|
|
34969
36667
|
headers?: {
|
|
34970
36668
|
[key: string]: string;
|
|
34971
36669
|
};
|
|
34972
36670
|
statusCode?: number;
|
|
34973
|
-
body?:
|
|
36671
|
+
body?: DissociateNetworkPackageResponseBody;
|
|
34974
36672
|
static names(): {
|
|
34975
36673
|
[key: string]: string;
|
|
34976
36674
|
};
|
|
@@ -34982,134 +36680,42 @@ export declare class DetachCenResponse extends $dara.Model {
|
|
|
34982
36680
|
[key: string]: any;
|
|
34983
36681
|
});
|
|
34984
36682
|
}
|
|
34985
|
-
export declare class
|
|
34986
|
-
/**
|
|
34987
|
-
* @remarks
|
|
34988
|
-
* The address of the Active Directory (AD) office network.
|
|
34989
|
-
*
|
|
34990
|
-
* @example
|
|
34991
|
-
* xn--0zw****
|
|
34992
|
-
*/
|
|
34993
|
-
adDomain?: string;
|
|
34994
|
-
/**
|
|
34995
|
-
* @remarks
|
|
34996
|
-
* The type of the client.
|
|
34997
|
-
*
|
|
34998
|
-
* Valid values:
|
|
34999
|
-
*
|
|
35000
|
-
* * 1: hardware client.
|
|
35001
|
-
*
|
|
35002
|
-
* This parameter is required.
|
|
35003
|
-
*
|
|
35004
|
-
* @example
|
|
35005
|
-
* 2
|
|
35006
|
-
*/
|
|
35007
|
-
clientType?: string;
|
|
35008
|
-
/**
|
|
35009
|
-
* @remarks
|
|
35010
|
-
* The serial number (SN) of the hardware client.
|
|
35011
|
-
*
|
|
35012
|
-
* This parameter is required.
|
|
35013
|
-
*
|
|
35014
|
-
* @example
|
|
35015
|
-
* F9E52EDCCB2B****
|
|
35016
|
-
*/
|
|
35017
|
-
deviceId?: string;
|
|
36683
|
+
export declare class DownloadCdsFileRequest extends $dara.Model {
|
|
35018
36684
|
/**
|
|
35019
36685
|
* @remarks
|
|
35020
|
-
* The
|
|
36686
|
+
* The enterprise drive ID.
|
|
35021
36687
|
*
|
|
35022
36688
|
* @example
|
|
35023
|
-
* cn-hangzhou+
|
|
36689
|
+
* cn-hangzhou+cds-643267****
|
|
35024
36690
|
*/
|
|
35025
|
-
|
|
36691
|
+
cdsId?: string;
|
|
35026
36692
|
/**
|
|
35027
36693
|
* @remarks
|
|
35028
|
-
* The
|
|
35029
|
-
*
|
|
35030
|
-
* This parameter is required.
|
|
36694
|
+
* The user ID.
|
|
35031
36695
|
*
|
|
35032
36696
|
* @example
|
|
35033
|
-
*
|
|
36697
|
+
* user****
|
|
35034
36698
|
*/
|
|
35035
36699
|
endUserId?: string;
|
|
35036
36700
|
/**
|
|
35037
36701
|
* @remarks
|
|
35038
|
-
* The ID
|
|
35039
|
-
*
|
|
35040
|
-
* @example
|
|
35041
|
-
* cn-shanghai
|
|
35042
|
-
*/
|
|
35043
|
-
region?: string;
|
|
35044
|
-
static names(): {
|
|
35045
|
-
[key: string]: string;
|
|
35046
|
-
};
|
|
35047
|
-
static types(): {
|
|
35048
|
-
[key: string]: any;
|
|
35049
|
-
};
|
|
35050
|
-
validate(): void;
|
|
35051
|
-
constructor(map?: {
|
|
35052
|
-
[key: string]: any;
|
|
35053
|
-
});
|
|
35054
|
-
}
|
|
35055
|
-
export declare class DetachEndUserResponseBody extends $dara.Model {
|
|
35056
|
-
/**
|
|
35057
|
-
* @remarks
|
|
35058
|
-
* The ID of the request.
|
|
36702
|
+
* The file ID.
|
|
35059
36703
|
*
|
|
35060
36704
|
* @example
|
|
35061
|
-
*
|
|
36705
|
+
* 63f3257b68b018170b194d87b875512d108f****
|
|
35062
36706
|
*/
|
|
35063
|
-
|
|
35064
|
-
static names(): {
|
|
35065
|
-
[key: string]: string;
|
|
35066
|
-
};
|
|
35067
|
-
static types(): {
|
|
35068
|
-
[key: string]: any;
|
|
35069
|
-
};
|
|
35070
|
-
validate(): void;
|
|
35071
|
-
constructor(map?: {
|
|
35072
|
-
[key: string]: any;
|
|
35073
|
-
});
|
|
35074
|
-
}
|
|
35075
|
-
export declare class DetachEndUserResponse extends $dara.Model {
|
|
35076
|
-
headers?: {
|
|
35077
|
-
[key: string]: string;
|
|
35078
|
-
};
|
|
35079
|
-
statusCode?: number;
|
|
35080
|
-
body?: DetachEndUserResponseBody;
|
|
35081
|
-
static names(): {
|
|
35082
|
-
[key: string]: string;
|
|
35083
|
-
};
|
|
35084
|
-
static types(): {
|
|
35085
|
-
[key: string]: any;
|
|
35086
|
-
};
|
|
35087
|
-
validate(): void;
|
|
35088
|
-
constructor(map?: {
|
|
35089
|
-
[key: string]: any;
|
|
35090
|
-
});
|
|
35091
|
-
}
|
|
35092
|
-
export declare class DisableDesktopsInGroupRequest extends $dara.Model {
|
|
36707
|
+
fileId?: string;
|
|
35093
36708
|
/**
|
|
35094
36709
|
* @remarks
|
|
35095
|
-
* The ID
|
|
35096
|
-
*
|
|
35097
|
-
* This parameter is required.
|
|
36710
|
+
* The team ID.
|
|
35098
36711
|
*
|
|
35099
36712
|
* @example
|
|
35100
|
-
*
|
|
35101
|
-
*/
|
|
35102
|
-
desktopGroupId?: string;
|
|
35103
|
-
/**
|
|
35104
|
-
* @remarks
|
|
35105
|
-
* The IDs of the cloud computers.
|
|
35106
|
-
*
|
|
35107
|
-
* This parameter is required.
|
|
36713
|
+
* cg-i1ruuudp92qpj****
|
|
35108
36714
|
*/
|
|
35109
|
-
|
|
36715
|
+
groupId?: string;
|
|
35110
36716
|
/**
|
|
35111
36717
|
* @remarks
|
|
35112
|
-
* The
|
|
36718
|
+
* The region ID.
|
|
35113
36719
|
*
|
|
35114
36720
|
* This parameter is required.
|
|
35115
36721
|
*
|
|
@@ -35128,244 +36734,32 @@ export declare class DisableDesktopsInGroupRequest extends $dara.Model {
|
|
|
35128
36734
|
[key: string]: any;
|
|
35129
36735
|
});
|
|
35130
36736
|
}
|
|
35131
|
-
export declare class
|
|
35132
|
-
/**
|
|
35133
|
-
* @remarks
|
|
35134
|
-
* The ID of the request.
|
|
35135
|
-
*
|
|
35136
|
-
* @example
|
|
35137
|
-
* 34FB4D97-C0D9-5534-ABC6-90C7EBD5****
|
|
35138
|
-
*/
|
|
35139
|
-
requestId?: string;
|
|
35140
|
-
static names(): {
|
|
35141
|
-
[key: string]: string;
|
|
35142
|
-
};
|
|
35143
|
-
static types(): {
|
|
35144
|
-
[key: string]: any;
|
|
35145
|
-
};
|
|
35146
|
-
validate(): void;
|
|
35147
|
-
constructor(map?: {
|
|
35148
|
-
[key: string]: any;
|
|
35149
|
-
});
|
|
35150
|
-
}
|
|
35151
|
-
export declare class DisableDesktopsInGroupResponse extends $dara.Model {
|
|
35152
|
-
headers?: {
|
|
35153
|
-
[key: string]: string;
|
|
35154
|
-
};
|
|
35155
|
-
statusCode?: number;
|
|
35156
|
-
body?: DisableDesktopsInGroupResponseBody;
|
|
35157
|
-
static names(): {
|
|
35158
|
-
[key: string]: string;
|
|
35159
|
-
};
|
|
35160
|
-
static types(): {
|
|
35161
|
-
[key: string]: any;
|
|
35162
|
-
};
|
|
35163
|
-
validate(): void;
|
|
35164
|
-
constructor(map?: {
|
|
35165
|
-
[key: string]: any;
|
|
35166
|
-
});
|
|
35167
|
-
}
|
|
35168
|
-
export declare class DisconnectDesktopSessionsRequest extends $dara.Model {
|
|
36737
|
+
export declare class DownloadCdsFileResponseBody extends $dara.Model {
|
|
35169
36738
|
/**
|
|
35170
36739
|
* @remarks
|
|
35171
|
-
*
|
|
35172
|
-
*
|
|
35173
|
-
* @example
|
|
35174
|
-
* true
|
|
36740
|
+
* The download URL of the file.
|
|
35175
36741
|
*/
|
|
35176
|
-
|
|
36742
|
+
downloadFileModel?: DownloadCdsFileResponseBodyDownloadFileModel;
|
|
35177
36743
|
/**
|
|
35178
36744
|
* @remarks
|
|
35179
|
-
* The
|
|
35180
|
-
*
|
|
35181
|
-
* This parameter is required.
|
|
36745
|
+
* The response message.
|
|
35182
36746
|
*
|
|
35183
36747
|
* @example
|
|
35184
|
-
*
|
|
35185
|
-
*/
|
|
35186
|
-
regionId?: string;
|
|
35187
|
-
/**
|
|
35188
|
-
* @remarks
|
|
35189
|
-
* The session details.
|
|
35190
|
-
*
|
|
35191
|
-
* This parameter is required.
|
|
35192
|
-
*/
|
|
35193
|
-
sessions?: DisconnectDesktopSessionsRequestSessions[];
|
|
35194
|
-
static names(): {
|
|
35195
|
-
[key: string]: string;
|
|
35196
|
-
};
|
|
35197
|
-
static types(): {
|
|
35198
|
-
[key: string]: any;
|
|
35199
|
-
};
|
|
35200
|
-
validate(): void;
|
|
35201
|
-
constructor(map?: {
|
|
35202
|
-
[key: string]: any;
|
|
35203
|
-
});
|
|
35204
|
-
}
|
|
35205
|
-
export declare class DisconnectDesktopSessionsResponseBody extends $dara.Model {
|
|
35206
|
-
/**
|
|
35207
|
-
* @remarks
|
|
35208
|
-
* The list of invalid sessions.
|
|
36748
|
+
* success
|
|
35209
36749
|
*/
|
|
35210
|
-
|
|
36750
|
+
message?: string;
|
|
35211
36751
|
/**
|
|
35212
36752
|
* @remarks
|
|
35213
36753
|
* The request ID.
|
|
35214
36754
|
*
|
|
35215
36755
|
* @example
|
|
35216
|
-
*
|
|
36756
|
+
* E3ED9519-DD73-5C86-9C0A-43C9281C****
|
|
35217
36757
|
*/
|
|
35218
36758
|
requestId?: string;
|
|
35219
|
-
static names(): {
|
|
35220
|
-
[key: string]: string;
|
|
35221
|
-
};
|
|
35222
|
-
static types(): {
|
|
35223
|
-
[key: string]: any;
|
|
35224
|
-
};
|
|
35225
|
-
validate(): void;
|
|
35226
|
-
constructor(map?: {
|
|
35227
|
-
[key: string]: any;
|
|
35228
|
-
});
|
|
35229
|
-
}
|
|
35230
|
-
export declare class DisconnectDesktopSessionsResponse extends $dara.Model {
|
|
35231
|
-
headers?: {
|
|
35232
|
-
[key: string]: string;
|
|
35233
|
-
};
|
|
35234
|
-
statusCode?: number;
|
|
35235
|
-
body?: DisconnectDesktopSessionsResponseBody;
|
|
35236
|
-
static names(): {
|
|
35237
|
-
[key: string]: string;
|
|
35238
|
-
};
|
|
35239
|
-
static types(): {
|
|
35240
|
-
[key: string]: any;
|
|
35241
|
-
};
|
|
35242
|
-
validate(): void;
|
|
35243
|
-
constructor(map?: {
|
|
35244
|
-
[key: string]: any;
|
|
35245
|
-
});
|
|
35246
|
-
}
|
|
35247
|
-
export declare class DissociateNetworkPackageRequest extends $dara.Model {
|
|
35248
|
-
/**
|
|
35249
|
-
* @remarks
|
|
35250
|
-
* The ID of the premium bandwidth plan. You can call the [DescribeNetworkPackages](https://help.aliyun.com/document_detail/216079.html) operation to obtain the ID.
|
|
35251
|
-
*
|
|
35252
|
-
* This parameter is required.
|
|
35253
|
-
*
|
|
35254
|
-
* @example
|
|
35255
|
-
* np-*********
|
|
35256
|
-
*/
|
|
35257
|
-
networkPackageId?: string;
|
|
35258
36759
|
/**
|
|
35259
36760
|
* @remarks
|
|
35260
|
-
*
|
|
35261
|
-
*
|
|
35262
|
-
* This parameter is required.
|
|
35263
|
-
*
|
|
35264
|
-
* @example
|
|
35265
|
-
* cn-hangzhou
|
|
35266
|
-
*/
|
|
35267
|
-
regionId?: string;
|
|
35268
|
-
static names(): {
|
|
35269
|
-
[key: string]: string;
|
|
35270
|
-
};
|
|
35271
|
-
static types(): {
|
|
35272
|
-
[key: string]: any;
|
|
35273
|
-
};
|
|
35274
|
-
validate(): void;
|
|
35275
|
-
constructor(map?: {
|
|
35276
|
-
[key: string]: any;
|
|
35277
|
-
});
|
|
35278
|
-
}
|
|
35279
|
-
export declare class DissociateNetworkPackageResponseBody extends $dara.Model {
|
|
35280
|
-
/**
|
|
35281
|
-
* @remarks
|
|
35282
|
-
* The ID of the request.
|
|
35283
|
-
*
|
|
35284
|
-
* @example
|
|
35285
|
-
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
35286
|
-
*/
|
|
35287
|
-
requestId?: string;
|
|
35288
|
-
static names(): {
|
|
35289
|
-
[key: string]: string;
|
|
35290
|
-
};
|
|
35291
|
-
static types(): {
|
|
35292
|
-
[key: string]: any;
|
|
35293
|
-
};
|
|
35294
|
-
validate(): void;
|
|
35295
|
-
constructor(map?: {
|
|
35296
|
-
[key: string]: any;
|
|
35297
|
-
});
|
|
35298
|
-
}
|
|
35299
|
-
export declare class DissociateNetworkPackageResponse extends $dara.Model {
|
|
35300
|
-
headers?: {
|
|
35301
|
-
[key: string]: string;
|
|
35302
|
-
};
|
|
35303
|
-
statusCode?: number;
|
|
35304
|
-
body?: DissociateNetworkPackageResponseBody;
|
|
35305
|
-
static names(): {
|
|
35306
|
-
[key: string]: string;
|
|
35307
|
-
};
|
|
35308
|
-
static types(): {
|
|
35309
|
-
[key: string]: any;
|
|
35310
|
-
};
|
|
35311
|
-
validate(): void;
|
|
35312
|
-
constructor(map?: {
|
|
35313
|
-
[key: string]: any;
|
|
35314
|
-
});
|
|
35315
|
-
}
|
|
35316
|
-
export declare class DownloadCdsFileRequest extends $dara.Model {
|
|
35317
|
-
/**
|
|
35318
|
-
* @example
|
|
35319
|
-
* cn-hangzhou+cds-643267****
|
|
35320
|
-
*/
|
|
35321
|
-
cdsId?: string;
|
|
35322
|
-
/**
|
|
35323
|
-
* @example
|
|
35324
|
-
* user****
|
|
35325
|
-
*/
|
|
35326
|
-
endUserId?: string;
|
|
35327
|
-
/**
|
|
35328
|
-
* @example
|
|
35329
|
-
* 63f3257b68b018170b194d87b875512d108f****
|
|
35330
|
-
*/
|
|
35331
|
-
fileId?: string;
|
|
35332
|
-
/**
|
|
35333
|
-
* @example
|
|
35334
|
-
* cg-i1ruuudp92qpj****
|
|
35335
|
-
*/
|
|
35336
|
-
groupId?: string;
|
|
35337
|
-
/**
|
|
35338
|
-
* @remarks
|
|
35339
|
-
* This parameter is required.
|
|
36761
|
+
* Indicates whether the request was successful.
|
|
35340
36762
|
*
|
|
35341
|
-
* @example
|
|
35342
|
-
* cn-hangzhou
|
|
35343
|
-
*/
|
|
35344
|
-
regionId?: string;
|
|
35345
|
-
static names(): {
|
|
35346
|
-
[key: string]: string;
|
|
35347
|
-
};
|
|
35348
|
-
static types(): {
|
|
35349
|
-
[key: string]: any;
|
|
35350
|
-
};
|
|
35351
|
-
validate(): void;
|
|
35352
|
-
constructor(map?: {
|
|
35353
|
-
[key: string]: any;
|
|
35354
|
-
});
|
|
35355
|
-
}
|
|
35356
|
-
export declare class DownloadCdsFileResponseBody extends $dara.Model {
|
|
35357
|
-
downloadFileModel?: DownloadCdsFileResponseBodyDownloadFileModel;
|
|
35358
|
-
/**
|
|
35359
|
-
* @example
|
|
35360
|
-
* success
|
|
35361
|
-
*/
|
|
35362
|
-
message?: string;
|
|
35363
|
-
/**
|
|
35364
|
-
* @example
|
|
35365
|
-
* E3ED9519-DD73-5C86-9C0A-43C9281C****
|
|
35366
|
-
*/
|
|
35367
|
-
requestId?: string;
|
|
35368
|
-
/**
|
|
35369
36763
|
* @example
|
|
35370
36764
|
* true
|
|
35371
36765
|
*/
|
|
@@ -37414,7 +38808,7 @@ export declare class ListDirectoryUsersResponseBody extends $dara.Model {
|
|
|
37414
38808
|
requestId?: string;
|
|
37415
38809
|
/**
|
|
37416
38810
|
* @remarks
|
|
37417
|
-
* The
|
|
38811
|
+
* The usernames corresponding to the AD directory. If the AD directory contains only the Administrator and Guest accounts, the Users array will be empty.
|
|
37418
38812
|
*/
|
|
37419
38813
|
users?: ListDirectoryUsersResponseBodyUsers[];
|
|
37420
38814
|
static names(): {
|
|
@@ -37713,7 +39107,7 @@ export declare class ListOfficeSiteUsersRequest extends $dara.Model {
|
|
|
37713
39107
|
officeSiteId?: string;
|
|
37714
39108
|
/**
|
|
37715
39109
|
* @remarks
|
|
37716
|
-
* The region ID. You can call the [DescribeRegions](
|
|
39110
|
+
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
37717
39111
|
*
|
|
37718
39112
|
* This parameter is required.
|
|
37719
39113
|
*
|
|
@@ -37752,8 +39146,8 @@ export declare class ListOfficeSiteUsersResponseBody extends $dara.Model {
|
|
|
37752
39146
|
requestId?: string;
|
|
37753
39147
|
/**
|
|
37754
39148
|
* @remarks
|
|
37755
|
-
* The usernames of AD
|
|
37756
|
-
* If the only Administrator and Guest users exist in the enterprise AD, an empty User array is returned.
|
|
39149
|
+
* The usernames of the AD accounts.\\
|
|
39150
|
+
* If the only Administrator and Guest users exist in the enterprise AD directory, an empty User array is returned.
|
|
37757
39151
|
*/
|
|
37758
39152
|
users?: ListOfficeSiteUsersResponseBodyUsers[];
|
|
37759
39153
|
static names(): {
|
|
@@ -39473,7 +40867,7 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
39473
40867
|
*
|
|
39474
40868
|
* Valid values:
|
|
39475
40869
|
*
|
|
39476
|
-
* * 1: public cloud
|
|
40870
|
+
* * 1: public cloud
|
|
39477
40871
|
* * 8: commercial edition.
|
|
39478
40872
|
*
|
|
39479
40873
|
* This parameter is required.
|
|
@@ -39661,12 +41055,12 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
39661
41055
|
domainResolveRuleType?: string;
|
|
39662
41056
|
/**
|
|
39663
41057
|
* @remarks
|
|
39664
|
-
* Specifies whether to enforce
|
|
41058
|
+
* Specifies whether to enforce a bandwidth limit for sessions.
|
|
39665
41059
|
*
|
|
39666
41060
|
* Valid values:
|
|
39667
41061
|
*
|
|
39668
|
-
* * off: doesn\\"t enforce
|
|
39669
|
-
* * on: enforces
|
|
41062
|
+
* * off: doesn\\"t enforce a bandwidth limit for sessions.
|
|
41063
|
+
* * on: enforces a bandwidth limit for sessions.
|
|
39670
41064
|
*
|
|
39671
41065
|
* @example
|
|
39672
41066
|
* off
|
|
@@ -39687,12 +41081,12 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
39687
41081
|
endUserApplyAdminCoordinate?: string;
|
|
39688
41082
|
/**
|
|
39689
41083
|
* @remarks
|
|
39690
|
-
* Specifies whether end users
|
|
41084
|
+
* Specifies whether to allow end users from the same office network to share cloud computers.
|
|
39691
41085
|
*
|
|
39692
41086
|
* Valid values:
|
|
39693
41087
|
*
|
|
39694
|
-
* * off:
|
|
39695
|
-
* * on:
|
|
41088
|
+
* * off: doesn\\"t allow end users from the same office network to share cloud computers.
|
|
41089
|
+
* * on: allows end users from the same office network to share cloud computers.
|
|
39696
41090
|
*
|
|
39697
41091
|
* @example
|
|
39698
41092
|
* off
|
|
@@ -39828,14 +41222,14 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
39828
41222
|
memorySingleRateLimit?: number;
|
|
39829
41223
|
/**
|
|
39830
41224
|
* @remarks
|
|
39831
|
-
* Specifies whether to display the Restart button in the DesktopAssistant menu when end users connect to cloud computers from
|
|
41225
|
+
* Specifies whether to display the Restart button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
39832
41226
|
*
|
|
39833
41227
|
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
39834
41228
|
*
|
|
39835
41229
|
* Valid values:
|
|
39836
41230
|
*
|
|
39837
|
-
* * off: doesn\\"t display the Restart button in the DesktopAssistant menu.
|
|
39838
|
-
* * on: displays the Restart button in the DesktopAssistant menu.
|
|
41231
|
+
* * off: doesn\\"t display the Restart button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
41232
|
+
* * on: displays the Restart button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
39839
41233
|
*
|
|
39840
41234
|
* @example
|
|
39841
41235
|
* off
|
|
@@ -39843,14 +41237,14 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
39843
41237
|
mobileRestart?: string;
|
|
39844
41238
|
/**
|
|
39845
41239
|
* @remarks
|
|
39846
|
-
* Specifies whether to display the Stop button in the DesktopAssistant menu when end users connect to cloud computers from
|
|
41240
|
+
* Specifies whether to display the Stop button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
39847
41241
|
*
|
|
39848
41242
|
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
39849
41243
|
*
|
|
39850
41244
|
* Valid values:
|
|
39851
41245
|
*
|
|
39852
|
-
* * off: doesn\\"t display the Stop button in the DesktopAssistant menu.
|
|
39853
|
-
* * on: displays the Stop button in the DesktopAssistant menu.
|
|
41246
|
+
* * off: doesn\\"t display the Stop button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
41247
|
+
* * on: displays the Stop button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
39854
41248
|
*
|
|
39855
41249
|
* @example
|
|
39856
41250
|
* off
|
|
@@ -39882,7 +41276,7 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
39882
41276
|
netRedirect?: string;
|
|
39883
41277
|
/**
|
|
39884
41278
|
* @remarks
|
|
39885
|
-
* The network redirection
|
|
41279
|
+
* The network redirection rules.
|
|
39886
41280
|
*
|
|
39887
41281
|
* > This parameter is in private preview and only available to specific users.
|
|
39888
41282
|
*/
|
|
@@ -40169,7 +41563,7 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
40169
41563
|
scopeValue?: string[];
|
|
40170
41564
|
/**
|
|
40171
41565
|
* @remarks
|
|
40172
|
-
* The bandwidth peak
|
|
41566
|
+
* The bandwidth peak allowed for sessions. Unit: Kbit/s. Valid values: 2000 to 100000.
|
|
40173
41567
|
*
|
|
40174
41568
|
* @example
|
|
40175
41569
|
* 2000
|
|
@@ -40257,7 +41651,7 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
40257
41651
|
usbSupplyRedirectRule?: ModifyCenterPolicyRequestUsbSupplyRedirectRule[];
|
|
40258
41652
|
/**
|
|
40259
41653
|
* @remarks
|
|
40260
|
-
* The average bitrate for video encoding. Valid values: 1000 to 50000.
|
|
41654
|
+
* The average bitrate for video encoding. Unit: Kbit/s. Valid values: 1000 to 50000.
|
|
40261
41655
|
*
|
|
40262
41656
|
* @example
|
|
40263
41657
|
* 2000
|
|
@@ -40281,7 +41675,7 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
40281
41675
|
videoEncMinQP?: number;
|
|
40282
41676
|
/**
|
|
40283
41677
|
* @remarks
|
|
40284
|
-
* The peak bitrate for video encoding. Valid values: 1000 to 50000.
|
|
41678
|
+
* The peak bitrate allowed for video encoding. Unit: Kbit/s. Valid values: 1000 to 50000.
|
|
40285
41679
|
*
|
|
40286
41680
|
* @example
|
|
40287
41681
|
* 2000
|
|
@@ -48258,12 +49652,16 @@ export default class Client extends OpenApi {
|
|
|
48258
49652
|
*/
|
|
48259
49653
|
cancelCopyImage(request: CancelCopyImageRequest): Promise<CancelCopyImageResponse>;
|
|
48260
49654
|
/**
|
|
49655
|
+
* Clones a policy based on an existing global policy.
|
|
49656
|
+
*
|
|
48261
49657
|
* @param request - CloneCenterPolicyRequest
|
|
48262
49658
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
48263
49659
|
* @returns CloneCenterPolicyResponse
|
|
48264
49660
|
*/
|
|
48265
49661
|
cloneCenterPolicyWithOptions(request: CloneCenterPolicyRequest, runtime: $dara.RuntimeOptions): Promise<CloneCenterPolicyResponse>;
|
|
48266
49662
|
/**
|
|
49663
|
+
* Clones a policy based on an existing global policy.
|
|
49664
|
+
*
|
|
48267
49665
|
* @param request - CloneCenterPolicyRequest
|
|
48268
49666
|
* @returns CloneCenterPolicyResponse
|
|
48269
49667
|
*/
|
|
@@ -49248,7 +50646,7 @@ export default class Client extends OpenApi {
|
|
|
49248
50646
|
*/
|
|
49249
50647
|
describeCens(request: DescribeCensRequest): Promise<DescribeCensResponse>;
|
|
49250
50648
|
/**
|
|
49251
|
-
*
|
|
50649
|
+
* Queries center policies.
|
|
49252
50650
|
*
|
|
49253
50651
|
* @param request - DescribeCenterPolicyListRequest
|
|
49254
50652
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -49256,7 +50654,7 @@ export default class Client extends OpenApi {
|
|
|
49256
50654
|
*/
|
|
49257
50655
|
describeCenterPolicyListWithOptions(request: DescribeCenterPolicyListRequest, runtime: $dara.RuntimeOptions): Promise<DescribeCenterPolicyListResponse>;
|
|
49258
50656
|
/**
|
|
49259
|
-
*
|
|
50657
|
+
* Queries center policies.
|
|
49260
50658
|
*
|
|
49261
50659
|
* @param request - DescribeCenterPolicyListRequest
|
|
49262
50660
|
* @returns DescribeCenterPolicyListResponse
|
|
@@ -49860,12 +51258,16 @@ export default class Client extends OpenApi {
|
|
|
49860
51258
|
*/
|
|
49861
51259
|
describePriceForRenewDesktopOversoldGroup(request: DescribePriceForRenewDesktopOversoldGroupRequest): Promise<DescribePriceForRenewDesktopOversoldGroupResponse>;
|
|
49862
51260
|
/**
|
|
51261
|
+
* Queries the details of screen recording files.
|
|
51262
|
+
*
|
|
49863
51263
|
* @param request - DescribeRecordingsRequest
|
|
49864
51264
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
49865
51265
|
* @returns DescribeRecordingsResponse
|
|
49866
51266
|
*/
|
|
49867
51267
|
describeRecordingsWithOptions(request: DescribeRecordingsRequest, runtime: $dara.RuntimeOptions): Promise<DescribeRecordingsResponse>;
|
|
49868
51268
|
/**
|
|
51269
|
+
* Queries the details of screen recording files.
|
|
51270
|
+
*
|
|
49869
51271
|
* @param request - DescribeRecordingsRequest
|
|
49870
51272
|
* @returns DescribeRecordingsResponse
|
|
49871
51273
|
*/
|
|
@@ -50160,7 +51562,7 @@ export default class Client extends OpenApi {
|
|
|
50160
51562
|
*/
|
|
50161
51563
|
dissociateNetworkPackage(request: DissociateNetworkPackageRequest): Promise<DissociateNetworkPackageResponse>;
|
|
50162
51564
|
/**
|
|
50163
|
-
*
|
|
51565
|
+
* Obtains the download link of the target file.
|
|
50164
51566
|
*
|
|
50165
51567
|
* @param request - DownloadCdsFileRequest
|
|
50166
51568
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -50168,7 +51570,7 @@ export default class Client extends OpenApi {
|
|
|
50168
51570
|
*/
|
|
50169
51571
|
downloadCdsFileWithOptions(request: DownloadCdsFileRequest, runtime: $dara.RuntimeOptions): Promise<DownloadCdsFileResponse>;
|
|
50170
51572
|
/**
|
|
50171
|
-
*
|
|
51573
|
+
* Obtains the download link of the target file.
|
|
50172
51574
|
*
|
|
50173
51575
|
* @param request - DownloadCdsFileRequest
|
|
50174
51576
|
* @returns DownloadCdsFileResponse
|
|
@@ -50445,7 +51847,7 @@ export default class Client extends OpenApi {
|
|
|
50445
51847
|
*/
|
|
50446
51848
|
listOfficeSiteOverview(request: ListOfficeSiteOverviewRequest): Promise<ListOfficeSiteOverviewResponse>;
|
|
50447
51849
|
/**
|
|
50448
|
-
* Queries information about Active Directory (AD)
|
|
51850
|
+
* Queries information about Active Directory (AD) accounts after an enterprise AD office network (formerly workspace) interconnects to an AD domain.
|
|
50449
51851
|
*
|
|
50450
51852
|
* @param request - ListOfficeSiteUsersRequest
|
|
50451
51853
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -50453,7 +51855,7 @@ export default class Client extends OpenApi {
|
|
|
50453
51855
|
*/
|
|
50454
51856
|
listOfficeSiteUsersWithOptions(request: ListOfficeSiteUsersRequest, runtime: $dara.RuntimeOptions): Promise<ListOfficeSiteUsersResponse>;
|
|
50455
51857
|
/**
|
|
50456
|
-
* Queries information about Active Directory (AD)
|
|
51858
|
+
* Queries information about Active Directory (AD) accounts after an enterprise AD office network (formerly workspace) interconnects to an AD domain.
|
|
50457
51859
|
*
|
|
50458
51860
|
* @param request - ListOfficeSiteUsersRequest
|
|
50459
51861
|
* @returns ListOfficeSiteUsersResponse
|
|
@@ -50676,12 +52078,16 @@ export default class Client extends OpenApi {
|
|
|
50676
52078
|
*/
|
|
50677
52079
|
modifyCdsFileShareLink(request: ModifyCdsFileShareLinkRequest): Promise<ModifyCdsFileShareLinkResponse>;
|
|
50678
52080
|
/**
|
|
52081
|
+
* Modifies a center policy.
|
|
52082
|
+
*
|
|
50679
52083
|
* @param request - ModifyCenterPolicyRequest
|
|
50680
52084
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
50681
52085
|
* @returns ModifyCenterPolicyResponse
|
|
50682
52086
|
*/
|
|
50683
52087
|
modifyCenterPolicyWithOptions(request: ModifyCenterPolicyRequest, runtime: $dara.RuntimeOptions): Promise<ModifyCenterPolicyResponse>;
|
|
50684
52088
|
/**
|
|
52089
|
+
* Modifies a center policy.
|
|
52090
|
+
*
|
|
50685
52091
|
* @param request - ModifyCenterPolicyRequest
|
|
50686
52092
|
* @returns ModifyCenterPolicyResponse
|
|
50687
52093
|
*/
|
|
@@ -51308,15 +52714,15 @@ export default class Client extends OpenApi {
|
|
|
51308
52714
|
*/
|
|
51309
52715
|
rebootDesktops(request: RebootDesktopsRequest): Promise<RebootDesktopsResponse>;
|
|
51310
52716
|
/**
|
|
51311
|
-
*
|
|
52717
|
+
* Rebuilds images for one or more cloud computers.
|
|
51312
52718
|
*
|
|
51313
52719
|
* @remarks
|
|
51314
|
-
*
|
|
51315
|
-
* * You
|
|
51316
|
-
* * GPU
|
|
51317
|
-
*
|
|
51318
|
-
* *
|
|
51319
|
-
* * If the OS
|
|
52720
|
+
* Before you proceed, take note of the following limits:
|
|
52721
|
+
* * 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.
|
|
52722
|
+
* * 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.
|
|
52723
|
+
* When a cloud computer’s image is updated, the system initializes its system disk by using the new image, resulting in the following effects:
|
|
52724
|
+
* * All data on the original system disk is erased. Snapshots created from the original system disk become unavailable and are automatically deleted.
|
|
52725
|
+
* * 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.
|
|
51320
52726
|
*
|
|
51321
52727
|
* @param request - RebuildDesktopsRequest
|
|
51322
52728
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -51324,15 +52730,15 @@ export default class Client extends OpenApi {
|
|
|
51324
52730
|
*/
|
|
51325
52731
|
rebuildDesktopsWithOptions(request: RebuildDesktopsRequest, runtime: $dara.RuntimeOptions): Promise<RebuildDesktopsResponse>;
|
|
51326
52732
|
/**
|
|
51327
|
-
*
|
|
52733
|
+
* Rebuilds images for one or more cloud computers.
|
|
51328
52734
|
*
|
|
51329
52735
|
* @remarks
|
|
51330
|
-
*
|
|
51331
|
-
* * You
|
|
51332
|
-
* * GPU
|
|
51333
|
-
*
|
|
51334
|
-
* *
|
|
51335
|
-
* * If the OS
|
|
52736
|
+
* Before you proceed, take note of the following limits:
|
|
52737
|
+
* * 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.
|
|
52738
|
+
* * 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.
|
|
52739
|
+
* When a cloud computer’s image is updated, the system initializes its system disk by using the new image, resulting in the following effects:
|
|
52740
|
+
* * All data on the original system disk is erased. Snapshots created from the original system disk become unavailable and are automatically deleted.
|
|
52741
|
+
* * 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.
|
|
51336
52742
|
*
|
|
51337
52743
|
* @param request - RebuildDesktopsRequest
|
|
51338
52744
|
* @returns RebuildDesktopsResponse
|