@alicloud/ecd20200930 4.15.0 → 4.16.0
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 +23 -2
- package/dist/client.js +77 -2
- package/dist/client.js.map +1 -1
- package/dist/models/BatchModifyEntitlementRequest.d.ts +47 -0
- package/dist/models/BatchModifyEntitlementRequest.js +76 -0
- package/dist/models/BatchModifyEntitlementRequest.js.map +1 -0
- package/dist/models/BatchModifyEntitlementResponse.d.ts +19 -0
- package/dist/models/BatchModifyEntitlementResponse.js +69 -0
- package/dist/models/BatchModifyEntitlementResponse.js.map +1 -0
- package/dist/models/BatchModifyEntitlementResponseBody.d.ts +65 -0
- package/dist/models/BatchModifyEntitlementResponseBody.js +115 -0
- package/dist/models/BatchModifyEntitlementResponseBody.js.map +1 -0
- package/dist/models/CreateCenterPolicyRequest.d.ts +2 -0
- package/dist/models/CreateCenterPolicyRequest.js +4 -0
- package/dist/models/CreateCenterPolicyRequest.js.map +1 -1
- package/dist/models/CreateTemplateRequest.d.ts +122 -0
- package/dist/models/CreateTemplateRequest.js.map +1 -1
- package/dist/models/CreateTemplateResponseBody.d.ts +18 -0
- package/dist/models/CreateTemplateResponseBody.js.map +1 -1
- package/dist/models/DescribeGlobalDesktopRecordsResponseBody.d.ts +5 -0
- package/dist/models/DescribeGlobalDesktopRecordsResponseBody.js +2 -0
- package/dist/models/DescribeGlobalDesktopRecordsResponseBody.js.map +1 -1
- package/dist/models/DescribePolicyGroupsResponseBody.d.ts +2 -0
- package/dist/models/DescribePolicyGroupsResponseBody.js +4 -0
- package/dist/models/DescribePolicyGroupsResponseBody.js.map +1 -1
- package/dist/models/DescribeTemplatesRequest.d.ts +41 -0
- package/dist/models/DescribeTemplatesRequest.js.map +1 -1
- package/dist/models/DescribeTemplatesResponseBody.d.ts +173 -0
- package/dist/models/DescribeTemplatesResponseBody.js.map +1 -1
- package/dist/models/ListInstalledAppsRequest.d.ts +10 -0
- package/dist/models/ListInstalledAppsRequest.js.map +1 -1
- package/dist/models/ListInstalledAppsResponseBody.d.ts +16 -0
- package/dist/models/ListInstalledAppsResponseBody.js.map +1 -1
- package/dist/models/ModifyCenterPolicyRequest.d.ts +2 -0
- package/dist/models/ModifyCenterPolicyRequest.js +4 -0
- package/dist/models/ModifyCenterPolicyRequest.js.map +1 -1
- package/dist/models/model.d.ts +5 -0
- package/dist/models/model.js +32 -22
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +90 -2
- package/src/models/BatchModifyEntitlementRequest.ts +78 -0
- package/src/models/BatchModifyEntitlementResponse.ts +40 -0
- package/src/models/BatchModifyEntitlementResponseBody.ts +117 -0
- package/src/models/CreateCenterPolicyRequest.ts +6 -0
- package/src/models/CreateTemplateRequest.ts +122 -0
- package/src/models/CreateTemplateResponseBody.ts +18 -0
- package/src/models/DescribeGlobalDesktopRecordsResponseBody.ts +7 -0
- package/src/models/DescribePolicyGroupsResponseBody.ts +6 -0
- package/src/models/DescribeTemplatesRequest.ts +41 -0
- package/src/models/DescribeTemplatesResponseBody.ts +173 -0
- package/src/models/ListInstalledAppsRequest.ts +10 -0
- package/src/models/ListInstalledAppsResponseBody.ts +16 -0
- package/src/models/ModifyCenterPolicyRequest.ts +6 -0
- package/src/models/model.ts +5 -0
|
@@ -4,31 +4,49 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class CreateTemplateResponseBody extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The execution result of the operation. If the request was successful, `success` is returned. If the request failed, an error message is returned.
|
|
9
|
+
*
|
|
7
10
|
* @example
|
|
8
11
|
* success
|
|
9
12
|
*/
|
|
10
13
|
code?: string;
|
|
11
14
|
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* The template ID.
|
|
17
|
+
*
|
|
12
18
|
* @example
|
|
13
19
|
* b-0cc7rx533*****
|
|
14
20
|
*/
|
|
15
21
|
data?: string;
|
|
16
22
|
/**
|
|
23
|
+
* @remarks
|
|
24
|
+
* The HTTP status code returned.
|
|
25
|
+
*
|
|
17
26
|
* @example
|
|
18
27
|
* 200
|
|
19
28
|
*/
|
|
20
29
|
httpStatusCode?: number;
|
|
21
30
|
/**
|
|
31
|
+
* @remarks
|
|
32
|
+
* The creation result.
|
|
33
|
+
*
|
|
22
34
|
* @example
|
|
23
35
|
* success
|
|
24
36
|
*/
|
|
25
37
|
message?: string;
|
|
26
38
|
/**
|
|
39
|
+
* @remarks
|
|
40
|
+
* The request ID.
|
|
41
|
+
*
|
|
27
42
|
* @example
|
|
28
43
|
* 791CC0D3-1A38-573B-8F5F-********
|
|
29
44
|
*/
|
|
30
45
|
requestId?: string;
|
|
31
46
|
/**
|
|
47
|
+
* @remarks
|
|
48
|
+
* Indicates whether the request was successful.
|
|
49
|
+
*
|
|
32
50
|
* @example
|
|
33
51
|
* True
|
|
34
52
|
*/
|
|
@@ -192,6 +192,11 @@ export class DescribeGlobalDesktopRecordsResponseBodySessions extends $dara.Mode
|
|
|
192
192
|
* TestOfficeSite
|
|
193
193
|
*/
|
|
194
194
|
officeSiteName?: string;
|
|
195
|
+
/**
|
|
196
|
+
* @example
|
|
197
|
+
* Simple
|
|
198
|
+
*/
|
|
199
|
+
officeSiteType?: string;
|
|
195
200
|
/**
|
|
196
201
|
* @remarks
|
|
197
202
|
* The OS type. Valid values:
|
|
@@ -300,6 +305,7 @@ export class DescribeGlobalDesktopRecordsResponseBodySessions extends $dara.Mode
|
|
|
300
305
|
memory: 'Memory',
|
|
301
306
|
officeSiteId: 'OfficeSiteId',
|
|
302
307
|
officeSiteName: 'OfficeSiteName',
|
|
308
|
+
officeSiteType: 'OfficeSiteType',
|
|
303
309
|
osType: 'OsType',
|
|
304
310
|
platform: 'Platform',
|
|
305
311
|
protocolType: 'ProtocolType',
|
|
@@ -330,6 +336,7 @@ export class DescribeGlobalDesktopRecordsResponseBodySessions extends $dara.Mode
|
|
|
330
336
|
memory: 'number',
|
|
331
337
|
officeSiteId: 'string',
|
|
332
338
|
officeSiteName: 'string',
|
|
339
|
+
officeSiteType: 'string',
|
|
333
340
|
osType: 'string',
|
|
334
341
|
platform: 'string',
|
|
335
342
|
protocolType: 'string',
|
|
@@ -661,6 +661,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
661
661
|
*/
|
|
662
662
|
cameraRedirect?: string;
|
|
663
663
|
clientControlMenu?: string;
|
|
664
|
+
clientCreateSnapshot?: string;
|
|
664
665
|
/**
|
|
665
666
|
* @remarks
|
|
666
667
|
* The logon method control rules to limit the type of the Alibaba Cloud Workspace client used by end users to connect to cloud computers.
|
|
@@ -1618,6 +1619,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
1618
1619
|
* on
|
|
1619
1620
|
*/
|
|
1620
1621
|
watermarkSecurity?: string;
|
|
1622
|
+
watermarkShadow?: string;
|
|
1621
1623
|
/**
|
|
1622
1624
|
* @remarks
|
|
1623
1625
|
* The watermark transparency.
|
|
@@ -1682,6 +1684,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
1682
1684
|
autoReconnect: 'AutoReconnect',
|
|
1683
1685
|
cameraRedirect: 'CameraRedirect',
|
|
1684
1686
|
clientControlMenu: 'ClientControlMenu',
|
|
1687
|
+
clientCreateSnapshot: 'ClientCreateSnapshot',
|
|
1685
1688
|
clientTypes: 'ClientTypes',
|
|
1686
1689
|
clipboard: 'Clipboard',
|
|
1687
1690
|
colorEnhancement: 'ColorEnhancement',
|
|
@@ -1789,6 +1792,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
1789
1792
|
watermarkPower: 'WatermarkPower',
|
|
1790
1793
|
watermarkRowAmount: 'WatermarkRowAmount',
|
|
1791
1794
|
watermarkSecurity: 'WatermarkSecurity',
|
|
1795
|
+
watermarkShadow: 'WatermarkShadow',
|
|
1792
1796
|
watermarkTransparency: 'WatermarkTransparency',
|
|
1793
1797
|
watermarkTransparencyValue: 'WatermarkTransparencyValue',
|
|
1794
1798
|
watermarkType: 'WatermarkType',
|
|
@@ -1806,6 +1810,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
1806
1810
|
autoReconnect: 'string',
|
|
1807
1811
|
cameraRedirect: 'string',
|
|
1808
1812
|
clientControlMenu: 'string',
|
|
1813
|
+
clientCreateSnapshot: 'string',
|
|
1809
1814
|
clientTypes: { 'type': 'array', 'itemType': DescribePolicyGroupsResponseBodyDescribePolicyGroupsClientTypes },
|
|
1810
1815
|
clipboard: 'string',
|
|
1811
1816
|
colorEnhancement: 'string',
|
|
@@ -1913,6 +1918,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
1913
1918
|
watermarkPower: 'string',
|
|
1914
1919
|
watermarkRowAmount: 'number',
|
|
1915
1920
|
watermarkSecurity: 'string',
|
|
1921
|
+
watermarkShadow: 'string',
|
|
1916
1922
|
watermarkTransparency: 'string',
|
|
1917
1923
|
watermarkTransparencyValue: 'number',
|
|
1918
1924
|
watermarkType: 'string',
|
|
@@ -4,43 +4,84 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class DescribeTemplatesRequest extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The region that you can use to filter templates.
|
|
9
|
+
*
|
|
10
|
+
* > If you specify this parameter, only templates that are created in the specified region are returned.
|
|
11
|
+
*
|
|
7
12
|
* @example
|
|
8
13
|
* cn-beijing
|
|
9
14
|
*/
|
|
10
15
|
bizRegionId?: string;
|
|
11
16
|
/**
|
|
17
|
+
* @remarks
|
|
18
|
+
* > This parameter is not publicly available.
|
|
19
|
+
*
|
|
12
20
|
* @example
|
|
13
21
|
* null
|
|
14
22
|
*/
|
|
15
23
|
bizType?: string;
|
|
16
24
|
/**
|
|
25
|
+
* @remarks
|
|
26
|
+
* The ID of the cloud computer image. You can query image IDs on the Images page. System images and custom images are supported.
|
|
27
|
+
*
|
|
17
28
|
* @example
|
|
18
29
|
* m-dnz9xjgbm8*****
|
|
19
30
|
*/
|
|
20
31
|
imageId?: string;
|
|
21
32
|
/**
|
|
33
|
+
* @remarks
|
|
34
|
+
* The keyword that you can use to search for the template. It can be the template ID or the template name. Fuzzy search is supported.
|
|
35
|
+
*
|
|
22
36
|
* @example
|
|
23
37
|
* abc
|
|
24
38
|
*/
|
|
25
39
|
keyword?: string;
|
|
26
40
|
/**
|
|
41
|
+
* @remarks
|
|
42
|
+
* The page number.
|
|
43
|
+
*
|
|
27
44
|
* @example
|
|
28
45
|
* 1
|
|
29
46
|
*/
|
|
30
47
|
pageNumber?: number;
|
|
31
48
|
/**
|
|
49
|
+
* @remarks
|
|
50
|
+
* The number of entries per page.
|
|
51
|
+
*
|
|
32
52
|
* @example
|
|
33
53
|
* 20
|
|
34
54
|
*/
|
|
35
55
|
pageSize?: number;
|
|
36
56
|
/**
|
|
57
|
+
* @remarks
|
|
58
|
+
* The service type. Set the value to `CloudDesktop`.
|
|
59
|
+
*
|
|
60
|
+
* *
|
|
61
|
+
*
|
|
37
62
|
* @example
|
|
38
63
|
* CloudDesktop
|
|
39
64
|
*/
|
|
40
65
|
productType?: string;
|
|
66
|
+
/**
|
|
67
|
+
* @remarks
|
|
68
|
+
* The IDs of the templates that you want to query.
|
|
69
|
+
*/
|
|
41
70
|
templateIds?: string[];
|
|
71
|
+
/**
|
|
72
|
+
* @remarks
|
|
73
|
+
* The name of the template. You can search for template by name.
|
|
74
|
+
*/
|
|
42
75
|
templateName?: string;
|
|
43
76
|
/**
|
|
77
|
+
* @remarks
|
|
78
|
+
* The type of the template that you want to query. If you leave this parameter empty, all types of templates are queried.
|
|
79
|
+
*
|
|
80
|
+
* Valid values:
|
|
81
|
+
*
|
|
82
|
+
* * USER_TEMPLATE: custom templates.
|
|
83
|
+
* * SYSTEM_TEMPLATE: system templates provided by Alibaba Cloud.
|
|
84
|
+
*
|
|
44
85
|
* @example
|
|
45
86
|
* USER_TEMPLATE
|
|
46
87
|
*/
|
|
@@ -4,11 +4,23 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class DescribeTemplatesResponseBodyDataDataDiskList extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The PL of the data disk.
|
|
9
|
+
*
|
|
10
|
+
* Valid values:
|
|
11
|
+
*
|
|
12
|
+
* * PL1: a PL1 ESSD.
|
|
13
|
+
* * PL0: a PL0 ESSD.
|
|
14
|
+
* * AutoPL: an AutoPL SSD.
|
|
15
|
+
*
|
|
7
16
|
* @example
|
|
8
17
|
* AutoPL
|
|
9
18
|
*/
|
|
10
19
|
performanceLevel?: string;
|
|
11
20
|
/**
|
|
21
|
+
* @remarks
|
|
22
|
+
* The size of the data disk. Unit: GiB.
|
|
23
|
+
*
|
|
12
24
|
* @example
|
|
13
25
|
* 100
|
|
14
26
|
*/
|
|
@@ -38,51 +50,81 @@ export class DescribeTemplatesResponseBodyDataDataDiskList extends $dara.Model {
|
|
|
38
50
|
|
|
39
51
|
export class DescribeTemplatesResponseBodyDataRegionConfigList extends $dara.Model {
|
|
40
52
|
/**
|
|
53
|
+
* @remarks
|
|
54
|
+
* The number of vCPUs.
|
|
55
|
+
*
|
|
41
56
|
* @example
|
|
42
57
|
* 4
|
|
43
58
|
*/
|
|
44
59
|
cpuCount?: number;
|
|
45
60
|
/**
|
|
61
|
+
* @remarks
|
|
62
|
+
* The GPU memory information. This parameter is supported only by Graphics cloud computer types.
|
|
63
|
+
*
|
|
46
64
|
* @example
|
|
47
65
|
* 4GiB
|
|
48
66
|
*/
|
|
49
67
|
gpuSpec?: string;
|
|
50
68
|
/**
|
|
69
|
+
* @remarks
|
|
70
|
+
* The memory size. Unit: MiB.
|
|
71
|
+
*
|
|
51
72
|
* @example
|
|
52
73
|
* 8192
|
|
53
74
|
*/
|
|
54
75
|
memorySize?: number;
|
|
55
76
|
/**
|
|
77
|
+
* @remarks
|
|
78
|
+
* The office network ID.
|
|
79
|
+
*
|
|
56
80
|
* @example
|
|
57
81
|
* cn-beijing+dir-3040*****
|
|
58
82
|
*/
|
|
59
83
|
officeSiteId?: string;
|
|
60
84
|
/**
|
|
85
|
+
* @remarks
|
|
86
|
+
* The region ID.
|
|
87
|
+
*
|
|
61
88
|
* @example
|
|
62
89
|
* cn-shenzhen
|
|
63
90
|
*/
|
|
64
91
|
regionId?: string;
|
|
65
92
|
/**
|
|
93
|
+
* @remarks
|
|
94
|
+
* The ID of the cloud computer type.
|
|
95
|
+
*
|
|
66
96
|
* @example
|
|
67
97
|
* eds.enterprise_office.4c8g
|
|
68
98
|
*/
|
|
69
99
|
resourceInstanceType?: string;
|
|
70
100
|
/**
|
|
101
|
+
* @remarks
|
|
102
|
+
* The snapshot policy ID.
|
|
103
|
+
*
|
|
71
104
|
* @example
|
|
72
105
|
* sp-b9fasjuu0*****
|
|
73
106
|
*/
|
|
74
107
|
snapshotPolicyId?: string;
|
|
75
108
|
/**
|
|
109
|
+
* @remarks
|
|
110
|
+
* The subnet ID.
|
|
111
|
+
*
|
|
76
112
|
* @example
|
|
77
113
|
* vsw-dgea1*****
|
|
78
114
|
*/
|
|
79
115
|
subnetId?: string;
|
|
80
116
|
/**
|
|
117
|
+
* @remarks
|
|
118
|
+
* Indicates whether disk encryption is enabled.
|
|
119
|
+
*
|
|
81
120
|
* @example
|
|
82
121
|
* false
|
|
83
122
|
*/
|
|
84
123
|
volumeEncryptionEnable?: boolean;
|
|
85
124
|
/**
|
|
125
|
+
* @remarks
|
|
126
|
+
* The ID of the Key Management Service (KMS) key that is used to encrypt the disk.
|
|
127
|
+
*
|
|
86
128
|
* @example
|
|
87
129
|
* 3bc77be0-cbce-4a29-b07b-13f16394****
|
|
88
130
|
*/
|
|
@@ -128,11 +170,17 @@ export class DescribeTemplatesResponseBodyDataRegionConfigList extends $dara.Mod
|
|
|
128
170
|
|
|
129
171
|
export class DescribeTemplatesResponseBodyDataResourceTagList extends $dara.Model {
|
|
130
172
|
/**
|
|
173
|
+
* @remarks
|
|
174
|
+
* The tag key.
|
|
175
|
+
*
|
|
131
176
|
* @example
|
|
132
177
|
* env
|
|
133
178
|
*/
|
|
134
179
|
key?: string;
|
|
135
180
|
/**
|
|
181
|
+
* @remarks
|
|
182
|
+
* The property value.
|
|
183
|
+
*
|
|
136
184
|
* @example
|
|
137
185
|
* test
|
|
138
186
|
*/
|
|
@@ -162,11 +210,17 @@ export class DescribeTemplatesResponseBodyDataResourceTagList extends $dara.Mode
|
|
|
162
210
|
|
|
163
211
|
export class DescribeTemplatesResponseBodyDataSiteConfigList extends $dara.Model {
|
|
164
212
|
/**
|
|
213
|
+
* @remarks
|
|
214
|
+
* 应用管控策略ID
|
|
215
|
+
*
|
|
165
216
|
* @example
|
|
166
217
|
* bwr-5a5371e0*******
|
|
167
218
|
*/
|
|
168
219
|
appRuleId?: string;
|
|
169
220
|
/**
|
|
221
|
+
* @remarks
|
|
222
|
+
* 站点名称。
|
|
223
|
+
*
|
|
170
224
|
* @example
|
|
171
225
|
* mainland
|
|
172
226
|
*/
|
|
@@ -198,29 +252,66 @@ export class DescribeTemplatesResponseBodyData extends $dara.Model {
|
|
|
198
252
|
autoPay?: boolean;
|
|
199
253
|
autoRenew?: boolean;
|
|
200
254
|
chargeType?: string;
|
|
255
|
+
/**
|
|
256
|
+
* @remarks
|
|
257
|
+
* The sizes of the data disks.
|
|
258
|
+
*/
|
|
201
259
|
dataDiskList?: DescribeTemplatesResponseBodyDataDataDiskList[];
|
|
202
260
|
/**
|
|
261
|
+
* @remarks
|
|
262
|
+
* The default language of the template.
|
|
263
|
+
*
|
|
264
|
+
* Valid values:
|
|
265
|
+
*
|
|
266
|
+
* * en-US: English.
|
|
267
|
+
* * zh-HK: Chinese, Traditional (Hong Kong, China).
|
|
268
|
+
* * zh-CN: Simplified Chinese.
|
|
269
|
+
* * ja-JP: Japanese.
|
|
270
|
+
*
|
|
203
271
|
* @example
|
|
204
272
|
* zh-CN
|
|
205
273
|
*/
|
|
206
274
|
defaultLanguage?: string;
|
|
275
|
+
/**
|
|
276
|
+
* @remarks
|
|
277
|
+
* The template description.
|
|
278
|
+
*/
|
|
207
279
|
description?: string;
|
|
208
280
|
/**
|
|
281
|
+
* @remarks
|
|
282
|
+
* The time when the template was created. The time follows the ISO 8601 standard in the yyyy-MM-ddThh:mm:ssZ format. The time is displayed in Coordinated Universal Time (UTC).
|
|
283
|
+
*
|
|
209
284
|
* @example
|
|
210
285
|
* 2025-04-25T05:18:46.000+00:00
|
|
211
286
|
*/
|
|
212
287
|
gmtCreate?: string;
|
|
213
288
|
/**
|
|
289
|
+
* @remarks
|
|
290
|
+
* The time when the template was updated. The time follows the ISO 8601 standard in the yyyy-MM-ddThh:mm:ssZ format. The time is displayed in UTC.
|
|
291
|
+
*
|
|
214
292
|
* @example
|
|
215
293
|
* 2025-04-25T05:18:46.000+00:00
|
|
216
294
|
*/
|
|
217
295
|
gmtModified?: string;
|
|
218
296
|
/**
|
|
297
|
+
* @remarks
|
|
298
|
+
* The image ID.
|
|
299
|
+
*
|
|
219
300
|
* @example
|
|
220
301
|
* m-5q8ehbihx*****
|
|
221
302
|
*/
|
|
222
303
|
imageId?: string;
|
|
223
304
|
/**
|
|
305
|
+
* @remarks
|
|
306
|
+
* The image type.
|
|
307
|
+
*
|
|
308
|
+
* Valid values:
|
|
309
|
+
*
|
|
310
|
+
* * User: a custom image.
|
|
311
|
+
* * Shared: a shared image.
|
|
312
|
+
* * System: a system image.
|
|
313
|
+
* * Community: a community image.
|
|
314
|
+
*
|
|
224
315
|
* @example
|
|
225
316
|
* User
|
|
226
317
|
*/
|
|
@@ -228,51 +319,109 @@ export class DescribeTemplatesResponseBodyData extends $dara.Model {
|
|
|
228
319
|
period?: number;
|
|
229
320
|
periodUnit?: string;
|
|
230
321
|
/**
|
|
322
|
+
* @remarks
|
|
323
|
+
* The policy ID.
|
|
324
|
+
*
|
|
231
325
|
* @example
|
|
232
326
|
* pg-0caoeogkhz*****
|
|
233
327
|
*/
|
|
234
328
|
policyGroupId?: string;
|
|
235
329
|
postPaidAfterUsedUp?: boolean;
|
|
236
330
|
/**
|
|
331
|
+
* @remarks
|
|
332
|
+
* The service type.
|
|
333
|
+
*
|
|
334
|
+
* Valid value:
|
|
335
|
+
*
|
|
336
|
+
* * CloudDesktop: cloud computers.
|
|
337
|
+
*
|
|
237
338
|
* @example
|
|
238
339
|
* CLOUD_DESKTOP
|
|
239
340
|
*/
|
|
240
341
|
productType?: string;
|
|
342
|
+
/**
|
|
343
|
+
* @remarks
|
|
344
|
+
* The region-related settings.
|
|
345
|
+
*/
|
|
241
346
|
regionConfigList?: DescribeTemplatesResponseBodyDataRegionConfigList[];
|
|
242
347
|
/**
|
|
348
|
+
* @remarks
|
|
349
|
+
* The request ID.
|
|
350
|
+
*
|
|
243
351
|
* @example
|
|
244
352
|
* 1871984F-51F6-5588-BAF6-******
|
|
245
353
|
*/
|
|
246
354
|
requestId?: string;
|
|
247
355
|
/**
|
|
356
|
+
* @remarks
|
|
357
|
+
* The ID of the resource group.
|
|
358
|
+
*
|
|
248
359
|
* @example
|
|
249
360
|
* rg-a5fqjjqaejt***
|
|
250
361
|
*/
|
|
251
362
|
resourceGroupId?: string;
|
|
363
|
+
/**
|
|
364
|
+
* @remarks
|
|
365
|
+
* The tags added to cloud computers. A tag is a key-value pair.
|
|
366
|
+
*/
|
|
252
367
|
resourceTagList?: DescribeTemplatesResponseBodyDataResourceTagList[];
|
|
368
|
+
/**
|
|
369
|
+
* @remarks
|
|
370
|
+
* 区域配置管理
|
|
371
|
+
*/
|
|
253
372
|
siteConfigList?: DescribeTemplatesResponseBodyDataSiteConfigList[];
|
|
254
373
|
/**
|
|
374
|
+
* @remarks
|
|
375
|
+
* The performance level (PL) of the system disk.
|
|
376
|
+
*
|
|
377
|
+
* Valid value:
|
|
378
|
+
*
|
|
379
|
+
* * PL1: a PL1 Enterprise SSD (ESSD).
|
|
380
|
+
* * PL0: a PL0 ESSD.
|
|
381
|
+
* * AutoPL: an AutoPL SSD.
|
|
382
|
+
*
|
|
255
383
|
* @example
|
|
256
384
|
* AutoPL
|
|
257
385
|
*/
|
|
258
386
|
systemDiskPerformanceLevel?: string;
|
|
259
387
|
/**
|
|
388
|
+
* @remarks
|
|
389
|
+
* The size of the system disk. Unit: GiB.
|
|
390
|
+
*
|
|
260
391
|
* @example
|
|
261
392
|
* 80
|
|
262
393
|
*/
|
|
263
394
|
systemDiskSize?: number;
|
|
264
395
|
/**
|
|
396
|
+
* @remarks
|
|
397
|
+
* The template ID.
|
|
398
|
+
*
|
|
265
399
|
* @example
|
|
266
400
|
* b-0caoeogs88y*****
|
|
267
401
|
*/
|
|
268
402
|
templateId?: string;
|
|
403
|
+
/**
|
|
404
|
+
* @remarks
|
|
405
|
+
* The template name.
|
|
406
|
+
*/
|
|
269
407
|
templateName?: string;
|
|
270
408
|
/**
|
|
409
|
+
* @remarks
|
|
410
|
+
* The template type.
|
|
411
|
+
*
|
|
412
|
+
* Valid values:
|
|
413
|
+
*
|
|
414
|
+
* * USER_TEMPLATE: custom templates.
|
|
415
|
+
* * SYSTEM_TEMPLATE: system templates.
|
|
416
|
+
*
|
|
271
417
|
* @example
|
|
272
418
|
* USER_TEMPLATE
|
|
273
419
|
*/
|
|
274
420
|
templateType?: string;
|
|
275
421
|
/**
|
|
422
|
+
* @remarks
|
|
423
|
+
* The ID of the scheduled task group.
|
|
424
|
+
*
|
|
276
425
|
* @example
|
|
277
426
|
* bcc-dweha*****
|
|
278
427
|
*/
|
|
@@ -365,6 +514,9 @@ export class DescribeTemplatesResponseBodyData extends $dara.Model {
|
|
|
365
514
|
|
|
366
515
|
export class DescribeTemplatesResponseBody extends $dara.Model {
|
|
367
516
|
/**
|
|
517
|
+
* @remarks
|
|
518
|
+
* The modification result. If the request was successful, `success` is returned. If the request failed, an error message is returned.
|
|
519
|
+
*
|
|
368
520
|
* @example
|
|
369
521
|
* success
|
|
370
522
|
*/
|
|
@@ -375,36 +527,57 @@ export class DescribeTemplatesResponseBody extends $dara.Model {
|
|
|
375
527
|
*/
|
|
376
528
|
data?: DescribeTemplatesResponseBodyData[];
|
|
377
529
|
/**
|
|
530
|
+
* @remarks
|
|
531
|
+
* The HTTP status code returned.
|
|
532
|
+
*
|
|
378
533
|
* @example
|
|
379
534
|
* 200
|
|
380
535
|
*/
|
|
381
536
|
httpStatusCode?: number;
|
|
382
537
|
/**
|
|
538
|
+
* @remarks
|
|
539
|
+
* The error message returned. This parameter is not returned if the value of Code is `success`.
|
|
540
|
+
*
|
|
383
541
|
* @example
|
|
384
542
|
* success
|
|
385
543
|
*/
|
|
386
544
|
message?: string;
|
|
387
545
|
/**
|
|
546
|
+
* @remarks
|
|
547
|
+
* The page number.
|
|
548
|
+
*
|
|
388
549
|
* @example
|
|
389
550
|
* 1
|
|
390
551
|
*/
|
|
391
552
|
pageNumber?: number;
|
|
392
553
|
/**
|
|
554
|
+
* @remarks
|
|
555
|
+
* The number of entries per page.
|
|
556
|
+
*
|
|
393
557
|
* @example
|
|
394
558
|
* 20
|
|
395
559
|
*/
|
|
396
560
|
pageSize?: number;
|
|
397
561
|
/**
|
|
562
|
+
* @remarks
|
|
563
|
+
* The request ID.
|
|
564
|
+
*
|
|
398
565
|
* @example
|
|
399
566
|
* 1871984F-51F6-5588-BAF6-*******
|
|
400
567
|
*/
|
|
401
568
|
requestId?: string;
|
|
402
569
|
/**
|
|
570
|
+
* @remarks
|
|
571
|
+
* Indicates whether the request was successful.
|
|
572
|
+
*
|
|
403
573
|
* @example
|
|
404
574
|
* True
|
|
405
575
|
*/
|
|
406
576
|
success?: boolean;
|
|
407
577
|
/**
|
|
578
|
+
* @remarks
|
|
579
|
+
* The total number of templates.
|
|
580
|
+
*
|
|
408
581
|
* @example
|
|
409
582
|
* 94
|
|
410
583
|
*/
|
|
@@ -5,6 +5,8 @@ import * as $dara from '@darabonba/typescript';
|
|
|
5
5
|
export class ListInstalledAppsRequest extends $dara.Model {
|
|
6
6
|
/**
|
|
7
7
|
* @remarks
|
|
8
|
+
* The cloud computer ID.
|
|
9
|
+
*
|
|
8
10
|
* This parameter is required.
|
|
9
11
|
*
|
|
10
12
|
* @example
|
|
@@ -12,11 +14,19 @@ export class ListInstalledAppsRequest extends $dara.Model {
|
|
|
12
14
|
*/
|
|
13
15
|
desktopId?: string;
|
|
14
16
|
/**
|
|
17
|
+
* @remarks
|
|
18
|
+
* The page number.\\
|
|
19
|
+
* Default value: 1.
|
|
20
|
+
*
|
|
15
21
|
* @example
|
|
16
22
|
* 1
|
|
17
23
|
*/
|
|
18
24
|
pageNumber?: number;
|
|
19
25
|
/**
|
|
26
|
+
* @remarks
|
|
27
|
+
* The number of entries per page.\\
|
|
28
|
+
* Default value: 20.
|
|
29
|
+
*
|
|
20
30
|
* @example
|
|
21
31
|
* 20
|
|
22
32
|
*/
|
|
@@ -4,11 +4,17 @@ import * as $dara from '@darabonba/typescript';
|
|
|
4
4
|
|
|
5
5
|
export class ListInstalledAppsResponseBodyApps extends $dara.Model {
|
|
6
6
|
/**
|
|
7
|
+
* @remarks
|
|
8
|
+
* The name of the application.
|
|
9
|
+
*
|
|
7
10
|
* @example
|
|
8
11
|
* test_app
|
|
9
12
|
*/
|
|
10
13
|
appName?: string;
|
|
11
14
|
/**
|
|
15
|
+
* @remarks
|
|
16
|
+
* The application version.
|
|
17
|
+
*
|
|
12
18
|
* @example
|
|
13
19
|
* 2.0.1
|
|
14
20
|
*/
|
|
@@ -37,13 +43,23 @@ export class ListInstalledAppsResponseBodyApps extends $dara.Model {
|
|
|
37
43
|
}
|
|
38
44
|
|
|
39
45
|
export class ListInstalledAppsResponseBody extends $dara.Model {
|
|
46
|
+
/**
|
|
47
|
+
* @remarks
|
|
48
|
+
* The information about the application.
|
|
49
|
+
*/
|
|
40
50
|
apps?: ListInstalledAppsResponseBodyApps[];
|
|
41
51
|
/**
|
|
52
|
+
* @remarks
|
|
53
|
+
* The unique ID of the request.
|
|
54
|
+
*
|
|
42
55
|
* @example
|
|
43
56
|
* 1CBAFFAB-B697-4049-A9B1-67E1FC5F****
|
|
44
57
|
*/
|
|
45
58
|
requestId?: string;
|
|
46
59
|
/**
|
|
60
|
+
* @remarks
|
|
61
|
+
* The total number of entries returned.
|
|
62
|
+
*
|
|
47
63
|
* @example
|
|
48
64
|
* 94
|
|
49
65
|
*/
|
|
@@ -842,6 +842,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
842
842
|
*/
|
|
843
843
|
cameraRedirect?: string;
|
|
844
844
|
clientControlMenu?: string;
|
|
845
|
+
clientCreateSnapshot?: string;
|
|
845
846
|
/**
|
|
846
847
|
* @remarks
|
|
847
848
|
* The types of Alibaba Cloud Workspace clients that end users can use to connect to cloud computers.
|
|
@@ -1818,6 +1819,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
1818
1819
|
* off
|
|
1819
1820
|
*/
|
|
1820
1821
|
watermarkSecurity?: string;
|
|
1822
|
+
watermarkShadow?: string;
|
|
1821
1823
|
/**
|
|
1822
1824
|
* @remarks
|
|
1823
1825
|
* The watermark opacity. A higher value makes the watermark more opaque. Valid values: 10 to 100.
|
|
@@ -1883,6 +1885,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
1883
1885
|
businessType: 'BusinessType',
|
|
1884
1886
|
cameraRedirect: 'CameraRedirect',
|
|
1885
1887
|
clientControlMenu: 'ClientControlMenu',
|
|
1888
|
+
clientCreateSnapshot: 'ClientCreateSnapshot',
|
|
1886
1889
|
clientType: 'ClientType',
|
|
1887
1890
|
clipboard: 'Clipboard',
|
|
1888
1891
|
clipboardGraineds: 'ClipboardGraineds',
|
|
@@ -1991,6 +1994,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
1991
1994
|
watermarkPower: 'WatermarkPower',
|
|
1992
1995
|
watermarkRowAmount: 'WatermarkRowAmount',
|
|
1993
1996
|
watermarkSecurity: 'WatermarkSecurity',
|
|
1997
|
+
watermarkShadow: 'WatermarkShadow',
|
|
1994
1998
|
watermarkTransparencyValue: 'WatermarkTransparencyValue',
|
|
1995
1999
|
watermarkType: 'WatermarkType',
|
|
1996
2000
|
wuyingKeeper: 'WuyingKeeper',
|
|
@@ -2008,6 +2012,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
2008
2012
|
businessType: 'number',
|
|
2009
2013
|
cameraRedirect: 'string',
|
|
2010
2014
|
clientControlMenu: 'string',
|
|
2015
|
+
clientCreateSnapshot: 'string',
|
|
2011
2016
|
clientType: { 'type': 'array', 'itemType': ModifyCenterPolicyRequestClientType },
|
|
2012
2017
|
clipboard: 'string',
|
|
2013
2018
|
clipboardGraineds: { 'type': 'array', 'itemType': ModifyCenterPolicyRequestClipboardGraineds },
|
|
@@ -2116,6 +2121,7 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
2116
2121
|
watermarkPower: 'string',
|
|
2117
2122
|
watermarkRowAmount: 'number',
|
|
2118
2123
|
watermarkSecurity: 'string',
|
|
2124
|
+
watermarkShadow: 'string',
|
|
2119
2125
|
watermarkTransparencyValue: 'number',
|
|
2120
2126
|
watermarkType: 'string',
|
|
2121
2127
|
wuyingKeeper: 'string',
|