@alicloud/ecd20200930 4.11.7 → 4.11.9
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.js +81 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateCenterPolicyRequest.d.ts +65 -0
- package/dist/models/CreateCenterPolicyRequest.js +70 -1
- package/dist/models/CreateCenterPolicyRequest.js.map +1 -1
- package/dist/models/DescribeDesktopGroupSessionsRequest.d.ts +12 -0
- package/dist/models/DescribeDesktopGroupSessionsRequest.js +11 -0
- package/dist/models/DescribeDesktopGroupSessionsRequest.js.map +1 -1
- package/dist/models/DescribeDesktopGroupSessionsResponseBody.d.ts +33 -0
- package/dist/models/DescribeDesktopGroupSessionsResponseBody.js +31 -1
- package/dist/models/DescribeDesktopGroupSessionsResponseBody.js.map +1 -1
- package/dist/models/DescribeDesktopSessionsRequest.d.ts +6 -0
- package/dist/models/DescribeDesktopSessionsRequest.js +4 -0
- package/dist/models/DescribeDesktopSessionsRequest.js.map +1 -1
- package/dist/models/DescribeDesktopSessionsResponseBody.d.ts +33 -0
- package/dist/models/DescribeDesktopSessionsResponseBody.js +31 -1
- package/dist/models/DescribeDesktopSessionsResponseBody.js.map +1 -1
- package/dist/models/DescribeModificationPriceRequest.d.ts +2 -0
- package/dist/models/DescribeModificationPriceRequest.js +4 -0
- package/dist/models/DescribeModificationPriceRequest.js.map +1 -1
- package/dist/models/DescribePolicyGroupsResponseBody.d.ts +36 -0
- package/dist/models/DescribePolicyGroupsResponseBody.js +40 -1
- package/dist/models/DescribePolicyGroupsResponseBody.js.map +1 -1
- package/dist/models/DescribePriceRequest.d.ts +2 -0
- package/dist/models/DescribePriceRequest.js +4 -0
- package/dist/models/DescribePriceRequest.js.map +1 -1
- package/dist/models/ModifyCenterPolicyRequest.d.ts +61 -0
- package/dist/models/ModifyCenterPolicyRequest.js +70 -1
- package/dist/models/ModifyCenterPolicyRequest.js.map +1 -1
- package/dist/models/ResetSnapshotRequest.d.ts +1 -0
- package/dist/models/ResetSnapshotRequest.js +2 -0
- package/dist/models/ResetSnapshotRequest.js.map +1 -1
- package/dist/models/model.d.ts +7 -0
- package/dist/models/model.js +62 -47
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +108 -0
- package/src/models/CreateCenterPolicyRequest.ts +116 -0
- package/src/models/DescribeDesktopGroupSessionsRequest.ts +23 -0
- package/src/models/DescribeDesktopGroupSessionsResponseBody.ts +54 -0
- package/src/models/DescribeDesktopSessionsRequest.ts +10 -0
- package/src/models/DescribeDesktopSessionsResponseBody.ts +54 -0
- package/src/models/DescribeModificationPriceRequest.ts +6 -0
- package/src/models/DescribePolicyGroupsResponseBody.ts +66 -0
- package/src/models/DescribePriceRequest.ts +6 -0
- package/src/models/ModifyCenterPolicyRequest.ts +112 -0
- package/src/models/ResetSnapshotRequest.ts +3 -0
- package/src/models/model.ts +7 -0
|
@@ -3,6 +3,12 @@ import * as $dara from '@darabonba/typescript';
|
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
export class DescribeDesktopGroupSessionsRequest extends $dara.Model {
|
|
6
|
+
desktopGroupIds?: string[];
|
|
7
|
+
/**
|
|
8
|
+
* @example
|
|
9
|
+
* ecd-4oyi32wmrctgx****
|
|
10
|
+
*/
|
|
11
|
+
desktopGroupName?: string;
|
|
6
12
|
/**
|
|
7
13
|
* @remarks
|
|
8
14
|
* The end of the time range to query.
|
|
@@ -19,6 +25,12 @@ export class DescribeDesktopGroupSessionsRequest extends $dara.Model {
|
|
|
19
25
|
* xianqiu
|
|
20
26
|
*/
|
|
21
27
|
endUserId?: string;
|
|
28
|
+
fillTerminalInfo?: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* @example
|
|
31
|
+
* zh-CN
|
|
32
|
+
*/
|
|
33
|
+
language?: string;
|
|
22
34
|
/**
|
|
23
35
|
* @remarks
|
|
24
36
|
* The number of entries per page.
|
|
@@ -92,8 +104,12 @@ export class DescribeDesktopGroupSessionsRequest extends $dara.Model {
|
|
|
92
104
|
startTime?: string;
|
|
93
105
|
static names(): { [key: string]: string } {
|
|
94
106
|
return {
|
|
107
|
+
desktopGroupIds: 'DesktopGroupIds',
|
|
108
|
+
desktopGroupName: 'DesktopGroupName',
|
|
95
109
|
endTime: 'EndTime',
|
|
96
110
|
endUserId: 'EndUserId',
|
|
111
|
+
fillTerminalInfo: 'FillTerminalInfo',
|
|
112
|
+
language: 'Language',
|
|
97
113
|
maxResults: 'MaxResults',
|
|
98
114
|
nextToken: 'NextToken',
|
|
99
115
|
ownType: 'OwnType',
|
|
@@ -105,8 +121,12 @@ export class DescribeDesktopGroupSessionsRequest extends $dara.Model {
|
|
|
105
121
|
|
|
106
122
|
static types(): { [key: string]: any } {
|
|
107
123
|
return {
|
|
124
|
+
desktopGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
125
|
+
desktopGroupName: 'string',
|
|
108
126
|
endTime: 'string',
|
|
109
127
|
endUserId: 'string',
|
|
128
|
+
fillTerminalInfo: 'boolean',
|
|
129
|
+
language: 'string',
|
|
110
130
|
maxResults: 'number',
|
|
111
131
|
nextToken: 'string',
|
|
112
132
|
ownType: 'number',
|
|
@@ -117,6 +137,9 @@ export class DescribeDesktopGroupSessionsRequest extends $dara.Model {
|
|
|
117
137
|
}
|
|
118
138
|
|
|
119
139
|
validate() {
|
|
140
|
+
if(Array.isArray(this.desktopGroupIds)) {
|
|
141
|
+
$dara.Model.validateArray(this.desktopGroupIds);
|
|
142
|
+
}
|
|
120
143
|
super.validate();
|
|
121
144
|
}
|
|
122
145
|
|
|
@@ -2,6 +2,54 @@
|
|
|
2
2
|
import * as $dara from '@darabonba/typescript';
|
|
3
3
|
|
|
4
4
|
|
|
5
|
+
export class DescribeDesktopGroupSessionsResponseBodySessionsTerminalInfo extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* wuying_mac_x86_64
|
|
9
|
+
*/
|
|
10
|
+
model?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* Mac
|
|
14
|
+
*/
|
|
15
|
+
productName?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 96c530bc-6095-4014-8bbc-d461b8ac****
|
|
19
|
+
*/
|
|
20
|
+
serialNumber?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* EBFDC7773BEBAD418A9F89429652****
|
|
24
|
+
*/
|
|
25
|
+
uuid?: string;
|
|
26
|
+
static names(): { [key: string]: string } {
|
|
27
|
+
return {
|
|
28
|
+
model: 'Model',
|
|
29
|
+
productName: 'ProductName',
|
|
30
|
+
serialNumber: 'SerialNumber',
|
|
31
|
+
uuid: 'Uuid',
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
static types(): { [key: string]: any } {
|
|
36
|
+
return {
|
|
37
|
+
model: 'string',
|
|
38
|
+
productName: 'string',
|
|
39
|
+
serialNumber: 'string',
|
|
40
|
+
uuid: 'string',
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
validate() {
|
|
45
|
+
super.validate();
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
constructor(map?: { [key: string]: any }) {
|
|
49
|
+
super(map);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
5
53
|
export class DescribeDesktopGroupSessionsResponseBodySessions extends $dara.Model {
|
|
6
54
|
/**
|
|
7
55
|
* @remarks
|
|
@@ -173,6 +221,7 @@ export class DescribeDesktopGroupSessionsResponseBodySessions extends $dara.Mode
|
|
|
173
221
|
* Connected
|
|
174
222
|
*/
|
|
175
223
|
sessionStatus?: string;
|
|
224
|
+
terminalInfo?: DescribeDesktopGroupSessionsResponseBodySessionsTerminalInfo;
|
|
176
225
|
/**
|
|
177
226
|
* @remarks
|
|
178
227
|
* The total duration of the sessions.
|
|
@@ -201,6 +250,7 @@ export class DescribeDesktopGroupSessionsResponseBodySessions extends $dara.Mode
|
|
|
201
250
|
protocolType: 'ProtocolType',
|
|
202
251
|
sessionIdleTime: 'SessionIdleTime',
|
|
203
252
|
sessionStatus: 'SessionStatus',
|
|
253
|
+
terminalInfo: 'TerminalInfo',
|
|
204
254
|
totalConnectionDuration: 'TotalConnectionDuration',
|
|
205
255
|
};
|
|
206
256
|
}
|
|
@@ -225,11 +275,15 @@ export class DescribeDesktopGroupSessionsResponseBodySessions extends $dara.Mode
|
|
|
225
275
|
protocolType: 'string',
|
|
226
276
|
sessionIdleTime: 'number',
|
|
227
277
|
sessionStatus: 'string',
|
|
278
|
+
terminalInfo: DescribeDesktopGroupSessionsResponseBodySessionsTerminalInfo,
|
|
228
279
|
totalConnectionDuration: 'number',
|
|
229
280
|
};
|
|
230
281
|
}
|
|
231
282
|
|
|
232
283
|
validate() {
|
|
284
|
+
if(this.terminalInfo && typeof (this.terminalInfo as any).validate === 'function') {
|
|
285
|
+
(this.terminalInfo as any).validate();
|
|
286
|
+
}
|
|
233
287
|
super.validate();
|
|
234
288
|
}
|
|
235
289
|
|
|
@@ -48,6 +48,12 @@ export class DescribeDesktopSessionsRequest extends $dara.Model {
|
|
|
48
48
|
* alice
|
|
49
49
|
*/
|
|
50
50
|
endUserIdFilter?: string;
|
|
51
|
+
fillHardwareInfo?: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* @example
|
|
54
|
+
* zh-CN
|
|
55
|
+
*/
|
|
56
|
+
language?: string;
|
|
51
57
|
/**
|
|
52
58
|
* @remarks
|
|
53
59
|
* The office network ID.
|
|
@@ -127,6 +133,8 @@ export class DescribeDesktopSessionsRequest extends $dara.Model {
|
|
|
127
133
|
endTime: 'EndTime',
|
|
128
134
|
endUserId: 'EndUserId',
|
|
129
135
|
endUserIdFilter: 'EndUserIdFilter',
|
|
136
|
+
fillHardwareInfo: 'FillHardwareInfo',
|
|
137
|
+
language: 'Language',
|
|
130
138
|
officeSiteId: 'OfficeSiteId',
|
|
131
139
|
pageNumber: 'PageNumber',
|
|
132
140
|
pageSize: 'PageSize',
|
|
@@ -146,6 +154,8 @@ export class DescribeDesktopSessionsRequest extends $dara.Model {
|
|
|
146
154
|
endTime: 'string',
|
|
147
155
|
endUserId: 'string',
|
|
148
156
|
endUserIdFilter: 'string',
|
|
157
|
+
fillHardwareInfo: 'boolean',
|
|
158
|
+
language: 'string',
|
|
149
159
|
officeSiteId: 'string',
|
|
150
160
|
pageNumber: 'number',
|
|
151
161
|
pageSize: 'number',
|
|
@@ -28,6 +28,54 @@ export class DescribeDesktopSessionsResponseBodySessionsResourceGroups extends $
|
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
+
export class DescribeDesktopSessionsResponseBodySessionsTerminalInfo extends $dara.Model {
|
|
32
|
+
/**
|
|
33
|
+
* @example
|
|
34
|
+
* Mac
|
|
35
|
+
*/
|
|
36
|
+
model?: string;
|
|
37
|
+
/**
|
|
38
|
+
* @example
|
|
39
|
+
* Mac
|
|
40
|
+
*/
|
|
41
|
+
productName?: string;
|
|
42
|
+
/**
|
|
43
|
+
* @example
|
|
44
|
+
* 96c530bc-6095-4014-8bbc-d461b8ac****
|
|
45
|
+
*/
|
|
46
|
+
serialNumber?: string;
|
|
47
|
+
/**
|
|
48
|
+
* @example
|
|
49
|
+
* EBFDC7773BEBAD418A9F89429652****
|
|
50
|
+
*/
|
|
51
|
+
uuid?: string;
|
|
52
|
+
static names(): { [key: string]: string } {
|
|
53
|
+
return {
|
|
54
|
+
model: 'Model',
|
|
55
|
+
productName: 'ProductName',
|
|
56
|
+
serialNumber: 'SerialNumber',
|
|
57
|
+
uuid: 'Uuid',
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
static types(): { [key: string]: any } {
|
|
62
|
+
return {
|
|
63
|
+
model: 'string',
|
|
64
|
+
productName: 'string',
|
|
65
|
+
serialNumber: 'string',
|
|
66
|
+
uuid: 'string',
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
validate() {
|
|
71
|
+
super.validate();
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
constructor(map?: { [key: string]: any }) {
|
|
75
|
+
super(map);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
31
79
|
export class DescribeDesktopSessionsResponseBodySessions extends $dara.Model {
|
|
32
80
|
/**
|
|
33
81
|
* @remarks
|
|
@@ -196,6 +244,7 @@ export class DescribeDesktopSessionsResponseBodySessions extends $dara.Model {
|
|
|
196
244
|
* monthPackage
|
|
197
245
|
*/
|
|
198
246
|
subPayType?: string;
|
|
247
|
+
terminalInfo?: DescribeDesktopSessionsResponseBodySessionsTerminalInfo;
|
|
199
248
|
/**
|
|
200
249
|
* @remarks
|
|
201
250
|
* The total connection duration. Unit: seconds.
|
|
@@ -225,6 +274,7 @@ export class DescribeDesktopSessionsResponseBodySessions extends $dara.Model {
|
|
|
225
274
|
sessionStartTime: 'SessionStartTime',
|
|
226
275
|
sessionStatus: 'SessionStatus',
|
|
227
276
|
subPayType: 'SubPayType',
|
|
277
|
+
terminalInfo: 'TerminalInfo',
|
|
228
278
|
totalConnectionTime: 'TotalConnectionTime',
|
|
229
279
|
};
|
|
230
280
|
}
|
|
@@ -250,6 +300,7 @@ export class DescribeDesktopSessionsResponseBodySessions extends $dara.Model {
|
|
|
250
300
|
sessionStartTime: 'string',
|
|
251
301
|
sessionStatus: 'string',
|
|
252
302
|
subPayType: 'string',
|
|
303
|
+
terminalInfo: DescribeDesktopSessionsResponseBodySessionsTerminalInfo,
|
|
253
304
|
totalConnectionTime: 'number',
|
|
254
305
|
};
|
|
255
306
|
}
|
|
@@ -258,6 +309,9 @@ export class DescribeDesktopSessionsResponseBodySessions extends $dara.Model {
|
|
|
258
309
|
if(Array.isArray(this.resourceGroups)) {
|
|
259
310
|
$dara.Model.validateArray(this.resourceGroups);
|
|
260
311
|
}
|
|
312
|
+
if(this.terminalInfo && typeof (this.terminalInfo as any).validate === 'function') {
|
|
313
|
+
(this.terminalInfo as any).validate();
|
|
314
|
+
}
|
|
261
315
|
super.validate();
|
|
262
316
|
}
|
|
263
317
|
|
|
@@ -110,6 +110,7 @@ export class DescribeModificationPriceRequest extends $dara.Model {
|
|
|
110
110
|
* Desktop
|
|
111
111
|
*/
|
|
112
112
|
resourceType?: string;
|
|
113
|
+
rootDiskPerformanceLevel?: string;
|
|
113
114
|
/**
|
|
114
115
|
* @remarks
|
|
115
116
|
* The size of the system disk. Unit: GiB.
|
|
@@ -118,6 +119,7 @@ export class DescribeModificationPriceRequest extends $dara.Model {
|
|
|
118
119
|
* 80
|
|
119
120
|
*/
|
|
120
121
|
rootDiskSizeGib?: number;
|
|
122
|
+
userDiskPerformanceLevel?: string;
|
|
121
123
|
/**
|
|
122
124
|
* @remarks
|
|
123
125
|
* The size of the data disk. Unit: GiB.
|
|
@@ -136,7 +138,9 @@ export class DescribeModificationPriceRequest extends $dara.Model {
|
|
|
136
138
|
resellerOwnerUid: 'ResellerOwnerUid',
|
|
137
139
|
resourceSpecs: 'ResourceSpecs',
|
|
138
140
|
resourceType: 'ResourceType',
|
|
141
|
+
rootDiskPerformanceLevel: 'RootDiskPerformanceLevel',
|
|
139
142
|
rootDiskSizeGib: 'RootDiskSizeGib',
|
|
143
|
+
userDiskPerformanceLevel: 'UserDiskPerformanceLevel',
|
|
140
144
|
userDiskSizeGib: 'UserDiskSizeGib',
|
|
141
145
|
};
|
|
142
146
|
}
|
|
@@ -151,7 +155,9 @@ export class DescribeModificationPriceRequest extends $dara.Model {
|
|
|
151
155
|
resellerOwnerUid: 'number',
|
|
152
156
|
resourceSpecs: { 'type': 'array', 'itemType': DescribeModificationPriceRequestResourceSpecs },
|
|
153
157
|
resourceType: 'string',
|
|
158
|
+
rootDiskPerformanceLevel: 'string',
|
|
154
159
|
rootDiskSizeGib: 'number',
|
|
160
|
+
userDiskPerformanceLevel: 'string',
|
|
155
161
|
userDiskSizeGib: 'number',
|
|
156
162
|
};
|
|
157
163
|
}
|
|
@@ -471,6 +471,32 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroupsNetRedirectRule
|
|
|
471
471
|
}
|
|
472
472
|
}
|
|
473
473
|
|
|
474
|
+
export class DescribePolicyGroupsResponseBodyDescribePolicyGroupsRecordEventLevels extends $dara.Model {
|
|
475
|
+
eventLevel?: string;
|
|
476
|
+
eventType?: string;
|
|
477
|
+
static names(): { [key: string]: string } {
|
|
478
|
+
return {
|
|
479
|
+
eventLevel: 'EventLevel',
|
|
480
|
+
eventType: 'EventType',
|
|
481
|
+
};
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
static types(): { [key: string]: any } {
|
|
485
|
+
return {
|
|
486
|
+
eventLevel: 'string',
|
|
487
|
+
eventType: 'string',
|
|
488
|
+
};
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
validate() {
|
|
492
|
+
super.validate();
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
constructor(map?: { [key: string]: any }) {
|
|
496
|
+
super(map);
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
|
|
474
500
|
export class DescribePolicyGroupsResponseBodyDescribePolicyGroupsUsbSupplyRedirectRule extends $dara.Model {
|
|
475
501
|
/**
|
|
476
502
|
* @remarks
|
|
@@ -605,6 +631,11 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
605
631
|
* The security group rules.
|
|
606
632
|
*/
|
|
607
633
|
authorizeSecurityPolicyRules?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsAuthorizeSecurityPolicyRules[];
|
|
634
|
+
/**
|
|
635
|
+
* @example
|
|
636
|
+
* off
|
|
637
|
+
*/
|
|
638
|
+
autoReconnect?: string;
|
|
608
639
|
/**
|
|
609
640
|
* @remarks
|
|
610
641
|
* Indicates whether the webcam redirection feature is enabled.
|
|
@@ -964,6 +995,11 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
964
995
|
* off
|
|
965
996
|
*/
|
|
966
997
|
mobileRestart?: string;
|
|
998
|
+
/**
|
|
999
|
+
* @example
|
|
1000
|
+
* off
|
|
1001
|
+
*/
|
|
1002
|
+
mobileSafeMenu?: string;
|
|
967
1003
|
/**
|
|
968
1004
|
* @remarks
|
|
969
1005
|
* Specifies whether to display the shut down button in the DesktopAssistant when the cloud computer is accessed from the Alibaba Cloud Workspace mobile clients (including the Android client and the iOS client).
|
|
@@ -979,6 +1015,16 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
979
1015
|
* off
|
|
980
1016
|
*/
|
|
981
1017
|
mobileShutdown?: string;
|
|
1018
|
+
/**
|
|
1019
|
+
* @example
|
|
1020
|
+
* off
|
|
1021
|
+
*/
|
|
1022
|
+
mobileWuyingKeeper?: string;
|
|
1023
|
+
/**
|
|
1024
|
+
* @example
|
|
1025
|
+
* off
|
|
1026
|
+
*/
|
|
1027
|
+
mobileWyAssistant?: string;
|
|
982
1028
|
/**
|
|
983
1029
|
* @remarks
|
|
984
1030
|
* The name of the cloud computer policy.
|
|
@@ -1117,11 +1163,13 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
1117
1163
|
* 10
|
|
1118
1164
|
*/
|
|
1119
1165
|
recordEventDuration?: number;
|
|
1166
|
+
recordEventFileExts?: string[];
|
|
1120
1167
|
/**
|
|
1121
1168
|
* @remarks
|
|
1122
1169
|
* The array of absolute paths of the monitored files in the screen recording audit policy.
|
|
1123
1170
|
*/
|
|
1124
1171
|
recordEventFilePaths?: string[];
|
|
1172
|
+
recordEventLevels?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsRecordEventLevels[];
|
|
1125
1173
|
/**
|
|
1126
1174
|
* @remarks
|
|
1127
1175
|
* The array of absolute paths of the monitored registry entries in the screen recording audit policy.
|
|
@@ -1602,6 +1650,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
1602
1650
|
appContentProtection: 'AppContentProtection',
|
|
1603
1651
|
authorizeAccessPolicyRules: 'AuthorizeAccessPolicyRules',
|
|
1604
1652
|
authorizeSecurityPolicyRules: 'AuthorizeSecurityPolicyRules',
|
|
1653
|
+
autoReconnect: 'AutoReconnect',
|
|
1605
1654
|
cameraRedirect: 'CameraRedirect',
|
|
1606
1655
|
clientControlMenu: 'ClientControlMenu',
|
|
1607
1656
|
clientTypes: 'ClientTypes',
|
|
@@ -1645,7 +1694,10 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
1645
1694
|
memorySampleDuration: 'MemorySampleDuration',
|
|
1646
1695
|
memorySingleRateLimit: 'MemorySingleRateLimit',
|
|
1647
1696
|
mobileRestart: 'MobileRestart',
|
|
1697
|
+
mobileSafeMenu: 'MobileSafeMenu',
|
|
1648
1698
|
mobileShutdown: 'MobileShutdown',
|
|
1699
|
+
mobileWuyingKeeper: 'MobileWuyingKeeper',
|
|
1700
|
+
mobileWyAssistant: 'MobileWyAssistant',
|
|
1649
1701
|
name: 'Name',
|
|
1650
1702
|
netRedirect: 'NetRedirect',
|
|
1651
1703
|
netRedirectRule: 'NetRedirectRule',
|
|
@@ -1659,7 +1711,9 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
1659
1711
|
recordContent: 'RecordContent',
|
|
1660
1712
|
recordContentExpires: 'RecordContentExpires',
|
|
1661
1713
|
recordEventDuration: 'RecordEventDuration',
|
|
1714
|
+
recordEventFileExts: 'RecordEventFileExts',
|
|
1662
1715
|
recordEventFilePaths: 'RecordEventFilePaths',
|
|
1716
|
+
recordEventLevels: 'RecordEventLevels',
|
|
1663
1717
|
recordEventRegisters: 'RecordEventRegisters',
|
|
1664
1718
|
recording: 'Recording',
|
|
1665
1719
|
recordingAudio: 'RecordingAudio',
|
|
@@ -1719,6 +1773,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
1719
1773
|
appContentProtection: 'string',
|
|
1720
1774
|
authorizeAccessPolicyRules: { 'type': 'array', 'itemType': DescribePolicyGroupsResponseBodyDescribePolicyGroupsAuthorizeAccessPolicyRules },
|
|
1721
1775
|
authorizeSecurityPolicyRules: { 'type': 'array', 'itemType': DescribePolicyGroupsResponseBodyDescribePolicyGroupsAuthorizeSecurityPolicyRules },
|
|
1776
|
+
autoReconnect: 'string',
|
|
1722
1777
|
cameraRedirect: 'string',
|
|
1723
1778
|
clientControlMenu: 'string',
|
|
1724
1779
|
clientTypes: { 'type': 'array', 'itemType': DescribePolicyGroupsResponseBodyDescribePolicyGroupsClientTypes },
|
|
@@ -1762,7 +1817,10 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
1762
1817
|
memorySampleDuration: 'number',
|
|
1763
1818
|
memorySingleRateLimit: 'number',
|
|
1764
1819
|
mobileRestart: 'string',
|
|
1820
|
+
mobileSafeMenu: 'string',
|
|
1765
1821
|
mobileShutdown: 'string',
|
|
1822
|
+
mobileWuyingKeeper: 'string',
|
|
1823
|
+
mobileWyAssistant: 'string',
|
|
1766
1824
|
name: 'string',
|
|
1767
1825
|
netRedirect: 'string',
|
|
1768
1826
|
netRedirectRule: { 'type': 'array', 'itemType': DescribePolicyGroupsResponseBodyDescribePolicyGroupsNetRedirectRule },
|
|
@@ -1776,7 +1834,9 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
1776
1834
|
recordContent: 'string',
|
|
1777
1835
|
recordContentExpires: 'number',
|
|
1778
1836
|
recordEventDuration: 'number',
|
|
1837
|
+
recordEventFileExts: { 'type': 'array', 'itemType': 'string' },
|
|
1779
1838
|
recordEventFilePaths: { 'type': 'array', 'itemType': 'string' },
|
|
1839
|
+
recordEventLevels: { 'type': 'array', 'itemType': DescribePolicyGroupsResponseBodyDescribePolicyGroupsRecordEventLevels },
|
|
1780
1840
|
recordEventRegisters: { 'type': 'array', 'itemType': 'string' },
|
|
1781
1841
|
recording: 'string',
|
|
1782
1842
|
recordingAudio: 'string',
|
|
@@ -1861,9 +1921,15 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $dara.
|
|
|
1861
1921
|
if(Array.isArray(this.preemptLoginUsers)) {
|
|
1862
1922
|
$dara.Model.validateArray(this.preemptLoginUsers);
|
|
1863
1923
|
}
|
|
1924
|
+
if(Array.isArray(this.recordEventFileExts)) {
|
|
1925
|
+
$dara.Model.validateArray(this.recordEventFileExts);
|
|
1926
|
+
}
|
|
1864
1927
|
if(Array.isArray(this.recordEventFilePaths)) {
|
|
1865
1928
|
$dara.Model.validateArray(this.recordEventFilePaths);
|
|
1866
1929
|
}
|
|
1930
|
+
if(Array.isArray(this.recordEventLevels)) {
|
|
1931
|
+
$dara.Model.validateArray(this.recordEventLevels);
|
|
1932
|
+
}
|
|
1867
1933
|
if(Array.isArray(this.recordEventRegisters)) {
|
|
1868
1934
|
$dara.Model.validateArray(this.recordEventRegisters);
|
|
1869
1935
|
}
|
|
@@ -159,6 +159,7 @@ export class DescribePriceRequest extends $dara.Model {
|
|
|
159
159
|
* 40
|
|
160
160
|
*/
|
|
161
161
|
rootDiskCategory?: string;
|
|
162
|
+
rootDiskPerformanceLevel?: string;
|
|
162
163
|
/**
|
|
163
164
|
* @remarks
|
|
164
165
|
* The size of the system disk. Unit: GiB. If you set `ResourceType` to `Desktop`, you must specify this parameter.
|
|
@@ -181,6 +182,7 @@ export class DescribePriceRequest extends $dara.Model {
|
|
|
181
182
|
* 80
|
|
182
183
|
*/
|
|
183
184
|
userDiskCategory?: string;
|
|
185
|
+
userDiskPerformanceLevel?: string;
|
|
184
186
|
/**
|
|
185
187
|
* @remarks
|
|
186
188
|
* The size of the data disk. Unit: GiB.
|
|
@@ -205,8 +207,10 @@ export class DescribePriceRequest extends $dara.Model {
|
|
|
205
207
|
resellerOwnerUid: 'ResellerOwnerUid',
|
|
206
208
|
resourceType: 'ResourceType',
|
|
207
209
|
rootDiskCategory: 'RootDiskCategory',
|
|
210
|
+
rootDiskPerformanceLevel: 'RootDiskPerformanceLevel',
|
|
208
211
|
rootDiskSizeGib: 'RootDiskSizeGib',
|
|
209
212
|
userDiskCategory: 'UserDiskCategory',
|
|
213
|
+
userDiskPerformanceLevel: 'UserDiskPerformanceLevel',
|
|
210
214
|
userDiskSizeGib: 'UserDiskSizeGib',
|
|
211
215
|
};
|
|
212
216
|
}
|
|
@@ -227,8 +231,10 @@ export class DescribePriceRequest extends $dara.Model {
|
|
|
227
231
|
resellerOwnerUid: 'number',
|
|
228
232
|
resourceType: 'string',
|
|
229
233
|
rootDiskCategory: 'string',
|
|
234
|
+
rootDiskPerformanceLevel: 'string',
|
|
230
235
|
rootDiskSizeGib: 'number',
|
|
231
236
|
userDiskCategory: 'string',
|
|
237
|
+
userDiskPerformanceLevel: 'string',
|
|
232
238
|
userDiskSizeGib: 'number',
|
|
233
239
|
};
|
|
234
240
|
}
|