@alicloud/ecd20200930 4.6.2 → 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 +890 -12
- package/dist/client.js +295 -1374
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1161 -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
|
|
@@ -9588,6 +9605,8 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSites extends $dara.Mo
|
|
|
9588
9605
|
* An array of File Storage NAS (NAS) file system IDs.
|
|
9589
9606
|
*/
|
|
9590
9607
|
fileSystemIds?: string[];
|
|
9608
|
+
isLdap?: boolean;
|
|
9609
|
+
ldapUrl?: string;
|
|
9591
9610
|
/**
|
|
9592
9611
|
* @remarks
|
|
9593
9612
|
* Details about registration logs.
|
|
@@ -12098,6 +12117,8 @@ export declare class DescribeSnapshotsResponseBodySnapshots extends $dara.Model
|
|
|
12098
12117
|
* Running
|
|
12099
12118
|
*/
|
|
12100
12119
|
desktopStatus?: string;
|
|
12120
|
+
diskStatus?: string;
|
|
12121
|
+
osType?: string;
|
|
12101
12122
|
/**
|
|
12102
12123
|
* @remarks
|
|
12103
12124
|
* The progress of creating the snapshot. Unit: %.
|
|
@@ -14567,11 +14588,17 @@ export declare class ListUserAdOrganizationUnitsResponseBodyOUNames extends $dar
|
|
|
14567
14588
|
}
|
|
14568
14589
|
export declare class ModifyCenterPolicyRequestAuthorizeAccessPolicyRule extends $dara.Model {
|
|
14569
14590
|
/**
|
|
14591
|
+
* @remarks
|
|
14592
|
+
* The client CIDR block from which end users can connect to cloud computers. Specify an IPv4 CIDR block.
|
|
14593
|
+
*
|
|
14570
14594
|
* @example
|
|
14571
14595
|
* 47.100.XX.XX/16
|
|
14572
14596
|
*/
|
|
14573
14597
|
cidrIp?: string;
|
|
14574
14598
|
/**
|
|
14599
|
+
* @remarks
|
|
14600
|
+
* The description of the client IP address whitelist.
|
|
14601
|
+
*
|
|
14575
14602
|
* @example
|
|
14576
14603
|
* test
|
|
14577
14604
|
*/
|
|
@@ -14589,36 +14616,82 @@ export declare class ModifyCenterPolicyRequestAuthorizeAccessPolicyRule extends
|
|
|
14589
14616
|
}
|
|
14590
14617
|
export declare class ModifyCenterPolicyRequestAuthorizeSecurityPolicyRule extends $dara.Model {
|
|
14591
14618
|
/**
|
|
14619
|
+
* @remarks
|
|
14620
|
+
* The object of the security group rule. Specify an IPv4 CIDR block.
|
|
14621
|
+
*
|
|
14592
14622
|
* @example
|
|
14593
14623
|
* 47.100.XX.XX/16
|
|
14594
14624
|
*/
|
|
14595
14625
|
cidrIp?: string;
|
|
14596
14626
|
/**
|
|
14627
|
+
* @remarks
|
|
14628
|
+
* The description of the security group rule.
|
|
14629
|
+
*
|
|
14597
14630
|
* @example
|
|
14598
14631
|
* test
|
|
14599
14632
|
*/
|
|
14600
14633
|
description?: string;
|
|
14601
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
|
+
*
|
|
14602
14646
|
* @example
|
|
14603
14647
|
* TCP
|
|
14604
14648
|
*/
|
|
14605
14649
|
ipProtocol?: string;
|
|
14606
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
|
+
*
|
|
14607
14659
|
* @example
|
|
14608
14660
|
* accept
|
|
14609
14661
|
*/
|
|
14610
14662
|
policy?: string;
|
|
14611
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
|
+
*
|
|
14612
14674
|
* @example
|
|
14613
14675
|
* 22/22
|
|
14614
14676
|
*/
|
|
14615
14677
|
portRange?: string;
|
|
14616
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
|
+
*
|
|
14617
14682
|
* @example
|
|
14618
14683
|
* 1
|
|
14619
14684
|
*/
|
|
14620
14685
|
priority?: string;
|
|
14621
14686
|
/**
|
|
14687
|
+
* @remarks
|
|
14688
|
+
* The direction of the security group rule.
|
|
14689
|
+
*
|
|
14690
|
+
* Valid values:
|
|
14691
|
+
*
|
|
14692
|
+
* * outflow: outbound.
|
|
14693
|
+
* * inflow: inbound.
|
|
14694
|
+
*
|
|
14622
14695
|
* @example
|
|
14623
14696
|
* inflow
|
|
14624
14697
|
*/
|
|
@@ -14636,11 +14709,32 @@ export declare class ModifyCenterPolicyRequestAuthorizeSecurityPolicyRule extend
|
|
|
14636
14709
|
}
|
|
14637
14710
|
export declare class ModifyCenterPolicyRequestClientType extends $dara.Model {
|
|
14638
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
|
+
*
|
|
14639
14723
|
* @example
|
|
14640
14724
|
* android
|
|
14641
14725
|
*/
|
|
14642
14726
|
clientType?: string;
|
|
14643
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
|
+
*
|
|
14644
14738
|
* @example
|
|
14645
14739
|
* off
|
|
14646
14740
|
*/
|
|
@@ -14658,11 +14752,31 @@ export declare class ModifyCenterPolicyRequestClientType extends $dara.Model {
|
|
|
14658
14752
|
}
|
|
14659
14753
|
export declare class ModifyCenterPolicyRequestDeviceRedirects extends $dara.Model {
|
|
14660
14754
|
/**
|
|
14755
|
+
* @remarks
|
|
14756
|
+
* The peripheral type.
|
|
14757
|
+
*
|
|
14758
|
+
* Valid values:
|
|
14759
|
+
*
|
|
14760
|
+
* * printer
|
|
14761
|
+
* * scanner
|
|
14762
|
+
* * serialport
|
|
14763
|
+
* * camera
|
|
14764
|
+
* * adb
|
|
14765
|
+
*
|
|
14661
14766
|
* @example
|
|
14662
14767
|
* camera
|
|
14663
14768
|
*/
|
|
14664
14769
|
deviceType?: string;
|
|
14665
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
|
+
*
|
|
14666
14780
|
* @example
|
|
14667
14781
|
* deviceRedirect
|
|
14668
14782
|
*/
|
|
@@ -14680,31 +14794,67 @@ export declare class ModifyCenterPolicyRequestDeviceRedirects extends $dara.Mode
|
|
|
14680
14794
|
}
|
|
14681
14795
|
export declare class ModifyCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
14682
14796
|
/**
|
|
14797
|
+
* @remarks
|
|
14798
|
+
* The device name.
|
|
14799
|
+
*
|
|
14683
14800
|
* @example
|
|
14684
14801
|
* sandisk
|
|
14685
14802
|
*/
|
|
14686
14803
|
deviceName?: string;
|
|
14687
14804
|
/**
|
|
14805
|
+
* @remarks
|
|
14806
|
+
* The product ID (PID).
|
|
14807
|
+
*
|
|
14688
14808
|
* @example
|
|
14689
14809
|
* 0x55b1
|
|
14690
14810
|
*/
|
|
14691
14811
|
devicePid?: string;
|
|
14692
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
|
+
*
|
|
14693
14828
|
* @example
|
|
14694
14829
|
* storage
|
|
14695
14830
|
*/
|
|
14696
14831
|
deviceType?: string;
|
|
14697
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
|
+
*
|
|
14698
14836
|
* @example
|
|
14699
14837
|
* 0x0781
|
|
14700
14838
|
*/
|
|
14701
14839
|
deviceVid?: string;
|
|
14702
14840
|
/**
|
|
14841
|
+
* @remarks
|
|
14842
|
+
* The link optimization command.
|
|
14843
|
+
*
|
|
14703
14844
|
* @example
|
|
14704
14845
|
* 2:0
|
|
14705
14846
|
*/
|
|
14706
14847
|
optCommand?: string;
|
|
14707
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
|
+
*
|
|
14708
14858
|
* @example
|
|
14709
14859
|
* usbRedirect
|
|
14710
14860
|
*/
|
|
@@ -14721,13 +14871,28 @@ export declare class ModifyCenterPolicyRequestDeviceRules extends $dara.Model {
|
|
|
14721
14871
|
});
|
|
14722
14872
|
}
|
|
14723
14873
|
export declare class ModifyCenterPolicyRequestDomainResolveRule extends $dara.Model {
|
|
14874
|
+
/**
|
|
14875
|
+
* @remarks
|
|
14876
|
+
* The policy description.
|
|
14877
|
+
*/
|
|
14724
14878
|
description?: string;
|
|
14725
14879
|
/**
|
|
14880
|
+
* @remarks
|
|
14881
|
+
* The domain name.
|
|
14882
|
+
*
|
|
14726
14883
|
* @example
|
|
14727
14884
|
* *.example.com
|
|
14728
14885
|
*/
|
|
14729
14886
|
domain?: string;
|
|
14730
14887
|
/**
|
|
14888
|
+
* @remarks
|
|
14889
|
+
* Specifies whether to allow the domain name resolution rule.
|
|
14890
|
+
*
|
|
14891
|
+
* Valid values:
|
|
14892
|
+
*
|
|
14893
|
+
* * allow
|
|
14894
|
+
* * block
|
|
14895
|
+
*
|
|
14731
14896
|
* @example
|
|
14732
14897
|
* allow
|
|
14733
14898
|
*/
|
|
@@ -14745,16 +14910,30 @@ export declare class ModifyCenterPolicyRequestDomainResolveRule extends $dara.Mo
|
|
|
14745
14910
|
}
|
|
14746
14911
|
export declare class ModifyCenterPolicyRequestNetRedirectRule extends $dara.Model {
|
|
14747
14912
|
/**
|
|
14913
|
+
* @remarks
|
|
14914
|
+
* The domain name.
|
|
14915
|
+
*
|
|
14748
14916
|
* @example
|
|
14749
14917
|
* *.taobao.com
|
|
14750
14918
|
*/
|
|
14751
14919
|
domain?: string;
|
|
14752
14920
|
/**
|
|
14921
|
+
* @remarks
|
|
14922
|
+
* The redirection policy.
|
|
14923
|
+
*
|
|
14753
14924
|
* @example
|
|
14754
14925
|
* Allow
|
|
14755
14926
|
*/
|
|
14756
14927
|
policy?: string;
|
|
14757
14928
|
/**
|
|
14929
|
+
* @remarks
|
|
14930
|
+
* The rule type.
|
|
14931
|
+
*
|
|
14932
|
+
* Valid values:
|
|
14933
|
+
*
|
|
14934
|
+
* * prc: process.
|
|
14935
|
+
* * domain: domain name.
|
|
14936
|
+
*
|
|
14758
14937
|
* @example
|
|
14759
14938
|
* domain
|
|
14760
14939
|
*/
|
|
@@ -14772,11 +14951,17 @@ export declare class ModifyCenterPolicyRequestNetRedirectRule extends $dara.Mode
|
|
|
14772
14951
|
}
|
|
14773
14952
|
export declare class ModifyCenterPolicyRequestRevokeAccessPolicyRule extends $dara.Model {
|
|
14774
14953
|
/**
|
|
14954
|
+
* @remarks
|
|
14955
|
+
* The client CIDR block that you want to delete. Specify an IPv4 CIDR block.
|
|
14956
|
+
*
|
|
14775
14957
|
* @example
|
|
14776
14958
|
* 47.100.XX.XX/16
|
|
14777
14959
|
*/
|
|
14778
14960
|
cidrIp?: string;
|
|
14779
14961
|
/**
|
|
14962
|
+
* @remarks
|
|
14963
|
+
* The description of the client IP address whitelist that you want to delete.
|
|
14964
|
+
*
|
|
14780
14965
|
* @example
|
|
14781
14966
|
* test
|
|
14782
14967
|
*/
|
|
@@ -14794,36 +14979,82 @@ export declare class ModifyCenterPolicyRequestRevokeAccessPolicyRule extends $da
|
|
|
14794
14979
|
}
|
|
14795
14980
|
export declare class ModifyCenterPolicyRequestRevokeSecurityPolicyRule extends $dara.Model {
|
|
14796
14981
|
/**
|
|
14982
|
+
* @remarks
|
|
14983
|
+
* The object of the security group rule that you want to delete. Specify an IPv4 CIDR block.
|
|
14984
|
+
*
|
|
14797
14985
|
* @example
|
|
14798
14986
|
* 47.100.XX.XX/16
|
|
14799
14987
|
*/
|
|
14800
14988
|
cidrIp?: string;
|
|
14801
14989
|
/**
|
|
14990
|
+
* @remarks
|
|
14991
|
+
* The description of the security group rule that you want to delete.
|
|
14992
|
+
*
|
|
14802
14993
|
* @example
|
|
14803
14994
|
* test
|
|
14804
14995
|
*/
|
|
14805
14996
|
description?: string;
|
|
14806
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
|
+
*
|
|
14807
15009
|
* @example
|
|
14808
15010
|
* TCP
|
|
14809
15011
|
*/
|
|
14810
15012
|
ipProtocol?: string;
|
|
14811
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
|
+
*
|
|
14812
15022
|
* @example
|
|
14813
15023
|
* accept
|
|
14814
15024
|
*/
|
|
14815
15025
|
policy?: string;
|
|
14816
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
|
+
*
|
|
14817
15037
|
* @example
|
|
14818
15038
|
* 22/22
|
|
14819
15039
|
*/
|
|
14820
15040
|
portRange?: string;
|
|
14821
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
|
+
*
|
|
14822
15045
|
* @example
|
|
14823
15046
|
* 1
|
|
14824
15047
|
*/
|
|
14825
15048
|
priority?: string;
|
|
14826
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
|
+
*
|
|
14827
15058
|
* @example
|
|
14828
15059
|
* outflow
|
|
14829
15060
|
*/
|
|
@@ -14840,23 +15071,48 @@ export declare class ModifyCenterPolicyRequestRevokeSecurityPolicyRule extends $
|
|
|
14840
15071
|
});
|
|
14841
15072
|
}
|
|
14842
15073
|
export declare class ModifyCenterPolicyRequestUsbSupplyRedirectRule extends $dara.Model {
|
|
15074
|
+
/**
|
|
15075
|
+
* @remarks
|
|
15076
|
+
* The rule description.
|
|
15077
|
+
*/
|
|
14843
15078
|
description?: string;
|
|
14844
15079
|
/**
|
|
15080
|
+
* @remarks
|
|
15081
|
+
* The product ID (PID).
|
|
15082
|
+
*
|
|
14845
15083
|
* @example
|
|
14846
15084
|
* 08**
|
|
14847
15085
|
*/
|
|
14848
15086
|
productId?: string;
|
|
14849
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
|
+
*
|
|
14850
15096
|
* @example
|
|
14851
15097
|
* 1
|
|
14852
15098
|
*/
|
|
14853
15099
|
usbRedirectType?: string;
|
|
14854
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
|
+
*
|
|
14855
15108
|
* @example
|
|
14856
15109
|
* 1
|
|
14857
15110
|
*/
|
|
14858
15111
|
usbRuleType?: string;
|
|
14859
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
|
+
*
|
|
14860
15116
|
* @example
|
|
14861
15117
|
* 04**
|
|
14862
15118
|
*/
|
|
@@ -27770,6 +28026,8 @@ export declare class DescribeClientEventsRequest extends $dara.Model {
|
|
|
27770
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.
|
|
27771
28027
|
*/
|
|
27772
28028
|
eventTypes?: string[];
|
|
28029
|
+
fillHardwareInfo?: boolean;
|
|
28030
|
+
language?: string;
|
|
27773
28031
|
/**
|
|
27774
28032
|
* @remarks
|
|
27775
28033
|
* The number of entries per page.\\
|
|
@@ -28617,7 +28875,7 @@ export declare class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
28617
28875
|
desktopGroupId?: string;
|
|
28618
28876
|
/**
|
|
28619
28877
|
* @remarks
|
|
28620
|
-
* The IDs of the cloud computer
|
|
28878
|
+
* The IDs of the cloud computer shares.
|
|
28621
28879
|
*/
|
|
28622
28880
|
desktopGroupIds?: string[];
|
|
28623
28881
|
/**
|
|
@@ -28656,12 +28914,12 @@ export declare class DescribeDesktopGroupsRequest extends $dara.Model {
|
|
|
28656
28914
|
maxResults?: number;
|
|
28657
28915
|
/**
|
|
28658
28916
|
* @remarks
|
|
28659
|
-
* Specifies whether the
|
|
28917
|
+
* Specifies whether the cloud computer share is a many-to-many share.
|
|
28660
28918
|
*
|
|
28661
28919
|
* Valid values:
|
|
28662
28920
|
*
|
|
28663
|
-
*
|
|
28664
|
-
*
|
|
28921
|
+
* * true: The cloud computer share is a many-to-many share.
|
|
28922
|
+
* * false: The cloud computer share is a one-to-many share.
|
|
28665
28923
|
*
|
|
28666
28924
|
* @example
|
|
28667
28925
|
* true
|
|
@@ -33674,6 +33932,7 @@ export declare class DescribeSnapshotsRequest extends $dara.Model {
|
|
|
33674
33932
|
* 8051af8d01b5479bec9f5ddf02e4a8fbd0ab6e7e43f8****
|
|
33675
33933
|
*/
|
|
33676
33934
|
nextToken?: string;
|
|
33935
|
+
osType?: string;
|
|
33677
33936
|
/**
|
|
33678
33937
|
* @remarks
|
|
33679
33938
|
* The region ID. You can call the [DescribeRegions](~~DescribeRegions~~) operation to query the list of regions where Elastic Desktop Service (EDS) Enterprise is available.
|
|
@@ -39170,19 +39429,53 @@ export declare class ModifyCdsFileShareLinkResponse extends $dara.Model {
|
|
|
39170
39429
|
}
|
|
39171
39430
|
export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
39172
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
|
+
*
|
|
39173
39443
|
* @example
|
|
39174
39444
|
* deny
|
|
39175
39445
|
*/
|
|
39176
39446
|
adminAccess?: string;
|
|
39177
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
|
+
*
|
|
39178
39456
|
* @example
|
|
39179
39457
|
* on
|
|
39180
39458
|
*/
|
|
39181
39459
|
appContentProtection?: string;
|
|
39460
|
+
/**
|
|
39461
|
+
* @remarks
|
|
39462
|
+
* The client IP address whitelists that you want to add.
|
|
39463
|
+
*/
|
|
39182
39464
|
authorizeAccessPolicyRule?: ModifyCenterPolicyRequestAuthorizeAccessPolicyRule[];
|
|
39465
|
+
/**
|
|
39466
|
+
* @remarks
|
|
39467
|
+
* The security group rules.
|
|
39468
|
+
*/
|
|
39183
39469
|
authorizeSecurityPolicyRule?: ModifyCenterPolicyRequestAuthorizeSecurityPolicyRule[];
|
|
39184
39470
|
/**
|
|
39185
39471
|
* @remarks
|
|
39472
|
+
* The business type.
|
|
39473
|
+
*
|
|
39474
|
+
* Valid values:
|
|
39475
|
+
*
|
|
39476
|
+
* * 1: public cloud.
|
|
39477
|
+
* * 8: commercial edition.
|
|
39478
|
+
*
|
|
39186
39479
|
* This parameter is required.
|
|
39187
39480
|
*
|
|
39188
39481
|
* @example
|
|
@@ -39190,179 +39483,439 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
39190
39483
|
*/
|
|
39191
39484
|
businessType?: number;
|
|
39192
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
|
+
*
|
|
39193
39494
|
* @example
|
|
39194
39495
|
* on
|
|
39195
39496
|
*/
|
|
39196
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
|
+
*/
|
|
39197
39502
|
clientType?: ModifyCenterPolicyRequestClientType[];
|
|
39198
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
|
+
*
|
|
39199
39514
|
* @example
|
|
39200
39515
|
* off
|
|
39201
39516
|
*/
|
|
39202
39517
|
clipboard?: string;
|
|
39203
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
|
+
*
|
|
39204
39527
|
* @example
|
|
39205
39528
|
* off
|
|
39206
39529
|
*/
|
|
39207
39530
|
colorEnhancement?: string;
|
|
39208
39531
|
/**
|
|
39532
|
+
* @remarks
|
|
39533
|
+
* The CPU underclocking duration. Valid values: 30 to 120. Unit: seconds.
|
|
39534
|
+
*
|
|
39209
39535
|
* @example
|
|
39210
39536
|
* 50
|
|
39211
39537
|
*/
|
|
39212
39538
|
cpuDownGradeDuration?: number;
|
|
39539
|
+
/**
|
|
39540
|
+
* @remarks
|
|
39541
|
+
* The CPU processors.
|
|
39542
|
+
*/
|
|
39213
39543
|
cpuProcessors?: string[];
|
|
39214
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
|
+
*
|
|
39215
39553
|
* @example
|
|
39216
39554
|
* off
|
|
39217
39555
|
*/
|
|
39218
39556
|
cpuProtectedMode?: string;
|
|
39219
39557
|
/**
|
|
39558
|
+
* @remarks
|
|
39559
|
+
* The overall CPU usage. Valid values: 70 to 90. Unit: percentage (%).
|
|
39560
|
+
*
|
|
39220
39561
|
* @example
|
|
39221
39562
|
* 70
|
|
39222
39563
|
*/
|
|
39223
39564
|
cpuRateLimit?: number;
|
|
39224
39565
|
/**
|
|
39566
|
+
* @remarks
|
|
39567
|
+
* The overall CPU sampling duration. Valid values: 10 to 60. Unit: seconds.
|
|
39568
|
+
*
|
|
39225
39569
|
* @example
|
|
39226
39570
|
* 30
|
|
39227
39571
|
*/
|
|
39228
39572
|
cpuSampleDuration?: number;
|
|
39229
39573
|
/**
|
|
39574
|
+
* @remarks
|
|
39575
|
+
* The single-CPU usage. Valid values: 70 to 100. Unit: %.
|
|
39576
|
+
*
|
|
39230
39577
|
* @example
|
|
39231
39578
|
* 80
|
|
39232
39579
|
*/
|
|
39233
39580
|
cpuSingleRateLimit?: number;
|
|
39234
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
|
+
*
|
|
39235
39590
|
* @example
|
|
39236
39591
|
* off
|
|
39237
39592
|
*/
|
|
39238
39593
|
deviceConnectHint?: string;
|
|
39594
|
+
/**
|
|
39595
|
+
* @remarks
|
|
39596
|
+
* The device redirection rules.
|
|
39597
|
+
*/
|
|
39239
39598
|
deviceRedirects?: ModifyCenterPolicyRequestDeviceRedirects[];
|
|
39599
|
+
/**
|
|
39600
|
+
* @remarks
|
|
39601
|
+
* The custom peripheral rules.
|
|
39602
|
+
*/
|
|
39240
39603
|
deviceRules?: ModifyCenterPolicyRequestDeviceRules[];
|
|
39241
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
|
+
*
|
|
39242
39615
|
* @example
|
|
39243
39616
|
* customTime
|
|
39244
39617
|
*/
|
|
39245
39618
|
disconnectKeepSession?: string;
|
|
39246
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
|
+
*
|
|
39247
39625
|
* @example
|
|
39248
39626
|
* 120
|
|
39249
39627
|
*/
|
|
39250
39628
|
disconnectKeepSessionTime?: number;
|
|
39251
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
|
+
*
|
|
39252
39640
|
* @example
|
|
39253
39641
|
* clientCustom
|
|
39254
39642
|
*/
|
|
39255
39643
|
displayMode?: string;
|
|
39644
|
+
/**
|
|
39645
|
+
* @remarks
|
|
39646
|
+
* The domain resolution policies.
|
|
39647
|
+
*/
|
|
39256
39648
|
domainResolveRule?: ModifyCenterPolicyRequestDomainResolveRule[];
|
|
39257
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
|
+
*
|
|
39258
39658
|
* @example
|
|
39259
39659
|
* off
|
|
39260
39660
|
*/
|
|
39261
39661
|
domainResolveRuleType?: string;
|
|
39262
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
|
+
*
|
|
39263
39671
|
* @example
|
|
39264
39672
|
* off
|
|
39265
39673
|
*/
|
|
39266
39674
|
enableSessionRateLimiting?: string;
|
|
39267
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
|
+
*
|
|
39268
39684
|
* @example
|
|
39269
39685
|
* off
|
|
39270
39686
|
*/
|
|
39271
39687
|
endUserApplyAdminCoordinate?: string;
|
|
39272
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
|
+
*
|
|
39273
39697
|
* @example
|
|
39274
39698
|
* off
|
|
39275
39699
|
*/
|
|
39276
39700
|
endUserGroupCoordinate?: string;
|
|
39277
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
|
+
*
|
|
39278
39710
|
* @example
|
|
39279
39711
|
* off
|
|
39280
39712
|
*/
|
|
39281
39713
|
fileMigrate?: string;
|
|
39282
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
|
+
*
|
|
39283
39723
|
* @example
|
|
39284
39724
|
* off
|
|
39285
39725
|
*/
|
|
39286
39726
|
gpuAcceleration?: string;
|
|
39287
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
|
+
*
|
|
39288
39738
|
* @example
|
|
39289
39739
|
* off
|
|
39290
39740
|
*/
|
|
39291
39741
|
html5FileTransfer?: string;
|
|
39292
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
|
+
*
|
|
39293
39753
|
* @example
|
|
39294
39754
|
* both
|
|
39295
39755
|
*/
|
|
39296
39756
|
internetCommunicationProtocol?: string;
|
|
39297
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
|
+
*
|
|
39298
39767
|
* @example
|
|
39299
39768
|
* off
|
|
39300
39769
|
*/
|
|
39301
39770
|
localDrive?: string;
|
|
39302
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
|
+
*
|
|
39303
39775
|
* @example
|
|
39304
39776
|
* 120
|
|
39305
39777
|
*/
|
|
39306
39778
|
maxReconnectTime?: number;
|
|
39307
39779
|
/**
|
|
39780
|
+
* @remarks
|
|
39781
|
+
* The memory underclocking duration per process. Valid values: 30 to 120. Unit: seconds.
|
|
39782
|
+
*
|
|
39308
39783
|
* @example
|
|
39309
39784
|
* 40
|
|
39310
39785
|
*/
|
|
39311
39786
|
memoryDownGradeDuration?: number;
|
|
39787
|
+
/**
|
|
39788
|
+
* @remarks
|
|
39789
|
+
* The memory processors.
|
|
39790
|
+
*/
|
|
39312
39791
|
memoryProcessors?: string[];
|
|
39313
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
|
+
*
|
|
39314
39801
|
* @example
|
|
39315
39802
|
* off
|
|
39316
39803
|
*/
|
|
39317
39804
|
memoryProtectedMode?: string;
|
|
39318
39805
|
/**
|
|
39806
|
+
* @remarks
|
|
39807
|
+
* The overall memory usage. Valid values: 70 to 90. Unit: %.
|
|
39808
|
+
*
|
|
39319
39809
|
* @example
|
|
39320
39810
|
* 70
|
|
39321
39811
|
*/
|
|
39322
39812
|
memoryRateLimit?: number;
|
|
39323
39813
|
/**
|
|
39814
|
+
* @remarks
|
|
39815
|
+
* The overall memory sampling duration. Valid values: 30 to 60. Unit: seconds.
|
|
39816
|
+
*
|
|
39324
39817
|
* @example
|
|
39325
39818
|
* 40
|
|
39326
39819
|
*/
|
|
39327
39820
|
memorySampleDuration?: number;
|
|
39328
39821
|
/**
|
|
39822
|
+
* @remarks
|
|
39823
|
+
* The memory usage per process. Valid values: 30 to 60. Unit: %.
|
|
39824
|
+
*
|
|
39329
39825
|
* @example
|
|
39330
39826
|
* 40
|
|
39331
39827
|
*/
|
|
39332
39828
|
memorySingleRateLimit?: number;
|
|
39333
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
|
+
*
|
|
39334
39840
|
* @example
|
|
39335
39841
|
* off
|
|
39336
39842
|
*/
|
|
39337
39843
|
mobileRestart?: string;
|
|
39338
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
|
+
*
|
|
39339
39855
|
* @example
|
|
39340
39856
|
* off
|
|
39341
39857
|
*/
|
|
39342
39858
|
mobileShutdown?: string;
|
|
39343
39859
|
/**
|
|
39860
|
+
* @remarks
|
|
39861
|
+
* The policy name.
|
|
39862
|
+
*
|
|
39344
39863
|
* @example
|
|
39345
39864
|
* testPolicyGroupName
|
|
39346
39865
|
*/
|
|
39347
39866
|
name?: string;
|
|
39348
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
|
+
*
|
|
39349
39879
|
* @example
|
|
39350
39880
|
* on
|
|
39351
39881
|
*/
|
|
39352
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
|
+
*/
|
|
39353
39889
|
netRedirectRule?: ModifyCenterPolicyRequestNetRedirectRule[];
|
|
39354
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
|
+
*
|
|
39355
39901
|
* @example
|
|
39356
39902
|
* off
|
|
39357
39903
|
*/
|
|
39358
39904
|
noOperationDisconnect?: string;
|
|
39359
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
|
+
*
|
|
39360
39911
|
* @example
|
|
39361
39912
|
* 120
|
|
39362
39913
|
*/
|
|
39363
39914
|
noOperationDisconnectTime?: number;
|
|
39364
39915
|
/**
|
|
39365
39916
|
* @remarks
|
|
39917
|
+
* The cloud computer policy ID.
|
|
39918
|
+
*
|
|
39366
39919
|
* This parameter is required.
|
|
39367
39920
|
*
|
|
39368
39921
|
* @example
|
|
@@ -39370,66 +39923,145 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
39370
39923
|
*/
|
|
39371
39924
|
policyGroupId?: string;
|
|
39372
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
|
+
*
|
|
39373
39935
|
* @example
|
|
39374
39936
|
* off
|
|
39375
39937
|
*/
|
|
39376
39938
|
printerRedirect?: string;
|
|
39377
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
|
+
*
|
|
39378
39948
|
* @example
|
|
39379
39949
|
* off
|
|
39380
39950
|
*/
|
|
39381
39951
|
qualityEnhancement?: string;
|
|
39382
39952
|
/**
|
|
39953
|
+
* @remarks
|
|
39954
|
+
* The duration of screen recording after the specified event is detected. Unit: minutes. Valid values: 10 to 60.
|
|
39955
|
+
*
|
|
39383
39956
|
* @example
|
|
39384
39957
|
* 10
|
|
39385
39958
|
*/
|
|
39386
39959
|
recordEventDuration?: number;
|
|
39960
|
+
/**
|
|
39961
|
+
* @remarks
|
|
39962
|
+
* The absolute paths to screen recording files.
|
|
39963
|
+
*/
|
|
39387
39964
|
recordEventFilePaths?: string[];
|
|
39965
|
+
/**
|
|
39966
|
+
* @remarks
|
|
39967
|
+
* The absolute paths to screen recording registries.
|
|
39968
|
+
*/
|
|
39388
39969
|
recordEventRegisters?: string[];
|
|
39970
|
+
/**
|
|
39971
|
+
* @remarks
|
|
39972
|
+
* The events that trigger screen recording.
|
|
39973
|
+
*/
|
|
39389
39974
|
recordEvents?: string[];
|
|
39390
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
|
+
*
|
|
39391
39986
|
* @example
|
|
39392
39987
|
* off
|
|
39393
39988
|
*/
|
|
39394
39989
|
recording?: string;
|
|
39395
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
|
+
*
|
|
39396
39999
|
* @example
|
|
39397
40000
|
* on
|
|
39398
40001
|
*/
|
|
39399
40002
|
recordingAudio?: string;
|
|
39400
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
|
+
*
|
|
39401
40007
|
* @example
|
|
39402
40008
|
* 10
|
|
39403
40009
|
*/
|
|
39404
40010
|
recordingDuration?: number;
|
|
39405
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
|
+
*
|
|
39406
40015
|
* @example
|
|
39407
40016
|
* 08:59:00
|
|
39408
40017
|
*/
|
|
39409
40018
|
recordingEndTime?: string;
|
|
39410
40019
|
/**
|
|
40020
|
+
* @remarks
|
|
40021
|
+
* The retention period of the screen recording file. Valid values: 1 to 180. Unit: days.
|
|
40022
|
+
*
|
|
39411
40023
|
* @example
|
|
39412
40024
|
* 15
|
|
39413
40025
|
*/
|
|
39414
40026
|
recordingExpires?: number;
|
|
39415
40027
|
/**
|
|
40028
|
+
* @remarks
|
|
40029
|
+
* The frame rate of screen recording. Unit: fps.
|
|
40030
|
+
*
|
|
39416
40031
|
* @example
|
|
39417
40032
|
* 5
|
|
39418
40033
|
*/
|
|
39419
40034
|
recordingFps?: string;
|
|
39420
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
|
+
*
|
|
39421
40039
|
* @example
|
|
39422
40040
|
* 08:00:00
|
|
39423
40041
|
*/
|
|
39424
40042
|
recordingStartTime?: string;
|
|
39425
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
|
+
*
|
|
39426
40052
|
* @example
|
|
39427
40053
|
* off
|
|
39428
40054
|
*/
|
|
39429
40055
|
recordingUserNotify?: string;
|
|
40056
|
+
/**
|
|
40057
|
+
* @remarks
|
|
40058
|
+
* The notification sent to end users when screen recording is enabled.
|
|
40059
|
+
*/
|
|
39430
40060
|
recordingUserNotifyMessage?: string;
|
|
39431
40061
|
/**
|
|
39432
40062
|
* @remarks
|
|
40063
|
+
* The region ID. Set the value to `cn-shanghai`.
|
|
40064
|
+
*
|
|
39433
40065
|
* This parameter is required.
|
|
39434
40066
|
*
|
|
39435
40067
|
* @example
|
|
@@ -39437,188 +40069,431 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
39437
40069
|
*/
|
|
39438
40070
|
regionId?: string;
|
|
39439
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
|
+
*
|
|
39440
40081
|
* @example
|
|
39441
40082
|
* fullControl
|
|
39442
40083
|
*/
|
|
39443
40084
|
remoteCoordinate?: string;
|
|
39444
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
|
+
*
|
|
39445
40094
|
* @example
|
|
39446
40095
|
* off
|
|
39447
40096
|
*/
|
|
39448
40097
|
resetDesktop?: string;
|
|
39449
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
|
+
*
|
|
39450
40102
|
* @example
|
|
39451
40103
|
* 1280
|
|
39452
40104
|
*/
|
|
39453
40105
|
resolutionHeight?: number;
|
|
39454
40106
|
/**
|
|
40107
|
+
* @remarks
|
|
40108
|
+
* The resolution type.
|
|
40109
|
+
*
|
|
40110
|
+
* Valid values:
|
|
40111
|
+
*
|
|
40112
|
+
* * adaptive: adaptive resolution.
|
|
40113
|
+
* * customer: fixed resolution.
|
|
40114
|
+
*
|
|
39455
40115
|
* @example
|
|
39456
40116
|
* adaptive
|
|
39457
40117
|
*/
|
|
39458
40118
|
resolutionModel?: string;
|
|
39459
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
|
+
*
|
|
39460
40123
|
* @example
|
|
39461
40124
|
* 720
|
|
39462
40125
|
*/
|
|
39463
40126
|
resolutionWidth?: number;
|
|
39464
40127
|
/**
|
|
39465
40128
|
* @remarks
|
|
40129
|
+
* The resource type.
|
|
40130
|
+
*
|
|
40131
|
+
* Valid values:
|
|
40132
|
+
*
|
|
40133
|
+
* * app: cloud applications.
|
|
40134
|
+
* * desktop: cloud computers.
|
|
40135
|
+
*
|
|
39466
40136
|
* This parameter is required.
|
|
39467
40137
|
*
|
|
39468
40138
|
* @example
|
|
39469
40139
|
* desktop
|
|
39470
40140
|
*/
|
|
39471
40141
|
resourceType?: string;
|
|
40142
|
+
/**
|
|
40143
|
+
* @remarks
|
|
40144
|
+
* The client IP address whitelists that you want to delete.
|
|
40145
|
+
*/
|
|
39472
40146
|
revokeAccessPolicyRule?: ModifyCenterPolicyRequestRevokeAccessPolicyRule[];
|
|
40147
|
+
/**
|
|
40148
|
+
* @remarks
|
|
40149
|
+
* The security group rules that you want to delete.
|
|
40150
|
+
*/
|
|
39473
40151
|
revokeSecurityPolicyRule?: ModifyCenterPolicyRequestRevokeSecurityPolicyRule[];
|
|
39474
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
|
+
*
|
|
39475
40161
|
* @example
|
|
39476
40162
|
* GLOBAL
|
|
39477
40163
|
*/
|
|
39478
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
|
+
*/
|
|
39479
40169
|
scopeValue?: string[];
|
|
39480
40170
|
/**
|
|
40171
|
+
* @remarks
|
|
40172
|
+
* The bandwidth peak of the session. Valid values: 2000 to 100000.
|
|
40173
|
+
*
|
|
39481
40174
|
* @example
|
|
39482
40175
|
* 2000
|
|
39483
40176
|
*/
|
|
39484
40177
|
sessionMaxRateKbps?: number;
|
|
39485
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
|
+
*
|
|
39486
40187
|
* @example
|
|
39487
40188
|
* off
|
|
39488
40189
|
*/
|
|
39489
40190
|
smoothEnhancement?: string;
|
|
39490
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
|
+
*
|
|
39491
40200
|
* @example
|
|
39492
40201
|
* off
|
|
39493
40202
|
*/
|
|
39494
40203
|
statusMonitor?: string;
|
|
39495
40204
|
/**
|
|
40205
|
+
* @remarks
|
|
40206
|
+
* The streaming mode.
|
|
40207
|
+
*
|
|
40208
|
+
* Valid values:
|
|
40209
|
+
*
|
|
40210
|
+
* * intelligent
|
|
40211
|
+
* * smooth
|
|
40212
|
+
*
|
|
39496
40213
|
* @example
|
|
39497
40214
|
* smooth
|
|
39498
40215
|
*/
|
|
39499
40216
|
streamingMode?: string;
|
|
39500
40217
|
/**
|
|
40218
|
+
* @remarks
|
|
40219
|
+
* The target frame rate. Valid values: 10 to 60.
|
|
40220
|
+
*
|
|
39501
40221
|
* @example
|
|
39502
40222
|
* 30
|
|
39503
40223
|
*/
|
|
39504
40224
|
targetFps?: number;
|
|
39505
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
|
+
*
|
|
39506
40236
|
* @example
|
|
39507
40237
|
* off
|
|
39508
40238
|
*/
|
|
39509
40239
|
taskbar?: string;
|
|
39510
40240
|
/**
|
|
40241
|
+
* @remarks
|
|
40242
|
+
* Specifies whether to enable the USB redirection feature.
|
|
40243
|
+
*
|
|
40244
|
+
* Valid values:
|
|
40245
|
+
*
|
|
40246
|
+
* * off (default)
|
|
40247
|
+
* * on
|
|
40248
|
+
*
|
|
39511
40249
|
* @example
|
|
39512
40250
|
* off
|
|
39513
40251
|
*/
|
|
39514
40252
|
usbRedirect?: string;
|
|
40253
|
+
/**
|
|
40254
|
+
* @remarks
|
|
40255
|
+
* The USB redirection rules.
|
|
40256
|
+
*/
|
|
39515
40257
|
usbSupplyRedirectRule?: ModifyCenterPolicyRequestUsbSupplyRedirectRule[];
|
|
39516
40258
|
/**
|
|
40259
|
+
* @remarks
|
|
40260
|
+
* The average bitrate for video encoding. Valid values: 1000 to 50000.
|
|
40261
|
+
*
|
|
39517
40262
|
* @example
|
|
39518
40263
|
* 2000
|
|
39519
40264
|
*/
|
|
39520
40265
|
videoEncAvgKbps?: number;
|
|
39521
40266
|
/**
|
|
40267
|
+
* @remarks
|
|
40268
|
+
* The maximum QP for video files. Higher QP values result in lower video quality. Valid values: 0 to 51.
|
|
40269
|
+
*
|
|
39522
40270
|
* @example
|
|
39523
40271
|
* 30
|
|
39524
40272
|
*/
|
|
39525
40273
|
videoEncMaxQP?: number;
|
|
39526
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
|
+
*
|
|
39527
40278
|
* @example
|
|
39528
40279
|
* 30
|
|
39529
40280
|
*/
|
|
39530
40281
|
videoEncMinQP?: number;
|
|
39531
40282
|
/**
|
|
40283
|
+
* @remarks
|
|
40284
|
+
* The peak bitrate for video encoding. Valid values: 1000 to 50000.
|
|
40285
|
+
*
|
|
39532
40286
|
* @example
|
|
39533
40287
|
* 2000
|
|
39534
40288
|
*/
|
|
39535
40289
|
videoEncPeakKbps?: number;
|
|
39536
40290
|
/**
|
|
40291
|
+
* @remarks
|
|
40292
|
+
* The video encoding policy.
|
|
40293
|
+
*
|
|
40294
|
+
* Valid values:
|
|
40295
|
+
*
|
|
40296
|
+
* * qualityFirst: prioritizes image quality.
|
|
40297
|
+
* * bandwidthFirst: prioritizes bandwidth.
|
|
40298
|
+
*
|
|
39537
40299
|
* @example
|
|
39538
40300
|
* qualityFirst
|
|
39539
40301
|
*/
|
|
39540
40302
|
videoEncPolicy?: string;
|
|
39541
40303
|
/**
|
|
40304
|
+
* @remarks
|
|
40305
|
+
* The multimedia redirection policy.
|
|
40306
|
+
*
|
|
40307
|
+
* Valid values:
|
|
40308
|
+
*
|
|
40309
|
+
* * off: disables multimedia redirection.
|
|
40310
|
+
* * on: enables multimedia redirection.
|
|
40311
|
+
*
|
|
39542
40312
|
* @example
|
|
39543
40313
|
* on
|
|
39544
40314
|
*/
|
|
39545
40315
|
videoRedirect?: string;
|
|
39546
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
|
+
*
|
|
39547
40327
|
* @example
|
|
39548
40328
|
* low
|
|
39549
40329
|
*/
|
|
39550
40330
|
visualQuality?: string;
|
|
39551
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
|
+
*
|
|
39552
40341
|
* @example
|
|
39553
40342
|
* off
|
|
39554
40343
|
*/
|
|
39555
40344
|
watermark?: string;
|
|
39556
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
|
+
*
|
|
39557
40354
|
* @example
|
|
39558
40355
|
* off
|
|
39559
40356
|
*/
|
|
39560
40357
|
watermarkAntiCam?: string;
|
|
39561
40358
|
/**
|
|
40359
|
+
* @remarks
|
|
40360
|
+
* The font color of the watermark. Valid values: 0 to 16777215.
|
|
40361
|
+
*
|
|
39562
40362
|
* @example
|
|
39563
40363
|
* 0
|
|
39564
40364
|
*/
|
|
39565
40365
|
watermarkColor?: number;
|
|
39566
40366
|
/**
|
|
40367
|
+
* @remarks
|
|
40368
|
+
* The number of watermark columns. Valid values: 3 to 10.
|
|
40369
|
+
*
|
|
39567
40370
|
* @example
|
|
39568
40371
|
* 3
|
|
39569
40372
|
*/
|
|
39570
40373
|
watermarkColumnAmount?: number;
|
|
39571
40374
|
/**
|
|
40375
|
+
* @remarks
|
|
40376
|
+
* If you set `WatermarkType` to `custom`, you must also specify `WatermarkCustomText`.
|
|
40377
|
+
*
|
|
39572
40378
|
* @example
|
|
39573
40379
|
* test
|
|
39574
40380
|
*/
|
|
39575
40381
|
watermarkCustomText?: string;
|
|
39576
40382
|
/**
|
|
40383
|
+
* @remarks
|
|
40384
|
+
* The watermark rotation. Valid values: -10 to -30.
|
|
40385
|
+
*
|
|
39577
40386
|
* @example
|
|
39578
40387
|
* -10
|
|
39579
40388
|
*/
|
|
39580
40389
|
watermarkDegree?: number;
|
|
39581
40390
|
/**
|
|
40391
|
+
* @remarks
|
|
40392
|
+
* The font size of the watermark. Valid values: 10 to 20.
|
|
40393
|
+
*
|
|
39582
40394
|
* @example
|
|
39583
40395
|
* 10
|
|
39584
40396
|
*/
|
|
39585
40397
|
watermarkFontSize?: number;
|
|
39586
40398
|
/**
|
|
40399
|
+
* @remarks
|
|
40400
|
+
* The font style of the watermark.
|
|
40401
|
+
*
|
|
40402
|
+
* Valid values:
|
|
40403
|
+
*
|
|
40404
|
+
* * plain
|
|
40405
|
+
* * bold
|
|
40406
|
+
*
|
|
39587
40407
|
* @example
|
|
39588
40408
|
* plain
|
|
39589
40409
|
*/
|
|
39590
40410
|
watermarkFontStyle?: string;
|
|
39591
40411
|
/**
|
|
40412
|
+
* @remarks
|
|
40413
|
+
* The enhancement level for invisible watermarks.
|
|
40414
|
+
*
|
|
40415
|
+
* Valid values:
|
|
40416
|
+
*
|
|
40417
|
+
* * high
|
|
40418
|
+
* * low
|
|
40419
|
+
* * medium
|
|
40420
|
+
*
|
|
39592
40421
|
* @example
|
|
39593
40422
|
* medium
|
|
39594
40423
|
*/
|
|
39595
40424
|
watermarkPower?: string;
|
|
39596
40425
|
/**
|
|
40426
|
+
* @remarks
|
|
40427
|
+
* The number of watermark rows. Valid values: 3 to 10.
|
|
40428
|
+
*
|
|
39597
40429
|
* @example
|
|
39598
40430
|
* 5
|
|
39599
40431
|
*/
|
|
39600
40432
|
watermarkRowAmount?: number;
|
|
39601
40433
|
/**
|
|
40434
|
+
* @remarks
|
|
40435
|
+
* Specifies whether to enable security priority for invisible watermarks.
|
|
40436
|
+
*
|
|
40437
|
+
* Valid values:
|
|
40438
|
+
*
|
|
40439
|
+
* * off
|
|
40440
|
+
* * on
|
|
40441
|
+
*
|
|
39602
40442
|
* @example
|
|
39603
40443
|
* off
|
|
39604
40444
|
*/
|
|
39605
40445
|
watermarkSecurity?: string;
|
|
39606
40446
|
/**
|
|
40447
|
+
* @remarks
|
|
40448
|
+
* The watermark opacity. A higher value makes the watermark more opaque. Valid values: 10 to 100.
|
|
40449
|
+
*
|
|
39607
40450
|
* @example
|
|
39608
40451
|
* 10
|
|
39609
40452
|
*/
|
|
39610
40453
|
watermarkTransparencyValue?: number;
|
|
39611
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
|
+
*
|
|
39612
40469
|
* @example
|
|
39613
40470
|
* EndUserId
|
|
39614
40471
|
*/
|
|
39615
40472
|
watermarkType?: string;
|
|
39616
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
|
+
*
|
|
39617
40482
|
* @example
|
|
39618
40483
|
* off
|
|
39619
40484
|
*/
|
|
39620
40485
|
wuyingKeeper?: string;
|
|
39621
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
|
+
*
|
|
39622
40497
|
* @example
|
|
39623
40498
|
* on
|
|
39624
40499
|
*/
|
|
@@ -39636,6 +40511,9 @@ export declare class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
39636
40511
|
}
|
|
39637
40512
|
export declare class ModifyCenterPolicyResponseBody extends $dara.Model {
|
|
39638
40513
|
/**
|
|
40514
|
+
* @remarks
|
|
40515
|
+
* The request ID.
|
|
40516
|
+
*
|
|
39639
40517
|
* @example
|
|
39640
40518
|
* 5CED7F18-43B1-5035-BBB6-2538B***
|
|
39641
40519
|
*/
|