@alicloud/ecd20200930 4.6.3 → 4.6.4
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 +885 -12
- package/dist/client.js +282 -1374
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1142 -1368
package/dist/client.d.ts
CHANGED
|
@@ -3600,6 +3600,21 @@ export declare class DescribeCenterPolicyListResponseBodyDescribePolicyGroups ex
|
|
|
3600
3600
|
[key: string]: any;
|
|
3601
3601
|
});
|
|
3602
3602
|
}
|
|
3603
|
+
export declare class DescribeClientEventsResponseBodyEventsTerminalInfo extends $dara.Model {
|
|
3604
|
+
model?: string;
|
|
3605
|
+
productName?: string;
|
|
3606
|
+
serialNumber?: string;
|
|
3607
|
+
static names(): {
|
|
3608
|
+
[key: string]: string;
|
|
3609
|
+
};
|
|
3610
|
+
static types(): {
|
|
3611
|
+
[key: string]: any;
|
|
3612
|
+
};
|
|
3613
|
+
validate(): void;
|
|
3614
|
+
constructor(map?: {
|
|
3615
|
+
[key: string]: any;
|
|
3616
|
+
});
|
|
3617
|
+
}
|
|
3603
3618
|
export declare class DescribeClientEventsResponseBodyEvents extends $dara.Model {
|
|
3604
3619
|
/**
|
|
3605
3620
|
* @remarks
|
|
@@ -3806,6 +3821,7 @@ export declare class DescribeClientEventsResponseBodyEvents extends $dara.Model
|
|
|
3806
3821
|
* 200
|
|
3807
3822
|
*/
|
|
3808
3823
|
status?: string;
|
|
3824
|
+
terminalInfo?: DescribeClientEventsResponseBodyEventsTerminalInfo;
|
|
3809
3825
|
static names(): {
|
|
3810
3826
|
[key: string]: string;
|
|
3811
3827
|
};
|
|
@@ -4438,7 +4454,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroupsTags extends
|
|
|
4438
4454
|
export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dara.Model {
|
|
4439
4455
|
/**
|
|
4440
4456
|
* @remarks
|
|
4441
|
-
* The number of concurrent sessions
|
|
4457
|
+
* The number of concurrent sessions allowed for each cloud computer within the multi-session many-to-many share.
|
|
4442
4458
|
*
|
|
4443
4459
|
* @example
|
|
4444
4460
|
* 1
|
|
@@ -4446,8 +4462,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4446
4462
|
bindAmount?: number;
|
|
4447
4463
|
/**
|
|
4448
4464
|
* @remarks
|
|
4449
|
-
*
|
|
4450
|
-
* * For pay-as-you-go cloud computer shares, this parameter indicates the minimum number of cloud computers created in the initial batch. Default value: 1. Valid values: 0 to `MaxDesktopsCount`.
|
|
4465
|
+
* This parameter is applicable only to subscription cloud computer shares. It defines the initial number of cloud computers that are purchased. Valid values: 0 to 200.
|
|
4451
4466
|
*
|
|
4452
4467
|
* @example
|
|
4453
4468
|
* 5
|
|
@@ -4634,7 +4649,8 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4634
4649
|
loadPolicy?: number;
|
|
4635
4650
|
/**
|
|
4636
4651
|
* @remarks
|
|
4637
|
-
*
|
|
4652
|
+
* * For pay-as-you-go cloud computer shares, this parameter defines the maximum number of cloud computers allowed.
|
|
4653
|
+
* * For subscription cloud computer shares, this parameter defines the total number of cloud computers, including both the initially purchased cloud computers (`BuyDesktopsCount`) and those that can be auto-created.
|
|
4638
4654
|
*
|
|
4639
4655
|
* @example
|
|
4640
4656
|
* 10
|
|
@@ -4650,7 +4666,8 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4650
4666
|
memory?: number;
|
|
4651
4667
|
/**
|
|
4652
4668
|
* @remarks
|
|
4653
|
-
*
|
|
4669
|
+
* * For pay-as-you-go cloud computer shares, this parameter defines the minimum number of cloud computers allowed.
|
|
4670
|
+
* * For subscription cloud computer shares, this parameter defines the number of cloud computers that are initially purchased (`BuyDesktopsCount`).
|
|
4654
4671
|
*
|
|
4655
4672
|
* @example
|
|
4656
4673
|
* 1
|
|
@@ -4801,9 +4818,9 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4801
4818
|
* @remarks
|
|
4802
4819
|
* The threshold for the ratio of connected sessions, which triggers automatic scaling of cloud computers within the multi-session many-to-many share. To calculate the ratio of connected sessions, use the following formula:
|
|
4803
4820
|
*
|
|
4804
|
-
* `Ratio of connected sessions = Number of connected sessions/(Total number of cloud computers × Maximum number of sessions allowed for each cloud computer) × 100
|
|
4821
|
+
* `Ratio of connected sessions = Number of connected sessions/(Total number of cloud computers × Maximum number of sessions allowed for each cloud computer) × 100%`
|
|
4805
4822
|
*
|
|
4806
|
-
*
|
|
4823
|
+
* When the specified threshold is reached, new cloud computers are automatically created. When the specified threshold is not reached, idle cloud computers are released.
|
|
4807
4824
|
*
|
|
4808
4825
|
* @example
|
|
4809
4826
|
* 0.85
|
|
@@ -4883,7 +4900,7 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $dar
|
|
|
4883
4900
|
tags?: DescribeDesktopGroupsResponseBodyDesktopGroupsTags[];
|
|
4884
4901
|
/**
|
|
4885
4902
|
* @remarks
|
|
4886
|
-
*
|
|
4903
|
+
* The user\\"s organizational unit path.
|
|
4887
4904
|
*
|
|
4888
4905
|
* @example
|
|
4889
4906
|
* example.com\\wuying\\users
|
|
@@ -14571,11 +14588,17 @@ export declare class ListUserAdOrganizationUnitsResponseBodyOUNames extends $dar
|
|
|
14571
14588
|
}
|
|
14572
14589
|
export declare class ModifyCenterPolicyRequestAuthorizeAccessPolicyRule extends $dara.Model {
|
|
14573
14590
|
/**
|
|
14591
|
+
* @remarks
|
|
14592
|
+
* The client CIDR block from which end users can connect to cloud computers. Specify an IPv4 CIDR block.
|
|
14593
|
+
*
|
|
14574
14594
|
* @example
|
|
14575
14595
|
* 47.100.XX.XX/16
|
|
14576
14596
|
*/
|
|
14577
14597
|
cidrIp?: string;
|
|
14578
14598
|
/**
|
|
14599
|
+
* @remarks
|
|
14600
|
+
* The description of the client IP address whitelist.
|
|
14601
|
+
*
|
|
14579
14602
|
* @example
|
|
14580
14603
|
* test
|
|
14581
14604
|
*/
|
|
@@ -14593,36 +14616,82 @@ export declare class ModifyCenterPolicyRequestAuthorizeAccessPolicyRule extends
|
|
|
14593
14616
|
}
|
|
14594
14617
|
export declare class ModifyCenterPolicyRequestAuthorizeSecurityPolicyRule extends $dara.Model {
|
|
14595
14618
|
/**
|
|
14619
|
+
* @remarks
|
|
14620
|
+
* The object of the security group rule. Specify an IPv4 CIDR block.
|
|
14621
|
+
*
|
|
14596
14622
|
* @example
|
|
14597
14623
|
* 47.100.XX.XX/16
|
|
14598
14624
|
*/
|
|
14599
14625
|
cidrIp?: string;
|
|
14600
14626
|
/**
|
|
14627
|
+
* @remarks
|
|
14628
|
+
* The description of the security group rule.
|
|
14629
|
+
*
|
|
14601
14630
|
* @example
|
|
14602
14631
|
* test
|
|
14603
14632
|
*/
|
|
14604
14633
|
description?: string;
|
|
14605
14634
|
/**
|
|
14635
|
+
* @remarks
|
|
14636
|
+
* The protocol type of the security group rule.
|
|
14637
|
+
*
|
|
14638
|
+
* Valid values:
|
|
14639
|
+
*
|
|
14640
|
+
* * TCP: the Transmission Control Protocol (TCP) protocol.
|
|
14641
|
+
* * UDP: the User Datagram Protocol (UDP) protocol.
|
|
14642
|
+
* * ALL: any type of protocol.
|
|
14643
|
+
* * GRE: the Generic Routing Encapsulation (GRE) protocol.
|
|
14644
|
+
* * ICMP: the Internet Control Message Protocol (ICMP) for (IPv4).
|
|
14645
|
+
*
|
|
14606
14646
|
* @example
|
|
14607
14647
|
* TCP
|
|
14608
14648
|
*/
|
|
14609
14649
|
ipProtocol?: string;
|
|
14610
14650
|
/**
|
|
14651
|
+
* @remarks
|
|
14652
|
+
* The authorization policy of the security group rule.
|
|
14653
|
+
*
|
|
14654
|
+
* Valid values:
|
|
14655
|
+
*
|
|
14656
|
+
* * drop: denies all access requests. If no \\"\\"access denied\\"\\" messages are returned, the requests either timed out or failed.
|
|
14657
|
+
* * accept (default): accepts all requests.
|
|
14658
|
+
*
|
|
14611
14659
|
* @example
|
|
14612
14660
|
* accept
|
|
14613
14661
|
*/
|
|
14614
14662
|
policy?: string;
|
|
14615
14663
|
/**
|
|
14664
|
+
* @remarks
|
|
14665
|
+
* The port range of the security group rule. The value range of this parameter varies based on the value of IpProtocol.
|
|
14666
|
+
*
|
|
14667
|
+
* * 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.
|
|
14668
|
+
* * If IpProtocol is set to ICMP, set the value to -1/-1.
|
|
14669
|
+
* * If IpProtocol is set to GRE, set the value to -1/-1.
|
|
14670
|
+
* * If IpProtocol is set to ALL, set the value to -1/-1.
|
|
14671
|
+
*
|
|
14672
|
+
* For more information about the common ports, see [Common ports](https://help.aliyun.com/document_detail/40724.html).
|
|
14673
|
+
*
|
|
14616
14674
|
* @example
|
|
14617
14675
|
* 22/22
|
|
14618
14676
|
*/
|
|
14619
14677
|
portRange?: string;
|
|
14620
14678
|
/**
|
|
14679
|
+
* @remarks
|
|
14680
|
+
* The priority of the security group rule. A smaller value specifies a higher priority. Valid values: 1 to 60. Default value: 1.
|
|
14681
|
+
*
|
|
14621
14682
|
* @example
|
|
14622
14683
|
* 1
|
|
14623
14684
|
*/
|
|
14624
14685
|
priority?: string;
|
|
14625
14686
|
/**
|
|
14687
|
+
* @remarks
|
|
14688
|
+
* The direction of the security group rule.
|
|
14689
|
+
*
|
|
14690
|
+
* Valid values:
|
|
14691
|
+
*
|
|
14692
|
+
* * outflow: outbound.
|
|
14693
|
+
* * inflow: inbound.
|
|
14694
|
+
*
|
|
14626
14695
|
* @example
|
|
14627
14696
|
* inflow
|
|
14628
14697
|
*/
|
|
@@ -14640,11 +14709,32 @@ export declare class ModifyCenterPolicyRequestAuthorizeSecurityPolicyRule extend
|
|
|
14640
14709
|
}
|
|
14641
14710
|
export declare class ModifyCenterPolicyRequestClientType extends $dara.Model {
|
|
14642
14711
|
/**
|
|
14712
|
+
* @remarks
|
|
14713
|
+
* The type of the Alibaba Cloud Workspace client that end users can use to connect to cloud computers.
|
|
14714
|
+
*
|
|
14715
|
+
* Valid values:
|
|
14716
|
+
*
|
|
14717
|
+
* * html5: the web client.
|
|
14718
|
+
* * android: the Android client.
|
|
14719
|
+
* * ios: the iOS client.
|
|
14720
|
+
* * windows: the Windows client.
|
|
14721
|
+
* * macos: the macOS client.
|
|
14722
|
+
*
|
|
14643
14723
|
* @example
|
|
14644
14724
|
* android
|
|
14645
14725
|
*/
|
|
14646
14726
|
clientType?: string;
|
|
14647
14727
|
/**
|
|
14728
|
+
* @remarks
|
|
14729
|
+
* Specifies whether end users can use the specified type of Alibaba Cloud Workspace client to connect to cloud computers.
|
|
14730
|
+
*
|
|
14731
|
+
* > If you don\\"t specify `ClientType`, any client can be used to connect to cloud computers.
|
|
14732
|
+
*
|
|
14733
|
+
* Valid values:
|
|
14734
|
+
*
|
|
14735
|
+
* * off: End users cannot use the specified type of Alibaba Cloud Workspace client to connect to cloud computers.
|
|
14736
|
+
* * on: End users can use the specified type of Alibaba Cloud Workspace client to connect to cloud computers.
|
|
14737
|
+
*
|
|
14648
14738
|
* @example
|
|
14649
14739
|
* off
|
|
14650
14740
|
*/
|
|
@@ -14662,11 +14752,31 @@ export declare class ModifyCenterPolicyRequestClientType extends $dara.Model {
|
|
|
14662
14752
|
}
|
|
14663
14753
|
export declare class ModifyCenterPolicyRequestDeviceRedirects extends $dara.Model {
|
|
14664
14754
|
/**
|
|
14755
|
+
* @remarks
|
|
14756
|
+
* The peripheral type.
|
|
14757
|
+
*
|
|
14758
|
+
* Valid values:
|
|
14759
|
+
*
|
|
14760
|
+
* * printer
|
|
14761
|
+
* * scanner
|
|
14762
|
+
* * serialport
|
|
14763
|
+
* * camera
|
|
14764
|
+
* * adb
|
|
14765
|
+
*
|
|
14665
14766
|
* @example
|
|
14666
14767
|
* camera
|
|
14667
14768
|
*/
|
|
14668
14769
|
deviceType?: string;
|
|
14669
14770
|
/**
|
|
14771
|
+
* @remarks
|
|
14772
|
+
* The redirection type.
|
|
14773
|
+
*
|
|
14774
|
+
* Valid values:
|
|
14775
|
+
*
|
|
14776
|
+
* * deviceRedirect: enables device redirection.
|
|
14777
|
+
* * usbRedirect: enables USB redirection.
|
|
14778
|
+
* * off: disables any type of redirection.
|
|
14779
|
+
*
|
|
14670
14780
|
* @example
|
|
14671
14781
|
* deviceRedirect
|
|
14672
14782
|
*/
|
|
@@ -14684,31 +14794,67 @@ export declare class ModifyCenterPolicyRequestDeviceRedirects extends $dara.Mode
|
|
|
14684
14794
|
}
|
|
14685
14795
|
export declare class ModifyCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
14686
14796
|
/**
|
|
14797
|
+
* @remarks
|
|
14798
|
+
* The device name.
|
|
14799
|
+
*
|
|
14687
14800
|
* @example
|
|
14688
14801
|
* sandisk
|
|
14689
14802
|
*/
|
|
14690
14803
|
deviceName?: string;
|
|
14691
14804
|
/**
|
|
14805
|
+
* @remarks
|
|
14806
|
+
* The product ID (PID).
|
|
14807
|
+
*
|
|
14692
14808
|
* @example
|
|
14693
14809
|
* 0x55b1
|
|
14694
14810
|
*/
|
|
14695
14811
|
devicePid?: string;
|
|
14696
14812
|
/**
|
|
14813
|
+
* @remarks
|
|
14814
|
+
* The peripheral type.
|
|
14815
|
+
*
|
|
14816
|
+
* Valid values:
|
|
14817
|
+
*
|
|
14818
|
+
* * usbKey: U keys.
|
|
14819
|
+
* * other: other peripheral devices.
|
|
14820
|
+
* * graphicsTablet: graphics tablets.
|
|
14821
|
+
* * cardReader: card readers.
|
|
14822
|
+
* * printer: printers.
|
|
14823
|
+
* * scanner: scanners.
|
|
14824
|
+
* * storage: storage devices.
|
|
14825
|
+
* * camera: cameras.
|
|
14826
|
+
* * networkInterfaceCard: NIC devices.
|
|
14827
|
+
*
|
|
14697
14828
|
* @example
|
|
14698
14829
|
* storage
|
|
14699
14830
|
*/
|
|
14700
14831
|
deviceType?: string;
|
|
14701
14832
|
/**
|
|
14833
|
+
* @remarks
|
|
14834
|
+
* The vendor ID (VID). For more information, see [Valid USB VIDs](https://www.usb.org/sites/default/files/vendor_ids032322.pdf_1.pdf).
|
|
14835
|
+
*
|
|
14702
14836
|
* @example
|
|
14703
14837
|
* 0x0781
|
|
14704
14838
|
*/
|
|
14705
14839
|
deviceVid?: string;
|
|
14706
14840
|
/**
|
|
14841
|
+
* @remarks
|
|
14842
|
+
* The link optimization command.
|
|
14843
|
+
*
|
|
14707
14844
|
* @example
|
|
14708
14845
|
* 2:0
|
|
14709
14846
|
*/
|
|
14710
14847
|
optCommand?: string;
|
|
14711
14848
|
/**
|
|
14849
|
+
* @remarks
|
|
14850
|
+
* The redirection type.
|
|
14851
|
+
*
|
|
14852
|
+
* Valid values:
|
|
14853
|
+
*
|
|
14854
|
+
* * deviceRedirect: enables device redirection.
|
|
14855
|
+
* * usbRedirect: enables USB redirection.
|
|
14856
|
+
* * off: disables any type of redirection.
|
|
14857
|
+
*
|
|
14712
14858
|
* @example
|
|
14713
14859
|
* usbRedirect
|
|
14714
14860
|
*/
|
|
@@ -14725,13 +14871,28 @@ export declare class ModifyCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
14725
14871
|
});
|
|
14726
14872
|
}
|
|
14727
14873
|
export declare class ModifyCenterPolicyRequestDomainResolveRule extends $dara.Model {
|
|
14874
|
+
/**
|
|
14875
|
+
* @remarks
|
|
14876
|
+
* The policy description.
|
|
14877
|
+
*/
|
|
14728
14878
|
description?: string;
|
|
14729
14879
|
/**
|
|
14880
|
+
* @remarks
|
|
14881
|
+
* The domain name.
|
|
14882
|
+
*
|
|
14730
14883
|
* @example
|
|
14731
14884
|
* *.example.com
|
|
14732
14885
|
*/
|
|
14733
14886
|
domain?: string;
|
|
14734
14887
|
/**
|
|
14888
|
+
* @remarks
|
|
14889
|
+
* Specifies whether to allow the domain name resolution rule.
|
|
14890
|
+
*
|
|
14891
|
+
* Valid values:
|
|
14892
|
+
*
|
|
14893
|
+
* * allow
|
|
14894
|
+
* * block
|
|
14895
|
+
*
|
|
14735
14896
|
* @example
|
|
14736
14897
|
* allow
|
|
14737
14898
|
*/
|
|
@@ -14749,16 +14910,30 @@ export declare class ModifyCenterPolicyRequestDomainResolveRule extends $dara.Mo
|
|
|
14749
14910
|
}
|
|
14750
14911
|
export declare class ModifyCenterPolicyRequestNetRedirectRule extends $dara.Model {
|
|
14751
14912
|
/**
|
|
14913
|
+
* @remarks
|
|
14914
|
+
* The domain name.
|
|
14915
|
+
*
|
|
14752
14916
|
* @example
|
|
14753
14917
|
* *.taobao.com
|
|
14754
14918
|
*/
|
|
14755
14919
|
domain?: string;
|
|
14756
14920
|
/**
|
|
14921
|
+
* @remarks
|
|
14922
|
+
* The redirection policy.
|
|
14923
|
+
*
|
|
14757
14924
|
* @example
|
|
14758
14925
|
* Allow
|
|
14759
14926
|
*/
|
|
14760
14927
|
policy?: string;
|
|
14761
14928
|
/**
|
|
14929
|
+
* @remarks
|
|
14930
|
+
* The rule type.
|
|
14931
|
+
*
|
|
14932
|
+
* Valid values:
|
|
14933
|
+
*
|
|
14934
|
+
* * prc: process.
|
|
14935
|
+
* * domain: domain name.
|
|
14936
|
+
*
|
|
14762
14937
|
* @example
|
|
14763
14938
|
* domain
|
|
14764
14939
|
*/
|
|
@@ -14776,11 +14951,17 @@ export declare class ModifyCenterPolicyRequestNetRedirectRule extends $dara.Mode
|
|
|
14776
14951
|
}
|
|
14777
14952
|
export declare class ModifyCenterPolicyRequestRevokeAccessPolicyRule extends $dara.Model {
|
|
14778
14953
|
/**
|
|
14954
|
+
* @remarks
|
|
14955
|
+
* The client CIDR block that you want to delete. Specify an IPv4 CIDR block.
|
|
14956
|
+
*
|
|
14779
14957
|
* @example
|
|
14780
14958
|
* 47.100.XX.XX/16
|
|
14781
14959
|
*/
|
|
14782
14960
|
cidrIp?: string;
|
|
14783
14961
|
/**
|
|
14962
|
+
* @remarks
|
|
14963
|
+
* The description of the client IP address whitelist that you want to delete.
|
|
14964
|
+
*
|
|
14784
14965
|
* @example
|
|
14785
14966
|
* test
|
|
14786
14967
|
*/
|
|
@@ -14798,36 +14979,82 @@ export declare class ModifyCenterPolicyRequestRevokeAccessPolicyRule extends $da
|
|
|
14798
14979
|
}
|
|
14799
14980
|
export declare class ModifyCenterPolicyRequestRevokeSecurityPolicyRule extends $dara.Model {
|
|
14800
14981
|
/**
|
|
14982
|
+
* @remarks
|
|
14983
|
+
* The object of the security group rule that you want to delete. Specify an IPv4 CIDR block.
|
|
14984
|
+
*
|
|
14801
14985
|
* @example
|
|
14802
14986
|
* 47.100.XX.XX/16
|
|
14803
14987
|
*/
|
|
14804
14988
|
cidrIp?: string;
|
|
14805
14989
|
/**
|
|
14990
|
+
* @remarks
|
|
14991
|
+
* The description of the security group rule that you want to delete.
|
|
14992
|
+
*
|
|
14806
14993
|
* @example
|
|
14807
14994
|
* test
|
|
14808
14995
|
*/
|
|
14809
14996
|
description?: string;
|
|
14810
14997
|
/**
|
|
14998
|
+
* @remarks
|
|
14999
|
+
* The protocol type of the security group rule that you want to delete.
|
|
15000
|
+
*
|
|
15001
|
+
* Valid values:
|
|
15002
|
+
*
|
|
15003
|
+
* * TCP: the TCP protocol.
|
|
15004
|
+
* * UDP: the UDP protocol.
|
|
15005
|
+
* * ALL: any type of protocol.
|
|
15006
|
+
* * GRE: the GRE protocol.
|
|
15007
|
+
* * ICMP: the ICMP for IPv4.
|
|
15008
|
+
*
|
|
14811
15009
|
* @example
|
|
14812
15010
|
* TCP
|
|
14813
15011
|
*/
|
|
14814
15012
|
ipProtocol?: string;
|
|
14815
15013
|
/**
|
|
15014
|
+
* @remarks
|
|
15015
|
+
* The authorization of the security group rule that you want to delete.
|
|
15016
|
+
*
|
|
15017
|
+
* Valid values:
|
|
15018
|
+
*
|
|
15019
|
+
* * drop: denies all access requests. If no \\"\\"access denied\\"\\" messages are returned, the requests either timed out or failed.
|
|
15020
|
+
* * accept (default): accepts all requests.
|
|
15021
|
+
*
|
|
14816
15022
|
* @example
|
|
14817
15023
|
* accept
|
|
14818
15024
|
*/
|
|
14819
15025
|
policy?: string;
|
|
14820
15026
|
/**
|
|
15027
|
+
* @remarks
|
|
15028
|
+
* The port range of the security group rule that you want to delete. The value range of this parameter varies based on the value of IpProtocol.
|
|
15029
|
+
*
|
|
15030
|
+
* * 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.
|
|
15031
|
+
* * If IpProtocol is set to ICMP, set the value to -1/-1.
|
|
15032
|
+
* * If IpProtocol is set to GRE, set the value to -1/-1.
|
|
15033
|
+
* * If IpProtocol is set to ALL, set the value to -1/-1.
|
|
15034
|
+
*
|
|
15035
|
+
* For more information about the common ports, see [Common ports](https://help.aliyun.com/document_detail/40724.html).
|
|
15036
|
+
*
|
|
14821
15037
|
* @example
|
|
14822
15038
|
* 22/22
|
|
14823
15039
|
*/
|
|
14824
15040
|
portRange?: string;
|
|
14825
15041
|
/**
|
|
15042
|
+
* @remarks
|
|
15043
|
+
* The priority of the security group rule that you want to delete. A smaller value specifies a higher priority. Valid values: 1 to 60. Default value: 1.
|
|
15044
|
+
*
|
|
14826
15045
|
* @example
|
|
14827
15046
|
* 1
|
|
14828
15047
|
*/
|
|
14829
15048
|
priority?: string;
|
|
14830
15049
|
/**
|
|
15050
|
+
* @remarks
|
|
15051
|
+
* The direction of the security group rule that you want to delete.
|
|
15052
|
+
*
|
|
15053
|
+
* Valid values:
|
|
15054
|
+
*
|
|
15055
|
+
* * outflow: outbound.
|
|
15056
|
+
* * inflow: inbound.
|
|
15057
|
+
*
|
|
14831
15058
|
* @example
|
|
14832
15059
|
* outflow
|
|
14833
15060
|
*/
|
|
@@ -14844,23 +15071,48 @@ export declare class ModifyCenterPolicyRequestRevokeSecurityPolicyRule extends $
|
|
|
14844
15071
|
});
|
|
14845
15072
|
}
|
|
14846
15073
|
export declare class ModifyCenterPolicyRequestUsbSupplyRedirectRule extends $dara.Model {
|
|
15074
|
+
/**
|
|
15075
|
+
* @remarks
|
|
15076
|
+
* The rule description.
|
|
15077
|
+
*/
|
|
14847
15078
|
description?: string;
|
|
14848
15079
|
/**
|
|
15080
|
+
* @remarks
|
|
15081
|
+
* The product ID (PID).
|
|
15082
|
+
*
|
|
14849
15083
|
* @example
|
|
14850
15084
|
* 08**
|
|
14851
15085
|
*/
|
|
14852
15086
|
productId?: string;
|
|
14853
15087
|
/**
|
|
15088
|
+
* @remarks
|
|
15089
|
+
* Specifies whether to allow USB redirection.
|
|
15090
|
+
*
|
|
15091
|
+
* Valid values:
|
|
15092
|
+
*
|
|
15093
|
+
* * 1: allows USB redirection.
|
|
15094
|
+
* * 2: forbids USB redirection.
|
|
15095
|
+
*
|
|
14854
15096
|
* @example
|
|
14855
15097
|
* 1
|
|
14856
15098
|
*/
|
|
14857
15099
|
usbRedirectType?: string;
|
|
14858
15100
|
/**
|
|
15101
|
+
* @remarks
|
|
15102
|
+
* The type of the USB redirection rule.
|
|
15103
|
+
*
|
|
15104
|
+
* Valid values:
|
|
15105
|
+
*
|
|
15106
|
+
* * 1: enables USB redirection based on device manufacturers.
|
|
15107
|
+
*
|
|
14859
15108
|
* @example
|
|
14860
15109
|
* 1
|
|
14861
15110
|
*/
|
|
14862
15111
|
usbRuleType?: string;
|
|
14863
15112
|
/**
|
|
15113
|
+
* @remarks
|
|
15114
|
+
* 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).
|
|
15115
|
+
*
|
|
14864
15116
|
* @example
|
|
14865
15117
|
* 04**
|
|
14866
15118
|
*/
|
|
@@ -27774,6 +28026,8 @@ export declare class DescribeClientEventsRequest extends $dara.Model {
|
|
|
27774
28026
|
* The array of event types that you want to query. You can specify multiple event types. The response contains all or specified types of events.
|
|
27775
28027
|
*/
|
|
27776
28028
|
eventTypes?: string[];
|
|
28029
|
+
fillHardwareInfo?: boolean;
|
|
28030
|
+
language?: string;
|
|
27777
28031
|
/**
|
|
27778
28032
|
* @remarks
|
|
27779
28033
|
* The number of entries per page.\\
|
|
@@ -28621,7 +28875,7 @@ export declare class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
28621
28875
|
desktopGroupId?: string;
|
|
28622
28876
|
/**
|
|
28623
28877
|
* @remarks
|
|
28624
|
-
* The IDs of the cloud computer
|
|
28878
|
+
* The IDs of the cloud computer shares.
|
|
28625
28879
|
*/
|
|
28626
28880
|
desktopGroupIds?: string[];
|
|
28627
28881
|
/**
|
|
@@ -28660,12 +28914,12 @@ export declare class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
28660
28914
|
maxResults?: number;
|
|
28661
28915
|
/**
|
|
28662
28916
|
* @remarks
|
|
28663
|
-
* Specifies whether the
|
|
28917
|
+
* Specifies whether the cloud computer share is a many-to-many share.
|
|
28664
28918
|
*
|
|
28665
28919
|
* Valid values:
|
|
28666
28920
|
*
|
|
28667
|
-
*
|
|
28668
|
-
*
|
|
28921
|
+
* * true: The cloud computer share is a many-to-many share.
|
|
28922
|
+
* * false: The cloud computer share is a one-to-many share.
|
|
28669
28923
|
*
|
|
28670
28924
|
* @example
|
|
28671
28925
|
* true
|
|
@@ -39175,19 +39429,53 @@ export declare class ModifyCdsFileShareLinkResponse extends $dara.Model {
|
|
|
39175
39429
|
}
|
|
39176
39430
|
export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
39177
39431
|
/**
|
|
39432
|
+
* @remarks
|
|
39433
|
+
* Specifies whether to grant the admin permissions to end users.
|
|
39434
|
+
*
|
|
39435
|
+
* > This parameter is in private preview and only available to specific users.
|
|
39436
|
+
*
|
|
39437
|
+
* Valid values:
|
|
39438
|
+
*
|
|
39439
|
+
* * allow: forcibly grants admin permissions.
|
|
39440
|
+
* * deny: forcibly rejects granting admin permissions.
|
|
39441
|
+
* * inherited: inherits the admin permissions from the user dimension.
|
|
39442
|
+
*
|
|
39178
39443
|
* @example
|
|
39179
39444
|
* deny
|
|
39180
39445
|
*/
|
|
39181
39446
|
adminAccess?: string;
|
|
39182
39447
|
/**
|
|
39448
|
+
* @remarks
|
|
39449
|
+
* The anti-screenshot policy.
|
|
39450
|
+
*
|
|
39451
|
+
* Valid values:
|
|
39452
|
+
*
|
|
39453
|
+
* * off (default): disables anti-screenshot.
|
|
39454
|
+
* * on: enables anti-screenshot.
|
|
39455
|
+
*
|
|
39183
39456
|
* @example
|
|
39184
39457
|
* on
|
|
39185
39458
|
*/
|
|
39186
39459
|
appContentProtection?: string;
|
|
39460
|
+
/**
|
|
39461
|
+
* @remarks
|
|
39462
|
+
* The client IP address whitelists that you want to add.
|
|
39463
|
+
*/
|
|
39187
39464
|
authorizeAccessPolicyRule?: ModifyCenterPolicyRequestAuthorizeAccessPolicyRule[];
|
|
39465
|
+
/**
|
|
39466
|
+
* @remarks
|
|
39467
|
+
* The security group rules.
|
|
39468
|
+
*/
|
|
39188
39469
|
authorizeSecurityPolicyRule?: ModifyCenterPolicyRequestAuthorizeSecurityPolicyRule[];
|
|
39189
39470
|
/**
|
|
39190
39471
|
* @remarks
|
|
39472
|
+
* The business type.
|
|
39473
|
+
*
|
|
39474
|
+
* Valid values:
|
|
39475
|
+
*
|
|
39476
|
+
* * 1: public cloud.
|
|
39477
|
+
* * 8: commercial edition.
|
|
39478
|
+
*
|
|
39191
39479
|
* This parameter is required.
|
|
39192
39480
|
*
|
|
39193
39481
|
* @example
|
|
@@ -39195,179 +39483,439 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
39195
39483
|
*/
|
|
39196
39484
|
businessType?: number;
|
|
39197
39485
|
/**
|
|
39486
|
+
* @remarks
|
|
39487
|
+
* The on-premises camera redirection policy. This parameter only applies if DeviceRedirects does not include an on-premises camera redirection policy.
|
|
39488
|
+
*
|
|
39489
|
+
* Valid values:
|
|
39490
|
+
*
|
|
39491
|
+
* * deviceRedirect: enables device redirection.
|
|
39492
|
+
* * off: disables device redirection.
|
|
39493
|
+
*
|
|
39198
39494
|
* @example
|
|
39199
39495
|
* on
|
|
39200
39496
|
*/
|
|
39201
39497
|
cameraRedirect?: string;
|
|
39498
|
+
/**
|
|
39499
|
+
* @remarks
|
|
39500
|
+
* The types of Alibaba Cloud Workspace clients that end users can use to connect to cloud computers.
|
|
39501
|
+
*/
|
|
39202
39502
|
clientType?: ModifyCenterPolicyRequestClientType[];
|
|
39203
39503
|
/**
|
|
39504
|
+
* @remarks
|
|
39505
|
+
* The read/write permissions on the clipboard.
|
|
39506
|
+
*
|
|
39507
|
+
* Valid values:
|
|
39508
|
+
*
|
|
39509
|
+
* * read: specifies one-way transfer. You can copy files only from on-premises devices to cloud computers.
|
|
39510
|
+
* * readwrite: specifies two-way transfer. You can copy files between on-premises devices and cloud computers.
|
|
39511
|
+
* * write: specifies one-way transfer. You can only copy files from cloud computers to on-premises devices.
|
|
39512
|
+
* * off (default): disables all transfers, both one-way and two-way. Files cannot be copied directly between on-premises devices and cloud computers.
|
|
39513
|
+
*
|
|
39204
39514
|
* @example
|
|
39205
39515
|
* off
|
|
39206
39516
|
*/
|
|
39207
39517
|
clipboard?: string;
|
|
39208
39518
|
/**
|
|
39519
|
+
* @remarks
|
|
39520
|
+
* Specifies whether to enable color enhancement for design and 3D applications.
|
|
39521
|
+
*
|
|
39522
|
+
* Valid values:
|
|
39523
|
+
*
|
|
39524
|
+
* * off: doesn\\"t enable color enhancement for design and 3D applications.
|
|
39525
|
+
* * on: enables color enhancement for design and 3D applications.
|
|
39526
|
+
*
|
|
39209
39527
|
* @example
|
|
39210
39528
|
* off
|
|
39211
39529
|
*/
|
|
39212
39530
|
colorEnhancement?: string;
|
|
39213
39531
|
/**
|
|
39532
|
+
* @remarks
|
|
39533
|
+
* The CPU underclocking duration. Valid values: 30 to 120. Unit: seconds.
|
|
39534
|
+
*
|
|
39214
39535
|
* @example
|
|
39215
39536
|
* 50
|
|
39216
39537
|
*/
|
|
39217
39538
|
cpuDownGradeDuration?: number;
|
|
39539
|
+
/**
|
|
39540
|
+
* @remarks
|
|
39541
|
+
* The CPU processors.
|
|
39542
|
+
*/
|
|
39218
39543
|
cpuProcessors?: string[];
|
|
39219
39544
|
/**
|
|
39545
|
+
* @remarks
|
|
39546
|
+
* The CPU spike protection policy.
|
|
39547
|
+
*
|
|
39548
|
+
* Valid values:
|
|
39549
|
+
*
|
|
39550
|
+
* * off: disables CPU spike protection.
|
|
39551
|
+
* * on: enables CPU spike protection.
|
|
39552
|
+
*
|
|
39220
39553
|
* @example
|
|
39221
39554
|
* off
|
|
39222
39555
|
*/
|
|
39223
39556
|
cpuProtectedMode?: string;
|
|
39224
39557
|
/**
|
|
39558
|
+
* @remarks
|
|
39559
|
+
* The overall CPU usage. Valid values: 70 to 90. Unit: percentage (%).
|
|
39560
|
+
*
|
|
39225
39561
|
* @example
|
|
39226
39562
|
* 70
|
|
39227
39563
|
*/
|
|
39228
39564
|
cpuRateLimit?: number;
|
|
39229
39565
|
/**
|
|
39566
|
+
* @remarks
|
|
39567
|
+
* The overall CPU sampling duration. Valid values: 10 to 60. Unit: seconds.
|
|
39568
|
+
*
|
|
39230
39569
|
* @example
|
|
39231
39570
|
* 30
|
|
39232
39571
|
*/
|
|
39233
39572
|
cpuSampleDuration?: number;
|
|
39234
39573
|
/**
|
|
39574
|
+
* @remarks
|
|
39575
|
+
* The single-CPU usage. Valid values: 70 to 100. Unit: %.
|
|
39576
|
+
*
|
|
39235
39577
|
* @example
|
|
39236
39578
|
* 80
|
|
39237
39579
|
*/
|
|
39238
39580
|
cpuSingleRateLimit?: number;
|
|
39239
39581
|
/**
|
|
39582
|
+
* @remarks
|
|
39583
|
+
* Specifies whether to display the peripheral connection prompt.
|
|
39584
|
+
*
|
|
39585
|
+
* Valid values:
|
|
39586
|
+
*
|
|
39587
|
+
* * off: doesn\\"t display the peripheral connection prompt.
|
|
39588
|
+
* * on: displays the peripheral connection prompt.
|
|
39589
|
+
*
|
|
39240
39590
|
* @example
|
|
39241
39591
|
* off
|
|
39242
39592
|
*/
|
|
39243
39593
|
deviceConnectHint?: string;
|
|
39594
|
+
/**
|
|
39595
|
+
* @remarks
|
|
39596
|
+
* The device redirection rules.
|
|
39597
|
+
*/
|
|
39244
39598
|
deviceRedirects?: ModifyCenterPolicyRequestDeviceRedirects[];
|
|
39599
|
+
/**
|
|
39600
|
+
* @remarks
|
|
39601
|
+
* The custom peripheral rules.
|
|
39602
|
+
*/
|
|
39245
39603
|
deviceRules?: ModifyCenterPolicyRequestDeviceRules[];
|
|
39246
39604
|
/**
|
|
39605
|
+
* @remarks
|
|
39606
|
+
* Specifies whether to retain the session upon disconnection.
|
|
39607
|
+
*
|
|
39608
|
+
* > This parameter applies only to cloud application policies.
|
|
39609
|
+
*
|
|
39610
|
+
* Valid values:
|
|
39611
|
+
*
|
|
39612
|
+
* * customTime: retains the session for a specified time period.
|
|
39613
|
+
* * persistent: retains the session permanently.
|
|
39614
|
+
*
|
|
39247
39615
|
* @example
|
|
39248
39616
|
* customTime
|
|
39249
39617
|
*/
|
|
39250
39618
|
disconnectKeepSession?: string;
|
|
39251
39619
|
/**
|
|
39620
|
+
* @remarks
|
|
39621
|
+
* The retention period of the session after disconnection. Valid values: 30 to 7200. Unit: seconds.
|
|
39622
|
+
*
|
|
39623
|
+
* > This parameter applies only to cloud application policies.
|
|
39624
|
+
*
|
|
39252
39625
|
* @example
|
|
39253
39626
|
* 120
|
|
39254
39627
|
*/
|
|
39255
39628
|
disconnectKeepSessionTime?: number;
|
|
39256
39629
|
/**
|
|
39630
|
+
* @remarks
|
|
39631
|
+
* The display mode.
|
|
39632
|
+
*
|
|
39633
|
+
* Valid values:
|
|
39634
|
+
*
|
|
39635
|
+
* * clientCustom: suitable for user-defined scenarios.
|
|
39636
|
+
* * adminOffice: suitable for daily office scenarios.
|
|
39637
|
+
* * adminDesign: suitable for design and 3D application scenarios.
|
|
39638
|
+
* * adminCustom: suitable for admin-customized scenarios.
|
|
39639
|
+
*
|
|
39257
39640
|
* @example
|
|
39258
39641
|
* clientCustom
|
|
39259
39642
|
*/
|
|
39260
39643
|
displayMode?: string;
|
|
39644
|
+
/**
|
|
39645
|
+
* @remarks
|
|
39646
|
+
* The domain resolution policies.
|
|
39647
|
+
*/
|
|
39261
39648
|
domainResolveRule?: ModifyCenterPolicyRequestDomainResolveRule[];
|
|
39262
39649
|
/**
|
|
39650
|
+
* @remarks
|
|
39651
|
+
* Specifies whether to enforce the domain resolution policy.
|
|
39652
|
+
*
|
|
39653
|
+
* Valid values:
|
|
39654
|
+
*
|
|
39655
|
+
* * off: disables the domain resolution policy.
|
|
39656
|
+
* * on: enables the domain resolution policy.
|
|
39657
|
+
*
|
|
39263
39658
|
* @example
|
|
39264
39659
|
* off
|
|
39265
39660
|
*/
|
|
39266
39661
|
domainResolveRuleType?: string;
|
|
39267
39662
|
/**
|
|
39663
|
+
* @remarks
|
|
39664
|
+
* Specifies whether to enforce session bandwidth limit.
|
|
39665
|
+
*
|
|
39666
|
+
* Valid values:
|
|
39667
|
+
*
|
|
39668
|
+
* * off: doesn\\"t enforce session bandwidth limit.
|
|
39669
|
+
* * on: enforces session bandwidth limit.
|
|
39670
|
+
*
|
|
39268
39671
|
* @example
|
|
39269
39672
|
* off
|
|
39270
39673
|
*/
|
|
39271
39674
|
enableSessionRateLimiting?: string;
|
|
39272
39675
|
/**
|
|
39676
|
+
* @remarks
|
|
39677
|
+
* Specifies whether to enable end users to request administrator help.
|
|
39678
|
+
*
|
|
39679
|
+
* Valid values:
|
|
39680
|
+
*
|
|
39681
|
+
* * off: disables end users to request administrator help.
|
|
39682
|
+
* * on: enables end users to request administrator help.
|
|
39683
|
+
*
|
|
39273
39684
|
* @example
|
|
39274
39685
|
* off
|
|
39275
39686
|
*/
|
|
39276
39687
|
endUserApplyAdminCoordinate?: string;
|
|
39277
39688
|
/**
|
|
39689
|
+
* @remarks
|
|
39690
|
+
* Specifies whether end users in the same workspace can share cloud computers.
|
|
39691
|
+
*
|
|
39692
|
+
* Valid values:
|
|
39693
|
+
*
|
|
39694
|
+
* * off: End users in the same workspace cannot share cloud computers.
|
|
39695
|
+
* * on: End users in the same workspace can share cloud computers.
|
|
39696
|
+
*
|
|
39278
39697
|
* @example
|
|
39279
39698
|
* off
|
|
39280
39699
|
*/
|
|
39281
39700
|
endUserGroupCoordinate?: string;
|
|
39282
39701
|
/**
|
|
39702
|
+
* @remarks
|
|
39703
|
+
* Specifies whether to enable file transfer.
|
|
39704
|
+
*
|
|
39705
|
+
* Valid values:
|
|
39706
|
+
*
|
|
39707
|
+
* * off: enables file transfer.
|
|
39708
|
+
* * on: disables file transfer.
|
|
39709
|
+
*
|
|
39283
39710
|
* @example
|
|
39284
39711
|
* off
|
|
39285
39712
|
*/
|
|
39286
39713
|
fileMigrate?: string;
|
|
39287
39714
|
/**
|
|
39715
|
+
* @remarks
|
|
39716
|
+
* Specifies whether to enable Image Quality Control. This feature is highly recommended for professional design scenarios where performance and user experience are critical.
|
|
39717
|
+
*
|
|
39718
|
+
* Valid values:
|
|
39719
|
+
*
|
|
39720
|
+
* * off
|
|
39721
|
+
* * on
|
|
39722
|
+
*
|
|
39288
39723
|
* @example
|
|
39289
39724
|
* off
|
|
39290
39725
|
*/
|
|
39291
39726
|
gpuAcceleration?: string;
|
|
39292
39727
|
/**
|
|
39728
|
+
* @remarks
|
|
39729
|
+
* The file transfer policy on the web client.
|
|
39730
|
+
*
|
|
39731
|
+
* Valid values:
|
|
39732
|
+
*
|
|
39733
|
+
* * all: File upload and download are supported.
|
|
39734
|
+
* * download: Only file download is supported.
|
|
39735
|
+
* * upload: Only file upload is supported.
|
|
39736
|
+
* * off (default): File upload and download are not supported.
|
|
39737
|
+
*
|
|
39293
39738
|
* @example
|
|
39294
39739
|
* off
|
|
39295
39740
|
*/
|
|
39296
39741
|
html5FileTransfer?: string;
|
|
39297
39742
|
/**
|
|
39743
|
+
* @remarks
|
|
39744
|
+
* The network communication protocol.
|
|
39745
|
+
*
|
|
39746
|
+
* Valid values:
|
|
39747
|
+
*
|
|
39748
|
+
* * tcp: TCP is used when UDP/AST is restricted.
|
|
39749
|
+
* * rtc: AST is used for high-frequency audio and video streaming.
|
|
39750
|
+
* * auto: UTO enables automatic switch between AST and UDP modes based on desktop content.
|
|
39751
|
+
* * both: UDP is ideal for office and HD graphic design use.
|
|
39752
|
+
*
|
|
39298
39753
|
* @example
|
|
39299
39754
|
* both
|
|
39300
39755
|
*/
|
|
39301
39756
|
internetCommunicationProtocol?: string;
|
|
39302
39757
|
/**
|
|
39758
|
+
* @remarks
|
|
39759
|
+
* The read/write permissions on the on-premises drive.
|
|
39760
|
+
*
|
|
39761
|
+
* Valid values:
|
|
39762
|
+
*
|
|
39763
|
+
* * read: read-only. Cloud computers support on-premises disk mapping, but only for reading (copying) files—not modifying them.
|
|
39764
|
+
* * readwrite: read and write. Cloud computers support on-premises disk mapping, allowing you to read (copy) and write (modify) on-premises files.
|
|
39765
|
+
* * off (default): none. Cloud computers don\\"t support on-premises disk mapping.
|
|
39766
|
+
*
|
|
39303
39767
|
* @example
|
|
39304
39768
|
* off
|
|
39305
39769
|
*/
|
|
39306
39770
|
localDrive?: string;
|
|
39307
39771
|
/**
|
|
39772
|
+
* @remarks
|
|
39773
|
+
* The maximum duration to retry reconnecting to cloud computers after an unexpected disconnection (non-human causes). Valid values: 30 to 7200. Unit: seconds.
|
|
39774
|
+
*
|
|
39308
39775
|
* @example
|
|
39309
39776
|
* 120
|
|
39310
39777
|
*/
|
|
39311
39778
|
maxReconnectTime?: number;
|
|
39312
39779
|
/**
|
|
39780
|
+
* @remarks
|
|
39781
|
+
* The memory underclocking duration per process. Valid values: 30 to 120. Unit: seconds.
|
|
39782
|
+
*
|
|
39313
39783
|
* @example
|
|
39314
39784
|
* 40
|
|
39315
39785
|
*/
|
|
39316
39786
|
memoryDownGradeDuration?: number;
|
|
39787
|
+
/**
|
|
39788
|
+
* @remarks
|
|
39789
|
+
* The memory processors.
|
|
39790
|
+
*/
|
|
39317
39791
|
memoryProcessors?: string[];
|
|
39318
39792
|
/**
|
|
39793
|
+
* @remarks
|
|
39794
|
+
* The memory spike protection policy.
|
|
39795
|
+
*
|
|
39796
|
+
* Valid values:
|
|
39797
|
+
*
|
|
39798
|
+
* * off: disables memory spike protection.
|
|
39799
|
+
* * on: enables memory spike protection.
|
|
39800
|
+
*
|
|
39319
39801
|
* @example
|
|
39320
39802
|
* off
|
|
39321
39803
|
*/
|
|
39322
39804
|
memoryProtectedMode?: string;
|
|
39323
39805
|
/**
|
|
39806
|
+
* @remarks
|
|
39807
|
+
* The overall memory usage. Valid values: 70 to 90. Unit: %.
|
|
39808
|
+
*
|
|
39324
39809
|
* @example
|
|
39325
39810
|
* 70
|
|
39326
39811
|
*/
|
|
39327
39812
|
memoryRateLimit?: number;
|
|
39328
39813
|
/**
|
|
39814
|
+
* @remarks
|
|
39815
|
+
* The overall memory sampling duration. Valid values: 30 to 60. Unit: seconds.
|
|
39816
|
+
*
|
|
39329
39817
|
* @example
|
|
39330
39818
|
* 40
|
|
39331
39819
|
*/
|
|
39332
39820
|
memorySampleDuration?: number;
|
|
39333
39821
|
/**
|
|
39822
|
+
* @remarks
|
|
39823
|
+
* The memory usage per process. Valid values: 30 to 60. Unit: %.
|
|
39824
|
+
*
|
|
39334
39825
|
* @example
|
|
39335
39826
|
* 40
|
|
39336
39827
|
*/
|
|
39337
39828
|
memorySingleRateLimit?: number;
|
|
39338
39829
|
/**
|
|
39830
|
+
* @remarks
|
|
39831
|
+
* 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).
|
|
39832
|
+
*
|
|
39833
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
39834
|
+
*
|
|
39835
|
+
* Valid values:
|
|
39836
|
+
*
|
|
39837
|
+
* * off: doesn\\"t display the Restart button in the DesktopAssistant menu.
|
|
39838
|
+
* * on: displays the Restart button in the DesktopAssistant menu.
|
|
39839
|
+
*
|
|
39339
39840
|
* @example
|
|
39340
39841
|
* off
|
|
39341
39842
|
*/
|
|
39342
39843
|
mobileRestart?: string;
|
|
39343
39844
|
/**
|
|
39845
|
+
* @remarks
|
|
39846
|
+
* 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).
|
|
39847
|
+
*
|
|
39848
|
+
* > This feature applies to only mobile clients of version 7.4.0 or later.
|
|
39849
|
+
*
|
|
39850
|
+
* Valid values:
|
|
39851
|
+
*
|
|
39852
|
+
* * off: doesn\\"t display the Stop button in the DesktopAssistant menu.
|
|
39853
|
+
* * on: displays the Stop button in the DesktopAssistant menu.
|
|
39854
|
+
*
|
|
39344
39855
|
* @example
|
|
39345
39856
|
* off
|
|
39346
39857
|
*/
|
|
39347
39858
|
mobileShutdown?: string;
|
|
39348
39859
|
/**
|
|
39860
|
+
* @remarks
|
|
39861
|
+
* The policy name.
|
|
39862
|
+
*
|
|
39349
39863
|
* @example
|
|
39350
39864
|
* testPolicyGroupName
|
|
39351
39865
|
*/
|
|
39352
39866
|
name?: string;
|
|
39353
39867
|
/**
|
|
39868
|
+
* @remarks
|
|
39869
|
+
* The network redirection policy.
|
|
39870
|
+
*
|
|
39871
|
+
* > This parameter is in private preview and only available to specific users.
|
|
39872
|
+
*
|
|
39873
|
+
* Valid values:
|
|
39874
|
+
*
|
|
39875
|
+
* * all: enables network redirection globally.
|
|
39876
|
+
* * off (default): disables network redirection.
|
|
39877
|
+
* * on: enables the whitelist mode.
|
|
39878
|
+
*
|
|
39354
39879
|
* @example
|
|
39355
39880
|
* on
|
|
39356
39881
|
*/
|
|
39357
39882
|
netRedirect?: string;
|
|
39883
|
+
/**
|
|
39884
|
+
* @remarks
|
|
39885
|
+
* The network redirection policies.
|
|
39886
|
+
*
|
|
39887
|
+
* > This parameter is in private preview and only available to specific users.
|
|
39888
|
+
*/
|
|
39358
39889
|
netRedirectRule?: ModifyCenterPolicyRequestNetRedirectRule[];
|
|
39359
39890
|
/**
|
|
39891
|
+
* @remarks
|
|
39892
|
+
* Specifies whether to enforce a disconnection upon inactivity.
|
|
39893
|
+
*
|
|
39894
|
+
* > This parameter applies only to cloud application policies.
|
|
39895
|
+
*
|
|
39896
|
+
* Valid values:
|
|
39897
|
+
*
|
|
39898
|
+
* * off: doesn\\"t enforce a disconnection upon inactivity.
|
|
39899
|
+
* * on: enforces a disconnection upon inactivity.
|
|
39900
|
+
*
|
|
39360
39901
|
* @example
|
|
39361
39902
|
* off
|
|
39362
39903
|
*/
|
|
39363
39904
|
noOperationDisconnect?: string;
|
|
39364
39905
|
/**
|
|
39906
|
+
* @remarks
|
|
39907
|
+
* The duration of disconnection after inactivity. Valid values: 120 to 7200. Unit: seconds.
|
|
39908
|
+
*
|
|
39909
|
+
* > This parameter applies only to cloud application policies.
|
|
39910
|
+
*
|
|
39365
39911
|
* @example
|
|
39366
39912
|
* 120
|
|
39367
39913
|
*/
|
|
39368
39914
|
noOperationDisconnectTime?: number;
|
|
39369
39915
|
/**
|
|
39370
39916
|
* @remarks
|
|
39917
|
+
* The cloud computer policy ID.
|
|
39918
|
+
*
|
|
39371
39919
|
* This parameter is required.
|
|
39372
39920
|
*
|
|
39373
39921
|
* @example
|
|
@@ -39375,66 +39923,145 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
39375
39923
|
*/
|
|
39376
39924
|
policyGroupId?: string;
|
|
39377
39925
|
/**
|
|
39926
|
+
* @remarks
|
|
39927
|
+
* The printer redirection policy. This parameter only applies if DeviceRedirects does not include a printer redirection policy.
|
|
39928
|
+
*
|
|
39929
|
+
* Valid values:
|
|
39930
|
+
*
|
|
39931
|
+
* * deviceRedirect (default):enables device redirection.
|
|
39932
|
+
* * usbRedirect: enables USB redirection.
|
|
39933
|
+
* * off: disables any type of redirection.
|
|
39934
|
+
*
|
|
39378
39935
|
* @example
|
|
39379
39936
|
* off
|
|
39380
39937
|
*/
|
|
39381
39938
|
printerRedirect?: string;
|
|
39382
39939
|
/**
|
|
39940
|
+
* @remarks
|
|
39941
|
+
* Specifies whether to enable image quality enhancement for design and 3D applications.
|
|
39942
|
+
*
|
|
39943
|
+
* Valid values:
|
|
39944
|
+
*
|
|
39945
|
+
* * off: doesn\\"t enable image quality enhancement for design and 3D applications.
|
|
39946
|
+
* * on: enables image quality enhancement for design and 3D applications.
|
|
39947
|
+
*
|
|
39383
39948
|
* @example
|
|
39384
39949
|
* off
|
|
39385
39950
|
*/
|
|
39386
39951
|
qualityEnhancement?: string;
|
|
39387
39952
|
/**
|
|
39953
|
+
* @remarks
|
|
39954
|
+
* The duration of screen recording after the specified event is detected. Unit: minutes. Valid values: 10 to 60.
|
|
39955
|
+
*
|
|
39388
39956
|
* @example
|
|
39389
39957
|
* 10
|
|
39390
39958
|
*/
|
|
39391
39959
|
recordEventDuration?: number;
|
|
39960
|
+
/**
|
|
39961
|
+
* @remarks
|
|
39962
|
+
* The absolute paths to screen recording files.
|
|
39963
|
+
*/
|
|
39392
39964
|
recordEventFilePaths?: string[];
|
|
39965
|
+
/**
|
|
39966
|
+
* @remarks
|
|
39967
|
+
* The absolute paths to screen recording registries.
|
|
39968
|
+
*/
|
|
39393
39969
|
recordEventRegisters?: string[];
|
|
39970
|
+
/**
|
|
39971
|
+
* @remarks
|
|
39972
|
+
* The events that trigger screen recording.
|
|
39973
|
+
*/
|
|
39394
39974
|
recordEvents?: string[];
|
|
39395
39975
|
/**
|
|
39976
|
+
* @remarks
|
|
39977
|
+
* The screen recording policy.
|
|
39978
|
+
*
|
|
39979
|
+
* Valid values:
|
|
39980
|
+
*
|
|
39981
|
+
* * period: Screen recording occurs at set intervals.
|
|
39982
|
+
* * session: Screen recording is limited to sessions only.
|
|
39983
|
+
* * off: Screen recording is disabled.
|
|
39984
|
+
* * alltime: Screen recording is always enabled.
|
|
39985
|
+
*
|
|
39396
39986
|
* @example
|
|
39397
39987
|
* off
|
|
39398
39988
|
*/
|
|
39399
39989
|
recording?: string;
|
|
39400
39990
|
/**
|
|
39991
|
+
* @remarks
|
|
39992
|
+
* Specifies whether to record audio files generated by cloud computers.
|
|
39993
|
+
*
|
|
39994
|
+
* Valid values:
|
|
39995
|
+
*
|
|
39996
|
+
* * off: doesn\\"t record audio files generated by cloud computers.
|
|
39997
|
+
* * on: records audio files generated by cloud computers.
|
|
39998
|
+
*
|
|
39401
39999
|
* @example
|
|
39402
40000
|
* on
|
|
39403
40001
|
*/
|
|
39404
40002
|
recordingAudio?: string;
|
|
39405
40003
|
/**
|
|
40004
|
+
* @remarks
|
|
40005
|
+
* The length of the screen recording file (in minutes). 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.
|
|
40006
|
+
*
|
|
39406
40007
|
* @example
|
|
39407
40008
|
* 10
|
|
39408
40009
|
*/
|
|
39409
40010
|
recordingDuration?: number;
|
|
39410
40011
|
/**
|
|
40012
|
+
* @remarks
|
|
40013
|
+
* The screen recording\\"s end time in HH:MM:SS format. The value is meaningful only if `Recording` is set to `PERIOD`.
|
|
40014
|
+
*
|
|
39411
40015
|
* @example
|
|
39412
40016
|
* 08:59:00
|
|
39413
40017
|
*/
|
|
39414
40018
|
recordingEndTime?: string;
|
|
39415
40019
|
/**
|
|
40020
|
+
* @remarks
|
|
40021
|
+
* The retention period of the screen recording file. Valid values: 1 to 180. Unit: days.
|
|
40022
|
+
*
|
|
39416
40023
|
* @example
|
|
39417
40024
|
* 15
|
|
39418
40025
|
*/
|
|
39419
40026
|
recordingExpires?: number;
|
|
39420
40027
|
/**
|
|
40028
|
+
* @remarks
|
|
40029
|
+
* The frame rate of screen recording. Unit: fps.
|
|
40030
|
+
*
|
|
39421
40031
|
* @example
|
|
39422
40032
|
* 5
|
|
39423
40033
|
*/
|
|
39424
40034
|
recordingFps?: string;
|
|
39425
40035
|
/**
|
|
40036
|
+
* @remarks
|
|
40037
|
+
* The screen recording\\"s start time in HH:MM:SS format. The value is meaningful only if `Recording` is set to `PERIOD`.
|
|
40038
|
+
*
|
|
39426
40039
|
* @example
|
|
39427
40040
|
* 08:00:00
|
|
39428
40041
|
*/
|
|
39429
40042
|
recordingStartTime?: string;
|
|
39430
40043
|
/**
|
|
40044
|
+
* @remarks
|
|
40045
|
+
* Specifies whether to notify end users when screen recording is enabled.
|
|
40046
|
+
*
|
|
40047
|
+
* Valid values:
|
|
40048
|
+
*
|
|
40049
|
+
* * off: doesn\\"t notify end users when screen recording is enabled.
|
|
40050
|
+
* * on: notifies end users when screen recording is enabled.
|
|
40051
|
+
*
|
|
39431
40052
|
* @example
|
|
39432
40053
|
* off
|
|
39433
40054
|
*/
|
|
39434
40055
|
recordingUserNotify?: string;
|
|
40056
|
+
/**
|
|
40057
|
+
* @remarks
|
|
40058
|
+
* The notification sent to end users when screen recording is enabled.
|
|
40059
|
+
*/
|
|
39435
40060
|
recordingUserNotifyMessage?: string;
|
|
39436
40061
|
/**
|
|
39437
40062
|
* @remarks
|
|
40063
|
+
* The region ID. Set the value to `cn-shanghai`.
|
|
40064
|
+
*
|
|
39438
40065
|
* This parameter is required.
|
|
39439
40066
|
*
|
|
39440
40067
|
* @example
|
|
@@ -39442,188 +40069,431 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
39442
40069
|
*/
|
|
39443
40070
|
regionId?: string;
|
|
39444
40071
|
/**
|
|
40072
|
+
* @remarks
|
|
40073
|
+
* The keyboard and mouse control permissions during remote assistance.
|
|
40074
|
+
*
|
|
40075
|
+
* Valid values:
|
|
40076
|
+
*
|
|
40077
|
+
* * optionalControl: By default, keyboard and mouse control is disabled during remote assistance. You can request permissions as needed.
|
|
40078
|
+
* * fullControl: Keyboard and mouse control is enabled during remote assistance.
|
|
40079
|
+
* * disableControl: Keyboard and mouse control is disabled during remote assistance.
|
|
40080
|
+
*
|
|
39445
40081
|
* @example
|
|
39446
40082
|
* fullControl
|
|
39447
40083
|
*/
|
|
39448
40084
|
remoteCoordinate?: string;
|
|
39449
40085
|
/**
|
|
40086
|
+
* @remarks
|
|
40087
|
+
* The computer reset setting.
|
|
40088
|
+
*
|
|
40089
|
+
* Valid values:
|
|
40090
|
+
*
|
|
40091
|
+
* * off: disables the reset setting.
|
|
40092
|
+
* * on: enables the reset setting.
|
|
40093
|
+
*
|
|
39450
40094
|
* @example
|
|
39451
40095
|
* off
|
|
39452
40096
|
*/
|
|
39453
40097
|
resetDesktop?: string;
|
|
39454
40098
|
/**
|
|
40099
|
+
* @remarks
|
|
40100
|
+
* The height of the resolution. Unit: pixel. Valid values for cloud applications: 500 to 50000. Valid values for cloud computers: 480 to 4096.
|
|
40101
|
+
*
|
|
39455
40102
|
* @example
|
|
39456
40103
|
* 1280
|
|
39457
40104
|
*/
|
|
39458
40105
|
resolutionHeight?: number;
|
|
39459
40106
|
/**
|
|
40107
|
+
* @remarks
|
|
40108
|
+
* The resolution type.
|
|
40109
|
+
*
|
|
40110
|
+
* Valid values:
|
|
40111
|
+
*
|
|
40112
|
+
* * adaptive: adaptive resolution.
|
|
40113
|
+
* * customer: fixed resolution.
|
|
40114
|
+
*
|
|
39460
40115
|
* @example
|
|
39461
40116
|
* adaptive
|
|
39462
40117
|
*/
|
|
39463
40118
|
resolutionModel?: string;
|
|
39464
40119
|
/**
|
|
40120
|
+
* @remarks
|
|
40121
|
+
* The width of the resolution. Unit: pixel. Valid values for cloud applications: 500 to 50000. Valid values for cloud computers: 480 to 4096.
|
|
40122
|
+
*
|
|
39465
40123
|
* @example
|
|
39466
40124
|
* 720
|
|
39467
40125
|
*/
|
|
39468
40126
|
resolutionWidth?: number;
|
|
39469
40127
|
/**
|
|
39470
40128
|
* @remarks
|
|
40129
|
+
* The resource type.
|
|
40130
|
+
*
|
|
40131
|
+
* Valid values:
|
|
40132
|
+
*
|
|
40133
|
+
* * app: cloud applications.
|
|
40134
|
+
* * desktop: cloud computers.
|
|
40135
|
+
*
|
|
39471
40136
|
* This parameter is required.
|
|
39472
40137
|
*
|
|
39473
40138
|
* @example
|
|
39474
40139
|
* desktop
|
|
39475
40140
|
*/
|
|
39476
40141
|
resourceType?: string;
|
|
40142
|
+
/**
|
|
40143
|
+
* @remarks
|
|
40144
|
+
* The client IP address whitelists that you want to delete.
|
|
40145
|
+
*/
|
|
39477
40146
|
revokeAccessPolicyRule?: ModifyCenterPolicyRequestRevokeAccessPolicyRule[];
|
|
40147
|
+
/**
|
|
40148
|
+
* @remarks
|
|
40149
|
+
* The security group rules that you want to delete.
|
|
40150
|
+
*/
|
|
39478
40151
|
revokeSecurityPolicyRule?: ModifyCenterPolicyRequestRevokeSecurityPolicyRule[];
|
|
39479
40152
|
/**
|
|
40153
|
+
* @remarks
|
|
40154
|
+
* The effective scope of the policy.
|
|
40155
|
+
*
|
|
40156
|
+
* Valid values:
|
|
40157
|
+
*
|
|
40158
|
+
* * IP: The policy applies to specific IP addresses.
|
|
40159
|
+
* * GLOBAL: The policy applies globally.
|
|
40160
|
+
*
|
|
39480
40161
|
* @example
|
|
39481
40162
|
* GLOBAL
|
|
39482
40163
|
*/
|
|
39483
40164
|
scope?: string;
|
|
40165
|
+
/**
|
|
40166
|
+
* @remarks
|
|
40167
|
+
* 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.
|
|
40168
|
+
*/
|
|
39484
40169
|
scopeValue?: string[];
|
|
39485
40170
|
/**
|
|
40171
|
+
* @remarks
|
|
40172
|
+
* The bandwidth peak of the session. Valid values: 2000 to 100000.
|
|
40173
|
+
*
|
|
39486
40174
|
* @example
|
|
39487
40175
|
* 2000
|
|
39488
40176
|
*/
|
|
39489
40177
|
sessionMaxRateKbps?: number;
|
|
39490
40178
|
/**
|
|
40179
|
+
* @remarks
|
|
40180
|
+
* Specifies whether to enable smoothness enhancement for daily office use.
|
|
40181
|
+
*
|
|
40182
|
+
* Valid values:
|
|
40183
|
+
*
|
|
40184
|
+
* * off: doesn\\"t enable smoothness enhancement for daily office use.
|
|
40185
|
+
* * on: enables smoothness enhancement for daily office use.
|
|
40186
|
+
*
|
|
39491
40187
|
* @example
|
|
39492
40188
|
* off
|
|
39493
40189
|
*/
|
|
39494
40190
|
smoothEnhancement?: string;
|
|
39495
40191
|
/**
|
|
40192
|
+
* @remarks
|
|
40193
|
+
* Specifies whether to display the metric status entry in the DesktopAssistant menu.
|
|
40194
|
+
*
|
|
40195
|
+
* Valid values:
|
|
40196
|
+
*
|
|
40197
|
+
* * off: doesn\\"t display the metric status entry in the DesktopAssistant menu.
|
|
40198
|
+
* * on: displays the metric status entry in the DesktopAssistant menu.
|
|
40199
|
+
*
|
|
39496
40200
|
* @example
|
|
39497
40201
|
* off
|
|
39498
40202
|
*/
|
|
39499
40203
|
statusMonitor?: string;
|
|
39500
40204
|
/**
|
|
40205
|
+
* @remarks
|
|
40206
|
+
* The streaming mode.
|
|
40207
|
+
*
|
|
40208
|
+
* Valid values:
|
|
40209
|
+
*
|
|
40210
|
+
* * intelligent
|
|
40211
|
+
* * smooth
|
|
40212
|
+
*
|
|
39501
40213
|
* @example
|
|
39502
40214
|
* smooth
|
|
39503
40215
|
*/
|
|
39504
40216
|
streamingMode?: string;
|
|
39505
40217
|
/**
|
|
40218
|
+
* @remarks
|
|
40219
|
+
* The target frame rate. Valid values: 10 to 60.
|
|
40220
|
+
*
|
|
39506
40221
|
* @example
|
|
39507
40222
|
* 30
|
|
39508
40223
|
*/
|
|
39509
40224
|
targetFps?: number;
|
|
39510
40225
|
/**
|
|
40226
|
+
* @remarks
|
|
40227
|
+
* Specifies whether to display the application taskbar.
|
|
40228
|
+
*
|
|
40229
|
+
* > This parameter applies only to cloud application policies.
|
|
40230
|
+
*
|
|
40231
|
+
* Valid values:
|
|
40232
|
+
*
|
|
40233
|
+
* * off: doesn\\"t display the application taskbar.
|
|
40234
|
+
* * on: displays the application taskbar.
|
|
40235
|
+
*
|
|
39511
40236
|
* @example
|
|
39512
40237
|
* off
|
|
39513
40238
|
*/
|
|
39514
40239
|
taskbar?: string;
|
|
39515
40240
|
/**
|
|
40241
|
+
* @remarks
|
|
40242
|
+
* Specifies whether to enable the USB redirection feature.
|
|
40243
|
+
*
|
|
40244
|
+
* Valid values:
|
|
40245
|
+
*
|
|
40246
|
+
* * off (default)
|
|
40247
|
+
* * on
|
|
40248
|
+
*
|
|
39516
40249
|
* @example
|
|
39517
40250
|
* off
|
|
39518
40251
|
*/
|
|
39519
40252
|
usbRedirect?: string;
|
|
40253
|
+
/**
|
|
40254
|
+
* @remarks
|
|
40255
|
+
* The USB redirection rules.
|
|
40256
|
+
*/
|
|
39520
40257
|
usbSupplyRedirectRule?: ModifyCenterPolicyRequestUsbSupplyRedirectRule[];
|
|
39521
40258
|
/**
|
|
40259
|
+
* @remarks
|
|
40260
|
+
* The average bitrate for video encoding. Valid values: 1000 to 50000.
|
|
40261
|
+
*
|
|
39522
40262
|
* @example
|
|
39523
40263
|
* 2000
|
|
39524
40264
|
*/
|
|
39525
40265
|
videoEncAvgKbps?: number;
|
|
39526
40266
|
/**
|
|
40267
|
+
* @remarks
|
|
40268
|
+
* The maximum QP for video files. Higher QP values result in lower video quality. Valid values: 0 to 51.
|
|
40269
|
+
*
|
|
39527
40270
|
* @example
|
|
39528
40271
|
* 30
|
|
39529
40272
|
*/
|
|
39530
40273
|
videoEncMaxQP?: number;
|
|
39531
40274
|
/**
|
|
40275
|
+
* @remarks
|
|
40276
|
+
* The minimum quantizer parameter (QP) for video files. A lower QP means better video quality. Valid values: 0 to 51.
|
|
40277
|
+
*
|
|
39532
40278
|
* @example
|
|
39533
40279
|
* 30
|
|
39534
40280
|
*/
|
|
39535
40281
|
videoEncMinQP?: number;
|
|
39536
40282
|
/**
|
|
40283
|
+
* @remarks
|
|
40284
|
+
* The peak bitrate for video encoding. Valid values: 1000 to 50000.
|
|
40285
|
+
*
|
|
39537
40286
|
* @example
|
|
39538
40287
|
* 2000
|
|
39539
40288
|
*/
|
|
39540
40289
|
videoEncPeakKbps?: number;
|
|
39541
40290
|
/**
|
|
40291
|
+
* @remarks
|
|
40292
|
+
* The video encoding policy.
|
|
40293
|
+
*
|
|
40294
|
+
* Valid values:
|
|
40295
|
+
*
|
|
40296
|
+
* * qualityFirst: prioritizes image quality.
|
|
40297
|
+
* * bandwidthFirst: prioritizes bandwidth.
|
|
40298
|
+
*
|
|
39542
40299
|
* @example
|
|
39543
40300
|
* qualityFirst
|
|
39544
40301
|
*/
|
|
39545
40302
|
videoEncPolicy?: string;
|
|
39546
40303
|
/**
|
|
40304
|
+
* @remarks
|
|
40305
|
+
* The multimedia redirection policy.
|
|
40306
|
+
*
|
|
40307
|
+
* Valid values:
|
|
40308
|
+
*
|
|
40309
|
+
* * off: disables multimedia redirection.
|
|
40310
|
+
* * on: enables multimedia redirection.
|
|
40311
|
+
*
|
|
39547
40312
|
* @example
|
|
39548
40313
|
* on
|
|
39549
40314
|
*/
|
|
39550
40315
|
videoRedirect?: string;
|
|
39551
40316
|
/**
|
|
40317
|
+
* @remarks
|
|
40318
|
+
* The image display quality.
|
|
40319
|
+
*
|
|
40320
|
+
* Valid values:
|
|
40321
|
+
*
|
|
40322
|
+
* * high: high-definition (HD).
|
|
40323
|
+
* * low: smoothness.
|
|
40324
|
+
* * lossless: no quality loss.
|
|
40325
|
+
* * medium (default): scenario-specific adaptation.
|
|
40326
|
+
*
|
|
39552
40327
|
* @example
|
|
39553
40328
|
* low
|
|
39554
40329
|
*/
|
|
39555
40330
|
visualQuality?: string;
|
|
39556
40331
|
/**
|
|
40332
|
+
* @remarks
|
|
40333
|
+
* The watermark policy.
|
|
40334
|
+
*
|
|
40335
|
+
* Valid values:
|
|
40336
|
+
*
|
|
40337
|
+
* * blind: displays invisible watermarks.
|
|
40338
|
+
* * off (default): displays no watermark.
|
|
40339
|
+
* * on: displays visible watermarks.
|
|
40340
|
+
*
|
|
39557
40341
|
* @example
|
|
39558
40342
|
* off
|
|
39559
40343
|
*/
|
|
39560
40344
|
watermark?: string;
|
|
39561
40345
|
/**
|
|
40346
|
+
* @remarks
|
|
40347
|
+
* Specifies whether to enable anti-screen capture for invisible watermarks.
|
|
40348
|
+
*
|
|
40349
|
+
* Valid values:
|
|
40350
|
+
*
|
|
40351
|
+
* * off: doesn\\"t enable anti-screen capture for invisible watermarks.
|
|
40352
|
+
* * on: enables anti-screen capture for invisible watermarks.
|
|
40353
|
+
*
|
|
39562
40354
|
* @example
|
|
39563
40355
|
* off
|
|
39564
40356
|
*/
|
|
39565
40357
|
watermarkAntiCam?: string;
|
|
39566
40358
|
/**
|
|
40359
|
+
* @remarks
|
|
40360
|
+
* The font color of the watermark. Valid values: 0 to 16777215.
|
|
40361
|
+
*
|
|
39567
40362
|
* @example
|
|
39568
40363
|
* 0
|
|
39569
40364
|
*/
|
|
39570
40365
|
watermarkColor?: number;
|
|
39571
40366
|
/**
|
|
40367
|
+
* @remarks
|
|
40368
|
+
* The number of watermark columns. Valid values: 3 to 10.
|
|
40369
|
+
*
|
|
39572
40370
|
* @example
|
|
39573
40371
|
* 3
|
|
39574
40372
|
*/
|
|
39575
40373
|
watermarkColumnAmount?: number;
|
|
39576
40374
|
/**
|
|
40375
|
+
* @remarks
|
|
40376
|
+
* If you set `WatermarkType` to `custom`, you must also specify `WatermarkCustomText`.
|
|
40377
|
+
*
|
|
39577
40378
|
* @example
|
|
39578
40379
|
* test
|
|
39579
40380
|
*/
|
|
39580
40381
|
watermarkCustomText?: string;
|
|
39581
40382
|
/**
|
|
40383
|
+
* @remarks
|
|
40384
|
+
* The watermark rotation. Valid values: -10 to -30.
|
|
40385
|
+
*
|
|
39582
40386
|
* @example
|
|
39583
40387
|
* -10
|
|
39584
40388
|
*/
|
|
39585
40389
|
watermarkDegree?: number;
|
|
39586
40390
|
/**
|
|
40391
|
+
* @remarks
|
|
40392
|
+
* The font size of the watermark. Valid values: 10 to 20.
|
|
40393
|
+
*
|
|
39587
40394
|
* @example
|
|
39588
40395
|
* 10
|
|
39589
40396
|
*/
|
|
39590
40397
|
watermarkFontSize?: number;
|
|
39591
40398
|
/**
|
|
40399
|
+
* @remarks
|
|
40400
|
+
* The font style of the watermark.
|
|
40401
|
+
*
|
|
40402
|
+
* Valid values:
|
|
40403
|
+
*
|
|
40404
|
+
* * plain
|
|
40405
|
+
* * bold
|
|
40406
|
+
*
|
|
39592
40407
|
* @example
|
|
39593
40408
|
* plain
|
|
39594
40409
|
*/
|
|
39595
40410
|
watermarkFontStyle?: string;
|
|
39596
40411
|
/**
|
|
40412
|
+
* @remarks
|
|
40413
|
+
* The enhancement level for invisible watermarks.
|
|
40414
|
+
*
|
|
40415
|
+
* Valid values:
|
|
40416
|
+
*
|
|
40417
|
+
* * high
|
|
40418
|
+
* * low
|
|
40419
|
+
* * medium
|
|
40420
|
+
*
|
|
39597
40421
|
* @example
|
|
39598
40422
|
* medium
|
|
39599
40423
|
*/
|
|
39600
40424
|
watermarkPower?: string;
|
|
39601
40425
|
/**
|
|
40426
|
+
* @remarks
|
|
40427
|
+
* The number of watermark rows. Valid values: 3 to 10.
|
|
40428
|
+
*
|
|
39602
40429
|
* @example
|
|
39603
40430
|
* 5
|
|
39604
40431
|
*/
|
|
39605
40432
|
watermarkRowAmount?: number;
|
|
39606
40433
|
/**
|
|
40434
|
+
* @remarks
|
|
40435
|
+
* Specifies whether to enable security priority for invisible watermarks.
|
|
40436
|
+
*
|
|
40437
|
+
* Valid values:
|
|
40438
|
+
*
|
|
40439
|
+
* * off
|
|
40440
|
+
* * on
|
|
40441
|
+
*
|
|
39607
40442
|
* @example
|
|
39608
40443
|
* off
|
|
39609
40444
|
*/
|
|
39610
40445
|
watermarkSecurity?: string;
|
|
39611
40446
|
/**
|
|
40447
|
+
* @remarks
|
|
40448
|
+
* The watermark opacity. A higher value makes the watermark more opaque. Valid values: 10 to 100.
|
|
40449
|
+
*
|
|
39612
40450
|
* @example
|
|
39613
40451
|
* 10
|
|
39614
40452
|
*/
|
|
39615
40453
|
watermarkTransparencyValue?: number;
|
|
39616
40454
|
/**
|
|
40455
|
+
* @remarks
|
|
40456
|
+
* The watermark type. You can specify up to three types. Separate multiple values with commas (,).
|
|
40457
|
+
*
|
|
40458
|
+
* > If you provide `custom` as the value for this parameter, you must configure `WatermarkCustomText` to specify custom text.
|
|
40459
|
+
*
|
|
40460
|
+
* Valid values:
|
|
40461
|
+
*
|
|
40462
|
+
* * EndUserId: the username.
|
|
40463
|
+
* * Custom: the custom text.
|
|
40464
|
+
* * DesktopIp: the IP address of the cloud computer.
|
|
40465
|
+
* * ClientIp: the IP address of the client.
|
|
40466
|
+
* * HostName: the rightmost 15 digits of the cloud computer ID.
|
|
40467
|
+
* * ClientTime: the current time displayed on the cloud computer.
|
|
40468
|
+
*
|
|
39617
40469
|
* @example
|
|
39618
40470
|
* EndUserId
|
|
39619
40471
|
*/
|
|
39620
40472
|
watermarkType?: string;
|
|
39621
40473
|
/**
|
|
40474
|
+
* @remarks
|
|
40475
|
+
* Specifies whether to enable Cloud Computer Manager.
|
|
40476
|
+
*
|
|
40477
|
+
* Valid values:
|
|
40478
|
+
*
|
|
40479
|
+
* * off: disables Cloud Computer Manager.
|
|
40480
|
+
* * on: enables Cloud Computer Manager.
|
|
40481
|
+
*
|
|
39622
40482
|
* @example
|
|
39623
40483
|
* off
|
|
39624
40484
|
*/
|
|
39625
40485
|
wuyingKeeper?: string;
|
|
39626
40486
|
/**
|
|
40487
|
+
* @remarks
|
|
40488
|
+
* 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).
|
|
40489
|
+
*
|
|
40490
|
+
* > This feature applies to only desktop clients of version 7.7.0 or later.
|
|
40491
|
+
*
|
|
40492
|
+
* Valid values:
|
|
40493
|
+
*
|
|
40494
|
+
* * off: doesn\\"t display the Xiaoying AI Assistant option in the DesktopAssistant menu.
|
|
40495
|
+
* * on: displays the Xiaoying AI Assistant option in the DesktopAssistant menu.
|
|
40496
|
+
*
|
|
39627
40497
|
* @example
|
|
39628
40498
|
* on
|
|
39629
40499
|
*/
|
|
@@ -39641,6 +40511,9 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
39641
40511
|
}
|
|
39642
40512
|
export declare class ModifyCenterPolicyResponseBody extends $dara.Model {
|
|
39643
40513
|
/**
|
|
40514
|
+
* @remarks
|
|
40515
|
+
* The request ID.
|
|
40516
|
+
*
|
|
39644
40517
|
* @example
|
|
39645
40518
|
* 5CED7F18-43B1-5035-BBB6-2538B***
|
|
39646
40519
|
*/
|