@alicloud/ecd20200930 2.0.7 → 2.0.11
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 +584 -64
- package/dist/client.js +1296 -197
- package/dist/client.js.map +1 -1
- package/package.json +3 -4
- package/src/client.ts +1625 -226
package/src/client.ts
CHANGED
|
@@ -1210,10 +1210,12 @@ export class CreateDesktopGroupRequest extends $tea.Model {
|
|
|
1210
1210
|
classify?: string;
|
|
1211
1211
|
clientToken?: string;
|
|
1212
1212
|
comments?: string;
|
|
1213
|
+
connectDuration?: number;
|
|
1213
1214
|
defaultInitDesktopCount?: number;
|
|
1214
1215
|
desktopGroupName?: string;
|
|
1215
1216
|
directoryId?: string;
|
|
1216
1217
|
endUserIds?: string[];
|
|
1218
|
+
idleDisconnectDuration?: number;
|
|
1217
1219
|
keepDuration?: number;
|
|
1218
1220
|
loadPolicy?: number;
|
|
1219
1221
|
maxDesktopsCount?: number;
|
|
@@ -1223,9 +1225,11 @@ export class CreateDesktopGroupRequest extends $tea.Model {
|
|
|
1223
1225
|
period?: number;
|
|
1224
1226
|
periodUnit?: string;
|
|
1225
1227
|
policyGroupId?: string;
|
|
1228
|
+
ratioThreshold?: number;
|
|
1226
1229
|
regionId?: string;
|
|
1227
1230
|
resetType?: number;
|
|
1228
1231
|
scaleStrategyId?: string;
|
|
1232
|
+
stopDuration?: number;
|
|
1229
1233
|
volumeEncryptionEnabled?: boolean;
|
|
1230
1234
|
volumeEncryptionKey?: string;
|
|
1231
1235
|
vpcId?: string;
|
|
@@ -1241,10 +1245,12 @@ export class CreateDesktopGroupRequest extends $tea.Model {
|
|
|
1241
1245
|
classify: 'Classify',
|
|
1242
1246
|
clientToken: 'ClientToken',
|
|
1243
1247
|
comments: 'Comments',
|
|
1248
|
+
connectDuration: 'ConnectDuration',
|
|
1244
1249
|
defaultInitDesktopCount: 'DefaultInitDesktopCount',
|
|
1245
1250
|
desktopGroupName: 'DesktopGroupName',
|
|
1246
1251
|
directoryId: 'DirectoryId',
|
|
1247
1252
|
endUserIds: 'EndUserIds',
|
|
1253
|
+
idleDisconnectDuration: 'IdleDisconnectDuration',
|
|
1248
1254
|
keepDuration: 'KeepDuration',
|
|
1249
1255
|
loadPolicy: 'LoadPolicy',
|
|
1250
1256
|
maxDesktopsCount: 'MaxDesktopsCount',
|
|
@@ -1254,9 +1260,11 @@ export class CreateDesktopGroupRequest extends $tea.Model {
|
|
|
1254
1260
|
period: 'Period',
|
|
1255
1261
|
periodUnit: 'PeriodUnit',
|
|
1256
1262
|
policyGroupId: 'PolicyGroupId',
|
|
1263
|
+
ratioThreshold: 'RatioThreshold',
|
|
1257
1264
|
regionId: 'RegionId',
|
|
1258
1265
|
resetType: 'ResetType',
|
|
1259
1266
|
scaleStrategyId: 'ScaleStrategyId',
|
|
1267
|
+
stopDuration: 'StopDuration',
|
|
1260
1268
|
volumeEncryptionEnabled: 'VolumeEncryptionEnabled',
|
|
1261
1269
|
volumeEncryptionKey: 'VolumeEncryptionKey',
|
|
1262
1270
|
vpcId: 'VpcId',
|
|
@@ -1275,10 +1283,12 @@ export class CreateDesktopGroupRequest extends $tea.Model {
|
|
|
1275
1283
|
classify: 'string',
|
|
1276
1284
|
clientToken: 'string',
|
|
1277
1285
|
comments: 'string',
|
|
1286
|
+
connectDuration: 'number',
|
|
1278
1287
|
defaultInitDesktopCount: 'number',
|
|
1279
1288
|
desktopGroupName: 'string',
|
|
1280
1289
|
directoryId: 'string',
|
|
1281
1290
|
endUserIds: { 'type': 'array', 'itemType': 'string' },
|
|
1291
|
+
idleDisconnectDuration: 'number',
|
|
1282
1292
|
keepDuration: 'number',
|
|
1283
1293
|
loadPolicy: 'number',
|
|
1284
1294
|
maxDesktopsCount: 'number',
|
|
@@ -1288,9 +1298,11 @@ export class CreateDesktopGroupRequest extends $tea.Model {
|
|
|
1288
1298
|
period: 'number',
|
|
1289
1299
|
periodUnit: 'string',
|
|
1290
1300
|
policyGroupId: 'string',
|
|
1301
|
+
ratioThreshold: 'number',
|
|
1291
1302
|
regionId: 'string',
|
|
1292
1303
|
resetType: 'number',
|
|
1293
1304
|
scaleStrategyId: 'string',
|
|
1305
|
+
stopDuration: 'number',
|
|
1294
1306
|
volumeEncryptionEnabled: 'boolean',
|
|
1295
1307
|
volumeEncryptionKey: 'string',
|
|
1296
1308
|
vpcId: 'string',
|
|
@@ -1372,6 +1384,7 @@ export class CreateDesktopsRequest extends $tea.Model {
|
|
|
1372
1384
|
regionId?: string;
|
|
1373
1385
|
tag?: CreateDesktopsRequestTag[];
|
|
1374
1386
|
userAssignMode?: string;
|
|
1387
|
+
userCommands?: CreateDesktopsRequestUserCommands[];
|
|
1375
1388
|
userName?: string;
|
|
1376
1389
|
volumeEncryptionEnabled?: boolean;
|
|
1377
1390
|
volumeEncryptionKey?: string;
|
|
@@ -1397,6 +1410,7 @@ export class CreateDesktopsRequest extends $tea.Model {
|
|
|
1397
1410
|
regionId: 'RegionId',
|
|
1398
1411
|
tag: 'Tag',
|
|
1399
1412
|
userAssignMode: 'UserAssignMode',
|
|
1413
|
+
userCommands: 'UserCommands',
|
|
1400
1414
|
userName: 'UserName',
|
|
1401
1415
|
volumeEncryptionEnabled: 'VolumeEncryptionEnabled',
|
|
1402
1416
|
volumeEncryptionKey: 'VolumeEncryptionKey',
|
|
@@ -1425,6 +1439,7 @@ export class CreateDesktopsRequest extends $tea.Model {
|
|
|
1425
1439
|
regionId: 'string',
|
|
1426
1440
|
tag: { 'type': 'array', 'itemType': CreateDesktopsRequestTag },
|
|
1427
1441
|
userAssignMode: 'string',
|
|
1442
|
+
userCommands: { 'type': 'array', 'itemType': CreateDesktopsRequestUserCommands },
|
|
1428
1443
|
userName: 'string',
|
|
1429
1444
|
volumeEncryptionEnabled: 'boolean',
|
|
1430
1445
|
volumeEncryptionKey: 'string',
|
|
@@ -1556,6 +1571,114 @@ export class CreateDiskEncryptionServiceResponse extends $tea.Model {
|
|
|
1556
1571
|
}
|
|
1557
1572
|
}
|
|
1558
1573
|
|
|
1574
|
+
export class CreateDriveRequest extends $tea.Model {
|
|
1575
|
+
aliUid?: number;
|
|
1576
|
+
description?: string;
|
|
1577
|
+
domainId?: string;
|
|
1578
|
+
driveName?: string;
|
|
1579
|
+
externalDomainId?: string;
|
|
1580
|
+
profileRoaming?: boolean;
|
|
1581
|
+
regionId?: string;
|
|
1582
|
+
resourceType?: string;
|
|
1583
|
+
totalSize?: number;
|
|
1584
|
+
type?: string;
|
|
1585
|
+
usedSize?: number;
|
|
1586
|
+
userId?: string;
|
|
1587
|
+
static names(): { [key: string]: string } {
|
|
1588
|
+
return {
|
|
1589
|
+
aliUid: 'AliUid',
|
|
1590
|
+
description: 'Description',
|
|
1591
|
+
domainId: 'DomainId',
|
|
1592
|
+
driveName: 'DriveName',
|
|
1593
|
+
externalDomainId: 'ExternalDomainId',
|
|
1594
|
+
profileRoaming: 'ProfileRoaming',
|
|
1595
|
+
regionId: 'RegionId',
|
|
1596
|
+
resourceType: 'ResourceType',
|
|
1597
|
+
totalSize: 'TotalSize',
|
|
1598
|
+
type: 'Type',
|
|
1599
|
+
usedSize: 'UsedSize',
|
|
1600
|
+
userId: 'UserId',
|
|
1601
|
+
};
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
static types(): { [key: string]: any } {
|
|
1605
|
+
return {
|
|
1606
|
+
aliUid: 'number',
|
|
1607
|
+
description: 'string',
|
|
1608
|
+
domainId: 'string',
|
|
1609
|
+
driveName: 'string',
|
|
1610
|
+
externalDomainId: 'string',
|
|
1611
|
+
profileRoaming: 'boolean',
|
|
1612
|
+
regionId: 'string',
|
|
1613
|
+
resourceType: 'string',
|
|
1614
|
+
totalSize: 'number',
|
|
1615
|
+
type: 'string',
|
|
1616
|
+
usedSize: 'number',
|
|
1617
|
+
userId: 'string',
|
|
1618
|
+
};
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
constructor(map?: { [key: string]: any }) {
|
|
1622
|
+
super(map);
|
|
1623
|
+
}
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
export class CreateDriveResponseBody extends $tea.Model {
|
|
1627
|
+
code?: string;
|
|
1628
|
+
drive?: CreateDriveResponseBodyDrive;
|
|
1629
|
+
message?: string;
|
|
1630
|
+
requestId?: string;
|
|
1631
|
+
success?: boolean;
|
|
1632
|
+
static names(): { [key: string]: string } {
|
|
1633
|
+
return {
|
|
1634
|
+
code: 'Code',
|
|
1635
|
+
drive: 'Drive',
|
|
1636
|
+
message: 'Message',
|
|
1637
|
+
requestId: 'RequestId',
|
|
1638
|
+
success: 'Success',
|
|
1639
|
+
};
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
static types(): { [key: string]: any } {
|
|
1643
|
+
return {
|
|
1644
|
+
code: 'string',
|
|
1645
|
+
drive: CreateDriveResponseBodyDrive,
|
|
1646
|
+
message: 'string',
|
|
1647
|
+
requestId: 'string',
|
|
1648
|
+
success: 'boolean',
|
|
1649
|
+
};
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
constructor(map?: { [key: string]: any }) {
|
|
1653
|
+
super(map);
|
|
1654
|
+
}
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
export class CreateDriveResponse extends $tea.Model {
|
|
1658
|
+
headers: { [key: string]: string };
|
|
1659
|
+
statusCode: number;
|
|
1660
|
+
body: CreateDriveResponseBody;
|
|
1661
|
+
static names(): { [key: string]: string } {
|
|
1662
|
+
return {
|
|
1663
|
+
headers: 'headers',
|
|
1664
|
+
statusCode: 'statusCode',
|
|
1665
|
+
body: 'body',
|
|
1666
|
+
};
|
|
1667
|
+
}
|
|
1668
|
+
|
|
1669
|
+
static types(): { [key: string]: any } {
|
|
1670
|
+
return {
|
|
1671
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1672
|
+
statusCode: 'number',
|
|
1673
|
+
body: CreateDriveResponseBody,
|
|
1674
|
+
};
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
constructor(map?: { [key: string]: any }) {
|
|
1678
|
+
super(map);
|
|
1679
|
+
}
|
|
1680
|
+
}
|
|
1681
|
+
|
|
1559
1682
|
export class CreateImageRequest extends $tea.Model {
|
|
1560
1683
|
autoCleanUserdata?: boolean;
|
|
1561
1684
|
description?: string;
|
|
@@ -1830,6 +1953,7 @@ export class CreateNetworkPackageResponse extends $tea.Model {
|
|
|
1830
1953
|
}
|
|
1831
1954
|
|
|
1832
1955
|
export class CreatePolicyGroupRequest extends $tea.Model {
|
|
1956
|
+
appContentProtection?: string;
|
|
1833
1957
|
authorizeAccessPolicyRule?: CreatePolicyGroupRequestAuthorizeAccessPolicyRule[];
|
|
1834
1958
|
authorizeSecurityPolicyRule?: CreatePolicyGroupRequestAuthorizeSecurityPolicyRule[];
|
|
1835
1959
|
cameraRedirect?: string;
|
|
@@ -1845,8 +1969,11 @@ export class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
1845
1969
|
preemptLogin?: string;
|
|
1846
1970
|
preemptLoginUser?: string[];
|
|
1847
1971
|
printerRedirection?: string;
|
|
1972
|
+
recordContent?: string;
|
|
1973
|
+
recordContentExpires?: number;
|
|
1848
1974
|
recording?: string;
|
|
1849
1975
|
recordingEndTime?: string;
|
|
1976
|
+
recordingExpires?: number;
|
|
1850
1977
|
recordingFps?: number;
|
|
1851
1978
|
recordingStartTime?: string;
|
|
1852
1979
|
regionId?: string;
|
|
@@ -1858,6 +1985,7 @@ export class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
1858
1985
|
watermarkType?: string;
|
|
1859
1986
|
static names(): { [key: string]: string } {
|
|
1860
1987
|
return {
|
|
1988
|
+
appContentProtection: 'AppContentProtection',
|
|
1861
1989
|
authorizeAccessPolicyRule: 'AuthorizeAccessPolicyRule',
|
|
1862
1990
|
authorizeSecurityPolicyRule: 'AuthorizeSecurityPolicyRule',
|
|
1863
1991
|
cameraRedirect: 'CameraRedirect',
|
|
@@ -1873,8 +2001,11 @@ export class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
1873
2001
|
preemptLogin: 'PreemptLogin',
|
|
1874
2002
|
preemptLoginUser: 'PreemptLoginUser',
|
|
1875
2003
|
printerRedirection: 'PrinterRedirection',
|
|
2004
|
+
recordContent: 'RecordContent',
|
|
2005
|
+
recordContentExpires: 'RecordContentExpires',
|
|
1876
2006
|
recording: 'Recording',
|
|
1877
2007
|
recordingEndTime: 'RecordingEndTime',
|
|
2008
|
+
recordingExpires: 'RecordingExpires',
|
|
1878
2009
|
recordingFps: 'RecordingFps',
|
|
1879
2010
|
recordingStartTime: 'RecordingStartTime',
|
|
1880
2011
|
regionId: 'RegionId',
|
|
@@ -1889,6 +2020,7 @@ export class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
1889
2020
|
|
|
1890
2021
|
static types(): { [key: string]: any } {
|
|
1891
2022
|
return {
|
|
2023
|
+
appContentProtection: 'string',
|
|
1892
2024
|
authorizeAccessPolicyRule: { 'type': 'array', 'itemType': CreatePolicyGroupRequestAuthorizeAccessPolicyRule },
|
|
1893
2025
|
authorizeSecurityPolicyRule: { 'type': 'array', 'itemType': CreatePolicyGroupRequestAuthorizeSecurityPolicyRule },
|
|
1894
2026
|
cameraRedirect: 'string',
|
|
@@ -1904,8 +2036,11 @@ export class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
1904
2036
|
preemptLogin: 'string',
|
|
1905
2037
|
preemptLoginUser: { 'type': 'array', 'itemType': 'string' },
|
|
1906
2038
|
printerRedirection: 'string',
|
|
2039
|
+
recordContent: 'string',
|
|
2040
|
+
recordContentExpires: 'number',
|
|
1907
2041
|
recording: 'string',
|
|
1908
2042
|
recordingEndTime: 'string',
|
|
2043
|
+
recordingExpires: 'number',
|
|
1909
2044
|
recordingFps: 'number',
|
|
1910
2045
|
recordingStartTime: 'string',
|
|
1911
2046
|
regionId: 'string',
|
|
@@ -2297,6 +2432,75 @@ export class DeleteBundlesResponse extends $tea.Model {
|
|
|
2297
2432
|
}
|
|
2298
2433
|
}
|
|
2299
2434
|
|
|
2435
|
+
export class DeleteCloudDriveUsersRequest extends $tea.Model {
|
|
2436
|
+
cdsId?: string;
|
|
2437
|
+
endUserId?: string[];
|
|
2438
|
+
regionId?: string;
|
|
2439
|
+
static names(): { [key: string]: string } {
|
|
2440
|
+
return {
|
|
2441
|
+
cdsId: 'CdsId',
|
|
2442
|
+
endUserId: 'EndUserId',
|
|
2443
|
+
regionId: 'RegionId',
|
|
2444
|
+
};
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
static types(): { [key: string]: any } {
|
|
2448
|
+
return {
|
|
2449
|
+
cdsId: 'string',
|
|
2450
|
+
endUserId: { 'type': 'array', 'itemType': 'string' },
|
|
2451
|
+
regionId: 'string',
|
|
2452
|
+
};
|
|
2453
|
+
}
|
|
2454
|
+
|
|
2455
|
+
constructor(map?: { [key: string]: any }) {
|
|
2456
|
+
super(map);
|
|
2457
|
+
}
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
export class DeleteCloudDriveUsersResponseBody extends $tea.Model {
|
|
2461
|
+
requestId?: string;
|
|
2462
|
+
static names(): { [key: string]: string } {
|
|
2463
|
+
return {
|
|
2464
|
+
requestId: 'RequestId',
|
|
2465
|
+
};
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2468
|
+
static types(): { [key: string]: any } {
|
|
2469
|
+
return {
|
|
2470
|
+
requestId: 'string',
|
|
2471
|
+
};
|
|
2472
|
+
}
|
|
2473
|
+
|
|
2474
|
+
constructor(map?: { [key: string]: any }) {
|
|
2475
|
+
super(map);
|
|
2476
|
+
}
|
|
2477
|
+
}
|
|
2478
|
+
|
|
2479
|
+
export class DeleteCloudDriveUsersResponse extends $tea.Model {
|
|
2480
|
+
headers: { [key: string]: string };
|
|
2481
|
+
statusCode: number;
|
|
2482
|
+
body: DeleteCloudDriveUsersResponseBody;
|
|
2483
|
+
static names(): { [key: string]: string } {
|
|
2484
|
+
return {
|
|
2485
|
+
headers: 'headers',
|
|
2486
|
+
statusCode: 'statusCode',
|
|
2487
|
+
body: 'body',
|
|
2488
|
+
};
|
|
2489
|
+
}
|
|
2490
|
+
|
|
2491
|
+
static types(): { [key: string]: any } {
|
|
2492
|
+
return {
|
|
2493
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2494
|
+
statusCode: 'number',
|
|
2495
|
+
body: DeleteCloudDriveUsersResponseBody,
|
|
2496
|
+
};
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
constructor(map?: { [key: string]: any }) {
|
|
2500
|
+
super(map);
|
|
2501
|
+
}
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2300
2504
|
export class DeleteDesktopGroupRequest extends $tea.Model {
|
|
2301
2505
|
desktopGroupId?: string;
|
|
2302
2506
|
regionId?: string;
|
|
@@ -2495,6 +2699,84 @@ export class DeleteDirectoriesResponse extends $tea.Model {
|
|
|
2495
2699
|
}
|
|
2496
2700
|
}
|
|
2497
2701
|
|
|
2702
|
+
export class DeleteDriveRequest extends $tea.Model {
|
|
2703
|
+
driveId?: string;
|
|
2704
|
+
regionId?: string;
|
|
2705
|
+
static names(): { [key: string]: string } {
|
|
2706
|
+
return {
|
|
2707
|
+
driveId: 'DriveId',
|
|
2708
|
+
regionId: 'RegionId',
|
|
2709
|
+
};
|
|
2710
|
+
}
|
|
2711
|
+
|
|
2712
|
+
static types(): { [key: string]: any } {
|
|
2713
|
+
return {
|
|
2714
|
+
driveId: 'string',
|
|
2715
|
+
regionId: 'string',
|
|
2716
|
+
};
|
|
2717
|
+
}
|
|
2718
|
+
|
|
2719
|
+
constructor(map?: { [key: string]: any }) {
|
|
2720
|
+
super(map);
|
|
2721
|
+
}
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2724
|
+
export class DeleteDriveResponseBody extends $tea.Model {
|
|
2725
|
+
code?: string;
|
|
2726
|
+
data?: boolean;
|
|
2727
|
+
message?: string;
|
|
2728
|
+
requestId?: string;
|
|
2729
|
+
success?: boolean;
|
|
2730
|
+
static names(): { [key: string]: string } {
|
|
2731
|
+
return {
|
|
2732
|
+
code: 'Code',
|
|
2733
|
+
data: 'Data',
|
|
2734
|
+
message: 'Message',
|
|
2735
|
+
requestId: 'RequestId',
|
|
2736
|
+
success: 'Success',
|
|
2737
|
+
};
|
|
2738
|
+
}
|
|
2739
|
+
|
|
2740
|
+
static types(): { [key: string]: any } {
|
|
2741
|
+
return {
|
|
2742
|
+
code: 'string',
|
|
2743
|
+
data: 'boolean',
|
|
2744
|
+
message: 'string',
|
|
2745
|
+
requestId: 'string',
|
|
2746
|
+
success: 'boolean',
|
|
2747
|
+
};
|
|
2748
|
+
}
|
|
2749
|
+
|
|
2750
|
+
constructor(map?: { [key: string]: any }) {
|
|
2751
|
+
super(map);
|
|
2752
|
+
}
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2755
|
+
export class DeleteDriveResponse extends $tea.Model {
|
|
2756
|
+
headers: { [key: string]: string };
|
|
2757
|
+
statusCode: number;
|
|
2758
|
+
body: DeleteDriveResponseBody;
|
|
2759
|
+
static names(): { [key: string]: string } {
|
|
2760
|
+
return {
|
|
2761
|
+
headers: 'headers',
|
|
2762
|
+
statusCode: 'statusCode',
|
|
2763
|
+
body: 'body',
|
|
2764
|
+
};
|
|
2765
|
+
}
|
|
2766
|
+
|
|
2767
|
+
static types(): { [key: string]: any } {
|
|
2768
|
+
return {
|
|
2769
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2770
|
+
statusCode: 'number',
|
|
2771
|
+
body: DeleteDriveResponseBody,
|
|
2772
|
+
};
|
|
2773
|
+
}
|
|
2774
|
+
|
|
2775
|
+
constructor(map?: { [key: string]: any }) {
|
|
2776
|
+
super(map);
|
|
2777
|
+
}
|
|
2778
|
+
}
|
|
2779
|
+
|
|
2498
2780
|
export class DeleteImagesRequest extends $tea.Model {
|
|
2499
2781
|
imageId?: string[];
|
|
2500
2782
|
regionId?: string;
|
|
@@ -3332,6 +3614,75 @@ export class DescribeClientEventsResponse extends $tea.Model {
|
|
|
3332
3614
|
}
|
|
3333
3615
|
}
|
|
3334
3616
|
|
|
3617
|
+
export class DescribeCloudDrivePermissionsRequest extends $tea.Model {
|
|
3618
|
+
cdsId?: string;
|
|
3619
|
+
regionId?: string;
|
|
3620
|
+
static names(): { [key: string]: string } {
|
|
3621
|
+
return {
|
|
3622
|
+
cdsId: 'CdsId',
|
|
3623
|
+
regionId: 'RegionId',
|
|
3624
|
+
};
|
|
3625
|
+
}
|
|
3626
|
+
|
|
3627
|
+
static types(): { [key: string]: any } {
|
|
3628
|
+
return {
|
|
3629
|
+
cdsId: 'string',
|
|
3630
|
+
regionId: 'string',
|
|
3631
|
+
};
|
|
3632
|
+
}
|
|
3633
|
+
|
|
3634
|
+
constructor(map?: { [key: string]: any }) {
|
|
3635
|
+
super(map);
|
|
3636
|
+
}
|
|
3637
|
+
}
|
|
3638
|
+
|
|
3639
|
+
export class DescribeCloudDrivePermissionsResponseBody extends $tea.Model {
|
|
3640
|
+
cloudDrivePermissionModels?: DescribeCloudDrivePermissionsResponseBodyCloudDrivePermissionModels[];
|
|
3641
|
+
requestId?: string;
|
|
3642
|
+
static names(): { [key: string]: string } {
|
|
3643
|
+
return {
|
|
3644
|
+
cloudDrivePermissionModels: 'CloudDrivePermissionModels',
|
|
3645
|
+
requestId: 'RequestId',
|
|
3646
|
+
};
|
|
3647
|
+
}
|
|
3648
|
+
|
|
3649
|
+
static types(): { [key: string]: any } {
|
|
3650
|
+
return {
|
|
3651
|
+
cloudDrivePermissionModels: { 'type': 'array', 'itemType': DescribeCloudDrivePermissionsResponseBodyCloudDrivePermissionModels },
|
|
3652
|
+
requestId: 'string',
|
|
3653
|
+
};
|
|
3654
|
+
}
|
|
3655
|
+
|
|
3656
|
+
constructor(map?: { [key: string]: any }) {
|
|
3657
|
+
super(map);
|
|
3658
|
+
}
|
|
3659
|
+
}
|
|
3660
|
+
|
|
3661
|
+
export class DescribeCloudDrivePermissionsResponse extends $tea.Model {
|
|
3662
|
+
headers: { [key: string]: string };
|
|
3663
|
+
statusCode: number;
|
|
3664
|
+
body: DescribeCloudDrivePermissionsResponseBody;
|
|
3665
|
+
static names(): { [key: string]: string } {
|
|
3666
|
+
return {
|
|
3667
|
+
headers: 'headers',
|
|
3668
|
+
statusCode: 'statusCode',
|
|
3669
|
+
body: 'body',
|
|
3670
|
+
};
|
|
3671
|
+
}
|
|
3672
|
+
|
|
3673
|
+
static types(): { [key: string]: any } {
|
|
3674
|
+
return {
|
|
3675
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3676
|
+
statusCode: 'number',
|
|
3677
|
+
body: DescribeCloudDrivePermissionsResponseBody,
|
|
3678
|
+
};
|
|
3679
|
+
}
|
|
3680
|
+
|
|
3681
|
+
constructor(map?: { [key: string]: any }) {
|
|
3682
|
+
super(map);
|
|
3683
|
+
}
|
|
3684
|
+
}
|
|
3685
|
+
|
|
3335
3686
|
export class DescribeDesktopGroupsRequest extends $tea.Model {
|
|
3336
3687
|
desktopGroupId?: string;
|
|
3337
3688
|
desktopGroupName?: string;
|
|
@@ -3739,6 +4090,7 @@ export class DescribeDesktopsResponse extends $tea.Model {
|
|
|
3739
4090
|
|
|
3740
4091
|
export class DescribeDesktopsInGroupRequest extends $tea.Model {
|
|
3741
4092
|
desktopGroupId?: string;
|
|
4093
|
+
ignoreDeleted?: boolean;
|
|
3742
4094
|
maxResults?: number;
|
|
3743
4095
|
nextToken?: string;
|
|
3744
4096
|
payType?: string;
|
|
@@ -3746,6 +4098,7 @@ export class DescribeDesktopsInGroupRequest extends $tea.Model {
|
|
|
3746
4098
|
static names(): { [key: string]: string } {
|
|
3747
4099
|
return {
|
|
3748
4100
|
desktopGroupId: 'DesktopGroupId',
|
|
4101
|
+
ignoreDeleted: 'IgnoreDeleted',
|
|
3749
4102
|
maxResults: 'MaxResults',
|
|
3750
4103
|
nextToken: 'NextToken',
|
|
3751
4104
|
payType: 'PayType',
|
|
@@ -3756,6 +4109,7 @@ export class DescribeDesktopsInGroupRequest extends $tea.Model {
|
|
|
3756
4109
|
static types(): { [key: string]: any } {
|
|
3757
4110
|
return {
|
|
3758
4111
|
desktopGroupId: 'string',
|
|
4112
|
+
ignoreDeleted: 'boolean',
|
|
3759
4113
|
maxResults: 'number',
|
|
3760
4114
|
nextToken: 'string',
|
|
3761
4115
|
payType: 'string',
|
|
@@ -3839,35 +4193,116 @@ export class DescribeDesktopsInGroupResponse extends $tea.Model {
|
|
|
3839
4193
|
}
|
|
3840
4194
|
}
|
|
3841
4195
|
|
|
3842
|
-
export class DescribeDirectoriesRequest extends $tea.Model {
|
|
3843
|
-
directoryId?: string[];
|
|
3844
|
-
directoryStatus?: string;
|
|
3845
|
-
directoryType?: string;
|
|
3846
|
-
maxResults?: number;
|
|
3847
|
-
nextToken?: string;
|
|
4196
|
+
export class DescribeDirectoriesRequest extends $tea.Model {
|
|
4197
|
+
directoryId?: string[];
|
|
4198
|
+
directoryStatus?: string;
|
|
4199
|
+
directoryType?: string;
|
|
4200
|
+
maxResults?: number;
|
|
4201
|
+
nextToken?: string;
|
|
4202
|
+
regionId?: string;
|
|
4203
|
+
status?: string;
|
|
4204
|
+
static names(): { [key: string]: string } {
|
|
4205
|
+
return {
|
|
4206
|
+
directoryId: 'DirectoryId',
|
|
4207
|
+
directoryStatus: 'DirectoryStatus',
|
|
4208
|
+
directoryType: 'DirectoryType',
|
|
4209
|
+
maxResults: 'MaxResults',
|
|
4210
|
+
nextToken: 'NextToken',
|
|
4211
|
+
regionId: 'RegionId',
|
|
4212
|
+
status: 'Status',
|
|
4213
|
+
};
|
|
4214
|
+
}
|
|
4215
|
+
|
|
4216
|
+
static types(): { [key: string]: any } {
|
|
4217
|
+
return {
|
|
4218
|
+
directoryId: { 'type': 'array', 'itemType': 'string' },
|
|
4219
|
+
directoryStatus: 'string',
|
|
4220
|
+
directoryType: 'string',
|
|
4221
|
+
maxResults: 'number',
|
|
4222
|
+
nextToken: 'string',
|
|
4223
|
+
regionId: 'string',
|
|
4224
|
+
status: 'string',
|
|
4225
|
+
};
|
|
4226
|
+
}
|
|
4227
|
+
|
|
4228
|
+
constructor(map?: { [key: string]: any }) {
|
|
4229
|
+
super(map);
|
|
4230
|
+
}
|
|
4231
|
+
}
|
|
4232
|
+
|
|
4233
|
+
export class DescribeDirectoriesResponseBody extends $tea.Model {
|
|
4234
|
+
adHostname?: string;
|
|
4235
|
+
directories?: DescribeDirectoriesResponseBodyDirectories[];
|
|
4236
|
+
nextToken?: string;
|
|
4237
|
+
requestId?: string;
|
|
4238
|
+
static names(): { [key: string]: string } {
|
|
4239
|
+
return {
|
|
4240
|
+
adHostname: 'AdHostname',
|
|
4241
|
+
directories: 'Directories',
|
|
4242
|
+
nextToken: 'NextToken',
|
|
4243
|
+
requestId: 'RequestId',
|
|
4244
|
+
};
|
|
4245
|
+
}
|
|
4246
|
+
|
|
4247
|
+
static types(): { [key: string]: any } {
|
|
4248
|
+
return {
|
|
4249
|
+
adHostname: 'string',
|
|
4250
|
+
directories: { 'type': 'array', 'itemType': DescribeDirectoriesResponseBodyDirectories },
|
|
4251
|
+
nextToken: 'string',
|
|
4252
|
+
requestId: 'string',
|
|
4253
|
+
};
|
|
4254
|
+
}
|
|
4255
|
+
|
|
4256
|
+
constructor(map?: { [key: string]: any }) {
|
|
4257
|
+
super(map);
|
|
4258
|
+
}
|
|
4259
|
+
}
|
|
4260
|
+
|
|
4261
|
+
export class DescribeDirectoriesResponse extends $tea.Model {
|
|
4262
|
+
headers: { [key: string]: string };
|
|
4263
|
+
statusCode: number;
|
|
4264
|
+
body: DescribeDirectoriesResponseBody;
|
|
4265
|
+
static names(): { [key: string]: string } {
|
|
4266
|
+
return {
|
|
4267
|
+
headers: 'headers',
|
|
4268
|
+
statusCode: 'statusCode',
|
|
4269
|
+
body: 'body',
|
|
4270
|
+
};
|
|
4271
|
+
}
|
|
4272
|
+
|
|
4273
|
+
static types(): { [key: string]: any } {
|
|
4274
|
+
return {
|
|
4275
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4276
|
+
statusCode: 'number',
|
|
4277
|
+
body: DescribeDirectoriesResponseBody,
|
|
4278
|
+
};
|
|
4279
|
+
}
|
|
4280
|
+
|
|
4281
|
+
constructor(map?: { [key: string]: any }) {
|
|
4282
|
+
super(map);
|
|
4283
|
+
}
|
|
4284
|
+
}
|
|
4285
|
+
|
|
4286
|
+
export class DescribeDrivesRequest extends $tea.Model {
|
|
4287
|
+
domainIds?: string[];
|
|
3848
4288
|
regionId?: string;
|
|
3849
|
-
|
|
4289
|
+
resourceType?: string;
|
|
4290
|
+
userId?: string;
|
|
3850
4291
|
static names(): { [key: string]: string } {
|
|
3851
4292
|
return {
|
|
3852
|
-
|
|
3853
|
-
directoryStatus: 'DirectoryStatus',
|
|
3854
|
-
directoryType: 'DirectoryType',
|
|
3855
|
-
maxResults: 'MaxResults',
|
|
3856
|
-
nextToken: 'NextToken',
|
|
4293
|
+
domainIds: 'DomainIds',
|
|
3857
4294
|
regionId: 'RegionId',
|
|
3858
|
-
|
|
4295
|
+
resourceType: 'ResourceType',
|
|
4296
|
+
userId: 'UserId',
|
|
3859
4297
|
};
|
|
3860
4298
|
}
|
|
3861
4299
|
|
|
3862
4300
|
static types(): { [key: string]: any } {
|
|
3863
4301
|
return {
|
|
3864
|
-
|
|
3865
|
-
directoryStatus: 'string',
|
|
3866
|
-
directoryType: 'string',
|
|
3867
|
-
maxResults: 'number',
|
|
3868
|
-
nextToken: 'string',
|
|
4302
|
+
domainIds: { 'type': 'array', 'itemType': 'string' },
|
|
3869
4303
|
regionId: 'string',
|
|
3870
|
-
|
|
4304
|
+
resourceType: 'string',
|
|
4305
|
+
userId: 'string',
|
|
3871
4306
|
};
|
|
3872
4307
|
}
|
|
3873
4308
|
|
|
@@ -3876,26 +4311,29 @@ export class DescribeDirectoriesRequest extends $tea.Model {
|
|
|
3876
4311
|
}
|
|
3877
4312
|
}
|
|
3878
4313
|
|
|
3879
|
-
export class
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
4314
|
+
export class DescribeDrivesResponseBody extends $tea.Model {
|
|
4315
|
+
code?: string;
|
|
4316
|
+
drives?: DescribeDrivesResponseBodyDrives[];
|
|
4317
|
+
message?: string;
|
|
3883
4318
|
requestId?: string;
|
|
4319
|
+
success?: boolean;
|
|
3884
4320
|
static names(): { [key: string]: string } {
|
|
3885
4321
|
return {
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
4322
|
+
code: 'Code',
|
|
4323
|
+
drives: 'Drives',
|
|
4324
|
+
message: 'Message',
|
|
3889
4325
|
requestId: 'RequestId',
|
|
4326
|
+
success: 'Success',
|
|
3890
4327
|
};
|
|
3891
4328
|
}
|
|
3892
4329
|
|
|
3893
4330
|
static types(): { [key: string]: any } {
|
|
3894
4331
|
return {
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
|
|
4332
|
+
code: 'string',
|
|
4333
|
+
drives: { 'type': 'array', 'itemType': DescribeDrivesResponseBodyDrives },
|
|
4334
|
+
message: 'string',
|
|
3898
4335
|
requestId: 'string',
|
|
4336
|
+
success: 'boolean',
|
|
3899
4337
|
};
|
|
3900
4338
|
}
|
|
3901
4339
|
|
|
@@ -3904,10 +4342,10 @@ export class DescribeDirectoriesResponseBody extends $tea.Model {
|
|
|
3904
4342
|
}
|
|
3905
4343
|
}
|
|
3906
4344
|
|
|
3907
|
-
export class
|
|
4345
|
+
export class DescribeDrivesResponse extends $tea.Model {
|
|
3908
4346
|
headers: { [key: string]: string };
|
|
3909
4347
|
statusCode: number;
|
|
3910
|
-
body:
|
|
4348
|
+
body: DescribeDrivesResponseBody;
|
|
3911
4349
|
static names(): { [key: string]: string } {
|
|
3912
4350
|
return {
|
|
3913
4351
|
headers: 'headers',
|
|
@@ -3920,7 +4358,7 @@ export class DescribeDirectoriesResponse extends $tea.Model {
|
|
|
3920
4358
|
return {
|
|
3921
4359
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3922
4360
|
statusCode: 'number',
|
|
3923
|
-
body:
|
|
4361
|
+
body: DescribeDrivesResponseBody,
|
|
3924
4362
|
};
|
|
3925
4363
|
}
|
|
3926
4364
|
|
|
@@ -5171,91 +5609,19 @@ export class DescribePolicyGroupsResponse extends $tea.Model {
|
|
|
5171
5609
|
}
|
|
5172
5610
|
}
|
|
5173
5611
|
|
|
5174
|
-
export class DescribeRecordingsRequest extends $tea.Model {
|
|
5175
|
-
maxResults?: number;
|
|
5176
|
-
nextToken?: string;
|
|
5177
|
-
regionId?: string;
|
|
5178
|
-
static names(): { [key: string]: string } {
|
|
5179
|
-
return {
|
|
5180
|
-
maxResults: 'MaxResults',
|
|
5181
|
-
nextToken: 'NextToken',
|
|
5182
|
-
regionId: 'RegionId',
|
|
5183
|
-
};
|
|
5184
|
-
}
|
|
5185
|
-
|
|
5186
|
-
static types(): { [key: string]: any } {
|
|
5187
|
-
return {
|
|
5188
|
-
maxResults: 'number',
|
|
5189
|
-
nextToken: 'string',
|
|
5190
|
-
regionId: 'string',
|
|
5191
|
-
};
|
|
5192
|
-
}
|
|
5193
|
-
|
|
5194
|
-
constructor(map?: { [key: string]: any }) {
|
|
5195
|
-
super(map);
|
|
5196
|
-
}
|
|
5197
|
-
}
|
|
5198
|
-
|
|
5199
|
-
export class DescribeRecordingsResponseBody extends $tea.Model {
|
|
5200
|
-
nextToken?: string;
|
|
5201
|
-
recordings?: DescribeRecordingsResponseBodyRecordings[];
|
|
5202
|
-
requestId?: string;
|
|
5203
|
-
static names(): { [key: string]: string } {
|
|
5204
|
-
return {
|
|
5205
|
-
nextToken: 'NextToken',
|
|
5206
|
-
recordings: 'Recordings',
|
|
5207
|
-
requestId: 'RequestId',
|
|
5208
|
-
};
|
|
5209
|
-
}
|
|
5210
|
-
|
|
5211
|
-
static types(): { [key: string]: any } {
|
|
5212
|
-
return {
|
|
5213
|
-
nextToken: 'string',
|
|
5214
|
-
recordings: { 'type': 'array', 'itemType': DescribeRecordingsResponseBodyRecordings },
|
|
5215
|
-
requestId: 'string',
|
|
5216
|
-
};
|
|
5217
|
-
}
|
|
5218
|
-
|
|
5219
|
-
constructor(map?: { [key: string]: any }) {
|
|
5220
|
-
super(map);
|
|
5221
|
-
}
|
|
5222
|
-
}
|
|
5223
|
-
|
|
5224
|
-
export class DescribeRecordingsResponse extends $tea.Model {
|
|
5225
|
-
headers: { [key: string]: string };
|
|
5226
|
-
statusCode: number;
|
|
5227
|
-
body: DescribeRecordingsResponseBody;
|
|
5228
|
-
static names(): { [key: string]: string } {
|
|
5229
|
-
return {
|
|
5230
|
-
headers: 'headers',
|
|
5231
|
-
statusCode: 'statusCode',
|
|
5232
|
-
body: 'body',
|
|
5233
|
-
};
|
|
5234
|
-
}
|
|
5235
|
-
|
|
5236
|
-
static types(): { [key: string]: any } {
|
|
5237
|
-
return {
|
|
5238
|
-
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5239
|
-
statusCode: 'number',
|
|
5240
|
-
body: DescribeRecordingsResponseBody,
|
|
5241
|
-
};
|
|
5242
|
-
}
|
|
5243
|
-
|
|
5244
|
-
constructor(map?: { [key: string]: any }) {
|
|
5245
|
-
super(map);
|
|
5246
|
-
}
|
|
5247
|
-
}
|
|
5248
|
-
|
|
5249
5612
|
export class DescribeRegionsRequest extends $tea.Model {
|
|
5613
|
+
acceptLanguage?: string;
|
|
5250
5614
|
regionId?: string;
|
|
5251
5615
|
static names(): { [key: string]: string } {
|
|
5252
5616
|
return {
|
|
5617
|
+
acceptLanguage: 'AcceptLanguage',
|
|
5253
5618
|
regionId: 'RegionId',
|
|
5254
5619
|
};
|
|
5255
5620
|
}
|
|
5256
5621
|
|
|
5257
5622
|
static types(): { [key: string]: any } {
|
|
5258
5623
|
return {
|
|
5624
|
+
acceptLanguage: 'string',
|
|
5259
5625
|
regionId: 'string',
|
|
5260
5626
|
};
|
|
5261
5627
|
}
|
|
@@ -6068,6 +6434,75 @@ export class DescribeUsersInGroupResponse extends $tea.Model {
|
|
|
6068
6434
|
}
|
|
6069
6435
|
}
|
|
6070
6436
|
|
|
6437
|
+
export class DescribeUsersPasswordRequest extends $tea.Model {
|
|
6438
|
+
desktopId?: string;
|
|
6439
|
+
regionId?: string;
|
|
6440
|
+
static names(): { [key: string]: string } {
|
|
6441
|
+
return {
|
|
6442
|
+
desktopId: 'DesktopId',
|
|
6443
|
+
regionId: 'RegionId',
|
|
6444
|
+
};
|
|
6445
|
+
}
|
|
6446
|
+
|
|
6447
|
+
static types(): { [key: string]: any } {
|
|
6448
|
+
return {
|
|
6449
|
+
desktopId: 'string',
|
|
6450
|
+
regionId: 'string',
|
|
6451
|
+
};
|
|
6452
|
+
}
|
|
6453
|
+
|
|
6454
|
+
constructor(map?: { [key: string]: any }) {
|
|
6455
|
+
super(map);
|
|
6456
|
+
}
|
|
6457
|
+
}
|
|
6458
|
+
|
|
6459
|
+
export class DescribeUsersPasswordResponseBody extends $tea.Model {
|
|
6460
|
+
desktopUsers?: DescribeUsersPasswordResponseBodyDesktopUsers[];
|
|
6461
|
+
requestId?: string;
|
|
6462
|
+
static names(): { [key: string]: string } {
|
|
6463
|
+
return {
|
|
6464
|
+
desktopUsers: 'DesktopUsers',
|
|
6465
|
+
requestId: 'RequestId',
|
|
6466
|
+
};
|
|
6467
|
+
}
|
|
6468
|
+
|
|
6469
|
+
static types(): { [key: string]: any } {
|
|
6470
|
+
return {
|
|
6471
|
+
desktopUsers: { 'type': 'array', 'itemType': DescribeUsersPasswordResponseBodyDesktopUsers },
|
|
6472
|
+
requestId: 'string',
|
|
6473
|
+
};
|
|
6474
|
+
}
|
|
6475
|
+
|
|
6476
|
+
constructor(map?: { [key: string]: any }) {
|
|
6477
|
+
super(map);
|
|
6478
|
+
}
|
|
6479
|
+
}
|
|
6480
|
+
|
|
6481
|
+
export class DescribeUsersPasswordResponse extends $tea.Model {
|
|
6482
|
+
headers: { [key: string]: string };
|
|
6483
|
+
statusCode: number;
|
|
6484
|
+
body: DescribeUsersPasswordResponseBody;
|
|
6485
|
+
static names(): { [key: string]: string } {
|
|
6486
|
+
return {
|
|
6487
|
+
headers: 'headers',
|
|
6488
|
+
statusCode: 'statusCode',
|
|
6489
|
+
body: 'body',
|
|
6490
|
+
};
|
|
6491
|
+
}
|
|
6492
|
+
|
|
6493
|
+
static types(): { [key: string]: any } {
|
|
6494
|
+
return {
|
|
6495
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6496
|
+
statusCode: 'number',
|
|
6497
|
+
body: DescribeUsersPasswordResponseBody,
|
|
6498
|
+
};
|
|
6499
|
+
}
|
|
6500
|
+
|
|
6501
|
+
constructor(map?: { [key: string]: any }) {
|
|
6502
|
+
super(map);
|
|
6503
|
+
}
|
|
6504
|
+
}
|
|
6505
|
+
|
|
6071
6506
|
export class DescribeVirtualMFADevicesRequest extends $tea.Model {
|
|
6072
6507
|
endUserId?: string[];
|
|
6073
6508
|
maxResults?: number;
|
|
@@ -6232,6 +6667,7 @@ export class DescribeVulListRequest extends $tea.Model {
|
|
|
6232
6667
|
currentPage?: number;
|
|
6233
6668
|
dealed?: string;
|
|
6234
6669
|
lang?: string;
|
|
6670
|
+
name?: string;
|
|
6235
6671
|
necessity?: string;
|
|
6236
6672
|
officeSiteId?: string;
|
|
6237
6673
|
pageSize?: number;
|
|
@@ -6243,6 +6679,7 @@ export class DescribeVulListRequest extends $tea.Model {
|
|
|
6243
6679
|
currentPage: 'CurrentPage',
|
|
6244
6680
|
dealed: 'Dealed',
|
|
6245
6681
|
lang: 'Lang',
|
|
6682
|
+
name: 'Name',
|
|
6246
6683
|
necessity: 'Necessity',
|
|
6247
6684
|
officeSiteId: 'OfficeSiteId',
|
|
6248
6685
|
pageSize: 'PageSize',
|
|
@@ -6257,6 +6694,7 @@ export class DescribeVulListRequest extends $tea.Model {
|
|
|
6257
6694
|
currentPage: 'number',
|
|
6258
6695
|
dealed: 'string',
|
|
6259
6696
|
lang: 'string',
|
|
6697
|
+
name: 'string',
|
|
6260
6698
|
necessity: 'string',
|
|
6261
6699
|
officeSiteId: 'string',
|
|
6262
6700
|
pageSize: 'number',
|
|
@@ -7938,25 +8376,103 @@ export class ModifyADConnectorOfficeSiteRequest extends $tea.Model {
|
|
|
7938
8376
|
officeSiteId: 'OfficeSiteId',
|
|
7939
8377
|
officeSiteName: 'OfficeSiteName',
|
|
7940
8378
|
regionId: 'RegionId',
|
|
7941
|
-
subDomainDnsAddress: 'SubDomainDnsAddress',
|
|
7942
|
-
subDomainName: 'SubDomainName',
|
|
8379
|
+
subDomainDnsAddress: 'SubDomainDnsAddress',
|
|
8380
|
+
subDomainName: 'SubDomainName',
|
|
8381
|
+
};
|
|
8382
|
+
}
|
|
8383
|
+
|
|
8384
|
+
static types(): { [key: string]: any } {
|
|
8385
|
+
return {
|
|
8386
|
+
adHostname: 'string',
|
|
8387
|
+
dnsAddress: { 'type': 'array', 'itemType': 'string' },
|
|
8388
|
+
domainName: 'string',
|
|
8389
|
+
domainPassword: 'string',
|
|
8390
|
+
domainUserName: 'string',
|
|
8391
|
+
mfaEnabled: 'boolean',
|
|
8392
|
+
OUName: 'string',
|
|
8393
|
+
officeSiteId: 'string',
|
|
8394
|
+
officeSiteName: 'string',
|
|
8395
|
+
regionId: 'string',
|
|
8396
|
+
subDomainDnsAddress: { 'type': 'array', 'itemType': 'string' },
|
|
8397
|
+
subDomainName: 'string',
|
|
8398
|
+
};
|
|
8399
|
+
}
|
|
8400
|
+
|
|
8401
|
+
constructor(map?: { [key: string]: any }) {
|
|
8402
|
+
super(map);
|
|
8403
|
+
}
|
|
8404
|
+
}
|
|
8405
|
+
|
|
8406
|
+
export class ModifyADConnectorOfficeSiteResponseBody extends $tea.Model {
|
|
8407
|
+
requestId?: string;
|
|
8408
|
+
static names(): { [key: string]: string } {
|
|
8409
|
+
return {
|
|
8410
|
+
requestId: 'RequestId',
|
|
8411
|
+
};
|
|
8412
|
+
}
|
|
8413
|
+
|
|
8414
|
+
static types(): { [key: string]: any } {
|
|
8415
|
+
return {
|
|
8416
|
+
requestId: 'string',
|
|
8417
|
+
};
|
|
8418
|
+
}
|
|
8419
|
+
|
|
8420
|
+
constructor(map?: { [key: string]: any }) {
|
|
8421
|
+
super(map);
|
|
8422
|
+
}
|
|
8423
|
+
}
|
|
8424
|
+
|
|
8425
|
+
export class ModifyADConnectorOfficeSiteResponse extends $tea.Model {
|
|
8426
|
+
headers: { [key: string]: string };
|
|
8427
|
+
statusCode: number;
|
|
8428
|
+
body: ModifyADConnectorOfficeSiteResponseBody;
|
|
8429
|
+
static names(): { [key: string]: string } {
|
|
8430
|
+
return {
|
|
8431
|
+
headers: 'headers',
|
|
8432
|
+
statusCode: 'statusCode',
|
|
8433
|
+
body: 'body',
|
|
8434
|
+
};
|
|
8435
|
+
}
|
|
8436
|
+
|
|
8437
|
+
static types(): { [key: string]: any } {
|
|
8438
|
+
return {
|
|
8439
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8440
|
+
statusCode: 'number',
|
|
8441
|
+
body: ModifyADConnectorOfficeSiteResponseBody,
|
|
8442
|
+
};
|
|
8443
|
+
}
|
|
8444
|
+
|
|
8445
|
+
constructor(map?: { [key: string]: any }) {
|
|
8446
|
+
super(map);
|
|
8447
|
+
}
|
|
8448
|
+
}
|
|
8449
|
+
|
|
8450
|
+
export class ModifyBundleRequest extends $tea.Model {
|
|
8451
|
+
bundleId?: string;
|
|
8452
|
+
bundleName?: string;
|
|
8453
|
+
description?: string;
|
|
8454
|
+
imageId?: string;
|
|
8455
|
+
language?: string;
|
|
8456
|
+
regionId?: string;
|
|
8457
|
+
static names(): { [key: string]: string } {
|
|
8458
|
+
return {
|
|
8459
|
+
bundleId: 'BundleId',
|
|
8460
|
+
bundleName: 'BundleName',
|
|
8461
|
+
description: 'Description',
|
|
8462
|
+
imageId: 'ImageId',
|
|
8463
|
+
language: 'Language',
|
|
8464
|
+
regionId: 'RegionId',
|
|
7943
8465
|
};
|
|
7944
8466
|
}
|
|
7945
8467
|
|
|
7946
8468
|
static types(): { [key: string]: any } {
|
|
7947
8469
|
return {
|
|
7948
|
-
|
|
7949
|
-
|
|
7950
|
-
|
|
7951
|
-
|
|
7952
|
-
|
|
7953
|
-
mfaEnabled: 'boolean',
|
|
7954
|
-
OUName: 'string',
|
|
7955
|
-
officeSiteId: 'string',
|
|
7956
|
-
officeSiteName: 'string',
|
|
8470
|
+
bundleId: 'string',
|
|
8471
|
+
bundleName: 'string',
|
|
8472
|
+
description: 'string',
|
|
8473
|
+
imageId: 'string',
|
|
8474
|
+
language: 'string',
|
|
7957
8475
|
regionId: 'string',
|
|
7958
|
-
subDomainDnsAddress: { 'type': 'array', 'itemType': 'string' },
|
|
7959
|
-
subDomainName: 'string',
|
|
7960
8476
|
};
|
|
7961
8477
|
}
|
|
7962
8478
|
|
|
@@ -7965,7 +8481,7 @@ export class ModifyADConnectorOfficeSiteRequest extends $tea.Model {
|
|
|
7965
8481
|
}
|
|
7966
8482
|
}
|
|
7967
8483
|
|
|
7968
|
-
export class
|
|
8484
|
+
export class ModifyBundleResponseBody extends $tea.Model {
|
|
7969
8485
|
requestId?: string;
|
|
7970
8486
|
static names(): { [key: string]: string } {
|
|
7971
8487
|
return {
|
|
@@ -7984,10 +8500,10 @@ export class ModifyADConnectorOfficeSiteResponseBody extends $tea.Model {
|
|
|
7984
8500
|
}
|
|
7985
8501
|
}
|
|
7986
8502
|
|
|
7987
|
-
export class
|
|
8503
|
+
export class ModifyBundleResponse extends $tea.Model {
|
|
7988
8504
|
headers: { [key: string]: string };
|
|
7989
8505
|
statusCode: number;
|
|
7990
|
-
body:
|
|
8506
|
+
body: ModifyBundleResponseBody;
|
|
7991
8507
|
static names(): { [key: string]: string } {
|
|
7992
8508
|
return {
|
|
7993
8509
|
headers: 'headers',
|
|
@@ -8000,7 +8516,7 @@ export class ModifyADConnectorOfficeSiteResponse extends $tea.Model {
|
|
|
8000
8516
|
return {
|
|
8001
8517
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8002
8518
|
statusCode: 'number',
|
|
8003
|
-
body:
|
|
8519
|
+
body: ModifyBundleResponseBody,
|
|
8004
8520
|
};
|
|
8005
8521
|
}
|
|
8006
8522
|
|
|
@@ -8009,31 +8525,25 @@ export class ModifyADConnectorOfficeSiteResponse extends $tea.Model {
|
|
|
8009
8525
|
}
|
|
8010
8526
|
}
|
|
8011
8527
|
|
|
8012
|
-
export class
|
|
8013
|
-
|
|
8014
|
-
|
|
8015
|
-
|
|
8016
|
-
imageId?: string;
|
|
8017
|
-
language?: string;
|
|
8528
|
+
export class ModifyCloudDrivePermissionRequest extends $tea.Model {
|
|
8529
|
+
cdsId?: string;
|
|
8530
|
+
downloadEndUserIds?: string[];
|
|
8531
|
+
downloadUploadEndUserIds?: string[];
|
|
8018
8532
|
regionId?: string;
|
|
8019
8533
|
static names(): { [key: string]: string } {
|
|
8020
8534
|
return {
|
|
8021
|
-
|
|
8022
|
-
|
|
8023
|
-
|
|
8024
|
-
imageId: 'ImageId',
|
|
8025
|
-
language: 'Language',
|
|
8535
|
+
cdsId: 'CdsId',
|
|
8536
|
+
downloadEndUserIds: 'DownloadEndUserIds',
|
|
8537
|
+
downloadUploadEndUserIds: 'DownloadUploadEndUserIds',
|
|
8026
8538
|
regionId: 'RegionId',
|
|
8027
8539
|
};
|
|
8028
8540
|
}
|
|
8029
8541
|
|
|
8030
8542
|
static types(): { [key: string]: any } {
|
|
8031
8543
|
return {
|
|
8032
|
-
|
|
8033
|
-
|
|
8034
|
-
|
|
8035
|
-
imageId: 'string',
|
|
8036
|
-
language: 'string',
|
|
8544
|
+
cdsId: 'string',
|
|
8545
|
+
downloadEndUserIds: { 'type': 'array', 'itemType': 'string' },
|
|
8546
|
+
downloadUploadEndUserIds: { 'type': 'array', 'itemType': 'string' },
|
|
8037
8547
|
regionId: 'string',
|
|
8038
8548
|
};
|
|
8039
8549
|
}
|
|
@@ -8043,7 +8553,7 @@ export class ModifyBundleRequest extends $tea.Model {
|
|
|
8043
8553
|
}
|
|
8044
8554
|
}
|
|
8045
8555
|
|
|
8046
|
-
export class
|
|
8556
|
+
export class ModifyCloudDrivePermissionResponseBody extends $tea.Model {
|
|
8047
8557
|
requestId?: string;
|
|
8048
8558
|
static names(): { [key: string]: string } {
|
|
8049
8559
|
return {
|
|
@@ -8062,10 +8572,10 @@ export class ModifyBundleResponseBody extends $tea.Model {
|
|
|
8062
8572
|
}
|
|
8063
8573
|
}
|
|
8064
8574
|
|
|
8065
|
-
export class
|
|
8575
|
+
export class ModifyCloudDrivePermissionResponse extends $tea.Model {
|
|
8066
8576
|
headers: { [key: string]: string };
|
|
8067
8577
|
statusCode: number;
|
|
8068
|
-
body:
|
|
8578
|
+
body: ModifyCloudDrivePermissionResponseBody;
|
|
8069
8579
|
static names(): { [key: string]: string } {
|
|
8070
8580
|
return {
|
|
8071
8581
|
headers: 'headers',
|
|
@@ -8078,7 +8588,7 @@ export class ModifyBundleResponse extends $tea.Model {
|
|
|
8078
8588
|
return {
|
|
8079
8589
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8080
8590
|
statusCode: 'number',
|
|
8081
|
-
body:
|
|
8591
|
+
body: ModifyCloudDrivePermissionResponseBody,
|
|
8082
8592
|
};
|
|
8083
8593
|
}
|
|
8084
8594
|
|
|
@@ -8180,8 +8690,11 @@ export class ModifyDesktopGroupRequest extends $tea.Model {
|
|
|
8180
8690
|
bindAmount?: number;
|
|
8181
8691
|
classify?: string;
|
|
8182
8692
|
comments?: string;
|
|
8693
|
+
connectDuration?: number;
|
|
8183
8694
|
desktopGroupId?: string;
|
|
8184
8695
|
desktopGroupName?: string;
|
|
8696
|
+
disableSessionConfig?: boolean;
|
|
8697
|
+
idleDisconnectDuration?: number;
|
|
8185
8698
|
imageId?: string;
|
|
8186
8699
|
keepDuration?: number;
|
|
8187
8700
|
loadPolicy?: number;
|
|
@@ -8189,9 +8702,11 @@ export class ModifyDesktopGroupRequest extends $tea.Model {
|
|
|
8189
8702
|
minDesktopsCount?: number;
|
|
8190
8703
|
ownBundleId?: string;
|
|
8191
8704
|
policyGroupId?: string;
|
|
8705
|
+
ratioThreshold?: number;
|
|
8192
8706
|
regionId?: string;
|
|
8193
8707
|
resetType?: number;
|
|
8194
8708
|
scaleStrategyId?: string;
|
|
8709
|
+
stopDuration?: number;
|
|
8195
8710
|
static names(): { [key: string]: string } {
|
|
8196
8711
|
return {
|
|
8197
8712
|
allowAutoSetup: 'AllowAutoSetup',
|
|
@@ -8199,8 +8714,11 @@ export class ModifyDesktopGroupRequest extends $tea.Model {
|
|
|
8199
8714
|
bindAmount: 'BindAmount',
|
|
8200
8715
|
classify: 'Classify',
|
|
8201
8716
|
comments: 'Comments',
|
|
8717
|
+
connectDuration: 'ConnectDuration',
|
|
8202
8718
|
desktopGroupId: 'DesktopGroupId',
|
|
8203
8719
|
desktopGroupName: 'DesktopGroupName',
|
|
8720
|
+
disableSessionConfig: 'DisableSessionConfig',
|
|
8721
|
+
idleDisconnectDuration: 'IdleDisconnectDuration',
|
|
8204
8722
|
imageId: 'ImageId',
|
|
8205
8723
|
keepDuration: 'KeepDuration',
|
|
8206
8724
|
loadPolicy: 'LoadPolicy',
|
|
@@ -8208,9 +8726,11 @@ export class ModifyDesktopGroupRequest extends $tea.Model {
|
|
|
8208
8726
|
minDesktopsCount: 'MinDesktopsCount',
|
|
8209
8727
|
ownBundleId: 'OwnBundleId',
|
|
8210
8728
|
policyGroupId: 'PolicyGroupId',
|
|
8729
|
+
ratioThreshold: 'RatioThreshold',
|
|
8211
8730
|
regionId: 'RegionId',
|
|
8212
8731
|
resetType: 'ResetType',
|
|
8213
8732
|
scaleStrategyId: 'ScaleStrategyId',
|
|
8733
|
+
stopDuration: 'StopDuration',
|
|
8214
8734
|
};
|
|
8215
8735
|
}
|
|
8216
8736
|
|
|
@@ -8221,8 +8741,11 @@ export class ModifyDesktopGroupRequest extends $tea.Model {
|
|
|
8221
8741
|
bindAmount: 'number',
|
|
8222
8742
|
classify: 'string',
|
|
8223
8743
|
comments: 'string',
|
|
8744
|
+
connectDuration: 'number',
|
|
8224
8745
|
desktopGroupId: 'string',
|
|
8225
8746
|
desktopGroupName: 'string',
|
|
8747
|
+
disableSessionConfig: 'boolean',
|
|
8748
|
+
idleDisconnectDuration: 'number',
|
|
8226
8749
|
imageId: 'string',
|
|
8227
8750
|
keepDuration: 'number',
|
|
8228
8751
|
loadPolicy: 'number',
|
|
@@ -8230,9 +8753,11 @@ export class ModifyDesktopGroupRequest extends $tea.Model {
|
|
|
8230
8753
|
minDesktopsCount: 'number',
|
|
8231
8754
|
ownBundleId: 'string',
|
|
8232
8755
|
policyGroupId: 'string',
|
|
8756
|
+
ratioThreshold: 'number',
|
|
8233
8757
|
regionId: 'string',
|
|
8234
8758
|
resetType: 'number',
|
|
8235
8759
|
scaleStrategyId: 'string',
|
|
8760
|
+
stopDuration: 'number',
|
|
8236
8761
|
};
|
|
8237
8762
|
}
|
|
8238
8763
|
|
|
@@ -9384,6 +9909,7 @@ export class ModifyOperateVulResponse extends $tea.Model {
|
|
|
9384
9909
|
}
|
|
9385
9910
|
|
|
9386
9911
|
export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
9912
|
+
appContentProtection?: string;
|
|
9387
9913
|
authorizeAccessPolicyRule?: ModifyPolicyGroupRequestAuthorizeAccessPolicyRule[];
|
|
9388
9914
|
authorizeSecurityPolicyRule?: ModifyPolicyGroupRequestAuthorizeSecurityPolicyRule[];
|
|
9389
9915
|
cameraRedirect?: string;
|
|
@@ -9400,8 +9926,11 @@ export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
9400
9926
|
preemptLogin?: string;
|
|
9401
9927
|
preemptLoginUser?: string[];
|
|
9402
9928
|
printerRedirection?: string;
|
|
9929
|
+
recordContent?: string;
|
|
9930
|
+
recordContentExpires?: number;
|
|
9403
9931
|
recording?: string;
|
|
9404
9932
|
recordingEndTime?: string;
|
|
9933
|
+
recordingExpires?: number;
|
|
9405
9934
|
recordingFps?: number;
|
|
9406
9935
|
recordingStartTime?: string;
|
|
9407
9936
|
regionId?: string;
|
|
@@ -9415,6 +9944,7 @@ export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
9415
9944
|
watermarkType?: string;
|
|
9416
9945
|
static names(): { [key: string]: string } {
|
|
9417
9946
|
return {
|
|
9947
|
+
appContentProtection: 'AppContentProtection',
|
|
9418
9948
|
authorizeAccessPolicyRule: 'AuthorizeAccessPolicyRule',
|
|
9419
9949
|
authorizeSecurityPolicyRule: 'AuthorizeSecurityPolicyRule',
|
|
9420
9950
|
cameraRedirect: 'CameraRedirect',
|
|
@@ -9431,8 +9961,11 @@ export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
9431
9961
|
preemptLogin: 'PreemptLogin',
|
|
9432
9962
|
preemptLoginUser: 'PreemptLoginUser',
|
|
9433
9963
|
printerRedirection: 'PrinterRedirection',
|
|
9964
|
+
recordContent: 'RecordContent',
|
|
9965
|
+
recordContentExpires: 'RecordContentExpires',
|
|
9434
9966
|
recording: 'Recording',
|
|
9435
9967
|
recordingEndTime: 'RecordingEndTime',
|
|
9968
|
+
recordingExpires: 'RecordingExpires',
|
|
9436
9969
|
recordingFps: 'RecordingFps',
|
|
9437
9970
|
recordingStartTime: 'RecordingStartTime',
|
|
9438
9971
|
regionId: 'RegionId',
|
|
@@ -9449,6 +9982,7 @@ export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
9449
9982
|
|
|
9450
9983
|
static types(): { [key: string]: any } {
|
|
9451
9984
|
return {
|
|
9985
|
+
appContentProtection: 'string',
|
|
9452
9986
|
authorizeAccessPolicyRule: { 'type': 'array', 'itemType': ModifyPolicyGroupRequestAuthorizeAccessPolicyRule },
|
|
9453
9987
|
authorizeSecurityPolicyRule: { 'type': 'array', 'itemType': ModifyPolicyGroupRequestAuthorizeSecurityPolicyRule },
|
|
9454
9988
|
cameraRedirect: 'string',
|
|
@@ -9465,8 +9999,11 @@ export class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
9465
9999
|
preemptLogin: 'string',
|
|
9466
10000
|
preemptLoginUser: { 'type': 'array', 'itemType': 'string' },
|
|
9467
10001
|
printerRedirection: 'string',
|
|
10002
|
+
recordContent: 'string',
|
|
10003
|
+
recordContentExpires: 'number',
|
|
9468
10004
|
recording: 'string',
|
|
9469
10005
|
recordingEndTime: 'string',
|
|
10006
|
+
recordingExpires: 'number',
|
|
9470
10007
|
recordingFps: 'number',
|
|
9471
10008
|
recordingStartTime: 'string',
|
|
9472
10009
|
regionId: 'string',
|
|
@@ -10556,6 +11093,168 @@ export class SendVerifyCodeResponse extends $tea.Model {
|
|
|
10556
11093
|
}
|
|
10557
11094
|
}
|
|
10558
11095
|
|
|
11096
|
+
export class SetDesktopGroupTimerRequest extends $tea.Model {
|
|
11097
|
+
cronExpression?: string;
|
|
11098
|
+
desktopGroupId?: string;
|
|
11099
|
+
force?: boolean;
|
|
11100
|
+
regionId?: string;
|
|
11101
|
+
resetType?: number;
|
|
11102
|
+
timerType?: number;
|
|
11103
|
+
static names(): { [key: string]: string } {
|
|
11104
|
+
return {
|
|
11105
|
+
cronExpression: 'CronExpression',
|
|
11106
|
+
desktopGroupId: 'DesktopGroupId',
|
|
11107
|
+
force: 'Force',
|
|
11108
|
+
regionId: 'RegionId',
|
|
11109
|
+
resetType: 'ResetType',
|
|
11110
|
+
timerType: 'TimerType',
|
|
11111
|
+
};
|
|
11112
|
+
}
|
|
11113
|
+
|
|
11114
|
+
static types(): { [key: string]: any } {
|
|
11115
|
+
return {
|
|
11116
|
+
cronExpression: 'string',
|
|
11117
|
+
desktopGroupId: 'string',
|
|
11118
|
+
force: 'boolean',
|
|
11119
|
+
regionId: 'string',
|
|
11120
|
+
resetType: 'number',
|
|
11121
|
+
timerType: 'number',
|
|
11122
|
+
};
|
|
11123
|
+
}
|
|
11124
|
+
|
|
11125
|
+
constructor(map?: { [key: string]: any }) {
|
|
11126
|
+
super(map);
|
|
11127
|
+
}
|
|
11128
|
+
}
|
|
11129
|
+
|
|
11130
|
+
export class SetDesktopGroupTimerResponseBody extends $tea.Model {
|
|
11131
|
+
desktopGroupId?: string;
|
|
11132
|
+
orderIds?: string[];
|
|
11133
|
+
requestId?: string;
|
|
11134
|
+
static names(): { [key: string]: string } {
|
|
11135
|
+
return {
|
|
11136
|
+
desktopGroupId: 'DesktopGroupId',
|
|
11137
|
+
orderIds: 'OrderIds',
|
|
11138
|
+
requestId: 'RequestId',
|
|
11139
|
+
};
|
|
11140
|
+
}
|
|
11141
|
+
|
|
11142
|
+
static types(): { [key: string]: any } {
|
|
11143
|
+
return {
|
|
11144
|
+
desktopGroupId: 'string',
|
|
11145
|
+
orderIds: { 'type': 'array', 'itemType': 'string' },
|
|
11146
|
+
requestId: 'string',
|
|
11147
|
+
};
|
|
11148
|
+
}
|
|
11149
|
+
|
|
11150
|
+
constructor(map?: { [key: string]: any }) {
|
|
11151
|
+
super(map);
|
|
11152
|
+
}
|
|
11153
|
+
}
|
|
11154
|
+
|
|
11155
|
+
export class SetDesktopGroupTimerResponse extends $tea.Model {
|
|
11156
|
+
headers: { [key: string]: string };
|
|
11157
|
+
statusCode: number;
|
|
11158
|
+
body: SetDesktopGroupTimerResponseBody;
|
|
11159
|
+
static names(): { [key: string]: string } {
|
|
11160
|
+
return {
|
|
11161
|
+
headers: 'headers',
|
|
11162
|
+
statusCode: 'statusCode',
|
|
11163
|
+
body: 'body',
|
|
11164
|
+
};
|
|
11165
|
+
}
|
|
11166
|
+
|
|
11167
|
+
static types(): { [key: string]: any } {
|
|
11168
|
+
return {
|
|
11169
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11170
|
+
statusCode: 'number',
|
|
11171
|
+
body: SetDesktopGroupTimerResponseBody,
|
|
11172
|
+
};
|
|
11173
|
+
}
|
|
11174
|
+
|
|
11175
|
+
constructor(map?: { [key: string]: any }) {
|
|
11176
|
+
super(map);
|
|
11177
|
+
}
|
|
11178
|
+
}
|
|
11179
|
+
|
|
11180
|
+
export class SetDesktopGroupTimerStatusRequest extends $tea.Model {
|
|
11181
|
+
desktopGroupId?: string;
|
|
11182
|
+
regionId?: string;
|
|
11183
|
+
status?: number;
|
|
11184
|
+
timerType?: number;
|
|
11185
|
+
static names(): { [key: string]: string } {
|
|
11186
|
+
return {
|
|
11187
|
+
desktopGroupId: 'DesktopGroupId',
|
|
11188
|
+
regionId: 'RegionId',
|
|
11189
|
+
status: 'Status',
|
|
11190
|
+
timerType: 'TimerType',
|
|
11191
|
+
};
|
|
11192
|
+
}
|
|
11193
|
+
|
|
11194
|
+
static types(): { [key: string]: any } {
|
|
11195
|
+
return {
|
|
11196
|
+
desktopGroupId: 'string',
|
|
11197
|
+
regionId: 'string',
|
|
11198
|
+
status: 'number',
|
|
11199
|
+
timerType: 'number',
|
|
11200
|
+
};
|
|
11201
|
+
}
|
|
11202
|
+
|
|
11203
|
+
constructor(map?: { [key: string]: any }) {
|
|
11204
|
+
super(map);
|
|
11205
|
+
}
|
|
11206
|
+
}
|
|
11207
|
+
|
|
11208
|
+
export class SetDesktopGroupTimerStatusResponseBody extends $tea.Model {
|
|
11209
|
+
desktopGroupId?: string;
|
|
11210
|
+
orderIds?: string[];
|
|
11211
|
+
requestId?: string;
|
|
11212
|
+
static names(): { [key: string]: string } {
|
|
11213
|
+
return {
|
|
11214
|
+
desktopGroupId: 'DesktopGroupId',
|
|
11215
|
+
orderIds: 'OrderIds',
|
|
11216
|
+
requestId: 'RequestId',
|
|
11217
|
+
};
|
|
11218
|
+
}
|
|
11219
|
+
|
|
11220
|
+
static types(): { [key: string]: any } {
|
|
11221
|
+
return {
|
|
11222
|
+
desktopGroupId: 'string',
|
|
11223
|
+
orderIds: { 'type': 'array', 'itemType': 'string' },
|
|
11224
|
+
requestId: 'string',
|
|
11225
|
+
};
|
|
11226
|
+
}
|
|
11227
|
+
|
|
11228
|
+
constructor(map?: { [key: string]: any }) {
|
|
11229
|
+
super(map);
|
|
11230
|
+
}
|
|
11231
|
+
}
|
|
11232
|
+
|
|
11233
|
+
export class SetDesktopGroupTimerStatusResponse extends $tea.Model {
|
|
11234
|
+
headers: { [key: string]: string };
|
|
11235
|
+
statusCode: number;
|
|
11236
|
+
body: SetDesktopGroupTimerStatusResponseBody;
|
|
11237
|
+
static names(): { [key: string]: string } {
|
|
11238
|
+
return {
|
|
11239
|
+
headers: 'headers',
|
|
11240
|
+
statusCode: 'statusCode',
|
|
11241
|
+
body: 'body',
|
|
11242
|
+
};
|
|
11243
|
+
}
|
|
11244
|
+
|
|
11245
|
+
static types(): { [key: string]: any } {
|
|
11246
|
+
return {
|
|
11247
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11248
|
+
statusCode: 'number',
|
|
11249
|
+
body: SetDesktopGroupTimerStatusResponseBody,
|
|
11250
|
+
};
|
|
11251
|
+
}
|
|
11252
|
+
|
|
11253
|
+
constructor(map?: { [key: string]: any }) {
|
|
11254
|
+
super(map);
|
|
11255
|
+
}
|
|
11256
|
+
}
|
|
11257
|
+
|
|
10559
11258
|
export class SetIdpMetadataRequest extends $tea.Model {
|
|
10560
11259
|
directoryId?: string;
|
|
10561
11260
|
idpMetadata?: string;
|
|
@@ -11553,6 +12252,95 @@ export class CreateDesktopsRequestTag extends $tea.Model {
|
|
|
11553
12252
|
}
|
|
11554
12253
|
}
|
|
11555
12254
|
|
|
12255
|
+
export class CreateDesktopsRequestUserCommands extends $tea.Model {
|
|
12256
|
+
content?: string;
|
|
12257
|
+
contentEncoding?: string;
|
|
12258
|
+
contentType?: string;
|
|
12259
|
+
static names(): { [key: string]: string } {
|
|
12260
|
+
return {
|
|
12261
|
+
content: 'Content',
|
|
12262
|
+
contentEncoding: 'ContentEncoding',
|
|
12263
|
+
contentType: 'ContentType',
|
|
12264
|
+
};
|
|
12265
|
+
}
|
|
12266
|
+
|
|
12267
|
+
static types(): { [key: string]: any } {
|
|
12268
|
+
return {
|
|
12269
|
+
content: 'string',
|
|
12270
|
+
contentEncoding: 'string',
|
|
12271
|
+
contentType: 'string',
|
|
12272
|
+
};
|
|
12273
|
+
}
|
|
12274
|
+
|
|
12275
|
+
constructor(map?: { [key: string]: any }) {
|
|
12276
|
+
super(map);
|
|
12277
|
+
}
|
|
12278
|
+
}
|
|
12279
|
+
|
|
12280
|
+
export class CreateDriveResponseBodyDrive extends $tea.Model {
|
|
12281
|
+
aliUid?: string;
|
|
12282
|
+
description?: string;
|
|
12283
|
+
domainId?: string;
|
|
12284
|
+
driveId?: string;
|
|
12285
|
+
externalDriveId?: string;
|
|
12286
|
+
externalUserId?: string;
|
|
12287
|
+
gmtCreate?: string;
|
|
12288
|
+
gmtModified?: string;
|
|
12289
|
+
id?: string;
|
|
12290
|
+
name?: string;
|
|
12291
|
+
profileRoaming?: boolean;
|
|
12292
|
+
status?: string;
|
|
12293
|
+
totalSize?: number;
|
|
12294
|
+
type?: string;
|
|
12295
|
+
usedSize?: number;
|
|
12296
|
+
userId?: string;
|
|
12297
|
+
static names(): { [key: string]: string } {
|
|
12298
|
+
return {
|
|
12299
|
+
aliUid: 'AliUid',
|
|
12300
|
+
description: 'Description',
|
|
12301
|
+
domainId: 'DomainId',
|
|
12302
|
+
driveId: 'DriveId',
|
|
12303
|
+
externalDriveId: 'ExternalDriveId',
|
|
12304
|
+
externalUserId: 'ExternalUserId',
|
|
12305
|
+
gmtCreate: 'GmtCreate',
|
|
12306
|
+
gmtModified: 'GmtModified',
|
|
12307
|
+
id: 'Id',
|
|
12308
|
+
name: 'Name',
|
|
12309
|
+
profileRoaming: 'ProfileRoaming',
|
|
12310
|
+
status: 'Status',
|
|
12311
|
+
totalSize: 'TotalSize',
|
|
12312
|
+
type: 'Type',
|
|
12313
|
+
usedSize: 'UsedSize',
|
|
12314
|
+
userId: 'UserId',
|
|
12315
|
+
};
|
|
12316
|
+
}
|
|
12317
|
+
|
|
12318
|
+
static types(): { [key: string]: any } {
|
|
12319
|
+
return {
|
|
12320
|
+
aliUid: 'string',
|
|
12321
|
+
description: 'string',
|
|
12322
|
+
domainId: 'string',
|
|
12323
|
+
driveId: 'string',
|
|
12324
|
+
externalDriveId: 'string',
|
|
12325
|
+
externalUserId: 'string',
|
|
12326
|
+
gmtCreate: 'string',
|
|
12327
|
+
gmtModified: 'string',
|
|
12328
|
+
id: 'string',
|
|
12329
|
+
name: 'string',
|
|
12330
|
+
profileRoaming: 'boolean',
|
|
12331
|
+
status: 'string',
|
|
12332
|
+
totalSize: 'number',
|
|
12333
|
+
type: 'string',
|
|
12334
|
+
usedSize: 'number',
|
|
12335
|
+
userId: 'string',
|
|
12336
|
+
};
|
|
12337
|
+
}
|
|
12338
|
+
|
|
12339
|
+
constructor(map?: { [key: string]: any }) {
|
|
12340
|
+
super(map);
|
|
12341
|
+
}
|
|
12342
|
+
}
|
|
12343
|
+
|
|
11556
12344
|
export class CreatePolicyGroupRequestAuthorizeAccessPolicyRule extends $tea.Model {
|
|
11557
12345
|
cidrIp?: string;
|
|
11558
12346
|
description?: string;
|
|
@@ -11960,9 +12748,32 @@ export class DescribeClientEventsResponseBodyEvents extends $tea.Model {
|
|
|
11960
12748
|
}
|
|
11961
12749
|
}
|
|
11962
12750
|
|
|
12751
|
+
export class DescribeCloudDrivePermissionsResponseBodyCloudDrivePermissionModels extends $tea.Model {
|
|
12752
|
+
endUsers?: string[];
|
|
12753
|
+
permission?: string;
|
|
12754
|
+
static names(): { [key: string]: string } {
|
|
12755
|
+
return {
|
|
12756
|
+
endUsers: 'EndUsers',
|
|
12757
|
+
permission: 'Permission',
|
|
12758
|
+
};
|
|
12759
|
+
}
|
|
12760
|
+
|
|
12761
|
+
static types(): { [key: string]: any } {
|
|
12762
|
+
return {
|
|
12763
|
+
endUsers: { 'type': 'array', 'itemType': 'string' },
|
|
12764
|
+
permission: 'string',
|
|
12765
|
+
};
|
|
12766
|
+
}
|
|
12767
|
+
|
|
12768
|
+
constructor(map?: { [key: string]: any }) {
|
|
12769
|
+
super(map);
|
|
12770
|
+
}
|
|
12771
|
+
}
|
|
12772
|
+
|
|
11963
12773
|
export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $tea.Model {
|
|
11964
12774
|
bindAmount?: number;
|
|
11965
12775
|
comments?: string;
|
|
12776
|
+
connectDuration?: number;
|
|
11966
12777
|
cpu?: number;
|
|
11967
12778
|
createTime?: string;
|
|
11968
12779
|
creator?: string;
|
|
@@ -11974,6 +12785,7 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $tea.Model {
|
|
|
11974
12785
|
expiredTime?: string;
|
|
11975
12786
|
gpuCount?: number;
|
|
11976
12787
|
gpuSpec?: string;
|
|
12788
|
+
idleDisconnectDuration?: number;
|
|
11977
12789
|
imageId?: string;
|
|
11978
12790
|
keepDuration?: number;
|
|
11979
12791
|
loadPolicy?: number;
|
|
@@ -11989,16 +12801,20 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $tea.Model {
|
|
|
11989
12801
|
payType?: string;
|
|
11990
12802
|
policyGroupId?: string;
|
|
11991
12803
|
policyGroupName?: string;
|
|
12804
|
+
ratioThreshold?: number;
|
|
11992
12805
|
resetType?: number;
|
|
11993
12806
|
status?: number;
|
|
12807
|
+
stopDuration?: number;
|
|
11994
12808
|
systemDiskCategory?: string;
|
|
11995
12809
|
systemDiskSize?: number;
|
|
12810
|
+
version?: number;
|
|
11996
12811
|
volumeEncryptionEnabled?: boolean;
|
|
11997
12812
|
volumeEncryptionKey?: string;
|
|
11998
12813
|
static names(): { [key: string]: string } {
|
|
11999
12814
|
return {
|
|
12000
12815
|
bindAmount: 'BindAmount',
|
|
12001
12816
|
comments: 'Comments',
|
|
12817
|
+
connectDuration: 'ConnectDuration',
|
|
12002
12818
|
cpu: 'Cpu',
|
|
12003
12819
|
createTime: 'CreateTime',
|
|
12004
12820
|
creator: 'Creator',
|
|
@@ -12010,6 +12826,7 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $tea.Model {
|
|
|
12010
12826
|
expiredTime: 'ExpiredTime',
|
|
12011
12827
|
gpuCount: 'GpuCount',
|
|
12012
12828
|
gpuSpec: 'GpuSpec',
|
|
12829
|
+
idleDisconnectDuration: 'IdleDisconnectDuration',
|
|
12013
12830
|
imageId: 'ImageId',
|
|
12014
12831
|
keepDuration: 'KeepDuration',
|
|
12015
12832
|
loadPolicy: 'LoadPolicy',
|
|
@@ -12025,10 +12842,13 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $tea.Model {
|
|
|
12025
12842
|
payType: 'PayType',
|
|
12026
12843
|
policyGroupId: 'PolicyGroupId',
|
|
12027
12844
|
policyGroupName: 'PolicyGroupName',
|
|
12845
|
+
ratioThreshold: 'RatioThreshold',
|
|
12028
12846
|
resetType: 'ResetType',
|
|
12029
12847
|
status: 'Status',
|
|
12848
|
+
stopDuration: 'StopDuration',
|
|
12030
12849
|
systemDiskCategory: 'SystemDiskCategory',
|
|
12031
12850
|
systemDiskSize: 'SystemDiskSize',
|
|
12851
|
+
version: 'Version',
|
|
12032
12852
|
volumeEncryptionEnabled: 'VolumeEncryptionEnabled',
|
|
12033
12853
|
volumeEncryptionKey: 'VolumeEncryptionKey',
|
|
12034
12854
|
};
|
|
@@ -12038,6 +12858,7 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $tea.Model {
|
|
|
12038
12858
|
return {
|
|
12039
12859
|
bindAmount: 'number',
|
|
12040
12860
|
comments: 'string',
|
|
12861
|
+
connectDuration: 'number',
|
|
12041
12862
|
cpu: 'number',
|
|
12042
12863
|
createTime: 'string',
|
|
12043
12864
|
creator: 'string',
|
|
@@ -12049,6 +12870,7 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $tea.Model {
|
|
|
12049
12870
|
expiredTime: 'string',
|
|
12050
12871
|
gpuCount: 'number',
|
|
12051
12872
|
gpuSpec: 'string',
|
|
12873
|
+
idleDisconnectDuration: 'number',
|
|
12052
12874
|
imageId: 'string',
|
|
12053
12875
|
keepDuration: 'number',
|
|
12054
12876
|
loadPolicy: 'number',
|
|
@@ -12064,10 +12886,13 @@ export class DescribeDesktopGroupsResponseBodyDesktopGroups extends $tea.Model {
|
|
|
12064
12886
|
payType: 'string',
|
|
12065
12887
|
policyGroupId: 'string',
|
|
12066
12888
|
policyGroupName: 'string',
|
|
12889
|
+
ratioThreshold: 'number',
|
|
12067
12890
|
resetType: 'number',
|
|
12068
12891
|
status: 'number',
|
|
12892
|
+
stopDuration: 'number',
|
|
12069
12893
|
systemDiskCategory: 'string',
|
|
12070
12894
|
systemDiskSize: 'number',
|
|
12895
|
+
version: 'number',
|
|
12071
12896
|
volumeEncryptionEnabled: 'boolean',
|
|
12072
12897
|
volumeEncryptionKey: 'string',
|
|
12073
12898
|
};
|
|
@@ -12448,7 +13273,10 @@ export class DescribeDesktopsInGroupResponseBodyPaidDesktops extends $tea.Model
|
|
|
12448
13273
|
imageId?: string;
|
|
12449
13274
|
imageName?: string;
|
|
12450
13275
|
managementFlag?: string;
|
|
13276
|
+
managementFlags?: string[];
|
|
13277
|
+
memberEniIp?: string;
|
|
12451
13278
|
osType?: string;
|
|
13279
|
+
primaryEniIp?: string;
|
|
12452
13280
|
resetTime?: string;
|
|
12453
13281
|
systemDiskSize?: number;
|
|
12454
13282
|
static names(): { [key: string]: string } {
|
|
@@ -12466,7 +13294,10 @@ export class DescribeDesktopsInGroupResponseBodyPaidDesktops extends $tea.Model
|
|
|
12466
13294
|
imageId: 'ImageId',
|
|
12467
13295
|
imageName: 'ImageName',
|
|
12468
13296
|
managementFlag: 'ManagementFlag',
|
|
13297
|
+
managementFlags: 'ManagementFlags',
|
|
13298
|
+
memberEniIp: 'MemberEniIp',
|
|
12469
13299
|
osType: 'OsType',
|
|
13300
|
+
primaryEniIp: 'PrimaryEniIp',
|
|
12470
13301
|
resetTime: 'ResetTime',
|
|
12471
13302
|
systemDiskSize: 'SystemDiskSize',
|
|
12472
13303
|
};
|
|
@@ -12487,7 +13318,10 @@ export class DescribeDesktopsInGroupResponseBodyPaidDesktops extends $tea.Model
|
|
|
12487
13318
|
imageId: 'string',
|
|
12488
13319
|
imageName: 'string',
|
|
12489
13320
|
managementFlag: 'string',
|
|
13321
|
+
managementFlags: { 'type': 'array', 'itemType': 'string' },
|
|
13322
|
+
memberEniIp: 'string',
|
|
12490
13323
|
osType: 'string',
|
|
13324
|
+
primaryEniIp: 'string',
|
|
12491
13325
|
resetTime: 'string',
|
|
12492
13326
|
systemDiskSize: 'number',
|
|
12493
13327
|
};
|
|
@@ -12514,7 +13348,10 @@ export class DescribeDesktopsInGroupResponseBodyPostPaidDesktops extends $tea.Mo
|
|
|
12514
13348
|
imageId?: string;
|
|
12515
13349
|
imageName?: string;
|
|
12516
13350
|
managementFlag?: string;
|
|
13351
|
+
managementFlags?: string[];
|
|
13352
|
+
memberEniIp?: string;
|
|
12517
13353
|
osType?: string;
|
|
13354
|
+
primaryEniIp?: string;
|
|
12518
13355
|
releaseTime?: string;
|
|
12519
13356
|
resetTime?: string;
|
|
12520
13357
|
systemDiskSize?: number;
|
|
@@ -12535,7 +13372,10 @@ export class DescribeDesktopsInGroupResponseBodyPostPaidDesktops extends $tea.Mo
|
|
|
12535
13372
|
imageId: 'ImageId',
|
|
12536
13373
|
imageName: 'ImageName',
|
|
12537
13374
|
managementFlag: 'ManagementFlag',
|
|
13375
|
+
managementFlags: 'ManagementFlags',
|
|
13376
|
+
memberEniIp: 'MemberEniIp',
|
|
12538
13377
|
osType: 'OsType',
|
|
13378
|
+
primaryEniIp: 'PrimaryEniIp',
|
|
12539
13379
|
releaseTime: 'ReleaseTime',
|
|
12540
13380
|
resetTime: 'ResetTime',
|
|
12541
13381
|
systemDiskSize: 'SystemDiskSize',
|
|
@@ -12559,7 +13399,10 @@ export class DescribeDesktopsInGroupResponseBodyPostPaidDesktops extends $tea.Mo
|
|
|
12559
13399
|
imageId: 'string',
|
|
12560
13400
|
imageName: 'string',
|
|
12561
13401
|
managementFlag: 'string',
|
|
13402
|
+
managementFlags: { 'type': 'array', 'itemType': 'string' },
|
|
13403
|
+
memberEniIp: 'string',
|
|
12562
13404
|
osType: 'string',
|
|
13405
|
+
primaryEniIp: 'string',
|
|
12563
13406
|
releaseTime: 'string',
|
|
12564
13407
|
resetTime: 'string',
|
|
12565
13408
|
systemDiskSize: 'number',
|
|
@@ -12733,6 +13576,104 @@ export class DescribeDirectoriesResponseBodyDirectories extends $tea.Model {
|
|
|
12733
13576
|
}
|
|
12734
13577
|
}
|
|
12735
13578
|
|
|
13579
|
+
export class DescribeDrivesResponseBodyDrivesDesktopGroups extends $tea.Model {
|
|
13580
|
+
desktopGroupId?: string;
|
|
13581
|
+
desktopGroupName?: string;
|
|
13582
|
+
static names(): { [key: string]: string } {
|
|
13583
|
+
return {
|
|
13584
|
+
desktopGroupId: 'DesktopGroupId',
|
|
13585
|
+
desktopGroupName: 'DesktopGroupName',
|
|
13586
|
+
};
|
|
13587
|
+
}
|
|
13588
|
+
|
|
13589
|
+
static types(): { [key: string]: any } {
|
|
13590
|
+
return {
|
|
13591
|
+
desktopGroupId: 'string',
|
|
13592
|
+
desktopGroupName: 'string',
|
|
13593
|
+
};
|
|
13594
|
+
}
|
|
13595
|
+
|
|
13596
|
+
constructor(map?: { [key: string]: any }) {
|
|
13597
|
+
super(map);
|
|
13598
|
+
}
|
|
13599
|
+
}
|
|
13600
|
+
|
|
13601
|
+
export class DescribeDrivesResponseBodyDrives extends $tea.Model {
|
|
13602
|
+
aliUid?: number;
|
|
13603
|
+
description?: string;
|
|
13604
|
+
desktopGroupCount?: number;
|
|
13605
|
+
desktopGroups?: DescribeDrivesResponseBodyDrivesDesktopGroups[];
|
|
13606
|
+
domainId?: string;
|
|
13607
|
+
driveId?: string;
|
|
13608
|
+
enableProfileManagement?: boolean;
|
|
13609
|
+
externalDomainId?: string;
|
|
13610
|
+
externalDriveId?: string;
|
|
13611
|
+
externalUserId?: string;
|
|
13612
|
+
gmtCreate?: string;
|
|
13613
|
+
gmtModified?: string;
|
|
13614
|
+
id?: string;
|
|
13615
|
+
name?: string;
|
|
13616
|
+
profileRoaming?: boolean;
|
|
13617
|
+
status?: string;
|
|
13618
|
+
totalSize?: number;
|
|
13619
|
+
type?: string;
|
|
13620
|
+
usedSize?: number;
|
|
13621
|
+
userId?: string;
|
|
13622
|
+
static names(): { [key: string]: string } {
|
|
13623
|
+
return {
|
|
13624
|
+
aliUid: 'AliUid',
|
|
13625
|
+
description: 'Description',
|
|
13626
|
+
desktopGroupCount: 'DesktopGroupCount',
|
|
13627
|
+
desktopGroups: 'DesktopGroups',
|
|
13628
|
+
domainId: 'DomainId',
|
|
13629
|
+
driveId: 'DriveId',
|
|
13630
|
+
enableProfileManagement: 'EnableProfileManagement',
|
|
13631
|
+
externalDomainId: 'ExternalDomainId',
|
|
13632
|
+
externalDriveId: 'ExternalDriveId',
|
|
13633
|
+
externalUserId: 'ExternalUserId',
|
|
13634
|
+
gmtCreate: 'GmtCreate',
|
|
13635
|
+
gmtModified: 'GmtModified',
|
|
13636
|
+
id: 'Id',
|
|
13637
|
+
name: 'Name',
|
|
13638
|
+
profileRoaming: 'ProfileRoaming',
|
|
13639
|
+
status: 'Status',
|
|
13640
|
+
totalSize: 'TotalSize',
|
|
13641
|
+
type: 'Type',
|
|
13642
|
+
usedSize: 'UsedSize',
|
|
13643
|
+
userId: 'UserId',
|
|
13644
|
+
};
|
|
13645
|
+
}
|
|
13646
|
+
|
|
13647
|
+
static types(): { [key: string]: any } {
|
|
13648
|
+
return {
|
|
13649
|
+
aliUid: 'number',
|
|
13650
|
+
description: 'string',
|
|
13651
|
+
desktopGroupCount: 'number',
|
|
13652
|
+
desktopGroups: { 'type': 'array', 'itemType': DescribeDrivesResponseBodyDrivesDesktopGroups },
|
|
13653
|
+
domainId: 'string',
|
|
13654
|
+
driveId: 'string',
|
|
13655
|
+
enableProfileManagement: 'boolean',
|
|
13656
|
+
externalDomainId: 'string',
|
|
13657
|
+
externalDriveId: 'string',
|
|
13658
|
+
externalUserId: 'string',
|
|
13659
|
+
gmtCreate: 'string',
|
|
13660
|
+
gmtModified: 'string',
|
|
13661
|
+
id: 'string',
|
|
13662
|
+
name: 'string',
|
|
13663
|
+
profileRoaming: 'boolean',
|
|
13664
|
+
status: 'string',
|
|
13665
|
+
totalSize: 'number',
|
|
13666
|
+
type: 'string',
|
|
13667
|
+
usedSize: 'number',
|
|
13668
|
+
userId: 'string',
|
|
13669
|
+
};
|
|
13670
|
+
}
|
|
13671
|
+
|
|
13672
|
+
constructor(map?: { [key: string]: any }) {
|
|
13673
|
+
super(map);
|
|
13674
|
+
}
|
|
13675
|
+
}
|
|
13676
|
+
|
|
12736
13677
|
export class DescribeFlowStatisticResponseBodyDesktopFlowStatistic extends $tea.Model {
|
|
12737
13678
|
desktopId?: string;
|
|
12738
13679
|
desktopName?: string;
|
|
@@ -13248,6 +14189,7 @@ export class DescribeNetworkPackagesResponseBodyNetworkPackages extends $tea.Mod
|
|
|
13248
14189
|
networkPackageStatus?: string;
|
|
13249
14190
|
officeSiteId?: string;
|
|
13250
14191
|
officeSiteName?: string;
|
|
14192
|
+
officeSiteVpcType?: string;
|
|
13251
14193
|
static names(): { [key: string]: string } {
|
|
13252
14194
|
return {
|
|
13253
14195
|
bandwidth: 'Bandwidth',
|
|
@@ -13259,6 +14201,7 @@ export class DescribeNetworkPackagesResponseBodyNetworkPackages extends $tea.Mod
|
|
|
13259
14201
|
networkPackageStatus: 'NetworkPackageStatus',
|
|
13260
14202
|
officeSiteId: 'OfficeSiteId',
|
|
13261
14203
|
officeSiteName: 'OfficeSiteName',
|
|
14204
|
+
officeSiteVpcType: 'OfficeSiteVpcType',
|
|
13262
14205
|
};
|
|
13263
14206
|
}
|
|
13264
14207
|
|
|
@@ -13273,6 +14216,7 @@ export class DescribeNetworkPackagesResponseBodyNetworkPackages extends $tea.Mod
|
|
|
13273
14216
|
networkPackageStatus: 'string',
|
|
13274
14217
|
officeSiteId: 'string',
|
|
13275
14218
|
officeSiteName: 'string',
|
|
14219
|
+
officeSiteVpcType: 'string',
|
|
13276
14220
|
};
|
|
13277
14221
|
}
|
|
13278
14222
|
|
|
@@ -13595,6 +14539,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroupsUsbSupplyRedire
|
|
|
13595
14539
|
}
|
|
13596
14540
|
|
|
13597
14541
|
export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.Model {
|
|
14542
|
+
appContentProtection?: string;
|
|
13598
14543
|
authorizeAccessPolicyRules?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsAuthorizeAccessPolicyRules[];
|
|
13599
14544
|
authorizeSecurityPolicyRules?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsAuthorizeSecurityPolicyRules[];
|
|
13600
14545
|
cameraRedirect?: string;
|
|
@@ -13614,8 +14559,11 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
13614
14559
|
preemptLogin?: string;
|
|
13615
14560
|
preemptLoginUsers?: string[];
|
|
13616
14561
|
printerRedirection?: string;
|
|
14562
|
+
recordContent?: string;
|
|
14563
|
+
recordContentExpires?: number;
|
|
13617
14564
|
recording?: string;
|
|
13618
14565
|
recordingEndTime?: string;
|
|
14566
|
+
recordingExpires?: number;
|
|
13619
14567
|
recordingFps?: number;
|
|
13620
14568
|
recordingStartTime?: string;
|
|
13621
14569
|
usbRedirect?: string;
|
|
@@ -13627,6 +14575,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
13627
14575
|
watermarkType?: string;
|
|
13628
14576
|
static names(): { [key: string]: string } {
|
|
13629
14577
|
return {
|
|
14578
|
+
appContentProtection: 'AppContentProtection',
|
|
13630
14579
|
authorizeAccessPolicyRules: 'AuthorizeAccessPolicyRules',
|
|
13631
14580
|
authorizeSecurityPolicyRules: 'AuthorizeSecurityPolicyRules',
|
|
13632
14581
|
cameraRedirect: 'CameraRedirect',
|
|
@@ -13646,8 +14595,11 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
13646
14595
|
preemptLogin: 'PreemptLogin',
|
|
13647
14596
|
preemptLoginUsers: 'PreemptLoginUsers',
|
|
13648
14597
|
printerRedirection: 'PrinterRedirection',
|
|
14598
|
+
recordContent: 'RecordContent',
|
|
14599
|
+
recordContentExpires: 'RecordContentExpires',
|
|
13649
14600
|
recording: 'Recording',
|
|
13650
14601
|
recordingEndTime: 'RecordingEndTime',
|
|
14602
|
+
recordingExpires: 'RecordingExpires',
|
|
13651
14603
|
recordingFps: 'RecordingFps',
|
|
13652
14604
|
recordingStartTime: 'RecordingStartTime',
|
|
13653
14605
|
usbRedirect: 'UsbRedirect',
|
|
@@ -13662,6 +14614,7 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
13662
14614
|
|
|
13663
14615
|
static types(): { [key: string]: any } {
|
|
13664
14616
|
return {
|
|
14617
|
+
appContentProtection: 'string',
|
|
13665
14618
|
authorizeAccessPolicyRules: { 'type': 'array', 'itemType': DescribePolicyGroupsResponseBodyDescribePolicyGroupsAuthorizeAccessPolicyRules },
|
|
13666
14619
|
authorizeSecurityPolicyRules: { 'type': 'array', 'itemType': DescribePolicyGroupsResponseBodyDescribePolicyGroupsAuthorizeSecurityPolicyRules },
|
|
13667
14620
|
cameraRedirect: 'string',
|
|
@@ -13681,8 +14634,11 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
13681
14634
|
preemptLogin: 'string',
|
|
13682
14635
|
preemptLoginUsers: { 'type': 'array', 'itemType': 'string' },
|
|
13683
14636
|
printerRedirection: 'string',
|
|
14637
|
+
recordContent: 'string',
|
|
14638
|
+
recordContentExpires: 'number',
|
|
13684
14639
|
recording: 'string',
|
|
13685
14640
|
recordingEndTime: 'string',
|
|
14641
|
+
recordingExpires: 'number',
|
|
13686
14642
|
recordingFps: 'number',
|
|
13687
14643
|
recordingStartTime: 'string',
|
|
13688
14644
|
usbRedirect: 'string',
|
|
@@ -13700,48 +14656,13 @@ export class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.M
|
|
|
13700
14656
|
}
|
|
13701
14657
|
}
|
|
13702
14658
|
|
|
13703
|
-
export class DescribeRecordingsResponseBodyRecordings extends $tea.Model {
|
|
13704
|
-
desktopId?: string;
|
|
13705
|
-
endTime?: string;
|
|
13706
|
-
endUserIds?: string[];
|
|
13707
|
-
filePath?: string;
|
|
13708
|
-
recordingSize?: number;
|
|
13709
|
-
recordingType?: string;
|
|
13710
|
-
startTime?: string;
|
|
13711
|
-
static names(): { [key: string]: string } {
|
|
13712
|
-
return {
|
|
13713
|
-
desktopId: 'DesktopId',
|
|
13714
|
-
endTime: 'EndTime',
|
|
13715
|
-
endUserIds: 'EndUserIds',
|
|
13716
|
-
filePath: 'FilePath',
|
|
13717
|
-
recordingSize: 'RecordingSize',
|
|
13718
|
-
recordingType: 'RecordingType',
|
|
13719
|
-
startTime: 'StartTime',
|
|
13720
|
-
};
|
|
13721
|
-
}
|
|
13722
|
-
|
|
13723
|
-
static types(): { [key: string]: any } {
|
|
13724
|
-
return {
|
|
13725
|
-
desktopId: 'string',
|
|
13726
|
-
endTime: 'string',
|
|
13727
|
-
endUserIds: { 'type': 'array', 'itemType': 'string' },
|
|
13728
|
-
filePath: 'string',
|
|
13729
|
-
recordingSize: 'number',
|
|
13730
|
-
recordingType: 'string',
|
|
13731
|
-
startTime: 'string',
|
|
13732
|
-
};
|
|
13733
|
-
}
|
|
13734
|
-
|
|
13735
|
-
constructor(map?: { [key: string]: any }) {
|
|
13736
|
-
super(map);
|
|
13737
|
-
}
|
|
13738
|
-
}
|
|
13739
|
-
|
|
13740
14659
|
export class DescribeRegionsResponseBodyRegions extends $tea.Model {
|
|
14660
|
+
localName?: string;
|
|
13741
14661
|
regionEndpoint?: string;
|
|
13742
14662
|
regionId?: string;
|
|
13743
14663
|
static names(): { [key: string]: string } {
|
|
13744
14664
|
return {
|
|
14665
|
+
localName: 'LocalName',
|
|
13745
14666
|
regionEndpoint: 'RegionEndpoint',
|
|
13746
14667
|
regionId: 'RegionId',
|
|
13747
14668
|
};
|
|
@@ -13749,6 +14670,7 @@ export class DescribeRegionsResponseBodyRegions extends $tea.Model {
|
|
|
13749
14670
|
|
|
13750
14671
|
static types(): { [key: string]: any } {
|
|
13751
14672
|
return {
|
|
14673
|
+
localName: 'string',
|
|
13752
14674
|
regionEndpoint: 'string',
|
|
13753
14675
|
regionId: 'string',
|
|
13754
14676
|
};
|
|
@@ -13814,6 +14736,7 @@ export class DescribeSnapshotsResponseBodySnapshots extends $tea.Model {
|
|
|
13814
14736
|
description?: string;
|
|
13815
14737
|
desktopId?: string;
|
|
13816
14738
|
progress?: string;
|
|
14739
|
+
protocolType?: string;
|
|
13817
14740
|
remainTime?: number;
|
|
13818
14741
|
snapshotId?: string;
|
|
13819
14742
|
snapshotName?: string;
|
|
@@ -13829,6 +14752,7 @@ export class DescribeSnapshotsResponseBodySnapshots extends $tea.Model {
|
|
|
13829
14752
|
description: 'Description',
|
|
13830
14753
|
desktopId: 'DesktopId',
|
|
13831
14754
|
progress: 'Progress',
|
|
14755
|
+
protocolType: 'ProtocolType',
|
|
13832
14756
|
remainTime: 'RemainTime',
|
|
13833
14757
|
snapshotId: 'SnapshotId',
|
|
13834
14758
|
snapshotName: 'SnapshotName',
|
|
@@ -13847,6 +14771,7 @@ export class DescribeSnapshotsResponseBodySnapshots extends $tea.Model {
|
|
|
13847
14771
|
description: 'string',
|
|
13848
14772
|
desktopId: 'string',
|
|
13849
14773
|
progress: 'string',
|
|
14774
|
+
protocolType: 'string',
|
|
13850
14775
|
remainTime: 'number',
|
|
13851
14776
|
snapshotId: 'string',
|
|
13852
14777
|
snapshotName: 'string',
|
|
@@ -14145,6 +15070,7 @@ export class DescribeUsersInGroupResponseBodyEndUsers extends $tea.Model {
|
|
|
14145
15070
|
endUserPhone?: string;
|
|
14146
15071
|
endUserType?: string;
|
|
14147
15072
|
externalInfo?: DescribeUsersInGroupResponseBodyEndUsersExternalInfo;
|
|
15073
|
+
userDesktopId?: string;
|
|
14148
15074
|
userSetPropertiesModels?: DescribeUsersInGroupResponseBodyEndUsersUserSetPropertiesModels[];
|
|
14149
15075
|
static names(): { [key: string]: string } {
|
|
14150
15076
|
return {
|
|
@@ -14157,6 +15083,7 @@ export class DescribeUsersInGroupResponseBodyEndUsers extends $tea.Model {
|
|
|
14157
15083
|
endUserPhone: 'EndUserPhone',
|
|
14158
15084
|
endUserType: 'EndUserType',
|
|
14159
15085
|
externalInfo: 'ExternalInfo',
|
|
15086
|
+
userDesktopId: 'UserDesktopId',
|
|
14160
15087
|
userSetPropertiesModels: 'UserSetPropertiesModels',
|
|
14161
15088
|
};
|
|
14162
15089
|
}
|
|
@@ -14172,6 +15099,7 @@ export class DescribeUsersInGroupResponseBodyEndUsers extends $tea.Model {
|
|
|
14172
15099
|
endUserPhone: 'string',
|
|
14173
15100
|
endUserType: 'string',
|
|
14174
15101
|
externalInfo: DescribeUsersInGroupResponseBodyEndUsersExternalInfo,
|
|
15102
|
+
userDesktopId: 'string',
|
|
14175
15103
|
userSetPropertiesModels: { 'type': 'array', 'itemType': DescribeUsersInGroupResponseBodyEndUsersUserSetPropertiesModels },
|
|
14176
15104
|
};
|
|
14177
15105
|
}
|
|
@@ -14181,6 +15109,31 @@ export class DescribeUsersInGroupResponseBodyEndUsers extends $tea.Model {
|
|
|
14181
15109
|
}
|
|
14182
15110
|
}
|
|
14183
15111
|
|
|
15112
|
+
export class DescribeUsersPasswordResponseBodyDesktopUsers extends $tea.Model {
|
|
15113
|
+
displayName?: string;
|
|
15114
|
+
endUserId?: string;
|
|
15115
|
+
password?: string;
|
|
15116
|
+
static names(): { [key: string]: string } {
|
|
15117
|
+
return {
|
|
15118
|
+
displayName: 'DisplayName',
|
|
15119
|
+
endUserId: 'EndUserId',
|
|
15120
|
+
password: 'Password',
|
|
15121
|
+
};
|
|
15122
|
+
}
|
|
15123
|
+
|
|
15124
|
+
static types(): { [key: string]: any } {
|
|
15125
|
+
return {
|
|
15126
|
+
displayName: 'string',
|
|
15127
|
+
endUserId: 'string',
|
|
15128
|
+
password: 'string',
|
|
15129
|
+
};
|
|
15130
|
+
}
|
|
15131
|
+
|
|
15132
|
+
constructor(map?: { [key: string]: any }) {
|
|
15133
|
+
super(map);
|
|
15134
|
+
}
|
|
15135
|
+
}
|
|
15136
|
+
|
|
14184
15137
|
export class DescribeVirtualMFADevicesResponseBodyVirtualMFADevices extends $tea.Model {
|
|
14185
15138
|
consecutiveFails?: number;
|
|
14186
15139
|
directoryId?: string;
|
|
@@ -14412,11 +15365,13 @@ export class ExportDesktopListInfoRequestTag extends $tea.Model {
|
|
|
14412
15365
|
|
|
14413
15366
|
export class GetDesktopGroupDetailResponseBodyDesktopsTimerInfos extends $tea.Model {
|
|
14414
15367
|
cronExpression?: string;
|
|
15368
|
+
forced?: boolean;
|
|
14415
15369
|
status?: number;
|
|
14416
15370
|
timerType?: number;
|
|
14417
15371
|
static names(): { [key: string]: string } {
|
|
14418
15372
|
return {
|
|
14419
15373
|
cronExpression: 'CronExpression',
|
|
15374
|
+
forced: 'Forced',
|
|
14420
15375
|
status: 'Status',
|
|
14421
15376
|
timerType: 'TimerType',
|
|
14422
15377
|
};
|
|
@@ -14425,6 +15380,7 @@ export class GetDesktopGroupDetailResponseBodyDesktopsTimerInfos extends $tea.Mo
|
|
|
14425
15380
|
static types(): { [key: string]: any } {
|
|
14426
15381
|
return {
|
|
14427
15382
|
cronExpression: 'string',
|
|
15383
|
+
forced: 'boolean',
|
|
14428
15384
|
status: 'number',
|
|
14429
15385
|
timerType: 'number',
|
|
14430
15386
|
};
|
|
@@ -14440,6 +15396,7 @@ export class GetDesktopGroupDetailResponseBodyDesktops extends $tea.Model {
|
|
|
14440
15396
|
allowBufferCount?: number;
|
|
14441
15397
|
bindAmount?: number;
|
|
14442
15398
|
comments?: string;
|
|
15399
|
+
connectDuration?: number;
|
|
14443
15400
|
cpu?: number;
|
|
14444
15401
|
creationTime?: string;
|
|
14445
15402
|
creator?: string;
|
|
@@ -14452,6 +15409,7 @@ export class GetDesktopGroupDetailResponseBodyDesktops extends $tea.Model {
|
|
|
14452
15409
|
expiredTime?: string;
|
|
14453
15410
|
gpuCount?: number;
|
|
14454
15411
|
gpuSpec?: string;
|
|
15412
|
+
idleDisconnectDuration?: number;
|
|
14455
15413
|
keepDuration?: number;
|
|
14456
15414
|
loadPolicy?: number;
|
|
14457
15415
|
maxDesktopsCount?: number;
|
|
@@ -14466,18 +15424,22 @@ export class GetDesktopGroupDetailResponseBodyDesktops extends $tea.Model {
|
|
|
14466
15424
|
payType?: string;
|
|
14467
15425
|
policyGroupId?: string;
|
|
14468
15426
|
policyGroupName?: string;
|
|
15427
|
+
ratioThreshold?: number;
|
|
14469
15428
|
resType?: number;
|
|
14470
15429
|
resetType?: number;
|
|
14471
15430
|
status?: number;
|
|
15431
|
+
stopDuration?: number;
|
|
14472
15432
|
systemDiskCategory?: string;
|
|
14473
15433
|
systemDiskSize?: number;
|
|
14474
15434
|
timerInfos?: GetDesktopGroupDetailResponseBodyDesktopsTimerInfos[];
|
|
15435
|
+
version?: number;
|
|
14475
15436
|
static names(): { [key: string]: string } {
|
|
14476
15437
|
return {
|
|
14477
15438
|
allowAutoSetup: 'AllowAutoSetup',
|
|
14478
15439
|
allowBufferCount: 'AllowBufferCount',
|
|
14479
15440
|
bindAmount: 'BindAmount',
|
|
14480
15441
|
comments: 'Comments',
|
|
15442
|
+
connectDuration: 'ConnectDuration',
|
|
14481
15443
|
cpu: 'Cpu',
|
|
14482
15444
|
creationTime: 'CreationTime',
|
|
14483
15445
|
creator: 'Creator',
|
|
@@ -14490,6 +15452,7 @@ export class GetDesktopGroupDetailResponseBodyDesktops extends $tea.Model {
|
|
|
14490
15452
|
expiredTime: 'ExpiredTime',
|
|
14491
15453
|
gpuCount: 'GpuCount',
|
|
14492
15454
|
gpuSpec: 'GpuSpec',
|
|
15455
|
+
idleDisconnectDuration: 'IdleDisconnectDuration',
|
|
14493
15456
|
keepDuration: 'KeepDuration',
|
|
14494
15457
|
loadPolicy: 'LoadPolicy',
|
|
14495
15458
|
maxDesktopsCount: 'MaxDesktopsCount',
|
|
@@ -14504,12 +15467,15 @@ export class GetDesktopGroupDetailResponseBodyDesktops extends $tea.Model {
|
|
|
14504
15467
|
payType: 'PayType',
|
|
14505
15468
|
policyGroupId: 'PolicyGroupId',
|
|
14506
15469
|
policyGroupName: 'PolicyGroupName',
|
|
15470
|
+
ratioThreshold: 'RatioThreshold',
|
|
14507
15471
|
resType: 'ResType',
|
|
14508
15472
|
resetType: 'ResetType',
|
|
14509
15473
|
status: 'Status',
|
|
15474
|
+
stopDuration: 'StopDuration',
|
|
14510
15475
|
systemDiskCategory: 'SystemDiskCategory',
|
|
14511
15476
|
systemDiskSize: 'SystemDiskSize',
|
|
14512
15477
|
timerInfos: 'TimerInfos',
|
|
15478
|
+
version: 'Version',
|
|
14513
15479
|
};
|
|
14514
15480
|
}
|
|
14515
15481
|
|
|
@@ -14519,6 +15485,7 @@ export class GetDesktopGroupDetailResponseBodyDesktops extends $tea.Model {
|
|
|
14519
15485
|
allowBufferCount: 'number',
|
|
14520
15486
|
bindAmount: 'number',
|
|
14521
15487
|
comments: 'string',
|
|
15488
|
+
connectDuration: 'number',
|
|
14522
15489
|
cpu: 'number',
|
|
14523
15490
|
creationTime: 'string',
|
|
14524
15491
|
creator: 'string',
|
|
@@ -14531,6 +15498,7 @@ export class GetDesktopGroupDetailResponseBodyDesktops extends $tea.Model {
|
|
|
14531
15498
|
expiredTime: 'string',
|
|
14532
15499
|
gpuCount: 'number',
|
|
14533
15500
|
gpuSpec: 'string',
|
|
15501
|
+
idleDisconnectDuration: 'number',
|
|
14534
15502
|
keepDuration: 'number',
|
|
14535
15503
|
loadPolicy: 'number',
|
|
14536
15504
|
maxDesktopsCount: 'number',
|
|
@@ -14545,12 +15513,15 @@ export class GetDesktopGroupDetailResponseBodyDesktops extends $tea.Model {
|
|
|
14545
15513
|
payType: 'string',
|
|
14546
15514
|
policyGroupId: 'string',
|
|
14547
15515
|
policyGroupName: 'string',
|
|
15516
|
+
ratioThreshold: 'number',
|
|
14548
15517
|
resType: 'number',
|
|
14549
15518
|
resetType: 'number',
|
|
14550
15519
|
status: 'number',
|
|
15520
|
+
stopDuration: 'number',
|
|
14551
15521
|
systemDiskCategory: 'string',
|
|
14552
15522
|
systemDiskSize: 'number',
|
|
14553
15523
|
timerInfos: { 'type': 'array', 'itemType': GetDesktopGroupDetailResponseBodyDesktopsTimerInfos },
|
|
15524
|
+
version: 'number',
|
|
14554
15525
|
};
|
|
14555
15526
|
}
|
|
14556
15527
|
|
|
@@ -15851,6 +16822,10 @@ export default class Client extends OpenApi {
|
|
|
15851
16822
|
query["Comments"] = request.comments;
|
|
15852
16823
|
}
|
|
15853
16824
|
|
|
16825
|
+
if (!Util.isUnset(request.connectDuration)) {
|
|
16826
|
+
query["ConnectDuration"] = request.connectDuration;
|
|
16827
|
+
}
|
|
16828
|
+
|
|
15854
16829
|
if (!Util.isUnset(request.defaultInitDesktopCount)) {
|
|
15855
16830
|
query["DefaultInitDesktopCount"] = request.defaultInitDesktopCount;
|
|
15856
16831
|
}
|
|
@@ -15867,6 +16842,10 @@ export default class Client extends OpenApi {
|
|
|
15867
16842
|
query["EndUserIds"] = request.endUserIds;
|
|
15868
16843
|
}
|
|
15869
16844
|
|
|
16845
|
+
if (!Util.isUnset(request.idleDisconnectDuration)) {
|
|
16846
|
+
query["IdleDisconnectDuration"] = request.idleDisconnectDuration;
|
|
16847
|
+
}
|
|
16848
|
+
|
|
15870
16849
|
if (!Util.isUnset(request.keepDuration)) {
|
|
15871
16850
|
query["KeepDuration"] = request.keepDuration;
|
|
15872
16851
|
}
|
|
@@ -15903,6 +16882,10 @@ export default class Client extends OpenApi {
|
|
|
15903
16882
|
query["PolicyGroupId"] = request.policyGroupId;
|
|
15904
16883
|
}
|
|
15905
16884
|
|
|
16885
|
+
if (!Util.isUnset(request.ratioThreshold)) {
|
|
16886
|
+
query["RatioThreshold"] = request.ratioThreshold;
|
|
16887
|
+
}
|
|
16888
|
+
|
|
15906
16889
|
if (!Util.isUnset(request.regionId)) {
|
|
15907
16890
|
query["RegionId"] = request.regionId;
|
|
15908
16891
|
}
|
|
@@ -15915,6 +16898,10 @@ export default class Client extends OpenApi {
|
|
|
15915
16898
|
query["ScaleStrategyId"] = request.scaleStrategyId;
|
|
15916
16899
|
}
|
|
15917
16900
|
|
|
16901
|
+
if (!Util.isUnset(request.stopDuration)) {
|
|
16902
|
+
query["StopDuration"] = request.stopDuration;
|
|
16903
|
+
}
|
|
16904
|
+
|
|
15918
16905
|
if (!Util.isUnset(request.volumeEncryptionEnabled)) {
|
|
15919
16906
|
query["VolumeEncryptionEnabled"] = request.volumeEncryptionEnabled;
|
|
15920
16907
|
}
|
|
@@ -16028,6 +17015,10 @@ export default class Client extends OpenApi {
|
|
|
16028
17015
|
query["UserAssignMode"] = request.userAssignMode;
|
|
16029
17016
|
}
|
|
16030
17017
|
|
|
17018
|
+
if (!Util.isUnset(request.userCommands)) {
|
|
17019
|
+
query["UserCommands"] = request.userCommands;
|
|
17020
|
+
}
|
|
17021
|
+
|
|
16031
17022
|
if (!Util.isUnset(request.userName)) {
|
|
16032
17023
|
query["UserName"] = request.userName;
|
|
16033
17024
|
}
|
|
@@ -16095,6 +17086,79 @@ export default class Client extends OpenApi {
|
|
|
16095
17086
|
return await this.createDiskEncryptionServiceWithOptions(request, runtime);
|
|
16096
17087
|
}
|
|
16097
17088
|
|
|
17089
|
+
async createDriveWithOptions(request: CreateDriveRequest, runtime: $Util.RuntimeOptions): Promise<CreateDriveResponse> {
|
|
17090
|
+
Util.validateModel(request);
|
|
17091
|
+
let query = { };
|
|
17092
|
+
if (!Util.isUnset(request.aliUid)) {
|
|
17093
|
+
query["AliUid"] = request.aliUid;
|
|
17094
|
+
}
|
|
17095
|
+
|
|
17096
|
+
if (!Util.isUnset(request.description)) {
|
|
17097
|
+
query["Description"] = request.description;
|
|
17098
|
+
}
|
|
17099
|
+
|
|
17100
|
+
if (!Util.isUnset(request.domainId)) {
|
|
17101
|
+
query["DomainId"] = request.domainId;
|
|
17102
|
+
}
|
|
17103
|
+
|
|
17104
|
+
if (!Util.isUnset(request.driveName)) {
|
|
17105
|
+
query["DriveName"] = request.driveName;
|
|
17106
|
+
}
|
|
17107
|
+
|
|
17108
|
+
if (!Util.isUnset(request.externalDomainId)) {
|
|
17109
|
+
query["ExternalDomainId"] = request.externalDomainId;
|
|
17110
|
+
}
|
|
17111
|
+
|
|
17112
|
+
if (!Util.isUnset(request.profileRoaming)) {
|
|
17113
|
+
query["ProfileRoaming"] = request.profileRoaming;
|
|
17114
|
+
}
|
|
17115
|
+
|
|
17116
|
+
if (!Util.isUnset(request.regionId)) {
|
|
17117
|
+
query["RegionId"] = request.regionId;
|
|
17118
|
+
}
|
|
17119
|
+
|
|
17120
|
+
if (!Util.isUnset(request.resourceType)) {
|
|
17121
|
+
query["ResourceType"] = request.resourceType;
|
|
17122
|
+
}
|
|
17123
|
+
|
|
17124
|
+
if (!Util.isUnset(request.totalSize)) {
|
|
17125
|
+
query["TotalSize"] = request.totalSize;
|
|
17126
|
+
}
|
|
17127
|
+
|
|
17128
|
+
if (!Util.isUnset(request.type)) {
|
|
17129
|
+
query["Type"] = request.type;
|
|
17130
|
+
}
|
|
17131
|
+
|
|
17132
|
+
if (!Util.isUnset(request.usedSize)) {
|
|
17133
|
+
query["UsedSize"] = request.usedSize;
|
|
17134
|
+
}
|
|
17135
|
+
|
|
17136
|
+
if (!Util.isUnset(request.userId)) {
|
|
17137
|
+
query["UserId"] = request.userId;
|
|
17138
|
+
}
|
|
17139
|
+
|
|
17140
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
17141
|
+
query: OpenApiUtil.query(query),
|
|
17142
|
+
});
|
|
17143
|
+
let params = new $OpenApi.Params({
|
|
17144
|
+
action: "CreateDrive",
|
|
17145
|
+
version: "2020-09-30",
|
|
17146
|
+
protocol: "HTTPS",
|
|
17147
|
+
pathname: "/",
|
|
17148
|
+
method: "POST",
|
|
17149
|
+
authType: "AK",
|
|
17150
|
+
style: "RPC",
|
|
17151
|
+
reqBodyType: "formData",
|
|
17152
|
+
bodyType: "json",
|
|
17153
|
+
});
|
|
17154
|
+
return $tea.cast<CreateDriveResponse>(await this.callApi(params, req, runtime), new CreateDriveResponse({}));
|
|
17155
|
+
}
|
|
17156
|
+
|
|
17157
|
+
async createDrive(request: CreateDriveRequest): Promise<CreateDriveResponse> {
|
|
17158
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
17159
|
+
return await this.createDriveWithOptions(request, runtime);
|
|
17160
|
+
}
|
|
17161
|
+
|
|
16098
17162
|
async createImageWithOptions(request: CreateImageRequest, runtime: $Util.RuntimeOptions): Promise<CreateImageResponse> {
|
|
16099
17163
|
Util.validateModel(request);
|
|
16100
17164
|
let query = { };
|
|
@@ -16269,6 +17333,10 @@ export default class Client extends OpenApi {
|
|
|
16269
17333
|
async createPolicyGroupWithOptions(request: CreatePolicyGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreatePolicyGroupResponse> {
|
|
16270
17334
|
Util.validateModel(request);
|
|
16271
17335
|
let query = { };
|
|
17336
|
+
if (!Util.isUnset(request.appContentProtection)) {
|
|
17337
|
+
query["AppContentProtection"] = request.appContentProtection;
|
|
17338
|
+
}
|
|
17339
|
+
|
|
16272
17340
|
if (!Util.isUnset(request.authorizeAccessPolicyRule)) {
|
|
16273
17341
|
query["AuthorizeAccessPolicyRule"] = request.authorizeAccessPolicyRule;
|
|
16274
17342
|
}
|
|
@@ -16329,6 +17397,14 @@ export default class Client extends OpenApi {
|
|
|
16329
17397
|
query["PrinterRedirection"] = request.printerRedirection;
|
|
16330
17398
|
}
|
|
16331
17399
|
|
|
17400
|
+
if (!Util.isUnset(request.recordContent)) {
|
|
17401
|
+
query["RecordContent"] = request.recordContent;
|
|
17402
|
+
}
|
|
17403
|
+
|
|
17404
|
+
if (!Util.isUnset(request.recordContentExpires)) {
|
|
17405
|
+
query["RecordContentExpires"] = request.recordContentExpires;
|
|
17406
|
+
}
|
|
17407
|
+
|
|
16332
17408
|
if (!Util.isUnset(request.recording)) {
|
|
16333
17409
|
query["Recording"] = request.recording;
|
|
16334
17410
|
}
|
|
@@ -16337,6 +17413,10 @@ export default class Client extends OpenApi {
|
|
|
16337
17413
|
query["RecordingEndTime"] = request.recordingEndTime;
|
|
16338
17414
|
}
|
|
16339
17415
|
|
|
17416
|
+
if (!Util.isUnset(request.recordingExpires)) {
|
|
17417
|
+
query["RecordingExpires"] = request.recordingExpires;
|
|
17418
|
+
}
|
|
17419
|
+
|
|
16340
17420
|
if (!Util.isUnset(request.recordingFps)) {
|
|
16341
17421
|
query["RecordingFps"] = request.recordingFps;
|
|
16342
17422
|
}
|
|
@@ -16599,6 +17679,43 @@ export default class Client extends OpenApi {
|
|
|
16599
17679
|
return await this.deleteBundlesWithOptions(request, runtime);
|
|
16600
17680
|
}
|
|
16601
17681
|
|
|
17682
|
+
async deleteCloudDriveUsersWithOptions(request: DeleteCloudDriveUsersRequest, runtime: $Util.RuntimeOptions): Promise<DeleteCloudDriveUsersResponse> {
|
|
17683
|
+
Util.validateModel(request);
|
|
17684
|
+
let query = { };
|
|
17685
|
+
if (!Util.isUnset(request.cdsId)) {
|
|
17686
|
+
query["CdsId"] = request.cdsId;
|
|
17687
|
+
}
|
|
17688
|
+
|
|
17689
|
+
if (!Util.isUnset(request.endUserId)) {
|
|
17690
|
+
query["EndUserId"] = request.endUserId;
|
|
17691
|
+
}
|
|
17692
|
+
|
|
17693
|
+
if (!Util.isUnset(request.regionId)) {
|
|
17694
|
+
query["RegionId"] = request.regionId;
|
|
17695
|
+
}
|
|
17696
|
+
|
|
17697
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
17698
|
+
query: OpenApiUtil.query(query),
|
|
17699
|
+
});
|
|
17700
|
+
let params = new $OpenApi.Params({
|
|
17701
|
+
action: "DeleteCloudDriveUsers",
|
|
17702
|
+
version: "2020-09-30",
|
|
17703
|
+
protocol: "HTTPS",
|
|
17704
|
+
pathname: "/",
|
|
17705
|
+
method: "POST",
|
|
17706
|
+
authType: "AK",
|
|
17707
|
+
style: "RPC",
|
|
17708
|
+
reqBodyType: "formData",
|
|
17709
|
+
bodyType: "json",
|
|
17710
|
+
});
|
|
17711
|
+
return $tea.cast<DeleteCloudDriveUsersResponse>(await this.callApi(params, req, runtime), new DeleteCloudDriveUsersResponse({}));
|
|
17712
|
+
}
|
|
17713
|
+
|
|
17714
|
+
async deleteCloudDriveUsers(request: DeleteCloudDriveUsersRequest): Promise<DeleteCloudDriveUsersResponse> {
|
|
17715
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
17716
|
+
return await this.deleteCloudDriveUsersWithOptions(request, runtime);
|
|
17717
|
+
}
|
|
17718
|
+
|
|
16602
17719
|
async deleteDesktopGroupWithOptions(request: DeleteDesktopGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDesktopGroupResponse> {
|
|
16603
17720
|
Util.validateModel(request);
|
|
16604
17721
|
let query = { };
|
|
@@ -16660,16 +17777,49 @@ export default class Client extends OpenApi {
|
|
|
16660
17777
|
return $tea.cast<DeleteDesktopsResponse>(await this.callApi(params, req, runtime), new DeleteDesktopsResponse({}));
|
|
16661
17778
|
}
|
|
16662
17779
|
|
|
16663
|
-
async deleteDesktops(request: DeleteDesktopsRequest): Promise<DeleteDesktopsResponse> {
|
|
17780
|
+
async deleteDesktops(request: DeleteDesktopsRequest): Promise<DeleteDesktopsResponse> {
|
|
17781
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
17782
|
+
return await this.deleteDesktopsWithOptions(request, runtime);
|
|
17783
|
+
}
|
|
17784
|
+
|
|
17785
|
+
async deleteDirectoriesWithOptions(request: DeleteDirectoriesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDirectoriesResponse> {
|
|
17786
|
+
Util.validateModel(request);
|
|
17787
|
+
let query = { };
|
|
17788
|
+
if (!Util.isUnset(request.directoryId)) {
|
|
17789
|
+
query["DirectoryId"] = request.directoryId;
|
|
17790
|
+
}
|
|
17791
|
+
|
|
17792
|
+
if (!Util.isUnset(request.regionId)) {
|
|
17793
|
+
query["RegionId"] = request.regionId;
|
|
17794
|
+
}
|
|
17795
|
+
|
|
17796
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
17797
|
+
query: OpenApiUtil.query(query),
|
|
17798
|
+
});
|
|
17799
|
+
let params = new $OpenApi.Params({
|
|
17800
|
+
action: "DeleteDirectories",
|
|
17801
|
+
version: "2020-09-30",
|
|
17802
|
+
protocol: "HTTPS",
|
|
17803
|
+
pathname: "/",
|
|
17804
|
+
method: "POST",
|
|
17805
|
+
authType: "AK",
|
|
17806
|
+
style: "RPC",
|
|
17807
|
+
reqBodyType: "formData",
|
|
17808
|
+
bodyType: "json",
|
|
17809
|
+
});
|
|
17810
|
+
return $tea.cast<DeleteDirectoriesResponse>(await this.callApi(params, req, runtime), new DeleteDirectoriesResponse({}));
|
|
17811
|
+
}
|
|
17812
|
+
|
|
17813
|
+
async deleteDirectories(request: DeleteDirectoriesRequest): Promise<DeleteDirectoriesResponse> {
|
|
16664
17814
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16665
|
-
return await this.
|
|
17815
|
+
return await this.deleteDirectoriesWithOptions(request, runtime);
|
|
16666
17816
|
}
|
|
16667
17817
|
|
|
16668
|
-
async
|
|
17818
|
+
async deleteDriveWithOptions(request: DeleteDriveRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDriveResponse> {
|
|
16669
17819
|
Util.validateModel(request);
|
|
16670
17820
|
let query = { };
|
|
16671
|
-
if (!Util.isUnset(request.
|
|
16672
|
-
query["
|
|
17821
|
+
if (!Util.isUnset(request.driveId)) {
|
|
17822
|
+
query["DriveId"] = request.driveId;
|
|
16673
17823
|
}
|
|
16674
17824
|
|
|
16675
17825
|
if (!Util.isUnset(request.regionId)) {
|
|
@@ -16680,7 +17830,7 @@ export default class Client extends OpenApi {
|
|
|
16680
17830
|
query: OpenApiUtil.query(query),
|
|
16681
17831
|
});
|
|
16682
17832
|
let params = new $OpenApi.Params({
|
|
16683
|
-
action: "
|
|
17833
|
+
action: "DeleteDrive",
|
|
16684
17834
|
version: "2020-09-30",
|
|
16685
17835
|
protocol: "HTTPS",
|
|
16686
17836
|
pathname: "/",
|
|
@@ -16690,12 +17840,12 @@ export default class Client extends OpenApi {
|
|
|
16690
17840
|
reqBodyType: "formData",
|
|
16691
17841
|
bodyType: "json",
|
|
16692
17842
|
});
|
|
16693
|
-
return $tea.cast<
|
|
17843
|
+
return $tea.cast<DeleteDriveResponse>(await this.callApi(params, req, runtime), new DeleteDriveResponse({}));
|
|
16694
17844
|
}
|
|
16695
17845
|
|
|
16696
|
-
async
|
|
17846
|
+
async deleteDrive(request: DeleteDriveRequest): Promise<DeleteDriveResponse> {
|
|
16697
17847
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16698
|
-
return await this.
|
|
17848
|
+
return await this.deleteDriveWithOptions(request, runtime);
|
|
16699
17849
|
}
|
|
16700
17850
|
|
|
16701
17851
|
async deleteImagesWithOptions(request: DeleteImagesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteImagesResponse> {
|
|
@@ -17173,6 +18323,39 @@ export default class Client extends OpenApi {
|
|
|
17173
18323
|
return await this.describeClientEventsWithOptions(request, runtime);
|
|
17174
18324
|
}
|
|
17175
18325
|
|
|
18326
|
+
async describeCloudDrivePermissionsWithOptions(request: DescribeCloudDrivePermissionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCloudDrivePermissionsResponse> {
|
|
18327
|
+
Util.validateModel(request);
|
|
18328
|
+
let query = { };
|
|
18329
|
+
if (!Util.isUnset(request.cdsId)) {
|
|
18330
|
+
query["CdsId"] = request.cdsId;
|
|
18331
|
+
}
|
|
18332
|
+
|
|
18333
|
+
if (!Util.isUnset(request.regionId)) {
|
|
18334
|
+
query["RegionId"] = request.regionId;
|
|
18335
|
+
}
|
|
18336
|
+
|
|
18337
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
18338
|
+
query: OpenApiUtil.query(query),
|
|
18339
|
+
});
|
|
18340
|
+
let params = new $OpenApi.Params({
|
|
18341
|
+
action: "DescribeCloudDrivePermissions",
|
|
18342
|
+
version: "2020-09-30",
|
|
18343
|
+
protocol: "HTTPS",
|
|
18344
|
+
pathname: "/",
|
|
18345
|
+
method: "POST",
|
|
18346
|
+
authType: "AK",
|
|
18347
|
+
style: "RPC",
|
|
18348
|
+
reqBodyType: "formData",
|
|
18349
|
+
bodyType: "json",
|
|
18350
|
+
});
|
|
18351
|
+
return $tea.cast<DescribeCloudDrivePermissionsResponse>(await this.callApi(params, req, runtime), new DescribeCloudDrivePermissionsResponse({}));
|
|
18352
|
+
}
|
|
18353
|
+
|
|
18354
|
+
async describeCloudDrivePermissions(request: DescribeCloudDrivePermissionsRequest): Promise<DescribeCloudDrivePermissionsResponse> {
|
|
18355
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
18356
|
+
return await this.describeCloudDrivePermissionsWithOptions(request, runtime);
|
|
18357
|
+
}
|
|
18358
|
+
|
|
17176
18359
|
async describeDesktopGroupsWithOptions(request: DescribeDesktopGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDesktopGroupsResponse> {
|
|
17177
18360
|
Util.validateModel(request);
|
|
17178
18361
|
let query = { };
|
|
@@ -17472,6 +18655,10 @@ export default class Client extends OpenApi {
|
|
|
17472
18655
|
query["DesktopGroupId"] = request.desktopGroupId;
|
|
17473
18656
|
}
|
|
17474
18657
|
|
|
18658
|
+
if (!Util.isUnset(request.ignoreDeleted)) {
|
|
18659
|
+
query["IgnoreDeleted"] = request.ignoreDeleted;
|
|
18660
|
+
}
|
|
18661
|
+
|
|
17475
18662
|
if (!Util.isUnset(request.maxResults)) {
|
|
17476
18663
|
query["MaxResults"] = request.maxResults;
|
|
17477
18664
|
}
|
|
@@ -17563,6 +18750,47 @@ export default class Client extends OpenApi {
|
|
|
17563
18750
|
return await this.describeDirectoriesWithOptions(request, runtime);
|
|
17564
18751
|
}
|
|
17565
18752
|
|
|
18753
|
+
async describeDrivesWithOptions(request: DescribeDrivesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDrivesResponse> {
|
|
18754
|
+
Util.validateModel(request);
|
|
18755
|
+
let query = { };
|
|
18756
|
+
if (!Util.isUnset(request.domainIds)) {
|
|
18757
|
+
query["DomainIds"] = request.domainIds;
|
|
18758
|
+
}
|
|
18759
|
+
|
|
18760
|
+
if (!Util.isUnset(request.regionId)) {
|
|
18761
|
+
query["RegionId"] = request.regionId;
|
|
18762
|
+
}
|
|
18763
|
+
|
|
18764
|
+
if (!Util.isUnset(request.resourceType)) {
|
|
18765
|
+
query["ResourceType"] = request.resourceType;
|
|
18766
|
+
}
|
|
18767
|
+
|
|
18768
|
+
if (!Util.isUnset(request.userId)) {
|
|
18769
|
+
query["UserId"] = request.userId;
|
|
18770
|
+
}
|
|
18771
|
+
|
|
18772
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
18773
|
+
query: OpenApiUtil.query(query),
|
|
18774
|
+
});
|
|
18775
|
+
let params = new $OpenApi.Params({
|
|
18776
|
+
action: "DescribeDrives",
|
|
18777
|
+
version: "2020-09-30",
|
|
18778
|
+
protocol: "HTTPS",
|
|
18779
|
+
pathname: "/",
|
|
18780
|
+
method: "POST",
|
|
18781
|
+
authType: "AK",
|
|
18782
|
+
style: "RPC",
|
|
18783
|
+
reqBodyType: "formData",
|
|
18784
|
+
bodyType: "json",
|
|
18785
|
+
});
|
|
18786
|
+
return $tea.cast<DescribeDrivesResponse>(await this.callApi(params, req, runtime), new DescribeDrivesResponse({}));
|
|
18787
|
+
}
|
|
18788
|
+
|
|
18789
|
+
async describeDrives(request: DescribeDrivesRequest): Promise<DescribeDrivesResponse> {
|
|
18790
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
18791
|
+
return await this.describeDrivesWithOptions(request, runtime);
|
|
18792
|
+
}
|
|
18793
|
+
|
|
17566
18794
|
async describeFlowMetricWithOptions(request: DescribeFlowMetricRequest, runtime: $Util.RuntimeOptions): Promise<DescribeFlowMetricResponse> {
|
|
17567
18795
|
Util.validateModel(request);
|
|
17568
18796
|
let query = { };
|
|
@@ -18258,46 +19486,13 @@ export default class Client extends OpenApi {
|
|
|
18258
19486
|
return await this.describePolicyGroupsWithOptions(request, runtime);
|
|
18259
19487
|
}
|
|
18260
19488
|
|
|
18261
|
-
async
|
|
19489
|
+
async describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse> {
|
|
18262
19490
|
Util.validateModel(request);
|
|
18263
19491
|
let query = { };
|
|
18264
|
-
if (!Util.isUnset(request.
|
|
18265
|
-
query["
|
|
18266
|
-
}
|
|
18267
|
-
|
|
18268
|
-
if (!Util.isUnset(request.nextToken)) {
|
|
18269
|
-
query["NextToken"] = request.nextToken;
|
|
18270
|
-
}
|
|
18271
|
-
|
|
18272
|
-
if (!Util.isUnset(request.regionId)) {
|
|
18273
|
-
query["RegionId"] = request.regionId;
|
|
19492
|
+
if (!Util.isUnset(request.acceptLanguage)) {
|
|
19493
|
+
query["AcceptLanguage"] = request.acceptLanguage;
|
|
18274
19494
|
}
|
|
18275
19495
|
|
|
18276
|
-
let req = new $OpenApi.OpenApiRequest({
|
|
18277
|
-
query: OpenApiUtil.query(query),
|
|
18278
|
-
});
|
|
18279
|
-
let params = new $OpenApi.Params({
|
|
18280
|
-
action: "DescribeRecordings",
|
|
18281
|
-
version: "2020-09-30",
|
|
18282
|
-
protocol: "HTTPS",
|
|
18283
|
-
pathname: "/",
|
|
18284
|
-
method: "POST",
|
|
18285
|
-
authType: "AK",
|
|
18286
|
-
style: "RPC",
|
|
18287
|
-
reqBodyType: "formData",
|
|
18288
|
-
bodyType: "json",
|
|
18289
|
-
});
|
|
18290
|
-
return $tea.cast<DescribeRecordingsResponse>(await this.callApi(params, req, runtime), new DescribeRecordingsResponse({}));
|
|
18291
|
-
}
|
|
18292
|
-
|
|
18293
|
-
async describeRecordings(request: DescribeRecordingsRequest): Promise<DescribeRecordingsResponse> {
|
|
18294
|
-
let runtime = new $Util.RuntimeOptions({ });
|
|
18295
|
-
return await this.describeRecordingsWithOptions(request, runtime);
|
|
18296
|
-
}
|
|
18297
|
-
|
|
18298
|
-
async describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse> {
|
|
18299
|
-
Util.validateModel(request);
|
|
18300
|
-
let query = { };
|
|
18301
19496
|
if (!Util.isUnset(request.regionId)) {
|
|
18302
19497
|
query["RegionId"] = request.regionId;
|
|
18303
19498
|
}
|
|
@@ -18741,6 +19936,39 @@ export default class Client extends OpenApi {
|
|
|
18741
19936
|
return await this.describeUsersInGroupWithOptions(request, runtime);
|
|
18742
19937
|
}
|
|
18743
19938
|
|
|
19939
|
+
async describeUsersPasswordWithOptions(request: DescribeUsersPasswordRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUsersPasswordResponse> {
|
|
19940
|
+
Util.validateModel(request);
|
|
19941
|
+
let query = { };
|
|
19942
|
+
if (!Util.isUnset(request.desktopId)) {
|
|
19943
|
+
query["DesktopId"] = request.desktopId;
|
|
19944
|
+
}
|
|
19945
|
+
|
|
19946
|
+
if (!Util.isUnset(request.regionId)) {
|
|
19947
|
+
query["RegionId"] = request.regionId;
|
|
19948
|
+
}
|
|
19949
|
+
|
|
19950
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
19951
|
+
query: OpenApiUtil.query(query),
|
|
19952
|
+
});
|
|
19953
|
+
let params = new $OpenApi.Params({
|
|
19954
|
+
action: "DescribeUsersPassword",
|
|
19955
|
+
version: "2020-09-30",
|
|
19956
|
+
protocol: "HTTPS",
|
|
19957
|
+
pathname: "/",
|
|
19958
|
+
method: "POST",
|
|
19959
|
+
authType: "AK",
|
|
19960
|
+
style: "RPC",
|
|
19961
|
+
reqBodyType: "formData",
|
|
19962
|
+
bodyType: "json",
|
|
19963
|
+
});
|
|
19964
|
+
return $tea.cast<DescribeUsersPasswordResponse>(await this.callApi(params, req, runtime), new DescribeUsersPasswordResponse({}));
|
|
19965
|
+
}
|
|
19966
|
+
|
|
19967
|
+
async describeUsersPassword(request: DescribeUsersPasswordRequest): Promise<DescribeUsersPasswordResponse> {
|
|
19968
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
19969
|
+
return await this.describeUsersPasswordWithOptions(request, runtime);
|
|
19970
|
+
}
|
|
19971
|
+
|
|
18744
19972
|
async describeVirtualMFADevicesWithOptions(request: DescribeVirtualMFADevicesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVirtualMFADevicesResponse> {
|
|
18745
19973
|
Util.validateModel(request);
|
|
18746
19974
|
let query = { };
|
|
@@ -18850,6 +20078,10 @@ export default class Client extends OpenApi {
|
|
|
18850
20078
|
query["Lang"] = request.lang;
|
|
18851
20079
|
}
|
|
18852
20080
|
|
|
20081
|
+
if (!Util.isUnset(request.name)) {
|
|
20082
|
+
query["Name"] = request.name;
|
|
20083
|
+
}
|
|
20084
|
+
|
|
18853
20085
|
if (!Util.isUnset(request.necessity)) {
|
|
18854
20086
|
query["Necessity"] = request.necessity;
|
|
18855
20087
|
}
|
|
@@ -19938,6 +21170,47 @@ export default class Client extends OpenApi {
|
|
|
19938
21170
|
return await this.modifyBundleWithOptions(request, runtime);
|
|
19939
21171
|
}
|
|
19940
21172
|
|
|
21173
|
+
async modifyCloudDrivePermissionWithOptions(request: ModifyCloudDrivePermissionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyCloudDrivePermissionResponse> {
|
|
21174
|
+
Util.validateModel(request);
|
|
21175
|
+
let query = { };
|
|
21176
|
+
if (!Util.isUnset(request.cdsId)) {
|
|
21177
|
+
query["CdsId"] = request.cdsId;
|
|
21178
|
+
}
|
|
21179
|
+
|
|
21180
|
+
if (!Util.isUnset(request.downloadEndUserIds)) {
|
|
21181
|
+
query["DownloadEndUserIds"] = request.downloadEndUserIds;
|
|
21182
|
+
}
|
|
21183
|
+
|
|
21184
|
+
if (!Util.isUnset(request.downloadUploadEndUserIds)) {
|
|
21185
|
+
query["DownloadUploadEndUserIds"] = request.downloadUploadEndUserIds;
|
|
21186
|
+
}
|
|
21187
|
+
|
|
21188
|
+
if (!Util.isUnset(request.regionId)) {
|
|
21189
|
+
query["RegionId"] = request.regionId;
|
|
21190
|
+
}
|
|
21191
|
+
|
|
21192
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
21193
|
+
query: OpenApiUtil.query(query),
|
|
21194
|
+
});
|
|
21195
|
+
let params = new $OpenApi.Params({
|
|
21196
|
+
action: "ModifyCloudDrivePermission",
|
|
21197
|
+
version: "2020-09-30",
|
|
21198
|
+
protocol: "HTTPS",
|
|
21199
|
+
pathname: "/",
|
|
21200
|
+
method: "POST",
|
|
21201
|
+
authType: "AK",
|
|
21202
|
+
style: "RPC",
|
|
21203
|
+
reqBodyType: "formData",
|
|
21204
|
+
bodyType: "json",
|
|
21205
|
+
});
|
|
21206
|
+
return $tea.cast<ModifyCloudDrivePermissionResponse>(await this.callApi(params, req, runtime), new ModifyCloudDrivePermissionResponse({}));
|
|
21207
|
+
}
|
|
21208
|
+
|
|
21209
|
+
async modifyCloudDrivePermission(request: ModifyCloudDrivePermissionRequest): Promise<ModifyCloudDrivePermissionResponse> {
|
|
21210
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
21211
|
+
return await this.modifyCloudDrivePermissionWithOptions(request, runtime);
|
|
21212
|
+
}
|
|
21213
|
+
|
|
19941
21214
|
async modifyDesktopChargeTypeWithOptions(request: ModifyDesktopChargeTypeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopChargeTypeResponse> {
|
|
19942
21215
|
Util.validateModel(request);
|
|
19943
21216
|
let query = { };
|
|
@@ -20014,6 +21287,10 @@ export default class Client extends OpenApi {
|
|
|
20014
21287
|
query["Comments"] = request.comments;
|
|
20015
21288
|
}
|
|
20016
21289
|
|
|
21290
|
+
if (!Util.isUnset(request.connectDuration)) {
|
|
21291
|
+
query["ConnectDuration"] = request.connectDuration;
|
|
21292
|
+
}
|
|
21293
|
+
|
|
20017
21294
|
if (!Util.isUnset(request.desktopGroupId)) {
|
|
20018
21295
|
query["DesktopGroupId"] = request.desktopGroupId;
|
|
20019
21296
|
}
|
|
@@ -20022,6 +21299,14 @@ export default class Client extends OpenApi {
|
|
|
20022
21299
|
query["DesktopGroupName"] = request.desktopGroupName;
|
|
20023
21300
|
}
|
|
20024
21301
|
|
|
21302
|
+
if (!Util.isUnset(request.disableSessionConfig)) {
|
|
21303
|
+
query["DisableSessionConfig"] = request.disableSessionConfig;
|
|
21304
|
+
}
|
|
21305
|
+
|
|
21306
|
+
if (!Util.isUnset(request.idleDisconnectDuration)) {
|
|
21307
|
+
query["IdleDisconnectDuration"] = request.idleDisconnectDuration;
|
|
21308
|
+
}
|
|
21309
|
+
|
|
20025
21310
|
if (!Util.isUnset(request.imageId)) {
|
|
20026
21311
|
query["ImageId"] = request.imageId;
|
|
20027
21312
|
}
|
|
@@ -20050,6 +21335,10 @@ export default class Client extends OpenApi {
|
|
|
20050
21335
|
query["PolicyGroupId"] = request.policyGroupId;
|
|
20051
21336
|
}
|
|
20052
21337
|
|
|
21338
|
+
if (!Util.isUnset(request.ratioThreshold)) {
|
|
21339
|
+
query["RatioThreshold"] = request.ratioThreshold;
|
|
21340
|
+
}
|
|
21341
|
+
|
|
20053
21342
|
if (!Util.isUnset(request.regionId)) {
|
|
20054
21343
|
query["RegionId"] = request.regionId;
|
|
20055
21344
|
}
|
|
@@ -20062,6 +21351,10 @@ export default class Client extends OpenApi {
|
|
|
20062
21351
|
query["ScaleStrategyId"] = request.scaleStrategyId;
|
|
20063
21352
|
}
|
|
20064
21353
|
|
|
21354
|
+
if (!Util.isUnset(request.stopDuration)) {
|
|
21355
|
+
query["StopDuration"] = request.stopDuration;
|
|
21356
|
+
}
|
|
21357
|
+
|
|
20065
21358
|
let req = new $OpenApi.OpenApiRequest({
|
|
20066
21359
|
query: OpenApiUtil.query(query),
|
|
20067
21360
|
});
|
|
@@ -20710,6 +22003,10 @@ export default class Client extends OpenApi {
|
|
|
20710
22003
|
async modifyPolicyGroupWithOptions(request: ModifyPolicyGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyPolicyGroupResponse> {
|
|
20711
22004
|
Util.validateModel(request);
|
|
20712
22005
|
let query = { };
|
|
22006
|
+
if (!Util.isUnset(request.appContentProtection)) {
|
|
22007
|
+
query["AppContentProtection"] = request.appContentProtection;
|
|
22008
|
+
}
|
|
22009
|
+
|
|
20713
22010
|
if (!Util.isUnset(request.authorizeAccessPolicyRule)) {
|
|
20714
22011
|
query["AuthorizeAccessPolicyRule"] = request.authorizeAccessPolicyRule;
|
|
20715
22012
|
}
|
|
@@ -20774,6 +22071,14 @@ export default class Client extends OpenApi {
|
|
|
20774
22071
|
query["PrinterRedirection"] = request.printerRedirection;
|
|
20775
22072
|
}
|
|
20776
22073
|
|
|
22074
|
+
if (!Util.isUnset(request.recordContent)) {
|
|
22075
|
+
query["RecordContent"] = request.recordContent;
|
|
22076
|
+
}
|
|
22077
|
+
|
|
22078
|
+
if (!Util.isUnset(request.recordContentExpires)) {
|
|
22079
|
+
query["RecordContentExpires"] = request.recordContentExpires;
|
|
22080
|
+
}
|
|
22081
|
+
|
|
20777
22082
|
if (!Util.isUnset(request.recording)) {
|
|
20778
22083
|
query["Recording"] = request.recording;
|
|
20779
22084
|
}
|
|
@@ -20782,6 +22087,10 @@ export default class Client extends OpenApi {
|
|
|
20782
22087
|
query["RecordingEndTime"] = request.recordingEndTime;
|
|
20783
22088
|
}
|
|
20784
22089
|
|
|
22090
|
+
if (!Util.isUnset(request.recordingExpires)) {
|
|
22091
|
+
query["RecordingExpires"] = request.recordingExpires;
|
|
22092
|
+
}
|
|
22093
|
+
|
|
20785
22094
|
if (!Util.isUnset(request.recordingFps)) {
|
|
20786
22095
|
query["RecordingFps"] = request.recordingFps;
|
|
20787
22096
|
}
|
|
@@ -21430,6 +22739,96 @@ export default class Client extends OpenApi {
|
|
|
21430
22739
|
return await this.sendVerifyCodeWithOptions(request, runtime);
|
|
21431
22740
|
}
|
|
21432
22741
|
|
|
22742
|
+
async setDesktopGroupTimerWithOptions(request: SetDesktopGroupTimerRequest, runtime: $Util.RuntimeOptions): Promise<SetDesktopGroupTimerResponse> {
|
|
22743
|
+
Util.validateModel(request);
|
|
22744
|
+
let query = { };
|
|
22745
|
+
if (!Util.isUnset(request.cronExpression)) {
|
|
22746
|
+
query["CronExpression"] = request.cronExpression;
|
|
22747
|
+
}
|
|
22748
|
+
|
|
22749
|
+
if (!Util.isUnset(request.desktopGroupId)) {
|
|
22750
|
+
query["DesktopGroupId"] = request.desktopGroupId;
|
|
22751
|
+
}
|
|
22752
|
+
|
|
22753
|
+
if (!Util.isUnset(request.force)) {
|
|
22754
|
+
query["Force"] = request.force;
|
|
22755
|
+
}
|
|
22756
|
+
|
|
22757
|
+
if (!Util.isUnset(request.regionId)) {
|
|
22758
|
+
query["RegionId"] = request.regionId;
|
|
22759
|
+
}
|
|
22760
|
+
|
|
22761
|
+
if (!Util.isUnset(request.resetType)) {
|
|
22762
|
+
query["ResetType"] = request.resetType;
|
|
22763
|
+
}
|
|
22764
|
+
|
|
22765
|
+
if (!Util.isUnset(request.timerType)) {
|
|
22766
|
+
query["TimerType"] = request.timerType;
|
|
22767
|
+
}
|
|
22768
|
+
|
|
22769
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
22770
|
+
query: OpenApiUtil.query(query),
|
|
22771
|
+
});
|
|
22772
|
+
let params = new $OpenApi.Params({
|
|
22773
|
+
action: "SetDesktopGroupTimer",
|
|
22774
|
+
version: "2020-09-30",
|
|
22775
|
+
protocol: "HTTPS",
|
|
22776
|
+
pathname: "/",
|
|
22777
|
+
method: "POST",
|
|
22778
|
+
authType: "AK",
|
|
22779
|
+
style: "RPC",
|
|
22780
|
+
reqBodyType: "formData",
|
|
22781
|
+
bodyType: "json",
|
|
22782
|
+
});
|
|
22783
|
+
return $tea.cast<SetDesktopGroupTimerResponse>(await this.callApi(params, req, runtime), new SetDesktopGroupTimerResponse({}));
|
|
22784
|
+
}
|
|
22785
|
+
|
|
22786
|
+
async setDesktopGroupTimer(request: SetDesktopGroupTimerRequest): Promise<SetDesktopGroupTimerResponse> {
|
|
22787
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
22788
|
+
return await this.setDesktopGroupTimerWithOptions(request, runtime);
|
|
22789
|
+
}
|
|
22790
|
+
|
|
22791
|
+
async setDesktopGroupTimerStatusWithOptions(request: SetDesktopGroupTimerStatusRequest, runtime: $Util.RuntimeOptions): Promise<SetDesktopGroupTimerStatusResponse> {
|
|
22792
|
+
Util.validateModel(request);
|
|
22793
|
+
let query = { };
|
|
22794
|
+
if (!Util.isUnset(request.desktopGroupId)) {
|
|
22795
|
+
query["DesktopGroupId"] = request.desktopGroupId;
|
|
22796
|
+
}
|
|
22797
|
+
|
|
22798
|
+
if (!Util.isUnset(request.regionId)) {
|
|
22799
|
+
query["RegionId"] = request.regionId;
|
|
22800
|
+
}
|
|
22801
|
+
|
|
22802
|
+
if (!Util.isUnset(request.status)) {
|
|
22803
|
+
query["Status"] = request.status;
|
|
22804
|
+
}
|
|
22805
|
+
|
|
22806
|
+
if (!Util.isUnset(request.timerType)) {
|
|
22807
|
+
query["TimerType"] = request.timerType;
|
|
22808
|
+
}
|
|
22809
|
+
|
|
22810
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
22811
|
+
query: OpenApiUtil.query(query),
|
|
22812
|
+
});
|
|
22813
|
+
let params = new $OpenApi.Params({
|
|
22814
|
+
action: "SetDesktopGroupTimerStatus",
|
|
22815
|
+
version: "2020-09-30",
|
|
22816
|
+
protocol: "HTTPS",
|
|
22817
|
+
pathname: "/",
|
|
22818
|
+
method: "POST",
|
|
22819
|
+
authType: "AK",
|
|
22820
|
+
style: "RPC",
|
|
22821
|
+
reqBodyType: "formData",
|
|
22822
|
+
bodyType: "json",
|
|
22823
|
+
});
|
|
22824
|
+
return $tea.cast<SetDesktopGroupTimerStatusResponse>(await this.callApi(params, req, runtime), new SetDesktopGroupTimerStatusResponse({}));
|
|
22825
|
+
}
|
|
22826
|
+
|
|
22827
|
+
async setDesktopGroupTimerStatus(request: SetDesktopGroupTimerStatusRequest): Promise<SetDesktopGroupTimerStatusResponse> {
|
|
22828
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
22829
|
+
return await this.setDesktopGroupTimerStatusWithOptions(request, runtime);
|
|
22830
|
+
}
|
|
22831
|
+
|
|
21433
22832
|
async setIdpMetadataWithOptions(request: SetIdpMetadataRequest, runtime: $Util.RuntimeOptions): Promise<SetIdpMetadataResponse> {
|
|
21434
22833
|
Util.validateModel(request);
|
|
21435
22834
|
let query = { };
|