@alicloud/ecd20200930 4.11.8 → 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 +66 -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/DescribePolicyGroupsResponseBody.d.ts +36 -0
- package/dist/models/DescribePolicyGroupsResponseBody.js +40 -1
- package/dist/models/DescribePolicyGroupsResponseBody.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/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 +88 -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/DescribePolicyGroupsResponseBody.ts +66 -0
- package/src/models/ModifyCenterPolicyRequest.ts +112 -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
|
|
|
@@ -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
|
}
|
|
@@ -212,6 +212,35 @@ export class ModifyCenterPolicyRequestClientType extends $dara.Model {
|
|
|
212
212
|
}
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
+
export class ModifyCenterPolicyRequestClipboardGraineds extends $dara.Model {
|
|
216
|
+
clipboardSize?: number;
|
|
217
|
+
clipboardType?: string;
|
|
218
|
+
grainedType?: string;
|
|
219
|
+
static names(): { [key: string]: string } {
|
|
220
|
+
return {
|
|
221
|
+
clipboardSize: 'ClipboardSize',
|
|
222
|
+
clipboardType: 'ClipboardType',
|
|
223
|
+
grainedType: 'GrainedType',
|
|
224
|
+
};
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
static types(): { [key: string]: any } {
|
|
228
|
+
return {
|
|
229
|
+
clipboardSize: 'number',
|
|
230
|
+
clipboardType: 'string',
|
|
231
|
+
grainedType: 'string',
|
|
232
|
+
};
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
validate() {
|
|
236
|
+
super.validate();
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
constructor(map?: { [key: string]: any }) {
|
|
240
|
+
super(map);
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
|
|
215
244
|
export class ModifyCenterPolicyRequestDeviceRedirects extends $dara.Model {
|
|
216
245
|
/**
|
|
217
246
|
* @remarks
|
|
@@ -474,6 +503,40 @@ export class ModifyCenterPolicyRequestNetRedirectRule extends $dara.Model {
|
|
|
474
503
|
}
|
|
475
504
|
}
|
|
476
505
|
|
|
506
|
+
export class ModifyCenterPolicyRequestRecordEventLevels extends $dara.Model {
|
|
507
|
+
/**
|
|
508
|
+
* @example
|
|
509
|
+
* HIGH
|
|
510
|
+
*/
|
|
511
|
+
eventLevel?: string;
|
|
512
|
+
/**
|
|
513
|
+
* @example
|
|
514
|
+
* StartApplication
|
|
515
|
+
*/
|
|
516
|
+
eventType?: string;
|
|
517
|
+
static names(): { [key: string]: string } {
|
|
518
|
+
return {
|
|
519
|
+
eventLevel: 'EventLevel',
|
|
520
|
+
eventType: 'EventType',
|
|
521
|
+
};
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
static types(): { [key: string]: any } {
|
|
525
|
+
return {
|
|
526
|
+
eventLevel: 'string',
|
|
527
|
+
eventType: 'string',
|
|
528
|
+
};
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
validate() {
|
|
532
|
+
super.validate();
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
constructor(map?: { [key: string]: any }) {
|
|
536
|
+
super(map);
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
|
|
477
540
|
export class ModifyCenterPolicyRequestRevokeAccessPolicyRule extends $dara.Model {
|
|
478
541
|
/**
|
|
479
542
|
* @remarks
|
|
@@ -745,6 +808,11 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
745
808
|
* The security group rules.
|
|
746
809
|
*/
|
|
747
810
|
authorizeSecurityPolicyRule?: ModifyCenterPolicyRequestAuthorizeSecurityPolicyRule[];
|
|
811
|
+
/**
|
|
812
|
+
* @example
|
|
813
|
+
* off
|
|
814
|
+
*/
|
|
815
|
+
autoReconnect?: string;
|
|
748
816
|
/**
|
|
749
817
|
* @remarks
|
|
750
818
|
* The business type.
|
|
@@ -794,6 +862,8 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
794
862
|
* off
|
|
795
863
|
*/
|
|
796
864
|
clipboard?: string;
|
|
865
|
+
clipboardGraineds?: ModifyCenterPolicyRequestClipboardGraineds[];
|
|
866
|
+
clipboardScope?: string;
|
|
797
867
|
/**
|
|
798
868
|
* @remarks
|
|
799
869
|
* Specifies whether to enable color enhancement for design and 3D applications.
|
|
@@ -1125,6 +1195,11 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
1125
1195
|
* off
|
|
1126
1196
|
*/
|
|
1127
1197
|
mobileRestart?: string;
|
|
1198
|
+
/**
|
|
1199
|
+
* @example
|
|
1200
|
+
* off
|
|
1201
|
+
*/
|
|
1202
|
+
mobileSafeMenu?: string;
|
|
1128
1203
|
/**
|
|
1129
1204
|
* @remarks
|
|
1130
1205
|
* Specifies whether to display the Stop button in the DesktopAssistant menu when end users connect to cloud computers from Android clients.
|
|
@@ -1140,6 +1215,16 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
1140
1215
|
* off
|
|
1141
1216
|
*/
|
|
1142
1217
|
mobileShutdown?: string;
|
|
1218
|
+
/**
|
|
1219
|
+
* @example
|
|
1220
|
+
* off
|
|
1221
|
+
*/
|
|
1222
|
+
mobileWuyingKeeper?: string;
|
|
1223
|
+
/**
|
|
1224
|
+
* @example
|
|
1225
|
+
* off
|
|
1226
|
+
*/
|
|
1227
|
+
mobileWyAssistant?: string;
|
|
1143
1228
|
/**
|
|
1144
1229
|
* @remarks
|
|
1145
1230
|
* The policy name.
|
|
@@ -1241,11 +1326,13 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
1241
1326
|
* 10
|
|
1242
1327
|
*/
|
|
1243
1328
|
recordEventDuration?: number;
|
|
1329
|
+
recordEventFileExts?: string[];
|
|
1244
1330
|
/**
|
|
1245
1331
|
* @remarks
|
|
1246
1332
|
* The absolute paths to screen recording files.
|
|
1247
1333
|
*/
|
|
1248
1334
|
recordEventFilePaths?: string[];
|
|
1335
|
+
recordEventLevels?: ModifyCenterPolicyRequestRecordEventLevels[];
|
|
1249
1336
|
/**
|
|
1250
1337
|
* @remarks
|
|
1251
1338
|
* The absolute paths to screen recording registries.
|
|
@@ -1791,11 +1878,14 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
1791
1878
|
appContentProtection: 'AppContentProtection',
|
|
1792
1879
|
authorizeAccessPolicyRule: 'AuthorizeAccessPolicyRule',
|
|
1793
1880
|
authorizeSecurityPolicyRule: 'AuthorizeSecurityPolicyRule',
|
|
1881
|
+
autoReconnect: 'AutoReconnect',
|
|
1794
1882
|
businessType: 'BusinessType',
|
|
1795
1883
|
cameraRedirect: 'CameraRedirect',
|
|
1796
1884
|
clientControlMenu: 'ClientControlMenu',
|
|
1797
1885
|
clientType: 'ClientType',
|
|
1798
1886
|
clipboard: 'Clipboard',
|
|
1887
|
+
clipboardGraineds: 'ClipboardGraineds',
|
|
1888
|
+
clipboardScope: 'ClipboardScope',
|
|
1799
1889
|
colorEnhancement: 'ColorEnhancement',
|
|
1800
1890
|
cpdDriveClipboard: 'CpdDriveClipboard',
|
|
1801
1891
|
cpuDownGradeDuration: 'CpuDownGradeDuration',
|
|
@@ -1832,7 +1922,10 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
1832
1922
|
memorySampleDuration: 'MemorySampleDuration',
|
|
1833
1923
|
memorySingleRateLimit: 'MemorySingleRateLimit',
|
|
1834
1924
|
mobileRestart: 'MobileRestart',
|
|
1925
|
+
mobileSafeMenu: 'MobileSafeMenu',
|
|
1835
1926
|
mobileShutdown: 'MobileShutdown',
|
|
1927
|
+
mobileWuyingKeeper: 'MobileWuyingKeeper',
|
|
1928
|
+
mobileWyAssistant: 'MobileWyAssistant',
|
|
1836
1929
|
name: 'Name',
|
|
1837
1930
|
netRedirect: 'NetRedirect',
|
|
1838
1931
|
netRedirectRule: 'NetRedirectRule',
|
|
@@ -1842,7 +1935,9 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
1842
1935
|
printerRedirect: 'PrinterRedirect',
|
|
1843
1936
|
qualityEnhancement: 'QualityEnhancement',
|
|
1844
1937
|
recordEventDuration: 'RecordEventDuration',
|
|
1938
|
+
recordEventFileExts: 'RecordEventFileExts',
|
|
1845
1939
|
recordEventFilePaths: 'RecordEventFilePaths',
|
|
1940
|
+
recordEventLevels: 'RecordEventLevels',
|
|
1846
1941
|
recordEventRegisters: 'RecordEventRegisters',
|
|
1847
1942
|
recordEvents: 'RecordEvents',
|
|
1848
1943
|
recording: 'Recording',
|
|
@@ -1907,11 +2002,14 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
1907
2002
|
appContentProtection: 'string',
|
|
1908
2003
|
authorizeAccessPolicyRule: { 'type': 'array', 'itemType': ModifyCenterPolicyRequestAuthorizeAccessPolicyRule },
|
|
1909
2004
|
authorizeSecurityPolicyRule: { 'type': 'array', 'itemType': ModifyCenterPolicyRequestAuthorizeSecurityPolicyRule },
|
|
2005
|
+
autoReconnect: 'string',
|
|
1910
2006
|
businessType: 'number',
|
|
1911
2007
|
cameraRedirect: 'string',
|
|
1912
2008
|
clientControlMenu: 'string',
|
|
1913
2009
|
clientType: { 'type': 'array', 'itemType': ModifyCenterPolicyRequestClientType },
|
|
1914
2010
|
clipboard: 'string',
|
|
2011
|
+
clipboardGraineds: { 'type': 'array', 'itemType': ModifyCenterPolicyRequestClipboardGraineds },
|
|
2012
|
+
clipboardScope: 'string',
|
|
1915
2013
|
colorEnhancement: 'string',
|
|
1916
2014
|
cpdDriveClipboard: 'string',
|
|
1917
2015
|
cpuDownGradeDuration: 'number',
|
|
@@ -1948,7 +2046,10 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
1948
2046
|
memorySampleDuration: 'number',
|
|
1949
2047
|
memorySingleRateLimit: 'number',
|
|
1950
2048
|
mobileRestart: 'string',
|
|
2049
|
+
mobileSafeMenu: 'string',
|
|
1951
2050
|
mobileShutdown: 'string',
|
|
2051
|
+
mobileWuyingKeeper: 'string',
|
|
2052
|
+
mobileWyAssistant: 'string',
|
|
1952
2053
|
name: 'string',
|
|
1953
2054
|
netRedirect: 'string',
|
|
1954
2055
|
netRedirectRule: { 'type': 'array', 'itemType': ModifyCenterPolicyRequestNetRedirectRule },
|
|
@@ -1958,7 +2059,9 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
1958
2059
|
printerRedirect: 'string',
|
|
1959
2060
|
qualityEnhancement: 'string',
|
|
1960
2061
|
recordEventDuration: 'number',
|
|
2062
|
+
recordEventFileExts: { 'type': 'array', 'itemType': 'string' },
|
|
1961
2063
|
recordEventFilePaths: { 'type': 'array', 'itemType': 'string' },
|
|
2064
|
+
recordEventLevels: { 'type': 'array', 'itemType': ModifyCenterPolicyRequestRecordEventLevels },
|
|
1962
2065
|
recordEventRegisters: { 'type': 'array', 'itemType': 'string' },
|
|
1963
2066
|
recordEvents: { 'type': 'array', 'itemType': 'string' },
|
|
1964
2067
|
recording: 'string',
|
|
@@ -2027,6 +2130,9 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
2027
2130
|
if(Array.isArray(this.clientType)) {
|
|
2028
2131
|
$dara.Model.validateArray(this.clientType);
|
|
2029
2132
|
}
|
|
2133
|
+
if(Array.isArray(this.clipboardGraineds)) {
|
|
2134
|
+
$dara.Model.validateArray(this.clipboardGraineds);
|
|
2135
|
+
}
|
|
2030
2136
|
if(Array.isArray(this.cpuProcessors)) {
|
|
2031
2137
|
$dara.Model.validateArray(this.cpuProcessors);
|
|
2032
2138
|
}
|
|
@@ -2045,9 +2151,15 @@ export class ModifyCenterPolicyRequest extends $dara.Model {
|
|
|
2045
2151
|
if(Array.isArray(this.netRedirectRule)) {
|
|
2046
2152
|
$dara.Model.validateArray(this.netRedirectRule);
|
|
2047
2153
|
}
|
|
2154
|
+
if(Array.isArray(this.recordEventFileExts)) {
|
|
2155
|
+
$dara.Model.validateArray(this.recordEventFileExts);
|
|
2156
|
+
}
|
|
2048
2157
|
if(Array.isArray(this.recordEventFilePaths)) {
|
|
2049
2158
|
$dara.Model.validateArray(this.recordEventFilePaths);
|
|
2050
2159
|
}
|
|
2160
|
+
if(Array.isArray(this.recordEventLevels)) {
|
|
2161
|
+
$dara.Model.validateArray(this.recordEventLevels);
|
|
2162
|
+
}
|
|
2051
2163
|
if(Array.isArray(this.recordEventRegisters)) {
|
|
2052
2164
|
$dara.Model.validateArray(this.recordEventRegisters);
|
|
2053
2165
|
}
|