@alicloud/ecd20200930 2.0.14 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +2094 -1106
- package/dist/client.js +4335 -2150
- package/dist/client.js.map +1 -1
- package/package.json +4 -4
- package/src/client.ts +7495 -4702
package/dist/client.d.ts
CHANGED
|
@@ -96,6 +96,50 @@ export declare class ActivateOfficeSiteResponse extends $tea.Model {
|
|
|
96
96
|
[key: string]: any;
|
|
97
97
|
});
|
|
98
98
|
}
|
|
99
|
+
export declare class AddDesktopOversoldUserGroupRequest extends $tea.Model {
|
|
100
|
+
imageId?: string;
|
|
101
|
+
name?: string;
|
|
102
|
+
oversoldGroupId?: string;
|
|
103
|
+
policyGroupId?: string;
|
|
104
|
+
static names(): {
|
|
105
|
+
[key: string]: string;
|
|
106
|
+
};
|
|
107
|
+
static types(): {
|
|
108
|
+
[key: string]: any;
|
|
109
|
+
};
|
|
110
|
+
constructor(map?: {
|
|
111
|
+
[key: string]: any;
|
|
112
|
+
});
|
|
113
|
+
}
|
|
114
|
+
export declare class AddDesktopOversoldUserGroupResponseBody extends $tea.Model {
|
|
115
|
+
data?: AddDesktopOversoldUserGroupResponseBodyData;
|
|
116
|
+
requestId?: string;
|
|
117
|
+
static names(): {
|
|
118
|
+
[key: string]: string;
|
|
119
|
+
};
|
|
120
|
+
static types(): {
|
|
121
|
+
[key: string]: any;
|
|
122
|
+
};
|
|
123
|
+
constructor(map?: {
|
|
124
|
+
[key: string]: any;
|
|
125
|
+
});
|
|
126
|
+
}
|
|
127
|
+
export declare class AddDesktopOversoldUserGroupResponse extends $tea.Model {
|
|
128
|
+
headers: {
|
|
129
|
+
[key: string]: string;
|
|
130
|
+
};
|
|
131
|
+
statusCode: number;
|
|
132
|
+
body: AddDesktopOversoldUserGroupResponseBody;
|
|
133
|
+
static names(): {
|
|
134
|
+
[key: string]: string;
|
|
135
|
+
};
|
|
136
|
+
static types(): {
|
|
137
|
+
[key: string]: any;
|
|
138
|
+
};
|
|
139
|
+
constructor(map?: {
|
|
140
|
+
[key: string]: any;
|
|
141
|
+
});
|
|
142
|
+
}
|
|
99
143
|
export declare class AddDevicesRequest extends $tea.Model {
|
|
100
144
|
clientType?: number;
|
|
101
145
|
deviceIds?: string[];
|
|
@@ -142,6 +186,7 @@ export declare class AddFilePermissionRequest extends $tea.Model {
|
|
|
142
186
|
cdsId?: string;
|
|
143
187
|
endUserId?: string;
|
|
144
188
|
fileId?: string;
|
|
189
|
+
groupId?: string;
|
|
145
190
|
memberList?: AddFilePermissionRequestMemberList[];
|
|
146
191
|
regionId?: string;
|
|
147
192
|
static names(): {
|
|
@@ -158,6 +203,7 @@ export declare class AddFilePermissionShrinkRequest extends $tea.Model {
|
|
|
158
203
|
cdsId?: string;
|
|
159
204
|
endUserId?: string;
|
|
160
205
|
fileId?: string;
|
|
206
|
+
groupId?: string;
|
|
161
207
|
memberListShrink?: string;
|
|
162
208
|
regionId?: string;
|
|
163
209
|
static names(): {
|
|
@@ -242,6 +288,49 @@ export declare class AddUserToDesktopGroupResponse extends $tea.Model {
|
|
|
242
288
|
[key: string]: any;
|
|
243
289
|
});
|
|
244
290
|
}
|
|
291
|
+
export declare class AddUserToDesktopOversoldUserGroupRequest extends $tea.Model {
|
|
292
|
+
addUserAmount?: number;
|
|
293
|
+
endUserId?: string;
|
|
294
|
+
oversoldGroupId?: string;
|
|
295
|
+
userGroupId?: string;
|
|
296
|
+
static names(): {
|
|
297
|
+
[key: string]: string;
|
|
298
|
+
};
|
|
299
|
+
static types(): {
|
|
300
|
+
[key: string]: any;
|
|
301
|
+
};
|
|
302
|
+
constructor(map?: {
|
|
303
|
+
[key: string]: any;
|
|
304
|
+
});
|
|
305
|
+
}
|
|
306
|
+
export declare class AddUserToDesktopOversoldUserGroupResponseBody extends $tea.Model {
|
|
307
|
+
requestId?: string;
|
|
308
|
+
static names(): {
|
|
309
|
+
[key: string]: string;
|
|
310
|
+
};
|
|
311
|
+
static types(): {
|
|
312
|
+
[key: string]: any;
|
|
313
|
+
};
|
|
314
|
+
constructor(map?: {
|
|
315
|
+
[key: string]: any;
|
|
316
|
+
});
|
|
317
|
+
}
|
|
318
|
+
export declare class AddUserToDesktopOversoldUserGroupResponse extends $tea.Model {
|
|
319
|
+
headers: {
|
|
320
|
+
[key: string]: string;
|
|
321
|
+
};
|
|
322
|
+
statusCode: number;
|
|
323
|
+
body: AddUserToDesktopOversoldUserGroupResponseBody;
|
|
324
|
+
static names(): {
|
|
325
|
+
[key: string]: string;
|
|
326
|
+
};
|
|
327
|
+
static types(): {
|
|
328
|
+
[key: string]: any;
|
|
329
|
+
};
|
|
330
|
+
constructor(map?: {
|
|
331
|
+
[key: string]: any;
|
|
332
|
+
});
|
|
333
|
+
}
|
|
245
334
|
export declare class ApplyAutoSnapshotPolicyRequest extends $tea.Model {
|
|
246
335
|
desktopId?: string[];
|
|
247
336
|
policyId?: string;
|
|
@@ -766,6 +855,7 @@ export declare class CompleteCdsFileRequest extends $tea.Model {
|
|
|
766
855
|
cdsId?: string;
|
|
767
856
|
endUserId?: string;
|
|
768
857
|
fileId?: string;
|
|
858
|
+
groupId?: string;
|
|
769
859
|
regionId?: string;
|
|
770
860
|
uploadId?: string;
|
|
771
861
|
static names(): {
|
|
@@ -898,6 +988,9 @@ export declare class CopyCdsFileRequest extends $tea.Model {
|
|
|
898
988
|
cdsId?: string;
|
|
899
989
|
endUserId?: string;
|
|
900
990
|
fileId?: string;
|
|
991
|
+
fileReceiverId?: string;
|
|
992
|
+
fileReceiverType?: string;
|
|
993
|
+
groupId?: string;
|
|
901
994
|
parentFolderId?: string;
|
|
902
995
|
regionId?: string;
|
|
903
996
|
static names(): {
|
|
@@ -1251,6 +1344,7 @@ export declare class CreateCdsFileRequest extends $tea.Model {
|
|
|
1251
1344
|
fileLength?: number;
|
|
1252
1345
|
fileName?: string;
|
|
1253
1346
|
fileType?: string;
|
|
1347
|
+
groupId?: string;
|
|
1254
1348
|
parentFileId?: string;
|
|
1255
1349
|
regionId?: string;
|
|
1256
1350
|
static names(): {
|
|
@@ -1302,6 +1396,7 @@ export declare class CreateCdsFileShareLinkRequest extends $tea.Model {
|
|
|
1302
1396
|
endUserId?: string;
|
|
1303
1397
|
expiration?: string;
|
|
1304
1398
|
fileIds?: string[];
|
|
1399
|
+
groupId?: string;
|
|
1305
1400
|
previewLimit?: number;
|
|
1306
1401
|
saveLimit?: number;
|
|
1307
1402
|
shareName?: string;
|
|
@@ -1348,6 +1443,105 @@ export declare class CreateCdsFileShareLinkResponse extends $tea.Model {
|
|
|
1348
1443
|
[key: string]: any;
|
|
1349
1444
|
});
|
|
1350
1445
|
}
|
|
1446
|
+
export declare class CreateCloudDriveServiceRequest extends $tea.Model {
|
|
1447
|
+
bizType?: number;
|
|
1448
|
+
cenId?: string;
|
|
1449
|
+
domainName?: string;
|
|
1450
|
+
endUserId?: string[];
|
|
1451
|
+
maxSize?: number;
|
|
1452
|
+
name?: string;
|
|
1453
|
+
officeSiteId?: string;
|
|
1454
|
+
officeSiteType?: string;
|
|
1455
|
+
regionId?: string;
|
|
1456
|
+
solutionId?: string;
|
|
1457
|
+
userMaxSize?: number;
|
|
1458
|
+
static names(): {
|
|
1459
|
+
[key: string]: string;
|
|
1460
|
+
};
|
|
1461
|
+
static types(): {
|
|
1462
|
+
[key: string]: any;
|
|
1463
|
+
};
|
|
1464
|
+
constructor(map?: {
|
|
1465
|
+
[key: string]: any;
|
|
1466
|
+
});
|
|
1467
|
+
}
|
|
1468
|
+
export declare class CreateCloudDriveServiceResponseBody extends $tea.Model {
|
|
1469
|
+
cdsId?: string;
|
|
1470
|
+
cdsName?: string;
|
|
1471
|
+
cenId?: string;
|
|
1472
|
+
domainName?: string;
|
|
1473
|
+
maxSize?: string;
|
|
1474
|
+
officeSiteType?: string;
|
|
1475
|
+
requestId?: string;
|
|
1476
|
+
static names(): {
|
|
1477
|
+
[key: string]: string;
|
|
1478
|
+
};
|
|
1479
|
+
static types(): {
|
|
1480
|
+
[key: string]: any;
|
|
1481
|
+
};
|
|
1482
|
+
constructor(map?: {
|
|
1483
|
+
[key: string]: any;
|
|
1484
|
+
});
|
|
1485
|
+
}
|
|
1486
|
+
export declare class CreateCloudDriveServiceResponse extends $tea.Model {
|
|
1487
|
+
headers: {
|
|
1488
|
+
[key: string]: string;
|
|
1489
|
+
};
|
|
1490
|
+
statusCode: number;
|
|
1491
|
+
body: CreateCloudDriveServiceResponseBody;
|
|
1492
|
+
static names(): {
|
|
1493
|
+
[key: string]: string;
|
|
1494
|
+
};
|
|
1495
|
+
static types(): {
|
|
1496
|
+
[key: string]: any;
|
|
1497
|
+
};
|
|
1498
|
+
constructor(map?: {
|
|
1499
|
+
[key: string]: any;
|
|
1500
|
+
});
|
|
1501
|
+
}
|
|
1502
|
+
export declare class CreateCloudDriveUsersRequest extends $tea.Model {
|
|
1503
|
+
cdsId?: string;
|
|
1504
|
+
endUserId?: string[];
|
|
1505
|
+
regionId?: string;
|
|
1506
|
+
userMaxSize?: number;
|
|
1507
|
+
static names(): {
|
|
1508
|
+
[key: string]: string;
|
|
1509
|
+
};
|
|
1510
|
+
static types(): {
|
|
1511
|
+
[key: string]: any;
|
|
1512
|
+
};
|
|
1513
|
+
constructor(map?: {
|
|
1514
|
+
[key: string]: any;
|
|
1515
|
+
});
|
|
1516
|
+
}
|
|
1517
|
+
export declare class CreateCloudDriveUsersResponseBody extends $tea.Model {
|
|
1518
|
+
requestId?: string;
|
|
1519
|
+
static names(): {
|
|
1520
|
+
[key: string]: string;
|
|
1521
|
+
};
|
|
1522
|
+
static types(): {
|
|
1523
|
+
[key: string]: any;
|
|
1524
|
+
};
|
|
1525
|
+
constructor(map?: {
|
|
1526
|
+
[key: string]: any;
|
|
1527
|
+
});
|
|
1528
|
+
}
|
|
1529
|
+
export declare class CreateCloudDriveUsersResponse extends $tea.Model {
|
|
1530
|
+
headers: {
|
|
1531
|
+
[key: string]: string;
|
|
1532
|
+
};
|
|
1533
|
+
statusCode: number;
|
|
1534
|
+
body: CreateCloudDriveUsersResponseBody;
|
|
1535
|
+
static names(): {
|
|
1536
|
+
[key: string]: string;
|
|
1537
|
+
};
|
|
1538
|
+
static types(): {
|
|
1539
|
+
[key: string]: any;
|
|
1540
|
+
};
|
|
1541
|
+
constructor(map?: {
|
|
1542
|
+
[key: string]: any;
|
|
1543
|
+
});
|
|
1544
|
+
}
|
|
1351
1545
|
export declare class CreateDesktopGroupRequest extends $tea.Model {
|
|
1352
1546
|
allClassifyUsers?: boolean;
|
|
1353
1547
|
allowAutoSetup?: number;
|
|
@@ -1427,6 +1621,60 @@ export declare class CreateDesktopGroupResponse extends $tea.Model {
|
|
|
1427
1621
|
[key: string]: any;
|
|
1428
1622
|
});
|
|
1429
1623
|
}
|
|
1624
|
+
export declare class CreateDesktopOversoldGroupRequest extends $tea.Model {
|
|
1625
|
+
concurrenceCount?: number;
|
|
1626
|
+
dataDiskSize?: number;
|
|
1627
|
+
description?: string;
|
|
1628
|
+
desktopType?: string;
|
|
1629
|
+
directoryId?: string;
|
|
1630
|
+
imageId?: string;
|
|
1631
|
+
name?: string;
|
|
1632
|
+
oversoldUserCount?: number;
|
|
1633
|
+
oversoldWarn?: number;
|
|
1634
|
+
period?: number;
|
|
1635
|
+
periodUnit?: string;
|
|
1636
|
+
policyGroupId?: string;
|
|
1637
|
+
stopDuration?: number;
|
|
1638
|
+
systemDiskSize?: number;
|
|
1639
|
+
static names(): {
|
|
1640
|
+
[key: string]: string;
|
|
1641
|
+
};
|
|
1642
|
+
static types(): {
|
|
1643
|
+
[key: string]: any;
|
|
1644
|
+
};
|
|
1645
|
+
constructor(map?: {
|
|
1646
|
+
[key: string]: any;
|
|
1647
|
+
});
|
|
1648
|
+
}
|
|
1649
|
+
export declare class CreateDesktopOversoldGroupResponseBody extends $tea.Model {
|
|
1650
|
+
data?: CreateDesktopOversoldGroupResponseBodyData;
|
|
1651
|
+
requestId?: string;
|
|
1652
|
+
static names(): {
|
|
1653
|
+
[key: string]: string;
|
|
1654
|
+
};
|
|
1655
|
+
static types(): {
|
|
1656
|
+
[key: string]: any;
|
|
1657
|
+
};
|
|
1658
|
+
constructor(map?: {
|
|
1659
|
+
[key: string]: any;
|
|
1660
|
+
});
|
|
1661
|
+
}
|
|
1662
|
+
export declare class CreateDesktopOversoldGroupResponse extends $tea.Model {
|
|
1663
|
+
headers: {
|
|
1664
|
+
[key: string]: string;
|
|
1665
|
+
};
|
|
1666
|
+
statusCode: number;
|
|
1667
|
+
body: CreateDesktopOversoldGroupResponseBody;
|
|
1668
|
+
static names(): {
|
|
1669
|
+
[key: string]: string;
|
|
1670
|
+
};
|
|
1671
|
+
static types(): {
|
|
1672
|
+
[key: string]: any;
|
|
1673
|
+
};
|
|
1674
|
+
constructor(map?: {
|
|
1675
|
+
[key: string]: any;
|
|
1676
|
+
});
|
|
1677
|
+
}
|
|
1430
1678
|
export declare class CreateDesktopsRequest extends $tea.Model {
|
|
1431
1679
|
amount?: number;
|
|
1432
1680
|
autoPay?: boolean;
|
|
@@ -1434,8 +1682,10 @@ export declare class CreateDesktopsRequest extends $tea.Model {
|
|
|
1434
1682
|
bundleId?: string;
|
|
1435
1683
|
bundleModels?: CreateDesktopsRequestBundleModels[];
|
|
1436
1684
|
chargeType?: string;
|
|
1685
|
+
desktopMemberIp?: string;
|
|
1437
1686
|
desktopName?: string;
|
|
1438
1687
|
desktopNameSuffix?: boolean;
|
|
1688
|
+
desktopTimers?: CreateDesktopsRequestDesktopTimers[];
|
|
1439
1689
|
directoryId?: string;
|
|
1440
1690
|
endUserId?: string[];
|
|
1441
1691
|
groupId?: string;
|
|
@@ -1685,6 +1935,7 @@ export declare class CreateNetworkPackageResponse extends $tea.Model {
|
|
|
1685
1935
|
});
|
|
1686
1936
|
}
|
|
1687
1937
|
export declare class CreatePolicyGroupRequest extends $tea.Model {
|
|
1938
|
+
adminAccess?: string;
|
|
1688
1939
|
appContentProtection?: string;
|
|
1689
1940
|
authorizeAccessPolicyRule?: CreatePolicyGroupRequestAuthorizeAccessPolicyRule[];
|
|
1690
1941
|
authorizeSecurityPolicyRule?: CreatePolicyGroupRequestAuthorizeSecurityPolicyRule[];
|
|
@@ -1692,6 +1943,8 @@ export declare class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
1692
1943
|
clientType?: CreatePolicyGroupRequestClientType[];
|
|
1693
1944
|
clipboard?: string;
|
|
1694
1945
|
domainList?: string;
|
|
1946
|
+
domainResolveRule?: CreatePolicyGroupRequestDomainResolveRule[];
|
|
1947
|
+
domainResolveRuleType?: string;
|
|
1695
1948
|
endUserApplyAdminCoordinate?: string;
|
|
1696
1949
|
endUserGroupCoordinate?: string;
|
|
1697
1950
|
gpuAcceleration?: string;
|
|
@@ -1727,6 +1980,7 @@ export declare class CreatePolicyGroupRequest extends $tea.Model {
|
|
|
1727
1980
|
watermarkFontSize?: number;
|
|
1728
1981
|
watermarkFontStyle?: string;
|
|
1729
1982
|
watermarkRowAmount?: number;
|
|
1983
|
+
watermarkSecurity?: string;
|
|
1730
1984
|
watermarkTransparency?: string;
|
|
1731
1985
|
watermarkTransparencyValue?: number;
|
|
1732
1986
|
watermarkType?: string;
|
|
@@ -1829,6 +2083,7 @@ export declare class CreateSimpleOfficeSiteRequest extends $tea.Model {
|
|
|
1829
2083
|
regionId?: string;
|
|
1830
2084
|
vSwitchId?: string[];
|
|
1831
2085
|
verifyCode?: string;
|
|
2086
|
+
vpcType?: string;
|
|
1832
2087
|
static names(): {
|
|
1833
2088
|
[key: string]: string;
|
|
1834
2089
|
};
|
|
@@ -1999,6 +2254,7 @@ export declare class DeleteCdsFileRequest extends $tea.Model {
|
|
|
1999
2254
|
cdsId?: string;
|
|
2000
2255
|
endUserId?: string;
|
|
2001
2256
|
fileId?: string;
|
|
2257
|
+
groupId?: string;
|
|
2002
2258
|
regionId?: string;
|
|
2003
2259
|
static names(): {
|
|
2004
2260
|
[key: string]: string;
|
|
@@ -2296,6 +2552,47 @@ export declare class DeleteDirectoriesResponse extends $tea.Model {
|
|
|
2296
2552
|
[key: string]: any;
|
|
2297
2553
|
});
|
|
2298
2554
|
}
|
|
2555
|
+
export declare class DeleteEduRoomRequest extends $tea.Model {
|
|
2556
|
+
eduRoomId?: string;
|
|
2557
|
+
regionId?: string;
|
|
2558
|
+
static names(): {
|
|
2559
|
+
[key: string]: string;
|
|
2560
|
+
};
|
|
2561
|
+
static types(): {
|
|
2562
|
+
[key: string]: any;
|
|
2563
|
+
};
|
|
2564
|
+
constructor(map?: {
|
|
2565
|
+
[key: string]: any;
|
|
2566
|
+
});
|
|
2567
|
+
}
|
|
2568
|
+
export declare class DeleteEduRoomResponseBody extends $tea.Model {
|
|
2569
|
+
requestId?: string;
|
|
2570
|
+
static names(): {
|
|
2571
|
+
[key: string]: string;
|
|
2572
|
+
};
|
|
2573
|
+
static types(): {
|
|
2574
|
+
[key: string]: any;
|
|
2575
|
+
};
|
|
2576
|
+
constructor(map?: {
|
|
2577
|
+
[key: string]: any;
|
|
2578
|
+
});
|
|
2579
|
+
}
|
|
2580
|
+
export declare class DeleteEduRoomResponse extends $tea.Model {
|
|
2581
|
+
headers: {
|
|
2582
|
+
[key: string]: string;
|
|
2583
|
+
};
|
|
2584
|
+
statusCode: number;
|
|
2585
|
+
body: DeleteEduRoomResponseBody;
|
|
2586
|
+
static names(): {
|
|
2587
|
+
[key: string]: string;
|
|
2588
|
+
};
|
|
2589
|
+
static types(): {
|
|
2590
|
+
[key: string]: any;
|
|
2591
|
+
};
|
|
2592
|
+
constructor(map?: {
|
|
2593
|
+
[key: string]: any;
|
|
2594
|
+
});
|
|
2595
|
+
}
|
|
2299
2596
|
export declare class DeleteImagesRequest extends $tea.Model {
|
|
2300
2597
|
deleteCascadedBundle?: boolean;
|
|
2301
2598
|
imageId?: string[];
|
|
@@ -2584,12 +2881,12 @@ export declare class DeleteVirtualMFADeviceResponse extends $tea.Model {
|
|
|
2584
2881
|
[key: string]: any;
|
|
2585
2882
|
});
|
|
2586
2883
|
}
|
|
2587
|
-
export declare class
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
lang?: string;
|
|
2884
|
+
export declare class DescribeAclEntriesRequest extends $tea.Model {
|
|
2885
|
+
maxResults?: number;
|
|
2886
|
+
nextToken?: string;
|
|
2591
2887
|
regionId?: string;
|
|
2592
|
-
|
|
2888
|
+
sourceId?: string;
|
|
2889
|
+
sourceType?: string;
|
|
2593
2890
|
static names(): {
|
|
2594
2891
|
[key: string]: string;
|
|
2595
2892
|
};
|
|
@@ -2600,9 +2897,10 @@ export declare class DescribeAlarmEventStackInfoRequest extends $tea.Model {
|
|
|
2600
2897
|
[key: string]: any;
|
|
2601
2898
|
});
|
|
2602
2899
|
}
|
|
2603
|
-
export declare class
|
|
2900
|
+
export declare class DescribeAclEntriesResponseBody extends $tea.Model {
|
|
2901
|
+
aclEntries?: DescribeAclEntriesResponseBodyAclEntries[];
|
|
2902
|
+
nextToken?: string;
|
|
2604
2903
|
requestId?: string;
|
|
2605
|
-
stackInfo?: string;
|
|
2606
2904
|
static names(): {
|
|
2607
2905
|
[key: string]: string;
|
|
2608
2906
|
};
|
|
@@ -2613,12 +2911,12 @@ export declare class DescribeAlarmEventStackInfoResponseBody extends $tea.Model
|
|
|
2613
2911
|
[key: string]: any;
|
|
2614
2912
|
});
|
|
2615
2913
|
}
|
|
2616
|
-
export declare class
|
|
2914
|
+
export declare class DescribeAclEntriesResponse extends $tea.Model {
|
|
2617
2915
|
headers: {
|
|
2618
2916
|
[key: string]: string;
|
|
2619
2917
|
};
|
|
2620
2918
|
statusCode: number;
|
|
2621
|
-
body:
|
|
2919
|
+
body: DescribeAclEntriesResponseBody;
|
|
2622
2920
|
static names(): {
|
|
2623
2921
|
[key: string]: string;
|
|
2624
2922
|
};
|
|
@@ -2688,8 +2986,10 @@ export declare class DescribeBundlesRequest extends $tea.Model {
|
|
|
2688
2986
|
maxResults?: number;
|
|
2689
2987
|
memorySize?: number;
|
|
2690
2988
|
nextToken?: string;
|
|
2989
|
+
osType?: string;
|
|
2691
2990
|
protocolType?: string;
|
|
2692
2991
|
regionId?: string;
|
|
2992
|
+
scope?: string;
|
|
2693
2993
|
selectedBundle?: boolean;
|
|
2694
2994
|
sessionType?: string;
|
|
2695
2995
|
supportMultiSession?: boolean;
|
|
@@ -2983,6 +3283,52 @@ export declare class DescribeCloudDrivePermissionsResponse extends $tea.Model {
|
|
|
2983
3283
|
[key: string]: any;
|
|
2984
3284
|
});
|
|
2985
3285
|
}
|
|
3286
|
+
export declare class DescribeCloudDriveUsersRequest extends $tea.Model {
|
|
3287
|
+
cdsId?: string;
|
|
3288
|
+
endUserId?: string;
|
|
3289
|
+
maxResults?: number;
|
|
3290
|
+
nextToken?: string;
|
|
3291
|
+
regionId?: string;
|
|
3292
|
+
static names(): {
|
|
3293
|
+
[key: string]: string;
|
|
3294
|
+
};
|
|
3295
|
+
static types(): {
|
|
3296
|
+
[key: string]: any;
|
|
3297
|
+
};
|
|
3298
|
+
constructor(map?: {
|
|
3299
|
+
[key: string]: any;
|
|
3300
|
+
});
|
|
3301
|
+
}
|
|
3302
|
+
export declare class DescribeCloudDriveUsersResponseBody extends $tea.Model {
|
|
3303
|
+
cloudDriveUsers?: DescribeCloudDriveUsersResponseBodyCloudDriveUsers[];
|
|
3304
|
+
nextToken?: string;
|
|
3305
|
+
requestId?: string;
|
|
3306
|
+
static names(): {
|
|
3307
|
+
[key: string]: string;
|
|
3308
|
+
};
|
|
3309
|
+
static types(): {
|
|
3310
|
+
[key: string]: any;
|
|
3311
|
+
};
|
|
3312
|
+
constructor(map?: {
|
|
3313
|
+
[key: string]: any;
|
|
3314
|
+
});
|
|
3315
|
+
}
|
|
3316
|
+
export declare class DescribeCloudDriveUsersResponse extends $tea.Model {
|
|
3317
|
+
headers: {
|
|
3318
|
+
[key: string]: string;
|
|
3319
|
+
};
|
|
3320
|
+
statusCode: number;
|
|
3321
|
+
body: DescribeCloudDriveUsersResponseBody;
|
|
3322
|
+
static names(): {
|
|
3323
|
+
[key: string]: string;
|
|
3324
|
+
};
|
|
3325
|
+
static types(): {
|
|
3326
|
+
[key: string]: any;
|
|
3327
|
+
};
|
|
3328
|
+
constructor(map?: {
|
|
3329
|
+
[key: string]: any;
|
|
3330
|
+
});
|
|
3331
|
+
}
|
|
2986
3332
|
export declare class DescribeCustomizedListHeadersRequest extends $tea.Model {
|
|
2987
3333
|
langType?: string;
|
|
2988
3334
|
listType?: string;
|
|
@@ -3083,12 +3429,197 @@ export declare class DescribeDesktopGroupsResponse extends $tea.Model {
|
|
|
3083
3429
|
[key: string]: any;
|
|
3084
3430
|
});
|
|
3085
3431
|
}
|
|
3086
|
-
export declare class
|
|
3087
|
-
|
|
3432
|
+
export declare class DescribeDesktopInfoRequest extends $tea.Model {
|
|
3433
|
+
desktopId?: string[];
|
|
3434
|
+
regionId?: string;
|
|
3435
|
+
static names(): {
|
|
3436
|
+
[key: string]: string;
|
|
3437
|
+
};
|
|
3438
|
+
static types(): {
|
|
3439
|
+
[key: string]: any;
|
|
3440
|
+
};
|
|
3441
|
+
constructor(map?: {
|
|
3442
|
+
[key: string]: any;
|
|
3443
|
+
});
|
|
3444
|
+
}
|
|
3445
|
+
export declare class DescribeDesktopInfoResponseBody extends $tea.Model {
|
|
3446
|
+
desktops?: DescribeDesktopInfoResponseBodyDesktops[];
|
|
3447
|
+
requestId?: string;
|
|
3448
|
+
static names(): {
|
|
3449
|
+
[key: string]: string;
|
|
3450
|
+
};
|
|
3451
|
+
static types(): {
|
|
3452
|
+
[key: string]: any;
|
|
3453
|
+
};
|
|
3454
|
+
constructor(map?: {
|
|
3455
|
+
[key: string]: any;
|
|
3456
|
+
});
|
|
3457
|
+
}
|
|
3458
|
+
export declare class DescribeDesktopInfoResponse extends $tea.Model {
|
|
3459
|
+
headers: {
|
|
3460
|
+
[key: string]: string;
|
|
3461
|
+
};
|
|
3462
|
+
statusCode: number;
|
|
3463
|
+
body: DescribeDesktopInfoResponseBody;
|
|
3464
|
+
static names(): {
|
|
3465
|
+
[key: string]: string;
|
|
3466
|
+
};
|
|
3467
|
+
static types(): {
|
|
3468
|
+
[key: string]: any;
|
|
3469
|
+
};
|
|
3470
|
+
constructor(map?: {
|
|
3471
|
+
[key: string]: any;
|
|
3472
|
+
});
|
|
3473
|
+
}
|
|
3474
|
+
export declare class DescribeDesktopOversoldGroupRequest extends $tea.Model {
|
|
3475
|
+
maxResults?: number;
|
|
3476
|
+
nextToken?: string;
|
|
3477
|
+
oversoldGroupIds?: string[];
|
|
3478
|
+
static names(): {
|
|
3479
|
+
[key: string]: string;
|
|
3480
|
+
};
|
|
3481
|
+
static types(): {
|
|
3482
|
+
[key: string]: any;
|
|
3483
|
+
};
|
|
3484
|
+
constructor(map?: {
|
|
3485
|
+
[key: string]: any;
|
|
3486
|
+
});
|
|
3487
|
+
}
|
|
3488
|
+
export declare class DescribeDesktopOversoldGroupResponseBody extends $tea.Model {
|
|
3489
|
+
count?: number;
|
|
3490
|
+
data?: DescribeDesktopOversoldGroupResponseBodyData[];
|
|
3491
|
+
nextToken?: string;
|
|
3492
|
+
requestId?: string;
|
|
3493
|
+
static names(): {
|
|
3494
|
+
[key: string]: string;
|
|
3495
|
+
};
|
|
3496
|
+
static types(): {
|
|
3497
|
+
[key: string]: any;
|
|
3498
|
+
};
|
|
3499
|
+
constructor(map?: {
|
|
3500
|
+
[key: string]: any;
|
|
3501
|
+
});
|
|
3502
|
+
}
|
|
3503
|
+
export declare class DescribeDesktopOversoldGroupResponse extends $tea.Model {
|
|
3504
|
+
headers: {
|
|
3505
|
+
[key: string]: string;
|
|
3506
|
+
};
|
|
3507
|
+
statusCode: number;
|
|
3508
|
+
body: DescribeDesktopOversoldGroupResponseBody;
|
|
3509
|
+
static names(): {
|
|
3510
|
+
[key: string]: string;
|
|
3511
|
+
};
|
|
3512
|
+
static types(): {
|
|
3513
|
+
[key: string]: any;
|
|
3514
|
+
};
|
|
3515
|
+
constructor(map?: {
|
|
3516
|
+
[key: string]: any;
|
|
3517
|
+
});
|
|
3518
|
+
}
|
|
3519
|
+
export declare class DescribeDesktopOversoldUserRequest extends $tea.Model {
|
|
3520
|
+
clientToken?: string;
|
|
3521
|
+
endUserId?: string;
|
|
3522
|
+
maxResults?: number;
|
|
3523
|
+
nextToken?: string;
|
|
3524
|
+
oversoldGroupId?: string;
|
|
3525
|
+
userDesktopIds?: string[];
|
|
3526
|
+
userGroupId?: string;
|
|
3527
|
+
static names(): {
|
|
3528
|
+
[key: string]: string;
|
|
3529
|
+
};
|
|
3530
|
+
static types(): {
|
|
3531
|
+
[key: string]: any;
|
|
3532
|
+
};
|
|
3533
|
+
constructor(map?: {
|
|
3534
|
+
[key: string]: any;
|
|
3535
|
+
});
|
|
3536
|
+
}
|
|
3537
|
+
export declare class DescribeDesktopOversoldUserResponseBody extends $tea.Model {
|
|
3538
|
+
count?: number;
|
|
3539
|
+
data?: DescribeDesktopOversoldUserResponseBodyData[];
|
|
3540
|
+
nextToken?: string;
|
|
3541
|
+
requestId?: string;
|
|
3542
|
+
static names(): {
|
|
3543
|
+
[key: string]: string;
|
|
3544
|
+
};
|
|
3545
|
+
static types(): {
|
|
3546
|
+
[key: string]: any;
|
|
3547
|
+
};
|
|
3548
|
+
constructor(map?: {
|
|
3549
|
+
[key: string]: any;
|
|
3550
|
+
});
|
|
3551
|
+
}
|
|
3552
|
+
export declare class DescribeDesktopOversoldUserResponse extends $tea.Model {
|
|
3553
|
+
headers: {
|
|
3554
|
+
[key: string]: string;
|
|
3555
|
+
};
|
|
3556
|
+
statusCode: number;
|
|
3557
|
+
body: DescribeDesktopOversoldUserResponseBody;
|
|
3558
|
+
static names(): {
|
|
3559
|
+
[key: string]: string;
|
|
3560
|
+
};
|
|
3561
|
+
static types(): {
|
|
3562
|
+
[key: string]: any;
|
|
3563
|
+
};
|
|
3564
|
+
constructor(map?: {
|
|
3565
|
+
[key: string]: any;
|
|
3566
|
+
});
|
|
3567
|
+
}
|
|
3568
|
+
export declare class DescribeDesktopOversoldUserGroupRequest extends $tea.Model {
|
|
3569
|
+
maxResults?: number;
|
|
3570
|
+
nextToken?: string;
|
|
3571
|
+
oversoldGroupId?: string;
|
|
3572
|
+
userGroupIds?: string[];
|
|
3573
|
+
static names(): {
|
|
3574
|
+
[key: string]: string;
|
|
3575
|
+
};
|
|
3576
|
+
static types(): {
|
|
3577
|
+
[key: string]: any;
|
|
3578
|
+
};
|
|
3579
|
+
constructor(map?: {
|
|
3580
|
+
[key: string]: any;
|
|
3581
|
+
});
|
|
3582
|
+
}
|
|
3583
|
+
export declare class DescribeDesktopOversoldUserGroupResponseBody extends $tea.Model {
|
|
3584
|
+
count?: number;
|
|
3585
|
+
data?: DescribeDesktopOversoldUserGroupResponseBodyData[];
|
|
3586
|
+
nextToken?: string;
|
|
3587
|
+
requestId?: string;
|
|
3588
|
+
static names(): {
|
|
3589
|
+
[key: string]: string;
|
|
3590
|
+
};
|
|
3591
|
+
static types(): {
|
|
3592
|
+
[key: string]: any;
|
|
3593
|
+
};
|
|
3594
|
+
constructor(map?: {
|
|
3595
|
+
[key: string]: any;
|
|
3596
|
+
});
|
|
3597
|
+
}
|
|
3598
|
+
export declare class DescribeDesktopOversoldUserGroupResponse extends $tea.Model {
|
|
3599
|
+
headers: {
|
|
3600
|
+
[key: string]: string;
|
|
3601
|
+
};
|
|
3602
|
+
statusCode: number;
|
|
3603
|
+
body: DescribeDesktopOversoldUserGroupResponseBody;
|
|
3604
|
+
static names(): {
|
|
3605
|
+
[key: string]: string;
|
|
3606
|
+
};
|
|
3607
|
+
static types(): {
|
|
3608
|
+
[key: string]: any;
|
|
3609
|
+
};
|
|
3610
|
+
constructor(map?: {
|
|
3611
|
+
[key: string]: any;
|
|
3612
|
+
});
|
|
3613
|
+
}
|
|
3614
|
+
export declare class DescribeDesktopSessionsRequest extends $tea.Model {
|
|
3615
|
+
endTime?: string;
|
|
3616
|
+
endUserId?: string;
|
|
3088
3617
|
officeSiteId?: string;
|
|
3618
|
+
pageNumber?: number;
|
|
3619
|
+
pageSize?: number;
|
|
3089
3620
|
regionId?: string;
|
|
3090
|
-
|
|
3091
|
-
|
|
3621
|
+
sessionStatus?: string;
|
|
3622
|
+
startTime?: string;
|
|
3092
3623
|
static names(): {
|
|
3093
3624
|
[key: string]: string;
|
|
3094
3625
|
};
|
|
@@ -3099,9 +3630,10 @@ export declare class DescribeDesktopIdsByVulNamesRequest extends $tea.Model {
|
|
|
3099
3630
|
[key: string]: any;
|
|
3100
3631
|
});
|
|
3101
3632
|
}
|
|
3102
|
-
export declare class
|
|
3103
|
-
desktopItems?: DescribeDesktopIdsByVulNamesResponseBodyDesktopItems[];
|
|
3633
|
+
export declare class DescribeDesktopSessionsResponseBody extends $tea.Model {
|
|
3104
3634
|
requestId?: string;
|
|
3635
|
+
sessions?: DescribeDesktopSessionsResponseBodySessions[];
|
|
3636
|
+
totalCount?: number;
|
|
3105
3637
|
static names(): {
|
|
3106
3638
|
[key: string]: string;
|
|
3107
3639
|
};
|
|
@@ -3112,12 +3644,12 @@ export declare class DescribeDesktopIdsByVulNamesResponseBody extends $tea.Model
|
|
|
3112
3644
|
[key: string]: any;
|
|
3113
3645
|
});
|
|
3114
3646
|
}
|
|
3115
|
-
export declare class
|
|
3647
|
+
export declare class DescribeDesktopSessionsResponse extends $tea.Model {
|
|
3116
3648
|
headers: {
|
|
3117
3649
|
[key: string]: string;
|
|
3118
3650
|
};
|
|
3119
3651
|
statusCode: number;
|
|
3120
|
-
body:
|
|
3652
|
+
body: DescribeDesktopSessionsResponseBody;
|
|
3121
3653
|
static names(): {
|
|
3122
3654
|
[key: string]: string;
|
|
3123
3655
|
};
|
|
@@ -3131,6 +3663,7 @@ export declare class DescribeDesktopIdsByVulNamesResponse extends $tea.Model {
|
|
|
3131
3663
|
export declare class DescribeDesktopTypesRequest extends $tea.Model {
|
|
3132
3664
|
appliedScope?: string;
|
|
3133
3665
|
cpuCount?: number;
|
|
3666
|
+
desktopGroupIdForModify?: string;
|
|
3134
3667
|
desktopIdForModify?: string;
|
|
3135
3668
|
desktopTypeId?: string;
|
|
3136
3669
|
gpuCount?: number;
|
|
@@ -3183,6 +3716,7 @@ export declare class DescribeDesktopsRequest extends $tea.Model {
|
|
|
3183
3716
|
desktopId?: string[];
|
|
3184
3717
|
desktopName?: string;
|
|
3185
3718
|
desktopStatus?: string;
|
|
3719
|
+
desktopStatusList?: string[];
|
|
3186
3720
|
desktopType?: string;
|
|
3187
3721
|
directoryId?: string;
|
|
3188
3722
|
endUserId?: string[];
|
|
@@ -3274,6 +3808,7 @@ export declare class DescribeDesktopsInGroupResponseBody extends $tea.Model {
|
|
|
3274
3808
|
requestId?: string;
|
|
3275
3809
|
runningPrePaidDesktopsCount?: number;
|
|
3276
3810
|
stopedPrePaidDesktopsCount?: number;
|
|
3811
|
+
stoppedPrePaidDesktopsCount?: number;
|
|
3277
3812
|
static names(): {
|
|
3278
3813
|
[key: string]: string;
|
|
3279
3814
|
};
|
|
@@ -3493,8 +4028,11 @@ export declare class DescribeFlowStatisticResponse extends $tea.Model {
|
|
|
3493
4028
|
});
|
|
3494
4029
|
}
|
|
3495
4030
|
export declare class DescribeFotaPendingDesktopsRequest extends $tea.Model {
|
|
4031
|
+
desktopId?: string;
|
|
4032
|
+
desktopName?: string;
|
|
3496
4033
|
maxResults?: number;
|
|
3497
4034
|
nextToken?: string;
|
|
4035
|
+
officeSiteId?: string;
|
|
3498
4036
|
regionId?: string;
|
|
3499
4037
|
taskUid?: string;
|
|
3500
4038
|
static names(): {
|
|
@@ -3508,7 +4046,9 @@ export declare class DescribeFotaPendingDesktopsRequest extends $tea.Model {
|
|
|
3508
4046
|
});
|
|
3509
4047
|
}
|
|
3510
4048
|
export declare class DescribeFotaPendingDesktopsResponseBody extends $tea.Model {
|
|
4049
|
+
code?: string;
|
|
3511
4050
|
fotaPendingDesktops?: DescribeFotaPendingDesktopsResponseBodyFotaPendingDesktops[];
|
|
4051
|
+
message?: string;
|
|
3512
4052
|
nextToken?: string;
|
|
3513
4053
|
requestId?: string;
|
|
3514
4054
|
static names(): {
|
|
@@ -3539,6 +4079,7 @@ export declare class DescribeFotaPendingDesktopsResponse extends $tea.Model {
|
|
|
3539
4079
|
}
|
|
3540
4080
|
export declare class DescribeFotaTasksRequest extends $tea.Model {
|
|
3541
4081
|
fotaStatus?: string;
|
|
4082
|
+
lang?: string;
|
|
3542
4083
|
maxResults?: number;
|
|
3543
4084
|
nextToken?: string;
|
|
3544
4085
|
regionId?: string;
|
|
@@ -3555,7 +4096,10 @@ export declare class DescribeFotaTasksRequest extends $tea.Model {
|
|
|
3555
4096
|
});
|
|
3556
4097
|
}
|
|
3557
4098
|
export declare class DescribeFotaTasksResponseBody extends $tea.Model {
|
|
4099
|
+
code?: string;
|
|
3558
4100
|
fotaTasks?: DescribeFotaTasksResponseBodyFotaTasks[];
|
|
4101
|
+
message?: string;
|
|
4102
|
+
nextToken?: string;
|
|
3559
4103
|
requestId?: string;
|
|
3560
4104
|
static names(): {
|
|
3561
4105
|
[key: string]: string;
|
|
@@ -3583,11 +4127,10 @@ export declare class DescribeFotaTasksResponse extends $tea.Model {
|
|
|
3583
4127
|
[key: string]: any;
|
|
3584
4128
|
});
|
|
3585
4129
|
}
|
|
3586
|
-
export declare class
|
|
3587
|
-
|
|
4130
|
+
export declare class DescribeGuestApplicationsRequest extends $tea.Model {
|
|
4131
|
+
desktopId?: string;
|
|
4132
|
+
endUserId?: string;
|
|
3588
4133
|
regionId?: string;
|
|
3589
|
-
type?: string;
|
|
3590
|
-
vulInfo?: DescribeFrontVulPatchListRequestVulInfo[];
|
|
3591
4134
|
static names(): {
|
|
3592
4135
|
[key: string]: string;
|
|
3593
4136
|
};
|
|
@@ -3598,8 +4141,8 @@ export declare class DescribeFrontVulPatchListRequest extends $tea.Model {
|
|
|
3598
4141
|
[key: string]: any;
|
|
3599
4142
|
});
|
|
3600
4143
|
}
|
|
3601
|
-
export declare class
|
|
3602
|
-
|
|
4144
|
+
export declare class DescribeGuestApplicationsResponseBody extends $tea.Model {
|
|
4145
|
+
applications?: DescribeGuestApplicationsResponseBodyApplications[];
|
|
3603
4146
|
requestId?: string;
|
|
3604
4147
|
static names(): {
|
|
3605
4148
|
[key: string]: string;
|
|
@@ -3611,12 +4154,12 @@ export declare class DescribeFrontVulPatchListResponseBody extends $tea.Model {
|
|
|
3611
4154
|
[key: string]: any;
|
|
3612
4155
|
});
|
|
3613
4156
|
}
|
|
3614
|
-
export declare class
|
|
4157
|
+
export declare class DescribeGuestApplicationsResponse extends $tea.Model {
|
|
3615
4158
|
headers: {
|
|
3616
4159
|
[key: string]: string;
|
|
3617
4160
|
};
|
|
3618
4161
|
statusCode: number;
|
|
3619
|
-
body:
|
|
4162
|
+
body: DescribeGuestApplicationsResponseBody;
|
|
3620
4163
|
static names(): {
|
|
3621
4164
|
[key: string]: string;
|
|
3622
4165
|
};
|
|
@@ -3627,15 +4170,11 @@ export declare class DescribeFrontVulPatchListResponse extends $tea.Model {
|
|
|
3627
4170
|
[key: string]: any;
|
|
3628
4171
|
});
|
|
3629
4172
|
}
|
|
3630
|
-
export declare class
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
necessity?: string;
|
|
3635
|
-
officeSiteId?: string;
|
|
3636
|
-
pageSize?: number;
|
|
4173
|
+
export declare class DescribeImageModifiedRecordsRequest extends $tea.Model {
|
|
4174
|
+
desktopId?: string;
|
|
4175
|
+
maxResults?: number;
|
|
4176
|
+
nextToken?: string;
|
|
3637
4177
|
regionId?: string;
|
|
3638
|
-
type?: string;
|
|
3639
4178
|
static names(): {
|
|
3640
4179
|
[key: string]: string;
|
|
3641
4180
|
};
|
|
@@ -3646,10 +4185,9 @@ export declare class DescribeGroupedVulRequest extends $tea.Model {
|
|
|
3646
4185
|
[key: string]: any;
|
|
3647
4186
|
});
|
|
3648
4187
|
}
|
|
3649
|
-
export declare class
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
pageSize?: number;
|
|
4188
|
+
export declare class DescribeImageModifiedRecordsResponseBody extends $tea.Model {
|
|
4189
|
+
imageModifiedRecords?: DescribeImageModifiedRecordsResponseBodyImageModifiedRecords[];
|
|
4190
|
+
nextToken?: string;
|
|
3653
4191
|
requestId?: string;
|
|
3654
4192
|
totalCount?: number;
|
|
3655
4193
|
static names(): {
|
|
@@ -3662,12 +4200,12 @@ export declare class DescribeGroupedVulResponseBody extends $tea.Model {
|
|
|
3662
4200
|
[key: string]: any;
|
|
3663
4201
|
});
|
|
3664
4202
|
}
|
|
3665
|
-
export declare class
|
|
4203
|
+
export declare class DescribeImageModifiedRecordsResponse extends $tea.Model {
|
|
3666
4204
|
headers: {
|
|
3667
4205
|
[key: string]: string;
|
|
3668
4206
|
};
|
|
3669
4207
|
statusCode: number;
|
|
3670
|
-
body:
|
|
4208
|
+
body: DescribeImageModifiedRecordsResponseBody;
|
|
3671
4209
|
static names(): {
|
|
3672
4210
|
[key: string]: string;
|
|
3673
4211
|
};
|
|
@@ -3678,10 +4216,8 @@ export declare class DescribeGroupedVulResponse extends $tea.Model {
|
|
|
3678
4216
|
[key: string]: any;
|
|
3679
4217
|
});
|
|
3680
4218
|
}
|
|
3681
|
-
export declare class
|
|
3682
|
-
|
|
3683
|
-
maxResults?: number;
|
|
3684
|
-
nextToken?: string;
|
|
4219
|
+
export declare class DescribeImagePermissionRequest extends $tea.Model {
|
|
4220
|
+
imageId?: string;
|
|
3685
4221
|
regionId?: string;
|
|
3686
4222
|
static names(): {
|
|
3687
4223
|
[key: string]: string;
|
|
@@ -3693,11 +4229,9 @@ export declare class DescribeImageModifiedRecordsRequest extends $tea.Model {
|
|
|
3693
4229
|
[key: string]: any;
|
|
3694
4230
|
});
|
|
3695
4231
|
}
|
|
3696
|
-
export declare class
|
|
3697
|
-
|
|
3698
|
-
nextToken?: string;
|
|
4232
|
+
export declare class DescribeImagePermissionResponseBody extends $tea.Model {
|
|
4233
|
+
aliUids?: string[];
|
|
3699
4234
|
requestId?: string;
|
|
3700
|
-
totalCount?: number;
|
|
3701
4235
|
static names(): {
|
|
3702
4236
|
[key: string]: string;
|
|
3703
4237
|
};
|
|
@@ -3708,54 +4242,12 @@ export declare class DescribeImageModifiedRecordsResponseBody extends $tea.Model
|
|
|
3708
4242
|
[key: string]: any;
|
|
3709
4243
|
});
|
|
3710
4244
|
}
|
|
3711
|
-
export declare class
|
|
4245
|
+
export declare class DescribeImagePermissionResponse extends $tea.Model {
|
|
3712
4246
|
headers: {
|
|
3713
4247
|
[key: string]: string;
|
|
3714
4248
|
};
|
|
3715
4249
|
statusCode: number;
|
|
3716
|
-
body:
|
|
3717
|
-
static names(): {
|
|
3718
|
-
[key: string]: string;
|
|
3719
|
-
};
|
|
3720
|
-
static types(): {
|
|
3721
|
-
[key: string]: any;
|
|
3722
|
-
};
|
|
3723
|
-
constructor(map?: {
|
|
3724
|
-
[key: string]: any;
|
|
3725
|
-
});
|
|
3726
|
-
}
|
|
3727
|
-
export declare class DescribeImagePermissionRequest extends $tea.Model {
|
|
3728
|
-
imageId?: string;
|
|
3729
|
-
regionId?: string;
|
|
3730
|
-
static names(): {
|
|
3731
|
-
[key: string]: string;
|
|
3732
|
-
};
|
|
3733
|
-
static types(): {
|
|
3734
|
-
[key: string]: any;
|
|
3735
|
-
};
|
|
3736
|
-
constructor(map?: {
|
|
3737
|
-
[key: string]: any;
|
|
3738
|
-
});
|
|
3739
|
-
}
|
|
3740
|
-
export declare class DescribeImagePermissionResponseBody extends $tea.Model {
|
|
3741
|
-
aliUids?: string[];
|
|
3742
|
-
requestId?: string;
|
|
3743
|
-
static names(): {
|
|
3744
|
-
[key: string]: string;
|
|
3745
|
-
};
|
|
3746
|
-
static types(): {
|
|
3747
|
-
[key: string]: any;
|
|
3748
|
-
};
|
|
3749
|
-
constructor(map?: {
|
|
3750
|
-
[key: string]: any;
|
|
3751
|
-
});
|
|
3752
|
-
}
|
|
3753
|
-
export declare class DescribeImagePermissionResponse extends $tea.Model {
|
|
3754
|
-
headers: {
|
|
3755
|
-
[key: string]: string;
|
|
3756
|
-
};
|
|
3757
|
-
statusCode: number;
|
|
3758
|
-
body: DescribeImagePermissionResponseBody;
|
|
4250
|
+
body: DescribeImagePermissionResponseBody;
|
|
3759
4251
|
static names(): {
|
|
3760
4252
|
[key: string]: string;
|
|
3761
4253
|
};
|
|
@@ -3768,9 +4260,11 @@ export declare class DescribeImagePermissionResponse extends $tea.Model {
|
|
|
3768
4260
|
}
|
|
3769
4261
|
export declare class DescribeImagesRequest extends $tea.Model {
|
|
3770
4262
|
desktopInstanceType?: string;
|
|
4263
|
+
fotaVersion?: string;
|
|
3771
4264
|
gpuCategory?: boolean;
|
|
3772
4265
|
gpuDriverVersion?: string;
|
|
3773
4266
|
imageId?: string[];
|
|
4267
|
+
imageName?: string;
|
|
3774
4268
|
imageStatus?: string;
|
|
3775
4269
|
imageType?: string;
|
|
3776
4270
|
languageType?: string;
|
|
@@ -4101,9 +4595,39 @@ export declare class DescribePolicyGroupsResponse extends $tea.Model {
|
|
|
4101
4595
|
[key: string]: any;
|
|
4102
4596
|
});
|
|
4103
4597
|
}
|
|
4104
|
-
export declare class
|
|
4105
|
-
|
|
4598
|
+
export declare class DescribePriceRequest extends $tea.Model {
|
|
4599
|
+
amount?: number;
|
|
4600
|
+
bandwidth?: number;
|
|
4601
|
+
bundleModels?: DescribePriceRequestBundleModels[];
|
|
4602
|
+
eduCdsEnable?: string;
|
|
4603
|
+
eduCdsSize?: number;
|
|
4604
|
+
eduCommittedTime?: number;
|
|
4605
|
+
eduDesktopBundleId?: string;
|
|
4606
|
+
eduDesktopNum?: number;
|
|
4607
|
+
eduRoomClassify?: string;
|
|
4608
|
+
eduStudentBundleId?: string;
|
|
4609
|
+
eduStudentNum?: number;
|
|
4610
|
+
eduTeacherBundleId?: string;
|
|
4611
|
+
eduTeacherNum?: number;
|
|
4612
|
+
groupDesktopCount?: number;
|
|
4613
|
+
hardwareVersion?: string;
|
|
4614
|
+
instanceType?: string;
|
|
4615
|
+
internetChargeType?: string;
|
|
4616
|
+
networkType?: string;
|
|
4617
|
+
osType?: string;
|
|
4618
|
+
packageSize?: number;
|
|
4619
|
+
period?: number;
|
|
4620
|
+
periodUnit?: string;
|
|
4621
|
+
promotionId?: string;
|
|
4106
4622
|
regionId?: string;
|
|
4623
|
+
resourceType?: string;
|
|
4624
|
+
rootDiskPerformanceLevel?: string;
|
|
4625
|
+
rootDiskSizeGib?: number;
|
|
4626
|
+
spPeriodInfo?: string;
|
|
4627
|
+
spPrice?: boolean;
|
|
4628
|
+
spType?: string;
|
|
4629
|
+
userDiskPerformanceLevel?: string;
|
|
4630
|
+
userDiskSizeGib?: number;
|
|
4107
4631
|
static names(): {
|
|
4108
4632
|
[key: string]: string;
|
|
4109
4633
|
};
|
|
@@ -4114,8 +4638,8 @@ export declare class DescribeRegionsRequest extends $tea.Model {
|
|
|
4114
4638
|
[key: string]: any;
|
|
4115
4639
|
});
|
|
4116
4640
|
}
|
|
4117
|
-
export declare class
|
|
4118
|
-
|
|
4641
|
+
export declare class DescribePriceResponseBody extends $tea.Model {
|
|
4642
|
+
priceInfo?: DescribePriceResponseBodyPriceInfo;
|
|
4119
4643
|
requestId?: string;
|
|
4120
4644
|
static names(): {
|
|
4121
4645
|
[key: string]: string;
|
|
@@ -4127,12 +4651,12 @@ export declare class DescribeRegionsResponseBody extends $tea.Model {
|
|
|
4127
4651
|
[key: string]: any;
|
|
4128
4652
|
});
|
|
4129
4653
|
}
|
|
4130
|
-
export declare class
|
|
4654
|
+
export declare class DescribePriceResponse extends $tea.Model {
|
|
4131
4655
|
headers: {
|
|
4132
4656
|
[key: string]: string;
|
|
4133
4657
|
};
|
|
4134
4658
|
statusCode: number;
|
|
4135
|
-
body:
|
|
4659
|
+
body: DescribePriceResponseBody;
|
|
4136
4660
|
static names(): {
|
|
4137
4661
|
[key: string]: string;
|
|
4138
4662
|
};
|
|
@@ -4143,9 +4667,14 @@ export declare class DescribeRegionsResponse extends $tea.Model {
|
|
|
4143
4667
|
[key: string]: any;
|
|
4144
4668
|
});
|
|
4145
4669
|
}
|
|
4146
|
-
export declare class
|
|
4147
|
-
|
|
4148
|
-
|
|
4670
|
+
export declare class DescribePriceForCreateDesktopOversoldGroupRequest extends $tea.Model {
|
|
4671
|
+
concurrenceCount?: number;
|
|
4672
|
+
dataDiskSize?: number;
|
|
4673
|
+
desktopType?: string;
|
|
4674
|
+
oversoldUserCount?: number;
|
|
4675
|
+
period?: number;
|
|
4676
|
+
periodUnit?: string;
|
|
4677
|
+
systemDiskSize?: number;
|
|
4149
4678
|
static names(): {
|
|
4150
4679
|
[key: string]: string;
|
|
4151
4680
|
};
|
|
@@ -4156,10 +4685,9 @@ export declare class DescribeScanTaskProgressRequest extends $tea.Model {
|
|
|
4156
4685
|
[key: string]: any;
|
|
4157
4686
|
});
|
|
4158
4687
|
}
|
|
4159
|
-
export declare class
|
|
4160
|
-
|
|
4688
|
+
export declare class DescribePriceForCreateDesktopOversoldGroupResponseBody extends $tea.Model {
|
|
4689
|
+
data?: DescribePriceForCreateDesktopOversoldGroupResponseBodyData;
|
|
4161
4690
|
requestId?: string;
|
|
4162
|
-
taskStatus?: string;
|
|
4163
4691
|
static names(): {
|
|
4164
4692
|
[key: string]: string;
|
|
4165
4693
|
};
|
|
@@ -4170,12 +4698,12 @@ export declare class DescribeScanTaskProgressResponseBody extends $tea.Model {
|
|
|
4170
4698
|
[key: string]: any;
|
|
4171
4699
|
});
|
|
4172
4700
|
}
|
|
4173
|
-
export declare class
|
|
4701
|
+
export declare class DescribePriceForCreateDesktopOversoldGroupResponse extends $tea.Model {
|
|
4174
4702
|
headers: {
|
|
4175
4703
|
[key: string]: string;
|
|
4176
4704
|
};
|
|
4177
4705
|
statusCode: number;
|
|
4178
|
-
body:
|
|
4706
|
+
body: DescribePriceForCreateDesktopOversoldGroupResponseBody;
|
|
4179
4707
|
static names(): {
|
|
4180
4708
|
[key: string]: string;
|
|
4181
4709
|
};
|
|
@@ -4186,10 +4714,10 @@ export declare class DescribeScanTaskProgressResponse extends $tea.Model {
|
|
|
4186
4714
|
[key: string]: any;
|
|
4187
4715
|
});
|
|
4188
4716
|
}
|
|
4189
|
-
export declare class
|
|
4190
|
-
|
|
4191
|
-
|
|
4192
|
-
|
|
4717
|
+
export declare class DescribePriceForModifyDesktopOversoldGroupSaleRequest extends $tea.Model {
|
|
4718
|
+
concurrenceCount?: number;
|
|
4719
|
+
oversoldGroupId?: string;
|
|
4720
|
+
oversoldUserCount?: number;
|
|
4193
4721
|
static names(): {
|
|
4194
4722
|
[key: string]: string;
|
|
4195
4723
|
};
|
|
@@ -4200,10 +4728,9 @@ export declare class DescribeSecurityEventOperationStatusRequest extends $tea.Mo
|
|
|
4200
4728
|
[key: string]: any;
|
|
4201
4729
|
});
|
|
4202
4730
|
}
|
|
4203
|
-
export declare class
|
|
4731
|
+
export declare class DescribePriceForModifyDesktopOversoldGroupSaleResponseBody extends $tea.Model {
|
|
4732
|
+
data?: DescribePriceForModifyDesktopOversoldGroupSaleResponseBodyData;
|
|
4204
4733
|
requestId?: string;
|
|
4205
|
-
securityEventOperationStatuses?: DescribeSecurityEventOperationStatusResponseBodySecurityEventOperationStatuses[];
|
|
4206
|
-
taskStatus?: string;
|
|
4207
4734
|
static names(): {
|
|
4208
4735
|
[key: string]: string;
|
|
4209
4736
|
};
|
|
@@ -4214,12 +4741,12 @@ export declare class DescribeSecurityEventOperationStatusResponseBody extends $t
|
|
|
4214
4741
|
[key: string]: any;
|
|
4215
4742
|
});
|
|
4216
4743
|
}
|
|
4217
|
-
export declare class
|
|
4744
|
+
export declare class DescribePriceForModifyDesktopOversoldGroupSaleResponse extends $tea.Model {
|
|
4218
4745
|
headers: {
|
|
4219
4746
|
[key: string]: string;
|
|
4220
4747
|
};
|
|
4221
4748
|
statusCode: number;
|
|
4222
|
-
body:
|
|
4749
|
+
body: DescribePriceForModifyDesktopOversoldGroupSaleResponseBody;
|
|
4223
4750
|
static names(): {
|
|
4224
4751
|
[key: string]: string;
|
|
4225
4752
|
};
|
|
@@ -4230,9 +4757,10 @@ export declare class DescribeSecurityEventOperationStatusResponse extends $tea.M
|
|
|
4230
4757
|
[key: string]: any;
|
|
4231
4758
|
});
|
|
4232
4759
|
}
|
|
4233
|
-
export declare class
|
|
4234
|
-
|
|
4235
|
-
|
|
4760
|
+
export declare class DescribePriceForRenewDesktopOversoldGroupRequest extends $tea.Model {
|
|
4761
|
+
oversoldGroupId?: string;
|
|
4762
|
+
period?: number;
|
|
4763
|
+
periodUnit?: string;
|
|
4236
4764
|
static names(): {
|
|
4237
4765
|
[key: string]: string;
|
|
4238
4766
|
};
|
|
@@ -4243,9 +4771,9 @@ export declare class DescribeSecurityEventOperationsRequest extends $tea.Model {
|
|
|
4243
4771
|
[key: string]: any;
|
|
4244
4772
|
});
|
|
4245
4773
|
}
|
|
4246
|
-
export declare class
|
|
4774
|
+
export declare class DescribePriceForRenewDesktopOversoldGroupResponseBody extends $tea.Model {
|
|
4775
|
+
data?: DescribePriceForRenewDesktopOversoldGroupResponseBodyData;
|
|
4247
4776
|
requestId?: string;
|
|
4248
|
-
securityEventOperations?: DescribeSecurityEventOperationsResponseBodySecurityEventOperations[];
|
|
4249
4777
|
static names(): {
|
|
4250
4778
|
[key: string]: string;
|
|
4251
4779
|
};
|
|
@@ -4256,12 +4784,12 @@ export declare class DescribeSecurityEventOperationsResponseBody extends $tea.Mo
|
|
|
4256
4784
|
[key: string]: any;
|
|
4257
4785
|
});
|
|
4258
4786
|
}
|
|
4259
|
-
export declare class
|
|
4787
|
+
export declare class DescribePriceForRenewDesktopOversoldGroupResponse extends $tea.Model {
|
|
4260
4788
|
headers: {
|
|
4261
4789
|
[key: string]: string;
|
|
4262
4790
|
};
|
|
4263
4791
|
statusCode: number;
|
|
4264
|
-
body:
|
|
4792
|
+
body: DescribePriceForRenewDesktopOversoldGroupResponseBody;
|
|
4265
4793
|
static names(): {
|
|
4266
4794
|
[key: string]: string;
|
|
4267
4795
|
};
|
|
@@ -4272,19 +4800,9 @@ export declare class DescribeSecurityEventOperationsResponse extends $tea.Model
|
|
|
4272
4800
|
[key: string]: any;
|
|
4273
4801
|
});
|
|
4274
4802
|
}
|
|
4275
|
-
export declare class
|
|
4276
|
-
|
|
4277
|
-
desktopId?: string;
|
|
4278
|
-
desktopName?: string;
|
|
4279
|
-
endTime?: string;
|
|
4280
|
-
maxResults?: number;
|
|
4281
|
-
nextToken?: string;
|
|
4803
|
+
export declare class DescribeRegionsRequest extends $tea.Model {
|
|
4804
|
+
acceptLanguage?: string;
|
|
4282
4805
|
regionId?: string;
|
|
4283
|
-
snapshotId?: string;
|
|
4284
|
-
snapshotName?: string;
|
|
4285
|
-
snapshotType?: string;
|
|
4286
|
-
sourceDiskType?: string;
|
|
4287
|
-
startTime?: string;
|
|
4288
4806
|
static names(): {
|
|
4289
4807
|
[key: string]: string;
|
|
4290
4808
|
};
|
|
@@ -4295,10 +4813,9 @@ export declare class DescribeSnapshotsRequest extends $tea.Model {
|
|
|
4295
4813
|
[key: string]: any;
|
|
4296
4814
|
});
|
|
4297
4815
|
}
|
|
4298
|
-
export declare class
|
|
4299
|
-
|
|
4816
|
+
export declare class DescribeRegionsResponseBody extends $tea.Model {
|
|
4817
|
+
regions?: DescribeRegionsResponseBodyRegions[];
|
|
4300
4818
|
requestId?: string;
|
|
4301
|
-
snapshots?: DescribeSnapshotsResponseBodySnapshots[];
|
|
4302
4819
|
static names(): {
|
|
4303
4820
|
[key: string]: string;
|
|
4304
4821
|
};
|
|
@@ -4309,12 +4826,12 @@ export declare class DescribeSnapshotsResponseBody extends $tea.Model {
|
|
|
4309
4826
|
[key: string]: any;
|
|
4310
4827
|
});
|
|
4311
4828
|
}
|
|
4312
|
-
export declare class
|
|
4829
|
+
export declare class DescribeRegionsResponse extends $tea.Model {
|
|
4313
4830
|
headers: {
|
|
4314
4831
|
[key: string]: string;
|
|
4315
4832
|
};
|
|
4316
4833
|
statusCode: number;
|
|
4317
|
-
body:
|
|
4834
|
+
body: DescribeRegionsResponseBody;
|
|
4318
4835
|
static names(): {
|
|
4319
4836
|
[key: string]: string;
|
|
4320
4837
|
};
|
|
@@ -4325,8 +4842,13 @@ export declare class DescribeSnapshotsResponse extends $tea.Model {
|
|
|
4325
4842
|
[key: string]: any;
|
|
4326
4843
|
});
|
|
4327
4844
|
}
|
|
4328
|
-
export declare class
|
|
4845
|
+
export declare class DescribeSessionStatisticRequest extends $tea.Model {
|
|
4846
|
+
endTime?: string;
|
|
4847
|
+
officeSiteId?: string;
|
|
4848
|
+
period?: number;
|
|
4329
4849
|
regionId?: string;
|
|
4850
|
+
searchRegionId?: string;
|
|
4851
|
+
startTime?: string;
|
|
4330
4852
|
static names(): {
|
|
4331
4853
|
[key: string]: string;
|
|
4332
4854
|
};
|
|
@@ -4337,11 +4859,10 @@ export declare class DescribeSuspEventOverviewRequest extends $tea.Model {
|
|
|
4337
4859
|
[key: string]: any;
|
|
4338
4860
|
});
|
|
4339
4861
|
}
|
|
4340
|
-
export declare class
|
|
4341
|
-
remindCount?: number;
|
|
4862
|
+
export declare class DescribeSessionStatisticResponseBody extends $tea.Model {
|
|
4342
4863
|
requestId?: string;
|
|
4343
|
-
|
|
4344
|
-
|
|
4864
|
+
statistic?: DescribeSessionStatisticResponseBodyStatistic[];
|
|
4865
|
+
totalCount?: string;
|
|
4345
4866
|
static names(): {
|
|
4346
4867
|
[key: string]: string;
|
|
4347
4868
|
};
|
|
@@ -4352,12 +4873,12 @@ export declare class DescribeSuspEventOverviewResponseBody extends $tea.Model {
|
|
|
4352
4873
|
[key: string]: any;
|
|
4353
4874
|
});
|
|
4354
4875
|
}
|
|
4355
|
-
export declare class
|
|
4876
|
+
export declare class DescribeSessionStatisticResponse extends $tea.Model {
|
|
4356
4877
|
headers: {
|
|
4357
4878
|
[key: string]: string;
|
|
4358
4879
|
};
|
|
4359
4880
|
statusCode: number;
|
|
4360
|
-
body:
|
|
4881
|
+
body: DescribeSessionStatisticResponseBody;
|
|
4361
4882
|
static names(): {
|
|
4362
4883
|
[key: string]: string;
|
|
4363
4884
|
};
|
|
@@ -4368,12 +4889,19 @@ export declare class DescribeSuspEventOverviewResponse extends $tea.Model {
|
|
|
4368
4889
|
[key: string]: any;
|
|
4369
4890
|
});
|
|
4370
4891
|
}
|
|
4371
|
-
export declare class
|
|
4372
|
-
|
|
4373
|
-
|
|
4374
|
-
|
|
4892
|
+
export declare class DescribeSnapshotsRequest extends $tea.Model {
|
|
4893
|
+
creator?: string;
|
|
4894
|
+
desktopId?: string;
|
|
4895
|
+
desktopName?: string;
|
|
4896
|
+
endTime?: string;
|
|
4897
|
+
maxResults?: number;
|
|
4898
|
+
nextToken?: string;
|
|
4375
4899
|
regionId?: string;
|
|
4376
|
-
|
|
4900
|
+
snapshotId?: string;
|
|
4901
|
+
snapshotName?: string;
|
|
4902
|
+
snapshotType?: string;
|
|
4903
|
+
sourceDiskType?: string;
|
|
4904
|
+
startTime?: string;
|
|
4377
4905
|
static names(): {
|
|
4378
4906
|
[key: string]: string;
|
|
4379
4907
|
};
|
|
@@ -4384,12 +4912,10 @@ export declare class DescribeSuspEventQuaraFilesRequest extends $tea.Model {
|
|
|
4384
4912
|
[key: string]: any;
|
|
4385
4913
|
});
|
|
4386
4914
|
}
|
|
4387
|
-
export declare class
|
|
4388
|
-
|
|
4389
|
-
pageSize?: number;
|
|
4390
|
-
quaraFiles?: DescribeSuspEventQuaraFilesResponseBodyQuaraFiles[];
|
|
4915
|
+
export declare class DescribeSnapshotsResponseBody extends $tea.Model {
|
|
4916
|
+
nextToken?: string;
|
|
4391
4917
|
requestId?: string;
|
|
4392
|
-
|
|
4918
|
+
snapshots?: DescribeSnapshotsResponseBodySnapshots[];
|
|
4393
4919
|
static names(): {
|
|
4394
4920
|
[key: string]: string;
|
|
4395
4921
|
};
|
|
@@ -4400,12 +4926,12 @@ export declare class DescribeSuspEventQuaraFilesResponseBody extends $tea.Model
|
|
|
4400
4926
|
[key: string]: any;
|
|
4401
4927
|
});
|
|
4402
4928
|
}
|
|
4403
|
-
export declare class
|
|
4929
|
+
export declare class DescribeSnapshotsResponse extends $tea.Model {
|
|
4404
4930
|
headers: {
|
|
4405
4931
|
[key: string]: string;
|
|
4406
4932
|
};
|
|
4407
4933
|
statusCode: number;
|
|
4408
|
-
body:
|
|
4934
|
+
body: DescribeSnapshotsResponseBody;
|
|
4409
4935
|
static names(): {
|
|
4410
4936
|
[key: string]: string;
|
|
4411
4937
|
};
|
|
@@ -4416,16 +4942,15 @@ export declare class DescribeSuspEventQuaraFilesResponse extends $tea.Model {
|
|
|
4416
4942
|
[key: string]: any;
|
|
4417
4943
|
});
|
|
4418
4944
|
}
|
|
4419
|
-
export declare class
|
|
4420
|
-
|
|
4421
|
-
|
|
4422
|
-
|
|
4423
|
-
|
|
4424
|
-
|
|
4425
|
-
|
|
4426
|
-
|
|
4427
|
-
|
|
4428
|
-
regionId?: string;
|
|
4945
|
+
export declare class DescribeUserConnectTimeRequest extends $tea.Model {
|
|
4946
|
+
endTime?: string;
|
|
4947
|
+
endUserId?: string;
|
|
4948
|
+
maxResults?: number;
|
|
4949
|
+
nextToken?: string;
|
|
4950
|
+
oversoldGroupId?: string;
|
|
4951
|
+
startTime?: string;
|
|
4952
|
+
userDesktopId?: string;
|
|
4953
|
+
userGroupId?: string;
|
|
4429
4954
|
static names(): {
|
|
4430
4955
|
[key: string]: string;
|
|
4431
4956
|
};
|
|
@@ -4436,12 +4961,11 @@ export declare class DescribeSuspEventsRequest extends $tea.Model {
|
|
|
4436
4961
|
[key: string]: any;
|
|
4437
4962
|
});
|
|
4438
4963
|
}
|
|
4439
|
-
export declare class
|
|
4440
|
-
|
|
4441
|
-
|
|
4964
|
+
export declare class DescribeUserConnectTimeResponseBody extends $tea.Model {
|
|
4965
|
+
count?: number;
|
|
4966
|
+
data?: DescribeUserConnectTimeResponseBodyData[];
|
|
4967
|
+
nextToken?: string;
|
|
4442
4968
|
requestId?: string;
|
|
4443
|
-
suspEvents?: DescribeSuspEventsResponseBodySuspEvents[];
|
|
4444
|
-
totalCount?: number;
|
|
4445
4969
|
static names(): {
|
|
4446
4970
|
[key: string]: string;
|
|
4447
4971
|
};
|
|
@@ -4452,12 +4976,12 @@ export declare class DescribeSuspEventsResponseBody extends $tea.Model {
|
|
|
4452
4976
|
[key: string]: any;
|
|
4453
4977
|
});
|
|
4454
4978
|
}
|
|
4455
|
-
export declare class
|
|
4979
|
+
export declare class DescribeUserConnectTimeResponse extends $tea.Model {
|
|
4456
4980
|
headers: {
|
|
4457
4981
|
[key: string]: string;
|
|
4458
4982
|
};
|
|
4459
4983
|
statusCode: number;
|
|
4460
|
-
body:
|
|
4984
|
+
body: DescribeUserConnectTimeResponseBody;
|
|
4461
4985
|
static names(): {
|
|
4462
4986
|
[key: string]: string;
|
|
4463
4987
|
};
|
|
@@ -4706,147 +5230,6 @@ export declare class DescribeVirtualMFADevicesResponse extends $tea.Model {
|
|
|
4706
5230
|
[key: string]: any;
|
|
4707
5231
|
});
|
|
4708
5232
|
}
|
|
4709
|
-
export declare class DescribeVulDetailsRequest extends $tea.Model {
|
|
4710
|
-
aliasName?: string;
|
|
4711
|
-
lang?: string;
|
|
4712
|
-
name?: string;
|
|
4713
|
-
regionId?: string;
|
|
4714
|
-
type?: string;
|
|
4715
|
-
static names(): {
|
|
4716
|
-
[key: string]: string;
|
|
4717
|
-
};
|
|
4718
|
-
static types(): {
|
|
4719
|
-
[key: string]: any;
|
|
4720
|
-
};
|
|
4721
|
-
constructor(map?: {
|
|
4722
|
-
[key: string]: any;
|
|
4723
|
-
});
|
|
4724
|
-
}
|
|
4725
|
-
export declare class DescribeVulDetailsResponseBody extends $tea.Model {
|
|
4726
|
-
cves?: DescribeVulDetailsResponseBodyCves[];
|
|
4727
|
-
requestId?: string;
|
|
4728
|
-
static names(): {
|
|
4729
|
-
[key: string]: string;
|
|
4730
|
-
};
|
|
4731
|
-
static types(): {
|
|
4732
|
-
[key: string]: any;
|
|
4733
|
-
};
|
|
4734
|
-
constructor(map?: {
|
|
4735
|
-
[key: string]: any;
|
|
4736
|
-
});
|
|
4737
|
-
}
|
|
4738
|
-
export declare class DescribeVulDetailsResponse extends $tea.Model {
|
|
4739
|
-
headers: {
|
|
4740
|
-
[key: string]: string;
|
|
4741
|
-
};
|
|
4742
|
-
statusCode: number;
|
|
4743
|
-
body: DescribeVulDetailsResponseBody;
|
|
4744
|
-
static names(): {
|
|
4745
|
-
[key: string]: string;
|
|
4746
|
-
};
|
|
4747
|
-
static types(): {
|
|
4748
|
-
[key: string]: any;
|
|
4749
|
-
};
|
|
4750
|
-
constructor(map?: {
|
|
4751
|
-
[key: string]: any;
|
|
4752
|
-
});
|
|
4753
|
-
}
|
|
4754
|
-
export declare class DescribeVulListRequest extends $tea.Model {
|
|
4755
|
-
aliasName?: string;
|
|
4756
|
-
currentPage?: number;
|
|
4757
|
-
dealed?: string;
|
|
4758
|
-
lang?: string;
|
|
4759
|
-
name?: string;
|
|
4760
|
-
necessity?: string;
|
|
4761
|
-
officeSiteId?: string;
|
|
4762
|
-
pageSize?: number;
|
|
4763
|
-
regionId?: string;
|
|
4764
|
-
type?: string;
|
|
4765
|
-
static names(): {
|
|
4766
|
-
[key: string]: string;
|
|
4767
|
-
};
|
|
4768
|
-
static types(): {
|
|
4769
|
-
[key: string]: any;
|
|
4770
|
-
};
|
|
4771
|
-
constructor(map?: {
|
|
4772
|
-
[key: string]: any;
|
|
4773
|
-
});
|
|
4774
|
-
}
|
|
4775
|
-
export declare class DescribeVulListResponseBody extends $tea.Model {
|
|
4776
|
-
currentPage?: number;
|
|
4777
|
-
pageSize?: number;
|
|
4778
|
-
requestId?: string;
|
|
4779
|
-
totalCount?: number;
|
|
4780
|
-
vulRecords?: DescribeVulListResponseBodyVulRecords[];
|
|
4781
|
-
static names(): {
|
|
4782
|
-
[key: string]: string;
|
|
4783
|
-
};
|
|
4784
|
-
static types(): {
|
|
4785
|
-
[key: string]: any;
|
|
4786
|
-
};
|
|
4787
|
-
constructor(map?: {
|
|
4788
|
-
[key: string]: any;
|
|
4789
|
-
});
|
|
4790
|
-
}
|
|
4791
|
-
export declare class DescribeVulListResponse extends $tea.Model {
|
|
4792
|
-
headers: {
|
|
4793
|
-
[key: string]: string;
|
|
4794
|
-
};
|
|
4795
|
-
statusCode: number;
|
|
4796
|
-
body: DescribeVulListResponseBody;
|
|
4797
|
-
static names(): {
|
|
4798
|
-
[key: string]: string;
|
|
4799
|
-
};
|
|
4800
|
-
static types(): {
|
|
4801
|
-
[key: string]: any;
|
|
4802
|
-
};
|
|
4803
|
-
constructor(map?: {
|
|
4804
|
-
[key: string]: any;
|
|
4805
|
-
});
|
|
4806
|
-
}
|
|
4807
|
-
export declare class DescribeVulOverviewRequest extends $tea.Model {
|
|
4808
|
-
regionId?: string;
|
|
4809
|
-
static names(): {
|
|
4810
|
-
[key: string]: string;
|
|
4811
|
-
};
|
|
4812
|
-
static types(): {
|
|
4813
|
-
[key: string]: any;
|
|
4814
|
-
};
|
|
4815
|
-
constructor(map?: {
|
|
4816
|
-
[key: string]: any;
|
|
4817
|
-
});
|
|
4818
|
-
}
|
|
4819
|
-
export declare class DescribeVulOverviewResponseBody extends $tea.Model {
|
|
4820
|
-
asapCount?: number;
|
|
4821
|
-
laterCount?: number;
|
|
4822
|
-
nntfCount?: number;
|
|
4823
|
-
requestId?: string;
|
|
4824
|
-
static names(): {
|
|
4825
|
-
[key: string]: string;
|
|
4826
|
-
};
|
|
4827
|
-
static types(): {
|
|
4828
|
-
[key: string]: any;
|
|
4829
|
-
};
|
|
4830
|
-
constructor(map?: {
|
|
4831
|
-
[key: string]: any;
|
|
4832
|
-
});
|
|
4833
|
-
}
|
|
4834
|
-
export declare class DescribeVulOverviewResponse extends $tea.Model {
|
|
4835
|
-
headers: {
|
|
4836
|
-
[key: string]: string;
|
|
4837
|
-
};
|
|
4838
|
-
statusCode: number;
|
|
4839
|
-
body: DescribeVulOverviewResponseBody;
|
|
4840
|
-
static names(): {
|
|
4841
|
-
[key: string]: string;
|
|
4842
|
-
};
|
|
4843
|
-
static types(): {
|
|
4844
|
-
[key: string]: any;
|
|
4845
|
-
};
|
|
4846
|
-
constructor(map?: {
|
|
4847
|
-
[key: string]: any;
|
|
4848
|
-
});
|
|
4849
|
-
}
|
|
4850
5233
|
export declare class DescribeZonesRequest extends $tea.Model {
|
|
4851
5234
|
regionId?: string;
|
|
4852
5235
|
zoneType?: string;
|
|
@@ -5216,15 +5599,59 @@ export declare class ExportDesktopListInfoResponse extends $tea.Model {
|
|
|
5216
5599
|
[key: string]: any;
|
|
5217
5600
|
});
|
|
5218
5601
|
}
|
|
5219
|
-
export declare class
|
|
5220
|
-
|
|
5221
|
-
|
|
5222
|
-
|
|
5223
|
-
|
|
5224
|
-
|
|
5225
|
-
|
|
5226
|
-
|
|
5227
|
-
|
|
5602
|
+
export declare class GetAsyncTaskRequest extends $tea.Model {
|
|
5603
|
+
asyncTaskId?: string;
|
|
5604
|
+
cdsId?: string;
|
|
5605
|
+
static names(): {
|
|
5606
|
+
[key: string]: string;
|
|
5607
|
+
};
|
|
5608
|
+
static types(): {
|
|
5609
|
+
[key: string]: any;
|
|
5610
|
+
};
|
|
5611
|
+
constructor(map?: {
|
|
5612
|
+
[key: string]: any;
|
|
5613
|
+
});
|
|
5614
|
+
}
|
|
5615
|
+
export declare class GetAsyncTaskResponseBody extends $tea.Model {
|
|
5616
|
+
code?: string;
|
|
5617
|
+
data?: GetAsyncTaskResponseBodyData;
|
|
5618
|
+
requestId?: string;
|
|
5619
|
+
success?: string;
|
|
5620
|
+
static names(): {
|
|
5621
|
+
[key: string]: string;
|
|
5622
|
+
};
|
|
5623
|
+
static types(): {
|
|
5624
|
+
[key: string]: any;
|
|
5625
|
+
};
|
|
5626
|
+
constructor(map?: {
|
|
5627
|
+
[key: string]: any;
|
|
5628
|
+
});
|
|
5629
|
+
}
|
|
5630
|
+
export declare class GetAsyncTaskResponse extends $tea.Model {
|
|
5631
|
+
headers: {
|
|
5632
|
+
[key: string]: string;
|
|
5633
|
+
};
|
|
5634
|
+
statusCode: number;
|
|
5635
|
+
body: GetAsyncTaskResponseBody;
|
|
5636
|
+
static names(): {
|
|
5637
|
+
[key: string]: string;
|
|
5638
|
+
};
|
|
5639
|
+
static types(): {
|
|
5640
|
+
[key: string]: any;
|
|
5641
|
+
};
|
|
5642
|
+
constructor(map?: {
|
|
5643
|
+
[key: string]: any;
|
|
5644
|
+
});
|
|
5645
|
+
}
|
|
5646
|
+
export declare class GetConnectionTicketRequest extends $tea.Model {
|
|
5647
|
+
commandContent?: string;
|
|
5648
|
+
desktopId?: string;
|
|
5649
|
+
endUserId?: string;
|
|
5650
|
+
ownerId?: number;
|
|
5651
|
+
password?: string;
|
|
5652
|
+
regionId?: string;
|
|
5653
|
+
resourceOwnerAccount?: string;
|
|
5654
|
+
resourceOwnerId?: number;
|
|
5228
5655
|
taskId?: string;
|
|
5229
5656
|
uuid?: string;
|
|
5230
5657
|
static names(): {
|
|
@@ -5268,6 +5695,54 @@ export declare class GetConnectionTicketResponse extends $tea.Model {
|
|
|
5268
5695
|
[key: string]: any;
|
|
5269
5696
|
});
|
|
5270
5697
|
}
|
|
5698
|
+
export declare class GetCoordinateTicketRequest extends $tea.Model {
|
|
5699
|
+
coId?: string;
|
|
5700
|
+
endUserId?: string;
|
|
5701
|
+
regionId?: string;
|
|
5702
|
+
taskId?: string;
|
|
5703
|
+
userType?: string;
|
|
5704
|
+
static names(): {
|
|
5705
|
+
[key: string]: string;
|
|
5706
|
+
};
|
|
5707
|
+
static types(): {
|
|
5708
|
+
[key: string]: any;
|
|
5709
|
+
};
|
|
5710
|
+
constructor(map?: {
|
|
5711
|
+
[key: string]: any;
|
|
5712
|
+
});
|
|
5713
|
+
}
|
|
5714
|
+
export declare class GetCoordinateTicketResponseBody extends $tea.Model {
|
|
5715
|
+
coId?: string;
|
|
5716
|
+
requestId?: string;
|
|
5717
|
+
taskId?: string;
|
|
5718
|
+
taskStatus?: string;
|
|
5719
|
+
ticket?: string;
|
|
5720
|
+
static names(): {
|
|
5721
|
+
[key: string]: string;
|
|
5722
|
+
};
|
|
5723
|
+
static types(): {
|
|
5724
|
+
[key: string]: any;
|
|
5725
|
+
};
|
|
5726
|
+
constructor(map?: {
|
|
5727
|
+
[key: string]: any;
|
|
5728
|
+
});
|
|
5729
|
+
}
|
|
5730
|
+
export declare class GetCoordinateTicketResponse extends $tea.Model {
|
|
5731
|
+
headers: {
|
|
5732
|
+
[key: string]: string;
|
|
5733
|
+
};
|
|
5734
|
+
statusCode: number;
|
|
5735
|
+
body: GetCoordinateTicketResponseBody;
|
|
5736
|
+
static names(): {
|
|
5737
|
+
[key: string]: string;
|
|
5738
|
+
};
|
|
5739
|
+
static types(): {
|
|
5740
|
+
[key: string]: any;
|
|
5741
|
+
};
|
|
5742
|
+
constructor(map?: {
|
|
5743
|
+
[key: string]: any;
|
|
5744
|
+
});
|
|
5745
|
+
}
|
|
5271
5746
|
export declare class GetDesktopGroupDetailRequest extends $tea.Model {
|
|
5272
5747
|
desktopGroupId?: string;
|
|
5273
5748
|
regionId?: string;
|
|
@@ -5395,11 +5870,9 @@ export declare class GetSpMetadataResponse extends $tea.Model {
|
|
|
5395
5870
|
[key: string]: any;
|
|
5396
5871
|
});
|
|
5397
5872
|
}
|
|
5398
|
-
export declare class
|
|
5399
|
-
|
|
5400
|
-
operationParams?: string;
|
|
5873
|
+
export declare class HibernateDesktopsRequest extends $tea.Model {
|
|
5874
|
+
desktopId?: string[];
|
|
5401
5875
|
regionId?: string;
|
|
5402
|
-
securityEvent?: HandleSecurityEventsRequestSecurityEvent[];
|
|
5403
5876
|
static names(): {
|
|
5404
5877
|
[key: string]: string;
|
|
5405
5878
|
};
|
|
@@ -5410,9 +5883,8 @@ export declare class HandleSecurityEventsRequest extends $tea.Model {
|
|
|
5410
5883
|
[key: string]: any;
|
|
5411
5884
|
});
|
|
5412
5885
|
}
|
|
5413
|
-
export declare class
|
|
5886
|
+
export declare class HibernateDesktopsResponseBody extends $tea.Model {
|
|
5414
5887
|
requestId?: string;
|
|
5415
|
-
taskId?: number;
|
|
5416
5888
|
static names(): {
|
|
5417
5889
|
[key: string]: string;
|
|
5418
5890
|
};
|
|
@@ -5423,12 +5895,12 @@ export declare class HandleSecurityEventsResponseBody extends $tea.Model {
|
|
|
5423
5895
|
[key: string]: any;
|
|
5424
5896
|
});
|
|
5425
5897
|
}
|
|
5426
|
-
export declare class
|
|
5898
|
+
export declare class HibernateDesktopsResponse extends $tea.Model {
|
|
5427
5899
|
headers: {
|
|
5428
5900
|
[key: string]: string;
|
|
5429
5901
|
};
|
|
5430
5902
|
statusCode: number;
|
|
5431
|
-
body:
|
|
5903
|
+
body: HibernateDesktopsResponseBody;
|
|
5432
5904
|
static names(): {
|
|
5433
5905
|
[key: string]: string;
|
|
5434
5906
|
};
|
|
@@ -5443,6 +5915,7 @@ export declare class ListCdsFilesRequest extends $tea.Model {
|
|
|
5443
5915
|
cdsId?: string;
|
|
5444
5916
|
endUserId?: string;
|
|
5445
5917
|
fileIds?: string[];
|
|
5918
|
+
groupId?: string;
|
|
5446
5919
|
maxResults?: number;
|
|
5447
5920
|
nextToken?: string;
|
|
5448
5921
|
orderType?: string;
|
|
@@ -5463,6 +5936,7 @@ export declare class ListCdsFilesShrinkRequest extends $tea.Model {
|
|
|
5463
5936
|
cdsId?: string;
|
|
5464
5937
|
endUserId?: string;
|
|
5465
5938
|
fileIdsShrink?: string;
|
|
5939
|
+
groupId?: string;
|
|
5466
5940
|
maxResults?: number;
|
|
5467
5941
|
nextToken?: string;
|
|
5468
5942
|
orderType?: string;
|
|
@@ -5564,6 +6038,7 @@ export declare class ListFilePermissionRequest extends $tea.Model {
|
|
|
5564
6038
|
cdsId?: string;
|
|
5565
6039
|
endUserId?: string;
|
|
5566
6040
|
fileId?: string;
|
|
6041
|
+
groupId?: string;
|
|
5567
6042
|
regionId?: string;
|
|
5568
6043
|
static names(): {
|
|
5569
6044
|
[key: string]: string;
|
|
@@ -5874,6 +6349,49 @@ export declare class MigrateDesktopsResponse extends $tea.Model {
|
|
|
5874
6349
|
[key: string]: any;
|
|
5875
6350
|
});
|
|
5876
6351
|
}
|
|
6352
|
+
export declare class MigrateImageProtocolRequest extends $tea.Model {
|
|
6353
|
+
imageId?: string[];
|
|
6354
|
+
regionId?: string;
|
|
6355
|
+
targetProtocolType?: string;
|
|
6356
|
+
static names(): {
|
|
6357
|
+
[key: string]: string;
|
|
6358
|
+
};
|
|
6359
|
+
static types(): {
|
|
6360
|
+
[key: string]: any;
|
|
6361
|
+
};
|
|
6362
|
+
constructor(map?: {
|
|
6363
|
+
[key: string]: any;
|
|
6364
|
+
});
|
|
6365
|
+
}
|
|
6366
|
+
export declare class MigrateImageProtocolResponseBody extends $tea.Model {
|
|
6367
|
+
failedIds?: string[];
|
|
6368
|
+
requestId?: string;
|
|
6369
|
+
static names(): {
|
|
6370
|
+
[key: string]: string;
|
|
6371
|
+
};
|
|
6372
|
+
static types(): {
|
|
6373
|
+
[key: string]: any;
|
|
6374
|
+
};
|
|
6375
|
+
constructor(map?: {
|
|
6376
|
+
[key: string]: any;
|
|
6377
|
+
});
|
|
6378
|
+
}
|
|
6379
|
+
export declare class MigrateImageProtocolResponse extends $tea.Model {
|
|
6380
|
+
headers: {
|
|
6381
|
+
[key: string]: string;
|
|
6382
|
+
};
|
|
6383
|
+
statusCode: number;
|
|
6384
|
+
body: MigrateImageProtocolResponseBody;
|
|
6385
|
+
static names(): {
|
|
6386
|
+
[key: string]: string;
|
|
6387
|
+
};
|
|
6388
|
+
static types(): {
|
|
6389
|
+
[key: string]: any;
|
|
6390
|
+
};
|
|
6391
|
+
constructor(map?: {
|
|
6392
|
+
[key: string]: any;
|
|
6393
|
+
});
|
|
6394
|
+
}
|
|
5877
6395
|
export declare class ModifyADConnectorDirectoryRequest extends $tea.Model {
|
|
5878
6396
|
adHostname?: string;
|
|
5879
6397
|
directoryId?: string;
|
|
@@ -5976,6 +6494,49 @@ export declare class ModifyADConnectorOfficeSiteResponse extends $tea.Model {
|
|
|
5976
6494
|
[key: string]: any;
|
|
5977
6495
|
});
|
|
5978
6496
|
}
|
|
6497
|
+
export declare class ModifyAclEntriesRequest extends $tea.Model {
|
|
6498
|
+
policy?: string;
|
|
6499
|
+
regionId?: string;
|
|
6500
|
+
sourceId?: string[];
|
|
6501
|
+
sourceType?: string;
|
|
6502
|
+
static names(): {
|
|
6503
|
+
[key: string]: string;
|
|
6504
|
+
};
|
|
6505
|
+
static types(): {
|
|
6506
|
+
[key: string]: any;
|
|
6507
|
+
};
|
|
6508
|
+
constructor(map?: {
|
|
6509
|
+
[key: string]: any;
|
|
6510
|
+
});
|
|
6511
|
+
}
|
|
6512
|
+
export declare class ModifyAclEntriesResponseBody extends $tea.Model {
|
|
6513
|
+
requestId?: string;
|
|
6514
|
+
static names(): {
|
|
6515
|
+
[key: string]: string;
|
|
6516
|
+
};
|
|
6517
|
+
static types(): {
|
|
6518
|
+
[key: string]: any;
|
|
6519
|
+
};
|
|
6520
|
+
constructor(map?: {
|
|
6521
|
+
[key: string]: any;
|
|
6522
|
+
});
|
|
6523
|
+
}
|
|
6524
|
+
export declare class ModifyAclEntriesResponse extends $tea.Model {
|
|
6525
|
+
headers: {
|
|
6526
|
+
[key: string]: string;
|
|
6527
|
+
};
|
|
6528
|
+
statusCode: number;
|
|
6529
|
+
body: ModifyAclEntriesResponseBody;
|
|
6530
|
+
static names(): {
|
|
6531
|
+
[key: string]: string;
|
|
6532
|
+
};
|
|
6533
|
+
static types(): {
|
|
6534
|
+
[key: string]: any;
|
|
6535
|
+
};
|
|
6536
|
+
constructor(map?: {
|
|
6537
|
+
[key: string]: any;
|
|
6538
|
+
});
|
|
6539
|
+
}
|
|
5979
6540
|
export declare class ModifyAutoSnapshotPolicyRequest extends $tea.Model {
|
|
5980
6541
|
cronExpression?: string;
|
|
5981
6542
|
policyId?: string;
|
|
@@ -6071,6 +6632,7 @@ export declare class ModifyCdsFileRequest extends $tea.Model {
|
|
|
6071
6632
|
endUserId?: string;
|
|
6072
6633
|
fileId?: string;
|
|
6073
6634
|
fileName?: string;
|
|
6635
|
+
groupId?: string;
|
|
6074
6636
|
regionId?: string;
|
|
6075
6637
|
static names(): {
|
|
6076
6638
|
[key: string]: string;
|
|
@@ -6266,6 +6828,50 @@ export declare class ModifyCloudDrivePermissionResponse extends $tea.Model {
|
|
|
6266
6828
|
[key: string]: any;
|
|
6267
6829
|
});
|
|
6268
6830
|
}
|
|
6831
|
+
export declare class ModifyCloudDriveUsersRequest extends $tea.Model {
|
|
6832
|
+
cdsId?: string;
|
|
6833
|
+
endUserId?: string[];
|
|
6834
|
+
regionId?: string;
|
|
6835
|
+
status?: string;
|
|
6836
|
+
userMaxSize?: number;
|
|
6837
|
+
static names(): {
|
|
6838
|
+
[key: string]: string;
|
|
6839
|
+
};
|
|
6840
|
+
static types(): {
|
|
6841
|
+
[key: string]: any;
|
|
6842
|
+
};
|
|
6843
|
+
constructor(map?: {
|
|
6844
|
+
[key: string]: any;
|
|
6845
|
+
});
|
|
6846
|
+
}
|
|
6847
|
+
export declare class ModifyCloudDriveUsersResponseBody extends $tea.Model {
|
|
6848
|
+
requestId?: string;
|
|
6849
|
+
static names(): {
|
|
6850
|
+
[key: string]: string;
|
|
6851
|
+
};
|
|
6852
|
+
static types(): {
|
|
6853
|
+
[key: string]: any;
|
|
6854
|
+
};
|
|
6855
|
+
constructor(map?: {
|
|
6856
|
+
[key: string]: any;
|
|
6857
|
+
});
|
|
6858
|
+
}
|
|
6859
|
+
export declare class ModifyCloudDriveUsersResponse extends $tea.Model {
|
|
6860
|
+
headers: {
|
|
6861
|
+
[key: string]: string;
|
|
6862
|
+
};
|
|
6863
|
+
statusCode: number;
|
|
6864
|
+
body: ModifyCloudDriveUsersResponseBody;
|
|
6865
|
+
static names(): {
|
|
6866
|
+
[key: string]: string;
|
|
6867
|
+
};
|
|
6868
|
+
static types(): {
|
|
6869
|
+
[key: string]: any;
|
|
6870
|
+
};
|
|
6871
|
+
constructor(map?: {
|
|
6872
|
+
[key: string]: any;
|
|
6873
|
+
});
|
|
6874
|
+
}
|
|
6269
6875
|
export declare class ModifyCustomizedListHeadersRequest extends $tea.Model {
|
|
6270
6876
|
headers?: ModifyCustomizedListHeadersRequestHeaders[];
|
|
6271
6877
|
listType?: string;
|
|
@@ -6316,6 +6922,7 @@ export declare class ModifyDesktopChargeTypeRequest extends $tea.Model {
|
|
|
6316
6922
|
periodUnit?: string;
|
|
6317
6923
|
promotionId?: string;
|
|
6318
6924
|
regionId?: string;
|
|
6925
|
+
useDuration?: number;
|
|
6319
6926
|
static names(): {
|
|
6320
6927
|
[key: string]: string;
|
|
6321
6928
|
};
|
|
@@ -6477,7 +7084,192 @@ export declare class ModifyDesktopNameRequest extends $tea.Model {
|
|
|
6477
7084
|
[key: string]: any;
|
|
6478
7085
|
});
|
|
6479
7086
|
}
|
|
6480
|
-
export declare class ModifyDesktopNameResponseBody extends $tea.Model {
|
|
7087
|
+
export declare class ModifyDesktopNameResponseBody extends $tea.Model {
|
|
7088
|
+
requestId?: string;
|
|
7089
|
+
static names(): {
|
|
7090
|
+
[key: string]: string;
|
|
7091
|
+
};
|
|
7092
|
+
static types(): {
|
|
7093
|
+
[key: string]: any;
|
|
7094
|
+
};
|
|
7095
|
+
constructor(map?: {
|
|
7096
|
+
[key: string]: any;
|
|
7097
|
+
});
|
|
7098
|
+
}
|
|
7099
|
+
export declare class ModifyDesktopNameResponse extends $tea.Model {
|
|
7100
|
+
headers: {
|
|
7101
|
+
[key: string]: string;
|
|
7102
|
+
};
|
|
7103
|
+
statusCode: number;
|
|
7104
|
+
body: ModifyDesktopNameResponseBody;
|
|
7105
|
+
static names(): {
|
|
7106
|
+
[key: string]: string;
|
|
7107
|
+
};
|
|
7108
|
+
static types(): {
|
|
7109
|
+
[key: string]: any;
|
|
7110
|
+
};
|
|
7111
|
+
constructor(map?: {
|
|
7112
|
+
[key: string]: any;
|
|
7113
|
+
});
|
|
7114
|
+
}
|
|
7115
|
+
export declare class ModifyDesktopOversoldGroupRequest extends $tea.Model {
|
|
7116
|
+
concurrenceCount?: number;
|
|
7117
|
+
description?: string;
|
|
7118
|
+
imageId?: string;
|
|
7119
|
+
name?: string;
|
|
7120
|
+
oversoldGroupId?: string;
|
|
7121
|
+
oversoldUserCount?: number;
|
|
7122
|
+
oversoldWarn?: number;
|
|
7123
|
+
policyGroupId?: string;
|
|
7124
|
+
stopDuration?: number;
|
|
7125
|
+
static names(): {
|
|
7126
|
+
[key: string]: string;
|
|
7127
|
+
};
|
|
7128
|
+
static types(): {
|
|
7129
|
+
[key: string]: any;
|
|
7130
|
+
};
|
|
7131
|
+
constructor(map?: {
|
|
7132
|
+
[key: string]: any;
|
|
7133
|
+
});
|
|
7134
|
+
}
|
|
7135
|
+
export declare class ModifyDesktopOversoldGroupResponseBody extends $tea.Model {
|
|
7136
|
+
data?: ModifyDesktopOversoldGroupResponseBodyData;
|
|
7137
|
+
requestId?: string;
|
|
7138
|
+
static names(): {
|
|
7139
|
+
[key: string]: string;
|
|
7140
|
+
};
|
|
7141
|
+
static types(): {
|
|
7142
|
+
[key: string]: any;
|
|
7143
|
+
};
|
|
7144
|
+
constructor(map?: {
|
|
7145
|
+
[key: string]: any;
|
|
7146
|
+
});
|
|
7147
|
+
}
|
|
7148
|
+
export declare class ModifyDesktopOversoldGroupResponse extends $tea.Model {
|
|
7149
|
+
headers: {
|
|
7150
|
+
[key: string]: string;
|
|
7151
|
+
};
|
|
7152
|
+
statusCode: number;
|
|
7153
|
+
body: ModifyDesktopOversoldGroupResponseBody;
|
|
7154
|
+
static names(): {
|
|
7155
|
+
[key: string]: string;
|
|
7156
|
+
};
|
|
7157
|
+
static types(): {
|
|
7158
|
+
[key: string]: any;
|
|
7159
|
+
};
|
|
7160
|
+
constructor(map?: {
|
|
7161
|
+
[key: string]: any;
|
|
7162
|
+
});
|
|
7163
|
+
}
|
|
7164
|
+
export declare class ModifyDesktopOversoldGroupSaleRequest extends $tea.Model {
|
|
7165
|
+
concurrenceCount?: number;
|
|
7166
|
+
oversoldGroupId?: string;
|
|
7167
|
+
oversoldUserCount?: number;
|
|
7168
|
+
static names(): {
|
|
7169
|
+
[key: string]: string;
|
|
7170
|
+
};
|
|
7171
|
+
static types(): {
|
|
7172
|
+
[key: string]: any;
|
|
7173
|
+
};
|
|
7174
|
+
constructor(map?: {
|
|
7175
|
+
[key: string]: any;
|
|
7176
|
+
});
|
|
7177
|
+
}
|
|
7178
|
+
export declare class ModifyDesktopOversoldGroupSaleResponseBody extends $tea.Model {
|
|
7179
|
+
data?: ModifyDesktopOversoldGroupSaleResponseBodyData;
|
|
7180
|
+
requestId?: string;
|
|
7181
|
+
static names(): {
|
|
7182
|
+
[key: string]: string;
|
|
7183
|
+
};
|
|
7184
|
+
static types(): {
|
|
7185
|
+
[key: string]: any;
|
|
7186
|
+
};
|
|
7187
|
+
constructor(map?: {
|
|
7188
|
+
[key: string]: any;
|
|
7189
|
+
});
|
|
7190
|
+
}
|
|
7191
|
+
export declare class ModifyDesktopOversoldGroupSaleResponse extends $tea.Model {
|
|
7192
|
+
headers: {
|
|
7193
|
+
[key: string]: string;
|
|
7194
|
+
};
|
|
7195
|
+
statusCode: number;
|
|
7196
|
+
body: ModifyDesktopOversoldGroupSaleResponseBody;
|
|
7197
|
+
static names(): {
|
|
7198
|
+
[key: string]: string;
|
|
7199
|
+
};
|
|
7200
|
+
static types(): {
|
|
7201
|
+
[key: string]: any;
|
|
7202
|
+
};
|
|
7203
|
+
constructor(map?: {
|
|
7204
|
+
[key: string]: any;
|
|
7205
|
+
});
|
|
7206
|
+
}
|
|
7207
|
+
export declare class ModifyDesktopOversoldUserGroupRequest extends $tea.Model {
|
|
7208
|
+
imageId?: string;
|
|
7209
|
+
name?: string;
|
|
7210
|
+
oversoldGroupId?: string;
|
|
7211
|
+
policyGroupId?: string;
|
|
7212
|
+
userGroupId?: string;
|
|
7213
|
+
static names(): {
|
|
7214
|
+
[key: string]: string;
|
|
7215
|
+
};
|
|
7216
|
+
static types(): {
|
|
7217
|
+
[key: string]: any;
|
|
7218
|
+
};
|
|
7219
|
+
constructor(map?: {
|
|
7220
|
+
[key: string]: any;
|
|
7221
|
+
});
|
|
7222
|
+
}
|
|
7223
|
+
export declare class ModifyDesktopOversoldUserGroupResponseBody extends $tea.Model {
|
|
7224
|
+
data?: ModifyDesktopOversoldUserGroupResponseBodyData;
|
|
7225
|
+
requestId?: string;
|
|
7226
|
+
static names(): {
|
|
7227
|
+
[key: string]: string;
|
|
7228
|
+
};
|
|
7229
|
+
static types(): {
|
|
7230
|
+
[key: string]: any;
|
|
7231
|
+
};
|
|
7232
|
+
constructor(map?: {
|
|
7233
|
+
[key: string]: any;
|
|
7234
|
+
});
|
|
7235
|
+
}
|
|
7236
|
+
export declare class ModifyDesktopOversoldUserGroupResponse extends $tea.Model {
|
|
7237
|
+
headers: {
|
|
7238
|
+
[key: string]: string;
|
|
7239
|
+
};
|
|
7240
|
+
statusCode: number;
|
|
7241
|
+
body: ModifyDesktopOversoldUserGroupResponseBody;
|
|
7242
|
+
static names(): {
|
|
7243
|
+
[key: string]: string;
|
|
7244
|
+
};
|
|
7245
|
+
static types(): {
|
|
7246
|
+
[key: string]: any;
|
|
7247
|
+
};
|
|
7248
|
+
constructor(map?: {
|
|
7249
|
+
[key: string]: any;
|
|
7250
|
+
});
|
|
7251
|
+
}
|
|
7252
|
+
export declare class ModifyDesktopSpecRequest extends $tea.Model {
|
|
7253
|
+
autoPay?: boolean;
|
|
7254
|
+
desktopId?: string;
|
|
7255
|
+
desktopType?: string;
|
|
7256
|
+
promotionId?: string;
|
|
7257
|
+
regionId?: string;
|
|
7258
|
+
rootDiskSizeGib?: number;
|
|
7259
|
+
userDiskPerformanceLevel?: string;
|
|
7260
|
+
userDiskSizeGib?: number;
|
|
7261
|
+
static names(): {
|
|
7262
|
+
[key: string]: string;
|
|
7263
|
+
};
|
|
7264
|
+
static types(): {
|
|
7265
|
+
[key: string]: any;
|
|
7266
|
+
};
|
|
7267
|
+
constructor(map?: {
|
|
7268
|
+
[key: string]: any;
|
|
7269
|
+
});
|
|
7270
|
+
}
|
|
7271
|
+
export declare class ModifyDesktopSpecResponseBody extends $tea.Model {
|
|
7272
|
+
orderId?: string;
|
|
6481
7273
|
requestId?: string;
|
|
6482
7274
|
static names(): {
|
|
6483
7275
|
[key: string]: string;
|
|
@@ -6489,12 +7281,12 @@ export declare class ModifyDesktopNameResponseBody extends $tea.Model {
|
|
|
6489
7281
|
[key: string]: any;
|
|
6490
7282
|
});
|
|
6491
7283
|
}
|
|
6492
|
-
export declare class
|
|
7284
|
+
export declare class ModifyDesktopSpecResponse extends $tea.Model {
|
|
6493
7285
|
headers: {
|
|
6494
7286
|
[key: string]: string;
|
|
6495
7287
|
};
|
|
6496
7288
|
statusCode: number;
|
|
6497
|
-
body:
|
|
7289
|
+
body: ModifyDesktopSpecResponseBody;
|
|
6498
7290
|
static names(): {
|
|
6499
7291
|
[key: string]: string;
|
|
6500
7292
|
};
|
|
@@ -6505,15 +7297,11 @@ export declare class ModifyDesktopNameResponse extends $tea.Model {
|
|
|
6505
7297
|
[key: string]: any;
|
|
6506
7298
|
});
|
|
6507
7299
|
}
|
|
6508
|
-
export declare class
|
|
6509
|
-
|
|
6510
|
-
|
|
6511
|
-
desktopType?: string;
|
|
6512
|
-
promotionId?: string;
|
|
7300
|
+
export declare class ModifyDesktopTimerRequest extends $tea.Model {
|
|
7301
|
+
desktopId?: string[];
|
|
7302
|
+
desktopTimers?: ModifyDesktopTimerRequestDesktopTimers[];
|
|
6513
7303
|
regionId?: string;
|
|
6514
|
-
|
|
6515
|
-
userDiskPerformanceLevel?: string;
|
|
6516
|
-
userDiskSizeGib?: number;
|
|
7304
|
+
useDesktopTimers?: boolean;
|
|
6517
7305
|
static names(): {
|
|
6518
7306
|
[key: string]: string;
|
|
6519
7307
|
};
|
|
@@ -6524,8 +7312,8 @@ export declare class ModifyDesktopSpecRequest extends $tea.Model {
|
|
|
6524
7312
|
[key: string]: any;
|
|
6525
7313
|
});
|
|
6526
7314
|
}
|
|
6527
|
-
export declare class
|
|
6528
|
-
|
|
7315
|
+
export declare class ModifyDesktopTimerResponseBody extends $tea.Model {
|
|
7316
|
+
desktopIds?: string[];
|
|
6529
7317
|
requestId?: string;
|
|
6530
7318
|
static names(): {
|
|
6531
7319
|
[key: string]: string;
|
|
@@ -6537,12 +7325,12 @@ export declare class ModifyDesktopSpecResponseBody extends $tea.Model {
|
|
|
6537
7325
|
[key: string]: any;
|
|
6538
7326
|
});
|
|
6539
7327
|
}
|
|
6540
|
-
export declare class
|
|
7328
|
+
export declare class ModifyDesktopTimerResponse extends $tea.Model {
|
|
6541
7329
|
headers: {
|
|
6542
7330
|
[key: string]: string;
|
|
6543
7331
|
};
|
|
6544
7332
|
statusCode: number;
|
|
6545
|
-
body:
|
|
7333
|
+
body: ModifyDesktopTimerResponseBody;
|
|
6546
7334
|
static names(): {
|
|
6547
7335
|
[key: string]: string;
|
|
6548
7336
|
};
|
|
@@ -7030,51 +7818,8 @@ export declare class ModifyOfficeSiteMfaEnabledResponse extends $tea.Model {
|
|
|
7030
7818
|
[key: string]: any;
|
|
7031
7819
|
});
|
|
7032
7820
|
}
|
|
7033
|
-
export declare class ModifyOperateVulRequest extends $tea.Model {
|
|
7034
|
-
operateType?: string;
|
|
7035
|
-
reason?: string;
|
|
7036
|
-
regionId?: string;
|
|
7037
|
-
type?: string;
|
|
7038
|
-
vulInfo?: ModifyOperateVulRequestVulInfo[];
|
|
7039
|
-
static names(): {
|
|
7040
|
-
[key: string]: string;
|
|
7041
|
-
};
|
|
7042
|
-
static types(): {
|
|
7043
|
-
[key: string]: any;
|
|
7044
|
-
};
|
|
7045
|
-
constructor(map?: {
|
|
7046
|
-
[key: string]: any;
|
|
7047
|
-
});
|
|
7048
|
-
}
|
|
7049
|
-
export declare class ModifyOperateVulResponseBody extends $tea.Model {
|
|
7050
|
-
requestId?: string;
|
|
7051
|
-
static names(): {
|
|
7052
|
-
[key: string]: string;
|
|
7053
|
-
};
|
|
7054
|
-
static types(): {
|
|
7055
|
-
[key: string]: any;
|
|
7056
|
-
};
|
|
7057
|
-
constructor(map?: {
|
|
7058
|
-
[key: string]: any;
|
|
7059
|
-
});
|
|
7060
|
-
}
|
|
7061
|
-
export declare class ModifyOperateVulResponse extends $tea.Model {
|
|
7062
|
-
headers: {
|
|
7063
|
-
[key: string]: string;
|
|
7064
|
-
};
|
|
7065
|
-
statusCode: number;
|
|
7066
|
-
body: ModifyOperateVulResponseBody;
|
|
7067
|
-
static names(): {
|
|
7068
|
-
[key: string]: string;
|
|
7069
|
-
};
|
|
7070
|
-
static types(): {
|
|
7071
|
-
[key: string]: any;
|
|
7072
|
-
};
|
|
7073
|
-
constructor(map?: {
|
|
7074
|
-
[key: string]: any;
|
|
7075
|
-
});
|
|
7076
|
-
}
|
|
7077
7821
|
export declare class ModifyPolicyGroupRequest extends $tea.Model {
|
|
7822
|
+
adminAccess?: string;
|
|
7078
7823
|
appContentProtection?: string;
|
|
7079
7824
|
authorizeAccessPolicyRule?: ModifyPolicyGroupRequestAuthorizeAccessPolicyRule[];
|
|
7080
7825
|
authorizeSecurityPolicyRule?: ModifyPolicyGroupRequestAuthorizeSecurityPolicyRule[];
|
|
@@ -7082,6 +7827,8 @@ export declare class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
7082
7827
|
clientType?: ModifyPolicyGroupRequestClientType[];
|
|
7083
7828
|
clipboard?: string;
|
|
7084
7829
|
domainList?: string;
|
|
7830
|
+
domainResolveRule?: ModifyPolicyGroupRequestDomainResolveRule[];
|
|
7831
|
+
domainResolveRuleType?: string;
|
|
7085
7832
|
endUserApplyAdminCoordinate?: string;
|
|
7086
7833
|
endUserGroupCoordinate?: string;
|
|
7087
7834
|
gpuAcceleration?: string;
|
|
@@ -7120,6 +7867,7 @@ export declare class ModifyPolicyGroupRequest extends $tea.Model {
|
|
|
7120
7867
|
watermarkFontSize?: number;
|
|
7121
7868
|
watermarkFontStyle?: string;
|
|
7122
7869
|
watermarkRowAmount?: number;
|
|
7870
|
+
watermarkSecurity?: string;
|
|
7123
7871
|
watermarkTransparency?: string;
|
|
7124
7872
|
watermarkTransparencyValue?: number;
|
|
7125
7873
|
watermarkType?: string;
|
|
@@ -7252,6 +8000,7 @@ export declare class MoveCdsFileRequest extends $tea.Model {
|
|
|
7252
8000
|
conflictPolicy?: string;
|
|
7253
8001
|
endUserId?: string;
|
|
7254
8002
|
fileId?: string;
|
|
8003
|
+
groupId?: string;
|
|
7255
8004
|
parentFolderId?: string;
|
|
7256
8005
|
regionId?: string;
|
|
7257
8006
|
static names(): {
|
|
@@ -7296,14 +8045,9 @@ export declare class MoveCdsFileResponse extends $tea.Model {
|
|
|
7296
8045
|
[key: string]: any;
|
|
7297
8046
|
});
|
|
7298
8047
|
}
|
|
7299
|
-
export declare class
|
|
8048
|
+
export declare class RebootDesktopsRequest extends $tea.Model {
|
|
7300
8049
|
desktopId?: string[];
|
|
7301
|
-
operateType?: string;
|
|
7302
|
-
precondition?: number;
|
|
7303
|
-
reason?: string;
|
|
7304
8050
|
regionId?: string;
|
|
7305
|
-
type?: string;
|
|
7306
|
-
vulName?: string[];
|
|
7307
8051
|
static names(): {
|
|
7308
8052
|
[key: string]: string;
|
|
7309
8053
|
};
|
|
@@ -7314,7 +8058,7 @@ export declare class OperateVulsRequest extends $tea.Model {
|
|
|
7314
8058
|
[key: string]: any;
|
|
7315
8059
|
});
|
|
7316
8060
|
}
|
|
7317
|
-
export declare class
|
|
8061
|
+
export declare class RebootDesktopsResponseBody extends $tea.Model {
|
|
7318
8062
|
requestId?: string;
|
|
7319
8063
|
static names(): {
|
|
7320
8064
|
[key: string]: string;
|
|
@@ -7326,12 +8070,12 @@ export declare class OperateVulsResponseBody extends $tea.Model {
|
|
|
7326
8070
|
[key: string]: any;
|
|
7327
8071
|
});
|
|
7328
8072
|
}
|
|
7329
|
-
export declare class
|
|
8073
|
+
export declare class RebootDesktopsResponse extends $tea.Model {
|
|
7330
8074
|
headers: {
|
|
7331
8075
|
[key: string]: string;
|
|
7332
8076
|
};
|
|
7333
8077
|
statusCode: number;
|
|
7334
|
-
body:
|
|
8078
|
+
body: RebootDesktopsResponseBody;
|
|
7335
8079
|
static names(): {
|
|
7336
8080
|
[key: string]: string;
|
|
7337
8081
|
};
|
|
@@ -7342,8 +8086,10 @@ export declare class OperateVulsResponse extends $tea.Model {
|
|
|
7342
8086
|
[key: string]: any;
|
|
7343
8087
|
});
|
|
7344
8088
|
}
|
|
7345
|
-
export declare class
|
|
8089
|
+
export declare class RebuildDesktopsRequest extends $tea.Model {
|
|
7346
8090
|
desktopId?: string[];
|
|
8091
|
+
imageId?: string;
|
|
8092
|
+
operateType?: string;
|
|
7347
8093
|
regionId?: string;
|
|
7348
8094
|
static names(): {
|
|
7349
8095
|
[key: string]: string;
|
|
@@ -7355,7 +8101,8 @@ export declare class RebootDesktopsRequest extends $tea.Model {
|
|
|
7355
8101
|
[key: string]: any;
|
|
7356
8102
|
});
|
|
7357
8103
|
}
|
|
7358
|
-
export declare class
|
|
8104
|
+
export declare class RebuildDesktopsResponseBody extends $tea.Model {
|
|
8105
|
+
rebuildResults?: RebuildDesktopsResponseBodyRebuildResults[];
|
|
7359
8106
|
requestId?: string;
|
|
7360
8107
|
static names(): {
|
|
7361
8108
|
[key: string]: string;
|
|
@@ -7367,12 +8114,12 @@ export declare class RebootDesktopsResponseBody extends $tea.Model {
|
|
|
7367
8114
|
[key: string]: any;
|
|
7368
8115
|
});
|
|
7369
8116
|
}
|
|
7370
|
-
export declare class
|
|
8117
|
+
export declare class RebuildDesktopsResponse extends $tea.Model {
|
|
7371
8118
|
headers: {
|
|
7372
8119
|
[key: string]: string;
|
|
7373
8120
|
};
|
|
7374
8121
|
statusCode: number;
|
|
7375
|
-
body:
|
|
8122
|
+
body: RebuildDesktopsResponseBody;
|
|
7376
8123
|
static names(): {
|
|
7377
8124
|
[key: string]: string;
|
|
7378
8125
|
};
|
|
@@ -7383,9 +8130,12 @@ export declare class RebootDesktopsResponse extends $tea.Model {
|
|
|
7383
8130
|
[key: string]: any;
|
|
7384
8131
|
});
|
|
7385
8132
|
}
|
|
7386
|
-
export declare class
|
|
7387
|
-
|
|
7388
|
-
|
|
8133
|
+
export declare class RemoveFilePermissionRequest extends $tea.Model {
|
|
8134
|
+
cdsId?: string;
|
|
8135
|
+
endUserId?: string;
|
|
8136
|
+
fileId?: string;
|
|
8137
|
+
groupId?: string;
|
|
8138
|
+
memberList?: RemoveFilePermissionRequestMemberList[];
|
|
7389
8139
|
regionId?: string;
|
|
7390
8140
|
static names(): {
|
|
7391
8141
|
[key: string]: string;
|
|
@@ -7397,8 +8147,24 @@ export declare class RebuildDesktopsRequest extends $tea.Model {
|
|
|
7397
8147
|
[key: string]: any;
|
|
7398
8148
|
});
|
|
7399
8149
|
}
|
|
7400
|
-
export declare class
|
|
7401
|
-
|
|
8150
|
+
export declare class RemoveFilePermissionShrinkRequest extends $tea.Model {
|
|
8151
|
+
cdsId?: string;
|
|
8152
|
+
endUserId?: string;
|
|
8153
|
+
fileId?: string;
|
|
8154
|
+
groupId?: string;
|
|
8155
|
+
memberListShrink?: string;
|
|
8156
|
+
regionId?: string;
|
|
8157
|
+
static names(): {
|
|
8158
|
+
[key: string]: string;
|
|
8159
|
+
};
|
|
8160
|
+
static types(): {
|
|
8161
|
+
[key: string]: any;
|
|
8162
|
+
};
|
|
8163
|
+
constructor(map?: {
|
|
8164
|
+
[key: string]: any;
|
|
8165
|
+
});
|
|
8166
|
+
}
|
|
8167
|
+
export declare class RemoveFilePermissionResponseBody extends $tea.Model {
|
|
7402
8168
|
requestId?: string;
|
|
7403
8169
|
static names(): {
|
|
7404
8170
|
[key: string]: string;
|
|
@@ -7410,12 +8176,12 @@ export declare class RebuildDesktopsResponseBody extends $tea.Model {
|
|
|
7410
8176
|
[key: string]: any;
|
|
7411
8177
|
});
|
|
7412
8178
|
}
|
|
7413
|
-
export declare class
|
|
8179
|
+
export declare class RemoveFilePermissionResponse extends $tea.Model {
|
|
7414
8180
|
headers: {
|
|
7415
8181
|
[key: string]: string;
|
|
7416
8182
|
};
|
|
7417
8183
|
statusCode: number;
|
|
7418
|
-
body:
|
|
8184
|
+
body: RemoveFilePermissionResponseBody;
|
|
7419
8185
|
static names(): {
|
|
7420
8186
|
[key: string]: string;
|
|
7421
8187
|
};
|
|
@@ -7426,11 +8192,10 @@ export declare class RebuildDesktopsResponse extends $tea.Model {
|
|
|
7426
8192
|
[key: string]: any;
|
|
7427
8193
|
});
|
|
7428
8194
|
}
|
|
7429
|
-
export declare class
|
|
7430
|
-
|
|
7431
|
-
|
|
7432
|
-
|
|
7433
|
-
memberList?: RemoveFilePermissionRequestMemberList[];
|
|
8195
|
+
export declare class RemoveUserFromDesktopGroupRequest extends $tea.Model {
|
|
8196
|
+
desktopGroupId?: string;
|
|
8197
|
+
desktopGroupIds?: string[];
|
|
8198
|
+
endUserIds?: string[];
|
|
7434
8199
|
regionId?: string;
|
|
7435
8200
|
static names(): {
|
|
7436
8201
|
[key: string]: string;
|
|
@@ -7442,12 +8207,39 @@ export declare class RemoveFilePermissionRequest extends $tea.Model {
|
|
|
7442
8207
|
[key: string]: any;
|
|
7443
8208
|
});
|
|
7444
8209
|
}
|
|
7445
|
-
export declare class
|
|
7446
|
-
|
|
8210
|
+
export declare class RemoveUserFromDesktopGroupResponseBody extends $tea.Model {
|
|
8211
|
+
requestId?: string;
|
|
8212
|
+
static names(): {
|
|
8213
|
+
[key: string]: string;
|
|
8214
|
+
};
|
|
8215
|
+
static types(): {
|
|
8216
|
+
[key: string]: any;
|
|
8217
|
+
};
|
|
8218
|
+
constructor(map?: {
|
|
8219
|
+
[key: string]: any;
|
|
8220
|
+
});
|
|
8221
|
+
}
|
|
8222
|
+
export declare class RemoveUserFromDesktopGroupResponse extends $tea.Model {
|
|
8223
|
+
headers: {
|
|
8224
|
+
[key: string]: string;
|
|
8225
|
+
};
|
|
8226
|
+
statusCode: number;
|
|
8227
|
+
body: RemoveUserFromDesktopGroupResponseBody;
|
|
8228
|
+
static names(): {
|
|
8229
|
+
[key: string]: string;
|
|
8230
|
+
};
|
|
8231
|
+
static types(): {
|
|
8232
|
+
[key: string]: any;
|
|
8233
|
+
};
|
|
8234
|
+
constructor(map?: {
|
|
8235
|
+
[key: string]: any;
|
|
8236
|
+
});
|
|
8237
|
+
}
|
|
8238
|
+
export declare class RemoveUserFromDesktopOversoldUserGroupRequest extends $tea.Model {
|
|
7447
8239
|
endUserId?: string;
|
|
7448
|
-
|
|
7449
|
-
|
|
7450
|
-
|
|
8240
|
+
oversoldGroupId?: string;
|
|
8241
|
+
userDesktopId?: string;
|
|
8242
|
+
userGroupId?: string;
|
|
7451
8243
|
static names(): {
|
|
7452
8244
|
[key: string]: string;
|
|
7453
8245
|
};
|
|
@@ -7458,7 +8250,7 @@ export declare class RemoveFilePermissionShrinkRequest extends $tea.Model {
|
|
|
7458
8250
|
[key: string]: any;
|
|
7459
8251
|
});
|
|
7460
8252
|
}
|
|
7461
|
-
export declare class
|
|
8253
|
+
export declare class RemoveUserFromDesktopOversoldUserGroupResponseBody extends $tea.Model {
|
|
7462
8254
|
requestId?: string;
|
|
7463
8255
|
static names(): {
|
|
7464
8256
|
[key: string]: string;
|
|
@@ -7470,12 +8262,12 @@ export declare class RemoveFilePermissionResponseBody extends $tea.Model {
|
|
|
7470
8262
|
[key: string]: any;
|
|
7471
8263
|
});
|
|
7472
8264
|
}
|
|
7473
|
-
export declare class
|
|
8265
|
+
export declare class RemoveUserFromDesktopOversoldUserGroupResponse extends $tea.Model {
|
|
7474
8266
|
headers: {
|
|
7475
8267
|
[key: string]: string;
|
|
7476
8268
|
};
|
|
7477
8269
|
statusCode: number;
|
|
7478
|
-
body:
|
|
8270
|
+
body: RemoveUserFromDesktopOversoldUserGroupResponseBody;
|
|
7479
8271
|
static names(): {
|
|
7480
8272
|
[key: string]: string;
|
|
7481
8273
|
};
|
|
@@ -7486,11 +8278,10 @@ export declare class RemoveFilePermissionResponse extends $tea.Model {
|
|
|
7486
8278
|
[key: string]: any;
|
|
7487
8279
|
});
|
|
7488
8280
|
}
|
|
7489
|
-
export declare class
|
|
7490
|
-
|
|
7491
|
-
|
|
7492
|
-
|
|
7493
|
-
regionId?: string;
|
|
8281
|
+
export declare class RenewDesktopOversoldGroupRequest extends $tea.Model {
|
|
8282
|
+
oversoldGroupId?: string;
|
|
8283
|
+
period?: number;
|
|
8284
|
+
periodUnit?: string;
|
|
7494
8285
|
static names(): {
|
|
7495
8286
|
[key: string]: string;
|
|
7496
8287
|
};
|
|
@@ -7501,7 +8292,8 @@ export declare class RemoveUserFromDesktopGroupRequest extends $tea.Model {
|
|
|
7501
8292
|
[key: string]: any;
|
|
7502
8293
|
});
|
|
7503
8294
|
}
|
|
7504
|
-
export declare class
|
|
8295
|
+
export declare class RenewDesktopOversoldGroupResponseBody extends $tea.Model {
|
|
8296
|
+
data?: RenewDesktopOversoldGroupResponseBodyData;
|
|
7505
8297
|
requestId?: string;
|
|
7506
8298
|
static names(): {
|
|
7507
8299
|
[key: string]: string;
|
|
@@ -7513,12 +8305,12 @@ export declare class RemoveUserFromDesktopGroupResponseBody extends $tea.Model {
|
|
|
7513
8305
|
[key: string]: any;
|
|
7514
8306
|
});
|
|
7515
8307
|
}
|
|
7516
|
-
export declare class
|
|
8308
|
+
export declare class RenewDesktopOversoldGroupResponse extends $tea.Model {
|
|
7517
8309
|
headers: {
|
|
7518
8310
|
[key: string]: string;
|
|
7519
8311
|
};
|
|
7520
8312
|
statusCode: number;
|
|
7521
|
-
body:
|
|
8313
|
+
body: RenewDesktopOversoldGroupResponseBody;
|
|
7522
8314
|
static names(): {
|
|
7523
8315
|
[key: string]: string;
|
|
7524
8316
|
};
|
|
@@ -7792,48 +8584,6 @@ export declare class RevokeCoordinatePrivilegeResponse extends $tea.Model {
|
|
|
7792
8584
|
[key: string]: any;
|
|
7793
8585
|
});
|
|
7794
8586
|
}
|
|
7795
|
-
export declare class RollbackSuspEventQuaraFileRequest extends $tea.Model {
|
|
7796
|
-
desktopId?: string;
|
|
7797
|
-
quaraFieldId?: number;
|
|
7798
|
-
regionId?: string;
|
|
7799
|
-
static names(): {
|
|
7800
|
-
[key: string]: string;
|
|
7801
|
-
};
|
|
7802
|
-
static types(): {
|
|
7803
|
-
[key: string]: any;
|
|
7804
|
-
};
|
|
7805
|
-
constructor(map?: {
|
|
7806
|
-
[key: string]: any;
|
|
7807
|
-
});
|
|
7808
|
-
}
|
|
7809
|
-
export declare class RollbackSuspEventQuaraFileResponseBody extends $tea.Model {
|
|
7810
|
-
requestId?: string;
|
|
7811
|
-
static names(): {
|
|
7812
|
-
[key: string]: string;
|
|
7813
|
-
};
|
|
7814
|
-
static types(): {
|
|
7815
|
-
[key: string]: any;
|
|
7816
|
-
};
|
|
7817
|
-
constructor(map?: {
|
|
7818
|
-
[key: string]: any;
|
|
7819
|
-
});
|
|
7820
|
-
}
|
|
7821
|
-
export declare class RollbackSuspEventQuaraFileResponse extends $tea.Model {
|
|
7822
|
-
headers: {
|
|
7823
|
-
[key: string]: string;
|
|
7824
|
-
};
|
|
7825
|
-
statusCode: number;
|
|
7826
|
-
body: RollbackSuspEventQuaraFileResponseBody;
|
|
7827
|
-
static names(): {
|
|
7828
|
-
[key: string]: string;
|
|
7829
|
-
};
|
|
7830
|
-
static types(): {
|
|
7831
|
-
[key: string]: any;
|
|
7832
|
-
};
|
|
7833
|
-
constructor(map?: {
|
|
7834
|
-
[key: string]: any;
|
|
7835
|
-
});
|
|
7836
|
-
}
|
|
7837
8587
|
export declare class RunCommandRequest extends $tea.Model {
|
|
7838
8588
|
commandContent?: string;
|
|
7839
8589
|
contentEncoding?: string;
|
|
@@ -8180,55 +8930,12 @@ export declare class SetOfficeSiteSsoStatusResponse extends $tea.Model {
|
|
|
8180
8930
|
constructor(map?: {
|
|
8181
8931
|
[key: string]: any;
|
|
8182
8932
|
});
|
|
8183
|
-
}
|
|
8184
|
-
export declare class SetUserProfilePathRulesRequest extends $tea.Model {
|
|
8185
|
-
desktopGroupId?: string;
|
|
8186
|
-
regionId?: string;
|
|
8187
|
-
userProfilePathRule?: SetUserProfilePathRulesRequestUserProfilePathRule[];
|
|
8188
|
-
userProfileRuleType?: string;
|
|
8189
|
-
static names(): {
|
|
8190
|
-
[key: string]: string;
|
|
8191
|
-
};
|
|
8192
|
-
static types(): {
|
|
8193
|
-
[key: string]: any;
|
|
8194
|
-
};
|
|
8195
|
-
constructor(map?: {
|
|
8196
|
-
[key: string]: any;
|
|
8197
|
-
});
|
|
8198
|
-
}
|
|
8199
|
-
export declare class SetUserProfilePathRulesShrinkRequest extends $tea.Model {
|
|
8200
|
-
desktopGroupId?: string;
|
|
8201
|
-
regionId?: string;
|
|
8202
|
-
userProfilePathRuleShrink?: string;
|
|
8203
|
-
userProfileRuleType?: string;
|
|
8204
|
-
static names(): {
|
|
8205
|
-
[key: string]: string;
|
|
8206
|
-
};
|
|
8207
|
-
static types(): {
|
|
8208
|
-
[key: string]: any;
|
|
8209
|
-
};
|
|
8210
|
-
constructor(map?: {
|
|
8211
|
-
[key: string]: any;
|
|
8212
|
-
});
|
|
8213
|
-
}
|
|
8214
|
-
export declare class SetUserProfilePathRulesResponseBody extends $tea.Model {
|
|
8215
|
-
requestId?: string;
|
|
8216
|
-
static names(): {
|
|
8217
|
-
[key: string]: string;
|
|
8218
|
-
};
|
|
8219
|
-
static types(): {
|
|
8220
|
-
[key: string]: any;
|
|
8221
|
-
};
|
|
8222
|
-
constructor(map?: {
|
|
8223
|
-
[key: string]: any;
|
|
8224
|
-
});
|
|
8225
|
-
}
|
|
8226
|
-
export declare class SetUserProfilePathRulesResponse extends $tea.Model {
|
|
8227
|
-
headers: {
|
|
8228
|
-
[key: string]: string;
|
|
8229
|
-
};
|
|
8230
|
-
statusCode: number;
|
|
8231
|
-
body: SetUserProfilePathRulesResponseBody;
|
|
8933
|
+
}
|
|
8934
|
+
export declare class SetUserProfilePathRulesRequest extends $tea.Model {
|
|
8935
|
+
desktopGroupId?: string;
|
|
8936
|
+
regionId?: string;
|
|
8937
|
+
userProfilePathRule?: SetUserProfilePathRulesRequestUserProfilePathRule[];
|
|
8938
|
+
userProfileRuleType?: string;
|
|
8232
8939
|
static names(): {
|
|
8233
8940
|
[key: string]: string;
|
|
8234
8941
|
};
|
|
@@ -8239,9 +8946,11 @@ export declare class SetUserProfilePathRulesResponse extends $tea.Model {
|
|
|
8239
8946
|
[key: string]: any;
|
|
8240
8947
|
});
|
|
8241
8948
|
}
|
|
8242
|
-
export declare class
|
|
8243
|
-
|
|
8949
|
+
export declare class SetUserProfilePathRulesShrinkRequest extends $tea.Model {
|
|
8950
|
+
desktopGroupId?: string;
|
|
8244
8951
|
regionId?: string;
|
|
8952
|
+
userProfilePathRuleShrink?: string;
|
|
8953
|
+
userProfileRuleType?: string;
|
|
8245
8954
|
static names(): {
|
|
8246
8955
|
[key: string]: string;
|
|
8247
8956
|
};
|
|
@@ -8252,7 +8961,7 @@ export declare class StartDesktopsRequest extends $tea.Model {
|
|
|
8252
8961
|
[key: string]: any;
|
|
8253
8962
|
});
|
|
8254
8963
|
}
|
|
8255
|
-
export declare class
|
|
8964
|
+
export declare class SetUserProfilePathRulesResponseBody extends $tea.Model {
|
|
8256
8965
|
requestId?: string;
|
|
8257
8966
|
static names(): {
|
|
8258
8967
|
[key: string]: string;
|
|
@@ -8264,12 +8973,12 @@ export declare class StartDesktopsResponseBody extends $tea.Model {
|
|
|
8264
8973
|
[key: string]: any;
|
|
8265
8974
|
});
|
|
8266
8975
|
}
|
|
8267
|
-
export declare class
|
|
8976
|
+
export declare class SetUserProfilePathRulesResponse extends $tea.Model {
|
|
8268
8977
|
headers: {
|
|
8269
8978
|
[key: string]: string;
|
|
8270
8979
|
};
|
|
8271
8980
|
statusCode: number;
|
|
8272
|
-
body:
|
|
8981
|
+
body: SetUserProfilePathRulesResponseBody;
|
|
8273
8982
|
static names(): {
|
|
8274
8983
|
[key: string]: string;
|
|
8275
8984
|
};
|
|
@@ -8280,9 +8989,8 @@ export declare class StartDesktopsResponse extends $tea.Model {
|
|
|
8280
8989
|
[key: string]: any;
|
|
8281
8990
|
});
|
|
8282
8991
|
}
|
|
8283
|
-
export declare class
|
|
8992
|
+
export declare class StartDesktopsRequest extends $tea.Model {
|
|
8284
8993
|
desktopId?: string[];
|
|
8285
|
-
officeSiteId?: string[];
|
|
8286
8994
|
regionId?: string;
|
|
8287
8995
|
static names(): {
|
|
8288
8996
|
[key: string]: string;
|
|
@@ -8294,9 +9002,8 @@ export declare class StartVirusScanTaskRequest extends $tea.Model {
|
|
|
8294
9002
|
[key: string]: any;
|
|
8295
9003
|
});
|
|
8296
9004
|
}
|
|
8297
|
-
export declare class
|
|
9005
|
+
export declare class StartDesktopsResponseBody extends $tea.Model {
|
|
8298
9006
|
requestId?: string;
|
|
8299
|
-
scanTaskId?: number;
|
|
8300
9007
|
static names(): {
|
|
8301
9008
|
[key: string]: string;
|
|
8302
9009
|
};
|
|
@@ -8307,12 +9014,12 @@ export declare class StartVirusScanTaskResponseBody extends $tea.Model {
|
|
|
8307
9014
|
[key: string]: any;
|
|
8308
9015
|
});
|
|
8309
9016
|
}
|
|
8310
|
-
export declare class
|
|
9017
|
+
export declare class StartDesktopsResponse extends $tea.Model {
|
|
8311
9018
|
headers: {
|
|
8312
9019
|
[key: string]: string;
|
|
8313
9020
|
};
|
|
8314
9021
|
statusCode: number;
|
|
8315
|
-
body:
|
|
9022
|
+
body: StartDesktopsResponseBody;
|
|
8316
9023
|
static names(): {
|
|
8317
9024
|
[key: string]: string;
|
|
8318
9025
|
};
|
|
@@ -8675,6 +9382,47 @@ export declare class VerifyCenResponse extends $tea.Model {
|
|
|
8675
9382
|
[key: string]: any;
|
|
8676
9383
|
});
|
|
8677
9384
|
}
|
|
9385
|
+
export declare class WakeupDesktopsRequest extends $tea.Model {
|
|
9386
|
+
desktopId?: string[];
|
|
9387
|
+
regionId?: string;
|
|
9388
|
+
static names(): {
|
|
9389
|
+
[key: string]: string;
|
|
9390
|
+
};
|
|
9391
|
+
static types(): {
|
|
9392
|
+
[key: string]: any;
|
|
9393
|
+
};
|
|
9394
|
+
constructor(map?: {
|
|
9395
|
+
[key: string]: any;
|
|
9396
|
+
});
|
|
9397
|
+
}
|
|
9398
|
+
export declare class WakeupDesktopsResponseBody extends $tea.Model {
|
|
9399
|
+
requestId?: string;
|
|
9400
|
+
static names(): {
|
|
9401
|
+
[key: string]: string;
|
|
9402
|
+
};
|
|
9403
|
+
static types(): {
|
|
9404
|
+
[key: string]: any;
|
|
9405
|
+
};
|
|
9406
|
+
constructor(map?: {
|
|
9407
|
+
[key: string]: any;
|
|
9408
|
+
});
|
|
9409
|
+
}
|
|
9410
|
+
export declare class WakeupDesktopsResponse extends $tea.Model {
|
|
9411
|
+
headers: {
|
|
9412
|
+
[key: string]: string;
|
|
9413
|
+
};
|
|
9414
|
+
statusCode: number;
|
|
9415
|
+
body: WakeupDesktopsResponseBody;
|
|
9416
|
+
static names(): {
|
|
9417
|
+
[key: string]: string;
|
|
9418
|
+
};
|
|
9419
|
+
static types(): {
|
|
9420
|
+
[key: string]: any;
|
|
9421
|
+
};
|
|
9422
|
+
constructor(map?: {
|
|
9423
|
+
[key: string]: any;
|
|
9424
|
+
});
|
|
9425
|
+
}
|
|
8678
9426
|
export declare class FilePermissionMemberCdsIdentity extends $tea.Model {
|
|
8679
9427
|
id?: string;
|
|
8680
9428
|
type?: string;
|
|
@@ -8688,6 +9436,18 @@ export declare class FilePermissionMemberCdsIdentity extends $tea.Model {
|
|
|
8688
9436
|
[key: string]: any;
|
|
8689
9437
|
});
|
|
8690
9438
|
}
|
|
9439
|
+
export declare class AddDesktopOversoldUserGroupResponseBodyData extends $tea.Model {
|
|
9440
|
+
userGroupId?: string;
|
|
9441
|
+
static names(): {
|
|
9442
|
+
[key: string]: string;
|
|
9443
|
+
};
|
|
9444
|
+
static types(): {
|
|
9445
|
+
[key: string]: any;
|
|
9446
|
+
};
|
|
9447
|
+
constructor(map?: {
|
|
9448
|
+
[key: string]: any;
|
|
9449
|
+
});
|
|
9450
|
+
}
|
|
8691
9451
|
export declare class AddFilePermissionRequestMemberListCdsIdentity extends $tea.Model {
|
|
8692
9452
|
id?: string;
|
|
8693
9453
|
type?: string;
|
|
@@ -8791,6 +9551,19 @@ export declare class CreateCdsFileResponseBodyFileModel extends $tea.Model {
|
|
|
8791
9551
|
[key: string]: any;
|
|
8792
9552
|
});
|
|
8793
9553
|
}
|
|
9554
|
+
export declare class CreateDesktopOversoldGroupResponseBodyData extends $tea.Model {
|
|
9555
|
+
orderId?: number;
|
|
9556
|
+
oversoldGroupId?: string;
|
|
9557
|
+
static names(): {
|
|
9558
|
+
[key: string]: string;
|
|
9559
|
+
};
|
|
9560
|
+
static types(): {
|
|
9561
|
+
[key: string]: any;
|
|
9562
|
+
};
|
|
9563
|
+
constructor(map?: {
|
|
9564
|
+
[key: string]: any;
|
|
9565
|
+
});
|
|
9566
|
+
}
|
|
8794
9567
|
export declare class CreateDesktopsRequestBundleModels extends $tea.Model {
|
|
8795
9568
|
amount?: number;
|
|
8796
9569
|
bundleId?: string;
|
|
@@ -8809,6 +9582,24 @@ export declare class CreateDesktopsRequestBundleModels extends $tea.Model {
|
|
|
8809
9582
|
[key: string]: any;
|
|
8810
9583
|
});
|
|
8811
9584
|
}
|
|
9585
|
+
export declare class CreateDesktopsRequestDesktopTimers extends $tea.Model {
|
|
9586
|
+
allowClientSetting?: boolean;
|
|
9587
|
+
cronExpression?: string;
|
|
9588
|
+
enforce?: boolean;
|
|
9589
|
+
interval?: number;
|
|
9590
|
+
operationType?: string;
|
|
9591
|
+
resetType?: string;
|
|
9592
|
+
timerType?: string;
|
|
9593
|
+
static names(): {
|
|
9594
|
+
[key: string]: string;
|
|
9595
|
+
};
|
|
9596
|
+
static types(): {
|
|
9597
|
+
[key: string]: any;
|
|
9598
|
+
};
|
|
9599
|
+
constructor(map?: {
|
|
9600
|
+
[key: string]: any;
|
|
9601
|
+
});
|
|
9602
|
+
}
|
|
8812
9603
|
export declare class CreateDesktopsRequestTag extends $tea.Model {
|
|
8813
9604
|
key?: string;
|
|
8814
9605
|
value?: string;
|
|
@@ -8880,6 +9671,20 @@ export declare class CreatePolicyGroupRequestClientType extends $tea.Model {
|
|
|
8880
9671
|
[key: string]: any;
|
|
8881
9672
|
});
|
|
8882
9673
|
}
|
|
9674
|
+
export declare class CreatePolicyGroupRequestDomainResolveRule extends $tea.Model {
|
|
9675
|
+
description?: string;
|
|
9676
|
+
domain?: string;
|
|
9677
|
+
policy?: string;
|
|
9678
|
+
static names(): {
|
|
9679
|
+
[key: string]: string;
|
|
9680
|
+
};
|
|
9681
|
+
static types(): {
|
|
9682
|
+
[key: string]: any;
|
|
9683
|
+
};
|
|
9684
|
+
constructor(map?: {
|
|
9685
|
+
[key: string]: any;
|
|
9686
|
+
});
|
|
9687
|
+
}
|
|
8883
9688
|
export declare class CreatePolicyGroupRequestUsbSupplyRedirectRule extends $tea.Model {
|
|
8884
9689
|
description?: string;
|
|
8885
9690
|
deviceClass?: string;
|
|
@@ -8898,6 +9703,20 @@ export declare class CreatePolicyGroupRequestUsbSupplyRedirectRule extends $tea.
|
|
|
8898
9703
|
[key: string]: any;
|
|
8899
9704
|
});
|
|
8900
9705
|
}
|
|
9706
|
+
export declare class DescribeAclEntriesResponseBodyAclEntries extends $tea.Model {
|
|
9707
|
+
policy?: string;
|
|
9708
|
+
sourceId?: string;
|
|
9709
|
+
sourceType?: string;
|
|
9710
|
+
static names(): {
|
|
9711
|
+
[key: string]: string;
|
|
9712
|
+
};
|
|
9713
|
+
static types(): {
|
|
9714
|
+
[key: string]: any;
|
|
9715
|
+
};
|
|
9716
|
+
constructor(map?: {
|
|
9717
|
+
[key: string]: any;
|
|
9718
|
+
});
|
|
9719
|
+
}
|
|
8901
9720
|
export declare class DescribeAutoSnapshotPolicyResponseBodyAutoSnapshotPolicies extends $tea.Model {
|
|
8902
9721
|
creationTime?: string;
|
|
8903
9722
|
cronExpression?: string;
|
|
@@ -9056,12 +9875,28 @@ export declare class DescribeClientEventsResponseBodyEvents extends $tea.Model {
|
|
|
9056
9875
|
[key: string]: any;
|
|
9057
9876
|
});
|
|
9058
9877
|
}
|
|
9878
|
+
export declare class DescribeCloudDriveGroupsResponseBodyCloudDriveGroupsAdminUserInfos extends $tea.Model {
|
|
9879
|
+
endUserId?: string;
|
|
9880
|
+
nickName?: string;
|
|
9881
|
+
static names(): {
|
|
9882
|
+
[key: string]: string;
|
|
9883
|
+
};
|
|
9884
|
+
static types(): {
|
|
9885
|
+
[key: string]: any;
|
|
9886
|
+
};
|
|
9887
|
+
constructor(map?: {
|
|
9888
|
+
[key: string]: any;
|
|
9889
|
+
});
|
|
9890
|
+
}
|
|
9059
9891
|
export declare class DescribeCloudDriveGroupsResponseBodyCloudDriveGroups extends $tea.Model {
|
|
9892
|
+
adminUserIds?: string;
|
|
9893
|
+
adminUserInfos?: DescribeCloudDriveGroupsResponseBodyCloudDriveGroupsAdminUserInfos[];
|
|
9060
9894
|
createTime?: string;
|
|
9061
9895
|
directoryId?: string;
|
|
9062
9896
|
driveId?: string;
|
|
9063
9897
|
groupId?: string;
|
|
9064
9898
|
groupName?: string;
|
|
9899
|
+
orgId?: string;
|
|
9065
9900
|
status?: string;
|
|
9066
9901
|
totalSize?: number;
|
|
9067
9902
|
usedSize?: string;
|
|
@@ -9088,6 +9923,24 @@ export declare class DescribeCloudDrivePermissionsResponseBodyCloudDrivePermissi
|
|
|
9088
9923
|
[key: string]: any;
|
|
9089
9924
|
});
|
|
9090
9925
|
}
|
|
9926
|
+
export declare class DescribeCloudDriveUsersResponseBodyCloudDriveUsers extends $tea.Model {
|
|
9927
|
+
driveId?: string;
|
|
9928
|
+
endUserId?: string;
|
|
9929
|
+
status?: string;
|
|
9930
|
+
totalSize?: number;
|
|
9931
|
+
usedSize?: number;
|
|
9932
|
+
userId?: string;
|
|
9933
|
+
userName?: string;
|
|
9934
|
+
static names(): {
|
|
9935
|
+
[key: string]: string;
|
|
9936
|
+
};
|
|
9937
|
+
static types(): {
|
|
9938
|
+
[key: string]: any;
|
|
9939
|
+
};
|
|
9940
|
+
constructor(map?: {
|
|
9941
|
+
[key: string]: any;
|
|
9942
|
+
});
|
|
9943
|
+
}
|
|
9091
9944
|
export declare class DescribeCustomizedListHeadersResponseBodyHeaders extends $tea.Model {
|
|
9092
9945
|
displayType?: string;
|
|
9093
9946
|
headerKey?: string;
|
|
@@ -9102,49 +9955,146 @@ export declare class DescribeCustomizedListHeadersResponseBodyHeaders extends $t
|
|
|
9102
9955
|
[key: string]: any;
|
|
9103
9956
|
});
|
|
9104
9957
|
}
|
|
9105
|
-
export declare class
|
|
9106
|
-
|
|
9107
|
-
|
|
9108
|
-
|
|
9109
|
-
|
|
9110
|
-
|
|
9111
|
-
|
|
9112
|
-
|
|
9113
|
-
|
|
9114
|
-
|
|
9115
|
-
|
|
9116
|
-
|
|
9117
|
-
|
|
9118
|
-
|
|
9119
|
-
|
|
9120
|
-
|
|
9121
|
-
|
|
9958
|
+
export declare class DescribeDesktopGroupsResponseBodyDesktopGroupsCountPerStatus extends $tea.Model {
|
|
9959
|
+
count?: number;
|
|
9960
|
+
status?: string;
|
|
9961
|
+
static names(): {
|
|
9962
|
+
[key: string]: string;
|
|
9963
|
+
};
|
|
9964
|
+
static types(): {
|
|
9965
|
+
[key: string]: any;
|
|
9966
|
+
};
|
|
9967
|
+
constructor(map?: {
|
|
9968
|
+
[key: string]: any;
|
|
9969
|
+
});
|
|
9970
|
+
}
|
|
9971
|
+
export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $tea.Model {
|
|
9972
|
+
bindAmount?: number;
|
|
9973
|
+
buyDesktopsCount?: number;
|
|
9974
|
+
comments?: string;
|
|
9975
|
+
connectDuration?: number;
|
|
9976
|
+
countPerStatus?: DescribeDesktopGroupsResponseBodyDesktopGroupsCountPerStatus[];
|
|
9977
|
+
cpu?: number;
|
|
9978
|
+
createTime?: string;
|
|
9979
|
+
creator?: string;
|
|
9980
|
+
dataDiskCategory?: string;
|
|
9981
|
+
dataDiskSize?: string;
|
|
9982
|
+
desktopCount?: number;
|
|
9983
|
+
desktopGroupId?: string;
|
|
9984
|
+
desktopGroupName?: string;
|
|
9985
|
+
desktopType?: string;
|
|
9986
|
+
endUserCount?: number;
|
|
9987
|
+
expiredTime?: string;
|
|
9988
|
+
gpuCount?: number;
|
|
9989
|
+
gpuDriverVersion?: string;
|
|
9990
|
+
gpuSpec?: string;
|
|
9991
|
+
idleDisconnectDuration?: number;
|
|
9992
|
+
imageId?: string;
|
|
9993
|
+
keepDuration?: number;
|
|
9994
|
+
loadPolicy?: number;
|
|
9995
|
+
maxDesktopsCount?: number;
|
|
9996
|
+
memory?: number;
|
|
9997
|
+
minDesktopsCount?: number;
|
|
9998
|
+
officeSiteId?: string;
|
|
9999
|
+
officeSiteName?: string;
|
|
10000
|
+
officeSiteType?: string;
|
|
10001
|
+
osType?: string;
|
|
10002
|
+
ownBundleId?: string;
|
|
10003
|
+
ownBundleName?: string;
|
|
10004
|
+
ownType?: number;
|
|
10005
|
+
payType?: string;
|
|
10006
|
+
policyGroupId?: string;
|
|
10007
|
+
policyGroupName?: string;
|
|
10008
|
+
protocolType?: string;
|
|
10009
|
+
ratioThreshold?: number;
|
|
10010
|
+
resetType?: number;
|
|
10011
|
+
status?: number;
|
|
10012
|
+
stopDuration?: number;
|
|
10013
|
+
subnetId?: string;
|
|
10014
|
+
systemDiskCategory?: string;
|
|
10015
|
+
systemDiskSize?: number;
|
|
10016
|
+
version?: number;
|
|
10017
|
+
volumeEncryptionEnabled?: boolean;
|
|
10018
|
+
volumeEncryptionKey?: string;
|
|
10019
|
+
static names(): {
|
|
10020
|
+
[key: string]: string;
|
|
10021
|
+
};
|
|
10022
|
+
static types(): {
|
|
10023
|
+
[key: string]: any;
|
|
10024
|
+
};
|
|
10025
|
+
constructor(map?: {
|
|
10026
|
+
[key: string]: any;
|
|
10027
|
+
});
|
|
10028
|
+
}
|
|
10029
|
+
export declare class DescribeDesktopInfoResponseBodyDesktops extends $tea.Model {
|
|
10030
|
+
connectionStatus?: string;
|
|
10031
|
+
currentAppVersion?: string;
|
|
10032
|
+
desktopId?: string;
|
|
10033
|
+
desktopStatus?: string;
|
|
10034
|
+
managementFlag?: string[];
|
|
10035
|
+
newAppSize?: number;
|
|
10036
|
+
newAppVersion?: string;
|
|
10037
|
+
releaseNote?: string;
|
|
10038
|
+
startTime?: string;
|
|
10039
|
+
static names(): {
|
|
10040
|
+
[key: string]: string;
|
|
10041
|
+
};
|
|
10042
|
+
static types(): {
|
|
10043
|
+
[key: string]: any;
|
|
10044
|
+
};
|
|
10045
|
+
constructor(map?: {
|
|
10046
|
+
[key: string]: any;
|
|
10047
|
+
});
|
|
10048
|
+
}
|
|
10049
|
+
export declare class DescribeDesktopOversoldGroupResponseBodyData extends $tea.Model {
|
|
10050
|
+
concurrenceCount?: number;
|
|
10051
|
+
curConcurrenceCount?: number;
|
|
10052
|
+
dataDiskSize?: number;
|
|
10053
|
+
description?: string;
|
|
10054
|
+
desktopType?: string;
|
|
10055
|
+
directoryId?: string;
|
|
10056
|
+
expireTime?: string;
|
|
10057
|
+
imageId?: string;
|
|
10058
|
+
name?: string;
|
|
10059
|
+
oversoldGroupId?: string;
|
|
10060
|
+
oversoldUserCount?: number;
|
|
10061
|
+
oversoldWarn?: number;
|
|
10062
|
+
policyGroupId?: string;
|
|
10063
|
+
saleStatus?: string;
|
|
10064
|
+
status?: string;
|
|
10065
|
+
stopDuration?: number;
|
|
10066
|
+
systemDiskSize?: number;
|
|
10067
|
+
static names(): {
|
|
10068
|
+
[key: string]: string;
|
|
10069
|
+
};
|
|
10070
|
+
static types(): {
|
|
10071
|
+
[key: string]: any;
|
|
10072
|
+
};
|
|
10073
|
+
constructor(map?: {
|
|
10074
|
+
[key: string]: any;
|
|
10075
|
+
});
|
|
10076
|
+
}
|
|
10077
|
+
export declare class DescribeDesktopOversoldUserResponseBodyData extends $tea.Model {
|
|
10078
|
+
endUserId?: string;
|
|
10079
|
+
oversoldGroupId?: string;
|
|
10080
|
+
userDesktopId?: string;
|
|
10081
|
+
userGroupId?: string;
|
|
10082
|
+
static names(): {
|
|
10083
|
+
[key: string]: string;
|
|
10084
|
+
};
|
|
10085
|
+
static types(): {
|
|
10086
|
+
[key: string]: any;
|
|
10087
|
+
};
|
|
10088
|
+
constructor(map?: {
|
|
10089
|
+
[key: string]: any;
|
|
10090
|
+
});
|
|
10091
|
+
}
|
|
10092
|
+
export declare class DescribeDesktopOversoldUserGroupResponseBodyData extends $tea.Model {
|
|
9122
10093
|
imageId?: string;
|
|
9123
|
-
|
|
9124
|
-
|
|
9125
|
-
maxDesktopsCount?: number;
|
|
9126
|
-
memory?: number;
|
|
9127
|
-
minDesktopsCount?: number;
|
|
9128
|
-
officeSiteId?: string;
|
|
9129
|
-
officeSiteName?: string;
|
|
9130
|
-
officeSiteType?: string;
|
|
9131
|
-
osType?: string;
|
|
9132
|
-
ownBundleId?: string;
|
|
9133
|
-
ownBundleName?: string;
|
|
9134
|
-
ownType?: number;
|
|
9135
|
-
payType?: string;
|
|
10094
|
+
name?: string;
|
|
10095
|
+
oversoldGroupId?: string;
|
|
9136
10096
|
policyGroupId?: string;
|
|
9137
|
-
|
|
9138
|
-
protocolType?: string;
|
|
9139
|
-
ratioThreshold?: number;
|
|
9140
|
-
resetType?: number;
|
|
9141
|
-
status?: number;
|
|
9142
|
-
stopDuration?: number;
|
|
9143
|
-
systemDiskCategory?: string;
|
|
9144
|
-
systemDiskSize?: number;
|
|
9145
|
-
version?: number;
|
|
9146
|
-
volumeEncryptionEnabled?: boolean;
|
|
9147
|
-
volumeEncryptionKey?: string;
|
|
10097
|
+
userGroupId?: string;
|
|
9148
10098
|
static names(): {
|
|
9149
10099
|
[key: string]: string;
|
|
9150
10100
|
};
|
|
@@ -9155,9 +10105,24 @@ export declare class DescribeDesktopGroupsResponseBodyDesktopGroups extends $tea
|
|
|
9155
10105
|
[key: string]: any;
|
|
9156
10106
|
});
|
|
9157
10107
|
}
|
|
9158
|
-
export declare class
|
|
10108
|
+
export declare class DescribeDesktopSessionsResponseBodySessions extends $tea.Model {
|
|
10109
|
+
clientIp?: string;
|
|
10110
|
+
clientOS?: string;
|
|
10111
|
+
clientVersion?: string;
|
|
9159
10112
|
desktopId?: string;
|
|
9160
10113
|
desktopName?: string;
|
|
10114
|
+
endUserApplyCoordinateTime?: number;
|
|
10115
|
+
endUserId?: string;
|
|
10116
|
+
latestConnectionTime?: number;
|
|
10117
|
+
officeSiteId?: string;
|
|
10118
|
+
officeSiteName?: string;
|
|
10119
|
+
osType?: string;
|
|
10120
|
+
protocolType?: string;
|
|
10121
|
+
sessionEndTime?: string;
|
|
10122
|
+
sessionIdleTime?: number;
|
|
10123
|
+
sessionStartTime?: string;
|
|
10124
|
+
sessionStatus?: string;
|
|
10125
|
+
totalConnectionTime?: number;
|
|
9161
10126
|
static names(): {
|
|
9162
10127
|
[key: string]: string;
|
|
9163
10128
|
};
|
|
@@ -9220,6 +10185,8 @@ export declare class DescribeDesktopsResponseBodyDesktopsFotaUpdate extends $tea
|
|
|
9220
10185
|
currentAppVersion?: string;
|
|
9221
10186
|
newAppVersion?: string;
|
|
9222
10187
|
releaseNote?: string;
|
|
10188
|
+
releaseNoteEn?: string;
|
|
10189
|
+
releaseNoteJp?: string;
|
|
9223
10190
|
size?: number;
|
|
9224
10191
|
static names(): {
|
|
9225
10192
|
[key: string]: string;
|
|
@@ -9285,10 +10252,12 @@ export declare class DescribeDesktopsResponseBodyDesktops extends $tea.Model {
|
|
|
9285
10252
|
gpuCount?: number;
|
|
9286
10253
|
gpuDriverVersion?: string;
|
|
9287
10254
|
gpuSpec?: string;
|
|
10255
|
+
hibernationBeta?: boolean;
|
|
9288
10256
|
hibernationOptionsConfigured?: boolean;
|
|
9289
10257
|
hostName?: string;
|
|
9290
10258
|
imageId?: string;
|
|
9291
10259
|
managementFlag?: string;
|
|
10260
|
+
managementFlags?: string[];
|
|
9292
10261
|
memory?: number;
|
|
9293
10262
|
networkInterfaceId?: string;
|
|
9294
10263
|
networkInterfaceIp?: string;
|
|
@@ -9507,12 +10476,26 @@ export declare class DescribeFlowStatisticResponseBodyDesktopFlowStatistic exten
|
|
|
9507
10476
|
[key: string]: any;
|
|
9508
10477
|
});
|
|
9509
10478
|
}
|
|
10479
|
+
export declare class DescribeFotaPendingDesktopsResponseBodyFotaPendingDesktopsSessions extends $tea.Model {
|
|
10480
|
+
endUserId?: string;
|
|
10481
|
+
static names(): {
|
|
10482
|
+
[key: string]: string;
|
|
10483
|
+
};
|
|
10484
|
+
static types(): {
|
|
10485
|
+
[key: string]: any;
|
|
10486
|
+
};
|
|
10487
|
+
constructor(map?: {
|
|
10488
|
+
[key: string]: any;
|
|
10489
|
+
});
|
|
10490
|
+
}
|
|
9510
10491
|
export declare class DescribeFotaPendingDesktopsResponseBodyFotaPendingDesktops extends $tea.Model {
|
|
9511
10492
|
currentAppVersion?: string;
|
|
9512
10493
|
desktopId?: string;
|
|
9513
10494
|
desktopName?: string;
|
|
9514
10495
|
fotaProject?: string;
|
|
9515
10496
|
officeSiteId?: string;
|
|
10497
|
+
sessions?: DescribeFotaPendingDesktopsResponseBodyFotaPendingDesktopsSessions[];
|
|
10498
|
+
status?: number;
|
|
9516
10499
|
static names(): {
|
|
9517
10500
|
[key: string]: string;
|
|
9518
10501
|
};
|
|
@@ -9543,36 +10526,15 @@ export declare class DescribeFotaTasksResponseBodyFotaTasks extends $tea.Model {
|
|
|
9543
10526
|
[key: string]: any;
|
|
9544
10527
|
});
|
|
9545
10528
|
}
|
|
9546
|
-
export declare class
|
|
9547
|
-
|
|
9548
|
-
|
|
9549
|
-
|
|
9550
|
-
|
|
9551
|
-
|
|
9552
|
-
|
|
9553
|
-
|
|
9554
|
-
|
|
9555
|
-
};
|
|
9556
|
-
constructor(map?: {
|
|
9557
|
-
[key: string]: any;
|
|
9558
|
-
});
|
|
9559
|
-
}
|
|
9560
|
-
export declare class DescribeFrontVulPatchListResponseBodyFrontPatchListPatchList extends $tea.Model {
|
|
9561
|
-
aliasName?: string;
|
|
9562
|
-
name?: string;
|
|
9563
|
-
static names(): {
|
|
9564
|
-
[key: string]: string;
|
|
9565
|
-
};
|
|
9566
|
-
static types(): {
|
|
9567
|
-
[key: string]: any;
|
|
9568
|
-
};
|
|
9569
|
-
constructor(map?: {
|
|
9570
|
-
[key: string]: any;
|
|
9571
|
-
});
|
|
9572
|
-
}
|
|
9573
|
-
export declare class DescribeFrontVulPatchListResponseBodyFrontPatchList extends $tea.Model {
|
|
9574
|
-
desktopId?: string;
|
|
9575
|
-
patchList?: DescribeFrontVulPatchListResponseBodyFrontPatchListPatchList[];
|
|
10529
|
+
export declare class DescribeGuestApplicationsResponseBodyApplicationsProcessData extends $tea.Model {
|
|
10530
|
+
applicationName?: string;
|
|
10531
|
+
applicationVersion?: string;
|
|
10532
|
+
cpuPercent?: number;
|
|
10533
|
+
gpuPercent?: number;
|
|
10534
|
+
iospeed?: number;
|
|
10535
|
+
memPercent?: number;
|
|
10536
|
+
pid?: number;
|
|
10537
|
+
processPath?: string;
|
|
9576
10538
|
static names(): {
|
|
9577
10539
|
[key: string]: string;
|
|
9578
10540
|
};
|
|
@@ -9583,16 +10545,18 @@ export declare class DescribeFrontVulPatchListResponseBodyFrontPatchList extends
|
|
|
9583
10545
|
[key: string]: any;
|
|
9584
10546
|
});
|
|
9585
10547
|
}
|
|
9586
|
-
export declare class
|
|
9587
|
-
|
|
9588
|
-
|
|
9589
|
-
|
|
9590
|
-
|
|
9591
|
-
|
|
9592
|
-
|
|
9593
|
-
|
|
9594
|
-
|
|
9595
|
-
|
|
10548
|
+
export declare class DescribeGuestApplicationsResponseBodyApplications extends $tea.Model {
|
|
10549
|
+
applicationName?: string;
|
|
10550
|
+
applicationVersion?: string;
|
|
10551
|
+
cpuPercent?: number;
|
|
10552
|
+
gpuPercent?: number;
|
|
10553
|
+
iconUrl?: string;
|
|
10554
|
+
ioSpeed?: number;
|
|
10555
|
+
memPercent?: number;
|
|
10556
|
+
pid?: number;
|
|
10557
|
+
processData?: DescribeGuestApplicationsResponseBodyApplicationsProcessData[];
|
|
10558
|
+
processPath?: string;
|
|
10559
|
+
status?: string;
|
|
9596
10560
|
static names(): {
|
|
9597
10561
|
[key: string]: string;
|
|
9598
10562
|
};
|
|
@@ -9655,6 +10619,7 @@ export declare class DescribeImagesResponseBodyImages extends $tea.Model {
|
|
|
9655
10619
|
export declare class DescribeInvocationsResponseBodyInvocationsInvokeDesktops extends $tea.Model {
|
|
9656
10620
|
creationTime?: string;
|
|
9657
10621
|
desktopId?: string;
|
|
10622
|
+
desktopName?: string;
|
|
9658
10623
|
dropped?: number;
|
|
9659
10624
|
errorCode?: string;
|
|
9660
10625
|
errorInfo?: string;
|
|
@@ -9754,6 +10719,7 @@ export declare class DescribeNASFileSystemsResponseBodyFileSystems extends $tea.
|
|
|
9754
10719
|
}
|
|
9755
10720
|
export declare class DescribeNetworkPackagesResponseBodyNetworkPackages extends $tea.Model {
|
|
9756
10721
|
bandwidth?: number;
|
|
10722
|
+
businessStatus?: string;
|
|
9757
10723
|
createTime?: string;
|
|
9758
10724
|
eipAddresses?: string[];
|
|
9759
10725
|
expiredTime?: string;
|
|
@@ -9813,6 +10779,7 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSites extends $tea.Mod
|
|
|
9813
10779
|
ADConnectors?: DescribeOfficeSitesResponseBodyOfficeSitesADConnectors[];
|
|
9814
10780
|
adHostname?: string;
|
|
9815
10781
|
bandwidth?: number;
|
|
10782
|
+
cenAttachStatus?: string;
|
|
9816
10783
|
cenId?: string;
|
|
9817
10784
|
cidrBlock?: string;
|
|
9818
10785
|
cloudBoxOfficeSite?: boolean;
|
|
@@ -9848,6 +10815,8 @@ export declare class DescribeOfficeSitesResponseBodyOfficeSites extends $tea.Mod
|
|
|
9848
10815
|
status?: string;
|
|
9849
10816
|
subDnsAddress?: string[];
|
|
9850
10817
|
subDomainName?: string;
|
|
10818
|
+
totalEdsCount?: number;
|
|
10819
|
+
totalEdsCountForGroup?: number;
|
|
9851
10820
|
trustPassword?: string;
|
|
9852
10821
|
vSwitchIds?: string[];
|
|
9853
10822
|
vpcId?: string;
|
|
@@ -9922,6 +10891,7 @@ export declare class DescribePolicyGroupsResponseBodyDescribePolicyGroupsDomainR
|
|
|
9922
10891
|
}
|
|
9923
10892
|
export declare class DescribePolicyGroupsResponseBodyDescribePolicyGroupsNetRedirectRule extends $tea.Model {
|
|
9924
10893
|
domain?: string;
|
|
10894
|
+
policy?: string;
|
|
9925
10895
|
ruleType?: string;
|
|
9926
10896
|
static names(): {
|
|
9927
10897
|
[key: string]: string;
|
|
@@ -9952,12 +10922,19 @@ export declare class DescribePolicyGroupsResponseBodyDescribePolicyGroupsUsbSupp
|
|
|
9952
10922
|
});
|
|
9953
10923
|
}
|
|
9954
10924
|
export declare class DescribePolicyGroupsResponseBodyDescribePolicyGroups extends $tea.Model {
|
|
10925
|
+
adminAccess?: string;
|
|
9955
10926
|
appContentProtection?: string;
|
|
9956
10927
|
authorizeAccessPolicyRules?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsAuthorizeAccessPolicyRules[];
|
|
9957
10928
|
authorizeSecurityPolicyRules?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsAuthorizeSecurityPolicyRules[];
|
|
9958
10929
|
cameraRedirect?: string;
|
|
9959
10930
|
clientTypes?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsClientTypes[];
|
|
9960
10931
|
clipboard?: string;
|
|
10932
|
+
cpuDownGradeDuration?: number;
|
|
10933
|
+
cpuProcessors?: string[];
|
|
10934
|
+
cpuProtectedMode?: string;
|
|
10935
|
+
cpuRateLimit?: number;
|
|
10936
|
+
cpuSampleDuration?: number;
|
|
10937
|
+
cpuSingleRateLimit?: number;
|
|
9961
10938
|
domainList?: string;
|
|
9962
10939
|
domainResolveRule?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsDomainResolveRule[];
|
|
9963
10940
|
domainResolveRuleType?: string;
|
|
@@ -9969,6 +10946,12 @@ export declare class DescribePolicyGroupsResponseBodyDescribePolicyGroups extend
|
|
|
9969
10946
|
html5FileTransfer?: string;
|
|
9970
10947
|
internetCommunicationProtocol?: string;
|
|
9971
10948
|
localDrive?: string;
|
|
10949
|
+
memoryDownGradeDuration?: number;
|
|
10950
|
+
memoryProcessors?: string[];
|
|
10951
|
+
memoryProtectedMode?: string;
|
|
10952
|
+
memoryRateLimit?: number;
|
|
10953
|
+
memorySampleDuration?: number;
|
|
10954
|
+
memorySingleRateLimit?: number;
|
|
9972
10955
|
name?: string;
|
|
9973
10956
|
netRedirect?: string;
|
|
9974
10957
|
netRedirectRule?: DescribePolicyGroupsResponseBodyDescribePolicyGroupsNetRedirectRule[];
|
|
@@ -10001,6 +10984,7 @@ export declare class DescribePolicyGroupsResponseBodyDescribePolicyGroups extend
|
|
|
10001
10984
|
watermarkFontSize?: number;
|
|
10002
10985
|
watermarkFontStyle?: string;
|
|
10003
10986
|
watermarkRowAmount?: number;
|
|
10987
|
+
watermarkSecurity?: string;
|
|
10004
10988
|
watermarkTransparency?: string;
|
|
10005
10989
|
watermarkTransparencyValue?: number;
|
|
10006
10990
|
watermarkType?: string;
|
|
@@ -10014,10 +10998,10 @@ export declare class DescribePolicyGroupsResponseBodyDescribePolicyGroups extend
|
|
|
10014
10998
|
[key: string]: any;
|
|
10015
10999
|
});
|
|
10016
11000
|
}
|
|
10017
|
-
export declare class
|
|
10018
|
-
|
|
10019
|
-
|
|
10020
|
-
|
|
11001
|
+
export declare class DescribePriceRequestBundleModels extends $tea.Model {
|
|
11002
|
+
amount?: number;
|
|
11003
|
+
bundleId?: string;
|
|
11004
|
+
duration?: number;
|
|
10021
11005
|
static names(): {
|
|
10022
11006
|
[key: string]: string;
|
|
10023
11007
|
};
|
|
@@ -10028,10 +11012,12 @@ export declare class DescribeRegionsResponseBodyRegions extends $tea.Model {
|
|
|
10028
11012
|
[key: string]: any;
|
|
10029
11013
|
});
|
|
10030
11014
|
}
|
|
10031
|
-
export declare class
|
|
10032
|
-
|
|
10033
|
-
|
|
10034
|
-
|
|
11015
|
+
export declare class DescribePriceResponseBodyPriceInfoPricePromotions extends $tea.Model {
|
|
11016
|
+
optionCode?: string;
|
|
11017
|
+
promotionDesc?: string;
|
|
11018
|
+
promotionId?: string;
|
|
11019
|
+
promotionName?: string;
|
|
11020
|
+
selected?: boolean;
|
|
10035
11021
|
static names(): {
|
|
10036
11022
|
[key: string]: string;
|
|
10037
11023
|
};
|
|
@@ -10042,10 +11028,16 @@ export declare class DescribeSecurityEventOperationStatusResponseBodySecurityEve
|
|
|
10042
11028
|
[key: string]: any;
|
|
10043
11029
|
});
|
|
10044
11030
|
}
|
|
10045
|
-
export declare class
|
|
10046
|
-
|
|
10047
|
-
|
|
10048
|
-
|
|
11031
|
+
export declare class DescribePriceResponseBodyPriceInfoPrice extends $tea.Model {
|
|
11032
|
+
currency?: string;
|
|
11033
|
+
discountPrice?: number;
|
|
11034
|
+
orderLines?: {
|
|
11035
|
+
[key: string]: string;
|
|
11036
|
+
};
|
|
11037
|
+
originalPrice?: number;
|
|
11038
|
+
promotions?: DescribePriceResponseBodyPriceInfoPricePromotions[];
|
|
11039
|
+
spPrice?: number;
|
|
11040
|
+
tradePrice?: number;
|
|
10049
11041
|
static names(): {
|
|
10050
11042
|
[key: string]: string;
|
|
10051
11043
|
};
|
|
@@ -10056,25 +11048,9 @@ export declare class DescribeSecurityEventOperationsResponseBodySecurityEventOpe
|
|
|
10056
11048
|
[key: string]: any;
|
|
10057
11049
|
});
|
|
10058
11050
|
}
|
|
10059
|
-
export declare class
|
|
10060
|
-
creationTime?: string;
|
|
10061
|
-
creator?: string;
|
|
10062
|
-
deletionTime?: string;
|
|
11051
|
+
export declare class DescribePriceResponseBodyPriceInfoRules extends $tea.Model {
|
|
10063
11052
|
description?: string;
|
|
10064
|
-
|
|
10065
|
-
desktopName?: string;
|
|
10066
|
-
desktopStatus?: string;
|
|
10067
|
-
progress?: string;
|
|
10068
|
-
protocolType?: string;
|
|
10069
|
-
remainTime?: number;
|
|
10070
|
-
snapshotId?: string;
|
|
10071
|
-
snapshotName?: string;
|
|
10072
|
-
snapshotType?: string;
|
|
10073
|
-
sourceDiskSize?: string;
|
|
10074
|
-
sourceDiskType?: string;
|
|
10075
|
-
status?: string;
|
|
10076
|
-
volumeEncryptionEnabled?: boolean;
|
|
10077
|
-
volumeEncryptionKey?: string;
|
|
11053
|
+
ruleId?: number;
|
|
10078
11054
|
static names(): {
|
|
10079
11055
|
[key: string]: string;
|
|
10080
11056
|
};
|
|
@@ -10085,17 +11061,11 @@ export declare class DescribeSnapshotsResponseBodySnapshots extends $tea.Model {
|
|
|
10085
11061
|
[key: string]: any;
|
|
10086
11062
|
});
|
|
10087
11063
|
}
|
|
10088
|
-
export declare class
|
|
10089
|
-
|
|
10090
|
-
|
|
10091
|
-
|
|
10092
|
-
|
|
10093
|
-
id?: number;
|
|
10094
|
-
md5?: string;
|
|
10095
|
-
modifyTime?: string;
|
|
10096
|
-
path?: string;
|
|
10097
|
-
status?: string;
|
|
10098
|
-
tag?: string;
|
|
11064
|
+
export declare class DescribePriceResponseBodyPriceInfo extends $tea.Model {
|
|
11065
|
+
freeCdsQuota?: boolean;
|
|
11066
|
+
freeCdsSize?: number;
|
|
11067
|
+
price?: DescribePriceResponseBodyPriceInfoPrice;
|
|
11068
|
+
rules?: DescribePriceResponseBodyPriceInfoRules[];
|
|
10099
11069
|
static names(): {
|
|
10100
11070
|
[key: string]: string;
|
|
10101
11071
|
};
|
|
@@ -10106,12 +11076,59 @@ export declare class DescribeSuspEventQuaraFilesResponseBodyQuaraFiles extends $
|
|
|
10106
11076
|
[key: string]: any;
|
|
10107
11077
|
});
|
|
10108
11078
|
}
|
|
10109
|
-
export declare class
|
|
10110
|
-
|
|
10111
|
-
|
|
10112
|
-
|
|
10113
|
-
|
|
10114
|
-
|
|
11079
|
+
export declare class DescribePriceForCreateDesktopOversoldGroupResponseBodyData extends $tea.Model {
|
|
11080
|
+
price?: string;
|
|
11081
|
+
static names(): {
|
|
11082
|
+
[key: string]: string;
|
|
11083
|
+
};
|
|
11084
|
+
static types(): {
|
|
11085
|
+
[key: string]: any;
|
|
11086
|
+
};
|
|
11087
|
+
constructor(map?: {
|
|
11088
|
+
[key: string]: any;
|
|
11089
|
+
});
|
|
11090
|
+
}
|
|
11091
|
+
export declare class DescribePriceForModifyDesktopOversoldGroupSaleResponseBodyData extends $tea.Model {
|
|
11092
|
+
price?: string;
|
|
11093
|
+
static names(): {
|
|
11094
|
+
[key: string]: string;
|
|
11095
|
+
};
|
|
11096
|
+
static types(): {
|
|
11097
|
+
[key: string]: any;
|
|
11098
|
+
};
|
|
11099
|
+
constructor(map?: {
|
|
11100
|
+
[key: string]: any;
|
|
11101
|
+
});
|
|
11102
|
+
}
|
|
11103
|
+
export declare class DescribePriceForRenewDesktopOversoldGroupResponseBodyData extends $tea.Model {
|
|
11104
|
+
price?: string;
|
|
11105
|
+
static names(): {
|
|
11106
|
+
[key: string]: string;
|
|
11107
|
+
};
|
|
11108
|
+
static types(): {
|
|
11109
|
+
[key: string]: any;
|
|
11110
|
+
};
|
|
11111
|
+
constructor(map?: {
|
|
11112
|
+
[key: string]: any;
|
|
11113
|
+
});
|
|
11114
|
+
}
|
|
11115
|
+
export declare class DescribeRegionsResponseBodyRegions extends $tea.Model {
|
|
11116
|
+
localName?: string;
|
|
11117
|
+
regionEndpoint?: string;
|
|
11118
|
+
regionId?: string;
|
|
11119
|
+
static names(): {
|
|
11120
|
+
[key: string]: string;
|
|
11121
|
+
};
|
|
11122
|
+
static types(): {
|
|
11123
|
+
[key: string]: any;
|
|
11124
|
+
};
|
|
11125
|
+
constructor(map?: {
|
|
11126
|
+
[key: string]: any;
|
|
11127
|
+
});
|
|
11128
|
+
}
|
|
11129
|
+
export declare class DescribeSessionStatisticResponseBodyStatistic extends $tea.Model {
|
|
11130
|
+
count?: number;
|
|
11131
|
+
timePoint?: number;
|
|
10115
11132
|
static names(): {
|
|
10116
11133
|
[key: string]: string;
|
|
10117
11134
|
};
|
|
@@ -10122,29 +11139,42 @@ export declare class DescribeSuspEventsResponseBodySuspEventsDetails extends $te
|
|
|
10122
11139
|
[key: string]: any;
|
|
10123
11140
|
});
|
|
10124
11141
|
}
|
|
10125
|
-
export declare class
|
|
10126
|
-
|
|
10127
|
-
|
|
10128
|
-
|
|
10129
|
-
|
|
10130
|
-
alarmUniqueInfo?: string;
|
|
10131
|
-
canBeDealOnLine?: string;
|
|
10132
|
-
canCancelFault?: boolean;
|
|
10133
|
-
dataSource?: string;
|
|
10134
|
-
desc?: string;
|
|
11142
|
+
export declare class DescribeSnapshotsResponseBodySnapshots extends $tea.Model {
|
|
11143
|
+
creationTime?: string;
|
|
11144
|
+
creator?: string;
|
|
11145
|
+
deletionTime?: string;
|
|
11146
|
+
description?: string;
|
|
10135
11147
|
desktopId?: string;
|
|
10136
11148
|
desktopName?: string;
|
|
10137
|
-
|
|
10138
|
-
|
|
10139
|
-
|
|
10140
|
-
|
|
10141
|
-
|
|
10142
|
-
|
|
10143
|
-
|
|
10144
|
-
|
|
10145
|
-
|
|
10146
|
-
|
|
10147
|
-
|
|
11149
|
+
desktopStatus?: string;
|
|
11150
|
+
progress?: string;
|
|
11151
|
+
protocolType?: string;
|
|
11152
|
+
remainTime?: number;
|
|
11153
|
+
snapshotId?: string;
|
|
11154
|
+
snapshotName?: string;
|
|
11155
|
+
snapshotType?: string;
|
|
11156
|
+
sourceDiskSize?: string;
|
|
11157
|
+
sourceDiskType?: string;
|
|
11158
|
+
status?: string;
|
|
11159
|
+
volumeEncryptionEnabled?: boolean;
|
|
11160
|
+
volumeEncryptionKey?: string;
|
|
11161
|
+
static names(): {
|
|
11162
|
+
[key: string]: string;
|
|
11163
|
+
};
|
|
11164
|
+
static types(): {
|
|
11165
|
+
[key: string]: any;
|
|
11166
|
+
};
|
|
11167
|
+
constructor(map?: {
|
|
11168
|
+
[key: string]: any;
|
|
11169
|
+
});
|
|
11170
|
+
}
|
|
11171
|
+
export declare class DescribeUserConnectTimeResponseBodyData extends $tea.Model {
|
|
11172
|
+
endConnectTime?: string;
|
|
11173
|
+
endUserId?: string;
|
|
11174
|
+
oversoldGroupId?: string;
|
|
11175
|
+
startConnectTime?: string;
|
|
11176
|
+
userDesktopId?: string;
|
|
11177
|
+
userGroupId?: string;
|
|
10148
11178
|
static names(): {
|
|
10149
11179
|
[key: string]: string;
|
|
10150
11180
|
};
|
|
@@ -10325,68 +11355,8 @@ export declare class DescribeVirtualMFADevicesResponseBodyVirtualMFADevices exte
|
|
|
10325
11355
|
[key: string]: any;
|
|
10326
11356
|
});
|
|
10327
11357
|
}
|
|
10328
|
-
export declare class
|
|
10329
|
-
|
|
10330
|
-
cvssScore?: string;
|
|
10331
|
-
summary?: string;
|
|
10332
|
-
title?: string;
|
|
10333
|
-
static names(): {
|
|
10334
|
-
[key: string]: string;
|
|
10335
|
-
};
|
|
10336
|
-
static types(): {
|
|
10337
|
-
[key: string]: any;
|
|
10338
|
-
};
|
|
10339
|
-
constructor(map?: {
|
|
10340
|
-
[key: string]: any;
|
|
10341
|
-
});
|
|
10342
|
-
}
|
|
10343
|
-
export declare class DescribeVulListResponseBodyVulRecordsExtendContentJsonRpmEntityList extends $tea.Model {
|
|
10344
|
-
fullVersion?: string;
|
|
10345
|
-
matchDetail?: string;
|
|
10346
|
-
name?: string;
|
|
10347
|
-
path?: string;
|
|
10348
|
-
updateCmd?: string;
|
|
10349
|
-
static names(): {
|
|
10350
|
-
[key: string]: string;
|
|
10351
|
-
};
|
|
10352
|
-
static types(): {
|
|
10353
|
-
[key: string]: any;
|
|
10354
|
-
};
|
|
10355
|
-
constructor(map?: {
|
|
10356
|
-
[key: string]: any;
|
|
10357
|
-
});
|
|
10358
|
-
}
|
|
10359
|
-
export declare class DescribeVulListResponseBodyVulRecordsExtendContentJson extends $tea.Model {
|
|
10360
|
-
rpmEntityList?: DescribeVulListResponseBodyVulRecordsExtendContentJsonRpmEntityList[];
|
|
10361
|
-
static names(): {
|
|
10362
|
-
[key: string]: string;
|
|
10363
|
-
};
|
|
10364
|
-
static types(): {
|
|
10365
|
-
[key: string]: any;
|
|
10366
|
-
};
|
|
10367
|
-
constructor(map?: {
|
|
10368
|
-
[key: string]: any;
|
|
10369
|
-
});
|
|
10370
|
-
}
|
|
10371
|
-
export declare class DescribeVulListResponseBodyVulRecords extends $tea.Model {
|
|
10372
|
-
aliasName?: string;
|
|
10373
|
-
desktopId?: string;
|
|
10374
|
-
desktopName?: string;
|
|
10375
|
-
extendContentJson?: DescribeVulListResponseBodyVulRecordsExtendContentJson;
|
|
10376
|
-
firstTs?: number;
|
|
10377
|
-
lastTs?: number;
|
|
10378
|
-
modifyTs?: number;
|
|
10379
|
-
name?: string;
|
|
10380
|
-
necessity?: string;
|
|
10381
|
-
online?: boolean;
|
|
10382
|
-
osVersion?: string;
|
|
10383
|
-
related?: string;
|
|
10384
|
-
repairTs?: number;
|
|
10385
|
-
resultCode?: string;
|
|
10386
|
-
resultMessage?: string;
|
|
10387
|
-
status?: number;
|
|
10388
|
-
tag?: string;
|
|
10389
|
-
type?: string;
|
|
11358
|
+
export declare class DescribeZonesResponseBodyZones extends $tea.Model {
|
|
11359
|
+
zoneId?: string;
|
|
10390
11360
|
static names(): {
|
|
10391
11361
|
[key: string]: string;
|
|
10392
11362
|
};
|
|
@@ -10397,8 +11367,9 @@ export declare class DescribeVulListResponseBodyVulRecords extends $tea.Model {
|
|
|
10397
11367
|
[key: string]: any;
|
|
10398
11368
|
});
|
|
10399
11369
|
}
|
|
10400
|
-
export declare class
|
|
10401
|
-
|
|
11370
|
+
export declare class ExportDesktopListInfoRequestTag extends $tea.Model {
|
|
11371
|
+
key?: string;
|
|
11372
|
+
value?: string;
|
|
10402
11373
|
static names(): {
|
|
10403
11374
|
[key: string]: string;
|
|
10404
11375
|
};
|
|
@@ -10409,9 +11380,14 @@ export declare class DescribeZonesResponseBodyZones extends $tea.Model {
|
|
|
10409
11380
|
[key: string]: any;
|
|
10410
11381
|
});
|
|
10411
11382
|
}
|
|
10412
|
-
export declare class
|
|
10413
|
-
|
|
10414
|
-
|
|
11383
|
+
export declare class GetAsyncTaskResponseBodyData extends $tea.Model {
|
|
11384
|
+
asyncTaskId?: string;
|
|
11385
|
+
consumedProcess?: string;
|
|
11386
|
+
errCode?: number;
|
|
11387
|
+
message?: string;
|
|
11388
|
+
status?: string;
|
|
11389
|
+
totalProcess?: number;
|
|
11390
|
+
url?: string;
|
|
10415
11391
|
static names(): {
|
|
10416
11392
|
[key: string]: string;
|
|
10417
11393
|
};
|
|
@@ -10517,19 +11493,6 @@ export declare class GetDesktopGroupDetailResponseBodyDesktops extends $tea.Mode
|
|
|
10517
11493
|
[key: string]: any;
|
|
10518
11494
|
});
|
|
10519
11495
|
}
|
|
10520
|
-
export declare class HandleSecurityEventsRequestSecurityEvent extends $tea.Model {
|
|
10521
|
-
desktopId?: string;
|
|
10522
|
-
securityEventId?: string;
|
|
10523
|
-
static names(): {
|
|
10524
|
-
[key: string]: string;
|
|
10525
|
-
};
|
|
10526
|
-
static types(): {
|
|
10527
|
-
[key: string]: any;
|
|
10528
|
-
};
|
|
10529
|
-
constructor(map?: {
|
|
10530
|
-
[key: string]: any;
|
|
10531
|
-
});
|
|
10532
|
-
}
|
|
10533
11496
|
export declare class ListCdsFilesResponseBodyFileModels extends $tea.Model {
|
|
10534
11497
|
category?: string;
|
|
10535
11498
|
contentType?: string;
|
|
@@ -10667,10 +11630,21 @@ export declare class ModifyCustomizedListHeadersRequestHeaders extends $tea.Mode
|
|
|
10667
11630
|
[key: string]: any;
|
|
10668
11631
|
});
|
|
10669
11632
|
}
|
|
10670
|
-
export declare class
|
|
10671
|
-
|
|
10672
|
-
|
|
10673
|
-
|
|
11633
|
+
export declare class ModifyDesktopOversoldGroupResponseBodyData extends $tea.Model {
|
|
11634
|
+
oversoldGroupId?: string;
|
|
11635
|
+
static names(): {
|
|
11636
|
+
[key: string]: string;
|
|
11637
|
+
};
|
|
11638
|
+
static types(): {
|
|
11639
|
+
[key: string]: any;
|
|
11640
|
+
};
|
|
11641
|
+
constructor(map?: {
|
|
11642
|
+
[key: string]: any;
|
|
11643
|
+
});
|
|
11644
|
+
}
|
|
11645
|
+
export declare class ModifyDesktopOversoldGroupSaleResponseBodyData extends $tea.Model {
|
|
11646
|
+
orderId?: number;
|
|
11647
|
+
oversoldGroupId?: string;
|
|
10674
11648
|
static names(): {
|
|
10675
11649
|
[key: string]: string;
|
|
10676
11650
|
};
|
|
@@ -10681,10 +11655,40 @@ export declare class ModifyDesktopsPolicyGroupResponseBodyModifyResults extends
|
|
|
10681
11655
|
[key: string]: any;
|
|
10682
11656
|
});
|
|
10683
11657
|
}
|
|
10684
|
-
export declare class
|
|
11658
|
+
export declare class ModifyDesktopOversoldUserGroupResponseBodyData extends $tea.Model {
|
|
11659
|
+
userGroupId?: string;
|
|
11660
|
+
static names(): {
|
|
11661
|
+
[key: string]: string;
|
|
11662
|
+
};
|
|
11663
|
+
static types(): {
|
|
11664
|
+
[key: string]: any;
|
|
11665
|
+
};
|
|
11666
|
+
constructor(map?: {
|
|
11667
|
+
[key: string]: any;
|
|
11668
|
+
});
|
|
11669
|
+
}
|
|
11670
|
+
export declare class ModifyDesktopTimerRequestDesktopTimers extends $tea.Model {
|
|
11671
|
+
allowClientSetting?: boolean;
|
|
11672
|
+
cronExpression?: string;
|
|
11673
|
+
enforce?: boolean;
|
|
11674
|
+
interval?: number;
|
|
11675
|
+
operationType?: string;
|
|
11676
|
+
resetType?: string;
|
|
11677
|
+
timerType?: string;
|
|
11678
|
+
static names(): {
|
|
11679
|
+
[key: string]: string;
|
|
11680
|
+
};
|
|
11681
|
+
static types(): {
|
|
11682
|
+
[key: string]: any;
|
|
11683
|
+
};
|
|
11684
|
+
constructor(map?: {
|
|
11685
|
+
[key: string]: any;
|
|
11686
|
+
});
|
|
11687
|
+
}
|
|
11688
|
+
export declare class ModifyDesktopsPolicyGroupResponseBodyModifyResults extends $tea.Model {
|
|
11689
|
+
code?: string;
|
|
10685
11690
|
desktopId?: string;
|
|
10686
|
-
|
|
10687
|
-
tag?: string;
|
|
11691
|
+
message?: string;
|
|
10688
11692
|
static names(): {
|
|
10689
11693
|
[key: string]: string;
|
|
10690
11694
|
};
|
|
@@ -10739,6 +11743,20 @@ export declare class ModifyPolicyGroupRequestClientType extends $tea.Model {
|
|
|
10739
11743
|
[key: string]: any;
|
|
10740
11744
|
});
|
|
10741
11745
|
}
|
|
11746
|
+
export declare class ModifyPolicyGroupRequestDomainResolveRule extends $tea.Model {
|
|
11747
|
+
description?: string;
|
|
11748
|
+
domain?: string;
|
|
11749
|
+
policy?: string;
|
|
11750
|
+
static names(): {
|
|
11751
|
+
[key: string]: string;
|
|
11752
|
+
};
|
|
11753
|
+
static types(): {
|
|
11754
|
+
[key: string]: any;
|
|
11755
|
+
};
|
|
11756
|
+
constructor(map?: {
|
|
11757
|
+
[key: string]: any;
|
|
11758
|
+
});
|
|
11759
|
+
}
|
|
10742
11760
|
export declare class ModifyPolicyGroupRequestRevokeAccessPolicyRule extends $tea.Model {
|
|
10743
11761
|
cidrIp?: string;
|
|
10744
11762
|
description?: string;
|
|
@@ -10842,6 +11860,19 @@ export declare class RemoveFilePermissionRequestMemberList extends $tea.Model {
|
|
|
10842
11860
|
[key: string]: any;
|
|
10843
11861
|
});
|
|
10844
11862
|
}
|
|
11863
|
+
export declare class RenewDesktopOversoldGroupResponseBodyData extends $tea.Model {
|
|
11864
|
+
orderId?: number;
|
|
11865
|
+
oversoldGroupId?: string;
|
|
11866
|
+
static names(): {
|
|
11867
|
+
[key: string]: string;
|
|
11868
|
+
};
|
|
11869
|
+
static types(): {
|
|
11870
|
+
[key: string]: any;
|
|
11871
|
+
};
|
|
11872
|
+
constructor(map?: {
|
|
11873
|
+
[key: string]: any;
|
|
11874
|
+
});
|
|
11875
|
+
}
|
|
10845
11876
|
export declare class SetDesktopGroupScaleTimerRequestScaleTimerInfos extends $tea.Model {
|
|
10846
11877
|
buyResAmount?: number;
|
|
10847
11878
|
cron?: string;
|
|
@@ -10948,6 +11979,8 @@ export default class Client extends OpenApi {
|
|
|
10948
11979
|
* @return ActivateOfficeSiteResponse
|
|
10949
11980
|
*/
|
|
10950
11981
|
activateOfficeSite(request: ActivateOfficeSiteRequest): Promise<ActivateOfficeSiteResponse>;
|
|
11982
|
+
addDesktopOversoldUserGroupWithOptions(request: AddDesktopOversoldUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<AddDesktopOversoldUserGroupResponse>;
|
|
11983
|
+
addDesktopOversoldUserGroup(request: AddDesktopOversoldUserGroupRequest): Promise<AddDesktopOversoldUserGroupResponse>;
|
|
10951
11984
|
/**
|
|
10952
11985
|
* You can add only one device to a tenant.
|
|
10953
11986
|
*
|
|
@@ -10963,10 +11996,25 @@ export default class Client extends OpenApi {
|
|
|
10963
11996
|
* @return AddDevicesResponse
|
|
10964
11997
|
*/
|
|
10965
11998
|
addDevices(request: AddDevicesRequest): Promise<AddDevicesResponse>;
|
|
11999
|
+
/**
|
|
12000
|
+
* You can call this operation to share a specific folder with other users. You can also configure the folder permissions.
|
|
12001
|
+
*
|
|
12002
|
+
* @param tmpReq AddFilePermissionRequest
|
|
12003
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
12004
|
+
* @return AddFilePermissionResponse
|
|
12005
|
+
*/
|
|
10966
12006
|
addFilePermissionWithOptions(tmpReq: AddFilePermissionRequest, runtime: $Util.RuntimeOptions): Promise<AddFilePermissionResponse>;
|
|
12007
|
+
/**
|
|
12008
|
+
* You can call this operation to share a specific folder with other users. You can also configure the folder permissions.
|
|
12009
|
+
*
|
|
12010
|
+
* @param request AddFilePermissionRequest
|
|
12011
|
+
* @return AddFilePermissionResponse
|
|
12012
|
+
*/
|
|
10967
12013
|
addFilePermission(request: AddFilePermissionRequest): Promise<AddFilePermissionResponse>;
|
|
10968
12014
|
addUserToDesktopGroupWithOptions(request: AddUserToDesktopGroupRequest, runtime: $Util.RuntimeOptions): Promise<AddUserToDesktopGroupResponse>;
|
|
10969
12015
|
addUserToDesktopGroup(request: AddUserToDesktopGroupRequest): Promise<AddUserToDesktopGroupResponse>;
|
|
12016
|
+
addUserToDesktopOversoldUserGroupWithOptions(request: AddUserToDesktopOversoldUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<AddUserToDesktopOversoldUserGroupResponse>;
|
|
12017
|
+
addUserToDesktopOversoldUserGroup(request: AddUserToDesktopOversoldUserGroupRequest): Promise<AddUserToDesktopOversoldUserGroupResponse>;
|
|
10970
12018
|
/**
|
|
10971
12019
|
* You can also associate an automatic snapshot policy with a cloud desktop in the Elastic Desktop Service (EDS) console. To do so, perform the following steps: 1. Log on to the EDS console. 2. Choose Desktops and Groups > Desktops in the left-side navigation pane. 3. Find the cloud desktop that you want to manage on the Cloud Desktops page and choose More > Change Automatic Snapshot Policy in the Actions column. 4. Configure a policy for the cloud desktop as prompted in the Change Automatic Snapshot Policy panel.
|
|
10972
12020
|
* After you associate an automatic snapshot policy with the cloud desktop, the system creates snapshots for the cloud desktop based on the policy.
|
|
@@ -10993,10 +12041,10 @@ export default class Client extends OpenApi {
|
|
|
10993
12041
|
associateNetworkPackageWithOptions(request: AssociateNetworkPackageRequest, runtime: $Util.RuntimeOptions): Promise<AssociateNetworkPackageResponse>;
|
|
10994
12042
|
associateNetworkPackage(request: AssociateNetworkPackageRequest): Promise<AssociateNetworkPackageResponse>;
|
|
10995
12043
|
/**
|
|
10996
|
-
*
|
|
10997
|
-
* * A
|
|
12044
|
+
* Prerequisites
|
|
12045
|
+
* * A CEN instance is created.
|
|
10998
12046
|
* * A workspace of the convenience account type is created.
|
|
10999
|
-
* >
|
|
12047
|
+
* > Workspaces of the Active Directory (AD) account type are automatically attached to CEN instances when you create the workspaces. You can attach the secure office network of a workspace to only one CEN instance.
|
|
11000
12048
|
*
|
|
11001
12049
|
* @param request AttachCenRequest
|
|
11002
12050
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -11004,10 +12052,10 @@ export default class Client extends OpenApi {
|
|
|
11004
12052
|
*/
|
|
11005
12053
|
attachCenWithOptions(request: AttachCenRequest, runtime: $Util.RuntimeOptions): Promise<AttachCenResponse>;
|
|
11006
12054
|
/**
|
|
11007
|
-
*
|
|
11008
|
-
* * A
|
|
12055
|
+
* Prerequisites
|
|
12056
|
+
* * A CEN instance is created.
|
|
11009
12057
|
* * A workspace of the convenience account type is created.
|
|
11010
|
-
* >
|
|
12058
|
+
* > Workspaces of the Active Directory (AD) account type are automatically attached to CEN instances when you create the workspaces. You can attach the secure office network of a workspace to only one CEN instance.
|
|
11011
12059
|
*
|
|
11012
12060
|
* @param request AttachCenRequest
|
|
11013
12061
|
* @return AttachCenResponse
|
|
@@ -11051,13 +12099,11 @@ export default class Client extends OpenApi {
|
|
|
11051
12099
|
*/
|
|
11052
12100
|
createADConnectorDirectory(request: CreateADConnectorDirectoryRequest): Promise<CreateADConnectorDirectoryResponse>;
|
|
11053
12101
|
/**
|
|
11054
|
-
*
|
|
11055
|
-
*
|
|
11056
|
-
*
|
|
11057
|
-
*
|
|
11058
|
-
*
|
|
11059
|
-
* > If you specify the DomainUserName and DomainPassword parameters when you create the AD workspace, you need to configure only the conditional forwarder. If you do not specify the DomainUserName and DomainPassword parameters, you need to configure the conditional forwarder, trust relationship, and OU.
|
|
11060
|
-
* For more information, see [Create a workspace of the enterprise account type](~~214469~~).
|
|
12102
|
+
* * When you create a workspace of the enterprise AD account type, AD connectors are automatically created to allow you to connect to enterprise AD systems. You are charged for the AD connectors. For more information, see [Billing overview](~~188395~~).
|
|
12103
|
+
* * After you call this operation to create a workspace of the enterprise AD account type, perform the following steps to configure the AD domain: 1. Configure the conditional forwarder in the Domain Name System (DNS) server. 2. Configure the trust relationship in the AD domain server, and call the [ConfigADConnectorTrust](~~311258~~) operation to configure the trust relationship for the workspace of the enterprise AD account type. 3. Call the [ListUserAdOrganizationUnits](~~311259~~) operation to obtain the organizational unit (OU) details of the AD domain. Then, call the [ConfigADConnectorUser](~~311262~~) operation to specify an OU and an administrator for the workspace of the enterprise AD account type.
|
|
12104
|
+
* **
|
|
12105
|
+
* **Note**If you specify DomainUserName and DomainPassword when you create a workspace of the enterprise AD account type, you must configure only the conditional forwarder. If you do not specify DomainUserName or DomainPassword, you must configure the conditional forwarder, trust relationship, and OU.
|
|
12106
|
+
* For more information, see [Create a workspace of the enterprise AD account type](~~214469~~).
|
|
11061
12107
|
*
|
|
11062
12108
|
* @param request CreateADConnectorOfficeSiteRequest
|
|
11063
12109
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -11065,13 +12111,11 @@ export default class Client extends OpenApi {
|
|
|
11065
12111
|
*/
|
|
11066
12112
|
createADConnectorOfficeSiteWithOptions(request: CreateADConnectorOfficeSiteRequest, runtime: $Util.RuntimeOptions): Promise<CreateADConnectorOfficeSiteResponse>;
|
|
11067
12113
|
/**
|
|
11068
|
-
*
|
|
11069
|
-
*
|
|
11070
|
-
*
|
|
11071
|
-
*
|
|
11072
|
-
*
|
|
11073
|
-
* > If you specify the DomainUserName and DomainPassword parameters when you create the AD workspace, you need to configure only the conditional forwarder. If you do not specify the DomainUserName and DomainPassword parameters, you need to configure the conditional forwarder, trust relationship, and OU.
|
|
11074
|
-
* For more information, see [Create a workspace of the enterprise account type](~~214469~~).
|
|
12114
|
+
* * When you create a workspace of the enterprise AD account type, AD connectors are automatically created to allow you to connect to enterprise AD systems. You are charged for the AD connectors. For more information, see [Billing overview](~~188395~~).
|
|
12115
|
+
* * After you call this operation to create a workspace of the enterprise AD account type, perform the following steps to configure the AD domain: 1. Configure the conditional forwarder in the Domain Name System (DNS) server. 2. Configure the trust relationship in the AD domain server, and call the [ConfigADConnectorTrust](~~311258~~) operation to configure the trust relationship for the workspace of the enterprise AD account type. 3. Call the [ListUserAdOrganizationUnits](~~311259~~) operation to obtain the organizational unit (OU) details of the AD domain. Then, call the [ConfigADConnectorUser](~~311262~~) operation to specify an OU and an administrator for the workspace of the enterprise AD account type.
|
|
12116
|
+
* **
|
|
12117
|
+
* **Note**If you specify DomainUserName and DomainPassword when you create a workspace of the enterprise AD account type, you must configure only the conditional forwarder. If you do not specify DomainUserName or DomainPassword, you must configure the conditional forwarder, trust relationship, and OU.
|
|
12118
|
+
* For more information, see [Create a workspace of the enterprise AD account type](~~214469~~).
|
|
11075
12119
|
*
|
|
11076
12120
|
* @param request CreateADConnectorOfficeSiteRequest
|
|
11077
12121
|
* @return CreateADConnectorOfficeSiteResponse
|
|
@@ -11095,7 +12139,6 @@ export default class Client extends OpenApi {
|
|
|
11095
12139
|
*/
|
|
11096
12140
|
createAutoSnapshotPolicy(request: CreateAutoSnapshotPolicyRequest): Promise<CreateAutoSnapshotPolicyResponse>;
|
|
11097
12141
|
/**
|
|
11098
|
-
* ## Description
|
|
11099
12142
|
* Desktop templates are categorized into system templates and custom templates. System templates are the templates provided by Alibaba Cloud. You can call this operation to create a custom template.
|
|
11100
12143
|
*
|
|
11101
12144
|
* @param request CreateBundleRequest
|
|
@@ -11104,17 +12147,33 @@ export default class Client extends OpenApi {
|
|
|
11104
12147
|
*/
|
|
11105
12148
|
createBundleWithOptions(request: CreateBundleRequest, runtime: $Util.RuntimeOptions): Promise<CreateBundleResponse>;
|
|
11106
12149
|
/**
|
|
11107
|
-
* ## Description
|
|
11108
12150
|
* Desktop templates are categorized into system templates and custom templates. System templates are the templates provided by Alibaba Cloud. You can call this operation to create a custom template.
|
|
11109
12151
|
*
|
|
11110
12152
|
* @param request CreateBundleRequest
|
|
11111
12153
|
* @return CreateBundleResponse
|
|
11112
12154
|
*/
|
|
11113
12155
|
createBundle(request: CreateBundleRequest): Promise<CreateBundleResponse>;
|
|
12156
|
+
/**
|
|
12157
|
+
* After the RAM permissions are authenticated, you can call the CreateCdsFile operation to obtain the upload URL of a file and upload the file to a cloud disk.
|
|
12158
|
+
*
|
|
12159
|
+
* @param request CreateCdsFileRequest
|
|
12160
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
12161
|
+
* @return CreateCdsFileResponse
|
|
12162
|
+
*/
|
|
11114
12163
|
createCdsFileWithOptions(request: CreateCdsFileRequest, runtime: $Util.RuntimeOptions): Promise<CreateCdsFileResponse>;
|
|
12164
|
+
/**
|
|
12165
|
+
* After the RAM permissions are authenticated, you can call the CreateCdsFile operation to obtain the upload URL of a file and upload the file to a cloud disk.
|
|
12166
|
+
*
|
|
12167
|
+
* @param request CreateCdsFileRequest
|
|
12168
|
+
* @return CreateCdsFileResponse
|
|
12169
|
+
*/
|
|
11115
12170
|
createCdsFile(request: CreateCdsFileRequest): Promise<CreateCdsFileResponse>;
|
|
11116
12171
|
createCdsFileShareLinkWithOptions(request: CreateCdsFileShareLinkRequest, runtime: $Util.RuntimeOptions): Promise<CreateCdsFileShareLinkResponse>;
|
|
11117
12172
|
createCdsFileShareLink(request: CreateCdsFileShareLinkRequest): Promise<CreateCdsFileShareLinkResponse>;
|
|
12173
|
+
createCloudDriveServiceWithOptions(request: CreateCloudDriveServiceRequest, runtime: $Util.RuntimeOptions): Promise<CreateCloudDriveServiceResponse>;
|
|
12174
|
+
createCloudDriveService(request: CreateCloudDriveServiceRequest): Promise<CreateCloudDriveServiceResponse>;
|
|
12175
|
+
createCloudDriveUsersWithOptions(request: CreateCloudDriveUsersRequest, runtime: $Util.RuntimeOptions): Promise<CreateCloudDriveUsersResponse>;
|
|
12176
|
+
createCloudDriveUsers(request: CreateCloudDriveUsersRequest): Promise<CreateCloudDriveUsersResponse>;
|
|
11118
12177
|
/**
|
|
11119
12178
|
* # Description
|
|
11120
12179
|
* Before you call this operation to create a desktop group, make sure that the following operations are complete:
|
|
@@ -11136,6 +12195,8 @@ export default class Client extends OpenApi {
|
|
|
11136
12195
|
* @return CreateDesktopGroupResponse
|
|
11137
12196
|
*/
|
|
11138
12197
|
createDesktopGroup(request: CreateDesktopGroupRequest): Promise<CreateDesktopGroupResponse>;
|
|
12198
|
+
createDesktopOversoldGroupWithOptions(request: CreateDesktopOversoldGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateDesktopOversoldGroupResponse>;
|
|
12199
|
+
createDesktopOversoldGroup(request: CreateDesktopOversoldGroupRequest): Promise<CreateDesktopOversoldGroupResponse>;
|
|
11139
12200
|
/**
|
|
11140
12201
|
* 1\\. Before you create a cloud desktop in Elastic Desktop Service (EDS), make sure that the following operations are complete:
|
|
11141
12202
|
* * A workspace and a user are created. For more information, see the following topics:
|
|
@@ -11167,26 +12228,7 @@ export default class Client extends OpenApi {
|
|
|
11167
12228
|
createDiskEncryptionService(request: CreateDiskEncryptionServiceRequest): Promise<CreateDiskEncryptionServiceResponse>;
|
|
11168
12229
|
createImageWithOptions(request: CreateImageRequest, runtime: $Util.RuntimeOptions): Promise<CreateImageResponse>;
|
|
11169
12230
|
createImage(request: CreateImageRequest): Promise<CreateImageResponse>;
|
|
11170
|
-
/**
|
|
11171
|
-
* * You can create a NAS file system for each standard workspace so that cloud desktops within the workspace can share files.
|
|
11172
|
-
* * The system creates a General-purpose NAS file system and generates a default mount target. The storage types of the NAS file system includes Capacity type and Performance type. The Capacity type provides 10 PiB of storage while the Performance type provides only 1 PiB of storage.
|
|
11173
|
-
* * NAS file systems are billed on a pay-as-you-go basis. You are charged based on the amount of used storage. You can also purchase resource plans to offset the storage fees of the NAS file systems.
|
|
11174
|
-
* For more information, see [Create a NAS file system](~~214481~~).
|
|
11175
|
-
*
|
|
11176
|
-
* @param request CreateNASFileSystemRequest
|
|
11177
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
11178
|
-
* @return CreateNASFileSystemResponse
|
|
11179
|
-
*/
|
|
11180
12231
|
createNASFileSystemWithOptions(request: CreateNASFileSystemRequest, runtime: $Util.RuntimeOptions): Promise<CreateNASFileSystemResponse>;
|
|
11181
|
-
/**
|
|
11182
|
-
* * You can create a NAS file system for each standard workspace so that cloud desktops within the workspace can share files.
|
|
11183
|
-
* * The system creates a General-purpose NAS file system and generates a default mount target. The storage types of the NAS file system includes Capacity type and Performance type. The Capacity type provides 10 PiB of storage while the Performance type provides only 1 PiB of storage.
|
|
11184
|
-
* * NAS file systems are billed on a pay-as-you-go basis. You are charged based on the amount of used storage. You can also purchase resource plans to offset the storage fees of the NAS file systems.
|
|
11185
|
-
* For more information, see [Create a NAS file system](~~214481~~).
|
|
11186
|
-
*
|
|
11187
|
-
* @param request CreateNASFileSystemRequest
|
|
11188
|
-
* @return CreateNASFileSystemResponse
|
|
11189
|
-
*/
|
|
11190
12232
|
createNASFileSystem(request: CreateNASFileSystemRequest): Promise<CreateNASFileSystemResponse>;
|
|
11191
12233
|
createNetworkPackageWithOptions(request: CreateNetworkPackageRequest, runtime: $Util.RuntimeOptions): Promise<CreateNetworkPackageResponse>;
|
|
11192
12234
|
createNetworkPackage(request: CreateNetworkPackageRequest): Promise<CreateNetworkPackageResponse>;
|
|
@@ -11285,10 +12327,11 @@ export default class Client extends OpenApi {
|
|
|
11285
12327
|
* @return DeleteDirectoriesResponse
|
|
11286
12328
|
*/
|
|
11287
12329
|
deleteDirectories(request: DeleteDirectoriesRequest): Promise<DeleteDirectoriesResponse>;
|
|
12330
|
+
deleteEduRoomWithOptions(request: DeleteEduRoomRequest, runtime: $Util.RuntimeOptions): Promise<DeleteEduRoomResponse>;
|
|
12331
|
+
deleteEduRoom(request: DeleteEduRoomRequest): Promise<DeleteEduRoomResponse>;
|
|
11288
12332
|
/**
|
|
11289
|
-
* ## Description
|
|
11290
12333
|
* * Images include system images and custom images. System images cannot be deleted.
|
|
11291
|
-
* * If an image to delete is
|
|
12334
|
+
* * If an image to delete is referenced by a desktop template, you must first delete the template by calling the DeleteBundles operation.
|
|
11292
12335
|
*
|
|
11293
12336
|
* @param request DeleteImagesRequest
|
|
11294
12337
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -11296,18 +12339,17 @@ export default class Client extends OpenApi {
|
|
|
11296
12339
|
*/
|
|
11297
12340
|
deleteImagesWithOptions(request: DeleteImagesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteImagesResponse>;
|
|
11298
12341
|
/**
|
|
11299
|
-
* ## Description
|
|
11300
12342
|
* * Images include system images and custom images. System images cannot be deleted.
|
|
11301
|
-
* * If an image to delete is
|
|
12343
|
+
* * If an image to delete is referenced by a desktop template, you must first delete the template by calling the DeleteBundles operation.
|
|
11302
12344
|
*
|
|
11303
12345
|
* @param request DeleteImagesRequest
|
|
11304
12346
|
* @return DeleteImagesResponse
|
|
11305
12347
|
*/
|
|
11306
12348
|
deleteImages(request: DeleteImagesRequest): Promise<DeleteImagesResponse>;
|
|
11307
12349
|
/**
|
|
11308
|
-
*
|
|
11309
|
-
*
|
|
11310
|
-
*
|
|
12350
|
+
* Before you delete an Apsara File Storage NAS (NAS) file system, make sure that the data you want to retain is backed up.
|
|
12351
|
+
* **
|
|
12352
|
+
* **Warning** If a NAS file system is deleted, data stored in the NAS file system cannot be restored. Proceed with caution when you delete NAS file systems.
|
|
11311
12353
|
*
|
|
11312
12354
|
* @param request DeleteNASFileSystemsRequest
|
|
11313
12355
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -11315,9 +12357,9 @@ export default class Client extends OpenApi {
|
|
|
11315
12357
|
*/
|
|
11316
12358
|
deleteNASFileSystemsWithOptions(request: DeleteNASFileSystemsRequest, runtime: $Util.RuntimeOptions): Promise<DeleteNASFileSystemsResponse>;
|
|
11317
12359
|
/**
|
|
11318
|
-
*
|
|
11319
|
-
*
|
|
11320
|
-
*
|
|
12360
|
+
* Before you delete an Apsara File Storage NAS (NAS) file system, make sure that the data you want to retain is backed up.
|
|
12361
|
+
* **
|
|
12362
|
+
* **Warning** If a NAS file system is deleted, data stored in the NAS file system cannot be restored. Proceed with caution when you delete NAS file systems.
|
|
11321
12363
|
*
|
|
11322
12364
|
* @param request DeleteNASFileSystemsRequest
|
|
11323
12365
|
* @return DeleteNASFileSystemsResponse
|
|
@@ -11326,10 +12368,11 @@ export default class Client extends OpenApi {
|
|
|
11326
12368
|
deleteNetworkPackagesWithOptions(request: DeleteNetworkPackagesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteNetworkPackagesResponse>;
|
|
11327
12369
|
deleteNetworkPackages(request: DeleteNetworkPackagesRequest): Promise<DeleteNetworkPackagesResponse>;
|
|
11328
12370
|
/**
|
|
11329
|
-
* Before you delete a workspace, make sure that the following
|
|
12371
|
+
* Before you delete a workspace, make sure that the following requirements are met:
|
|
11330
12372
|
* * All cloud desktops in the workspace are released.
|
|
11331
12373
|
* * The data that you want to retain is backed up.
|
|
11332
|
-
*
|
|
12374
|
+
* **
|
|
12375
|
+
* **Warning** After you delete a workspace, the resources and data of the workspace cannot be recovered. Exercise with caution.
|
|
11333
12376
|
*
|
|
11334
12377
|
* @param request DeleteOfficeSitesRequest
|
|
11335
12378
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -11337,31 +12380,17 @@ export default class Client extends OpenApi {
|
|
|
11337
12380
|
*/
|
|
11338
12381
|
deleteOfficeSitesWithOptions(request: DeleteOfficeSitesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteOfficeSitesResponse>;
|
|
11339
12382
|
/**
|
|
11340
|
-
* Before you delete a workspace, make sure that the following
|
|
12383
|
+
* Before you delete a workspace, make sure that the following requirements are met:
|
|
11341
12384
|
* * All cloud desktops in the workspace are released.
|
|
11342
12385
|
* * The data that you want to retain is backed up.
|
|
11343
|
-
*
|
|
12386
|
+
* **
|
|
12387
|
+
* **Warning** After you delete a workspace, the resources and data of the workspace cannot be recovered. Exercise with caution.
|
|
11344
12388
|
*
|
|
11345
12389
|
* @param request DeleteOfficeSitesRequest
|
|
11346
12390
|
* @return DeleteOfficeSitesResponse
|
|
11347
12391
|
*/
|
|
11348
12392
|
deleteOfficeSites(request: DeleteOfficeSitesRequest): Promise<DeleteOfficeSitesResponse>;
|
|
11349
|
-
/**
|
|
11350
|
-
* * System policies cannot be deleted.
|
|
11351
|
-
* * Custom policies that are associated with cloud desktops cannot be deleted.
|
|
11352
|
-
*
|
|
11353
|
-
* @param request DeletePolicyGroupsRequest
|
|
11354
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
11355
|
-
* @return DeletePolicyGroupsResponse
|
|
11356
|
-
*/
|
|
11357
12393
|
deletePolicyGroupsWithOptions(request: DeletePolicyGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DeletePolicyGroupsResponse>;
|
|
11358
|
-
/**
|
|
11359
|
-
* * System policies cannot be deleted.
|
|
11360
|
-
* * Custom policies that are associated with cloud desktops cannot be deleted.
|
|
11361
|
-
*
|
|
11362
|
-
* @param request DeletePolicyGroupsRequest
|
|
11363
|
-
* @return DeletePolicyGroupsResponse
|
|
11364
|
-
*/
|
|
11365
12394
|
deletePolicyGroups(request: DeletePolicyGroupsRequest): Promise<DeletePolicyGroupsResponse>;
|
|
11366
12395
|
/**
|
|
11367
12396
|
* If the IDs of the snapshots that you specify do not exist, requests are ignored.
|
|
@@ -11379,7 +12408,6 @@ export default class Client extends OpenApi {
|
|
|
11379
12408
|
*/
|
|
11380
12409
|
deleteSnapshot(request: DeleteSnapshotRequest): Promise<DeleteSnapshotResponse>;
|
|
11381
12410
|
/**
|
|
11382
|
-
* ## Description
|
|
11383
12411
|
* If an MFA device is deleted, the device is unbound, reset, and disabled. When the Active Directory (AD) user wants to log on to the cloud desktop, the AD user must bind a new MFA device.
|
|
11384
12412
|
*
|
|
11385
12413
|
* @param request DeleteVirtualMFADeviceRequest
|
|
@@ -11388,15 +12416,14 @@ export default class Client extends OpenApi {
|
|
|
11388
12416
|
*/
|
|
11389
12417
|
deleteVirtualMFADeviceWithOptions(request: DeleteVirtualMFADeviceRequest, runtime: $Util.RuntimeOptions): Promise<DeleteVirtualMFADeviceResponse>;
|
|
11390
12418
|
/**
|
|
11391
|
-
* ## Description
|
|
11392
12419
|
* If an MFA device is deleted, the device is unbound, reset, and disabled. When the Active Directory (AD) user wants to log on to the cloud desktop, the AD user must bind a new MFA device.
|
|
11393
12420
|
*
|
|
11394
12421
|
* @param request DeleteVirtualMFADeviceRequest
|
|
11395
12422
|
* @return DeleteVirtualMFADeviceResponse
|
|
11396
12423
|
*/
|
|
11397
12424
|
deleteVirtualMFADevice(request: DeleteVirtualMFADeviceRequest): Promise<DeleteVirtualMFADeviceResponse>;
|
|
11398
|
-
|
|
11399
|
-
|
|
12425
|
+
describeAclEntriesWithOptions(request: DescribeAclEntriesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAclEntriesResponse>;
|
|
12426
|
+
describeAclEntries(request: DescribeAclEntriesRequest): Promise<DescribeAclEntriesResponse>;
|
|
11400
12427
|
/**
|
|
11401
12428
|
* You can view an automatic snapshot policy that is associated with a cloud desktop in the Elastic Desktop Service (EDS) console. To view the automatic snapshot policy, you can go to the EDS console, choose Deployment > Snapshots in the left-side navigation pane, and then view an automatic snapshot policy on the Snapshots page.
|
|
11402
12429
|
*
|
|
@@ -11419,7 +12446,7 @@ export default class Client extends OpenApi {
|
|
|
11419
12446
|
describeCensWithOptions(request: DescribeCensRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCensResponse>;
|
|
11420
12447
|
describeCens(request: DescribeCensRequest): Promise<DescribeCensResponse>;
|
|
11421
12448
|
/**
|
|
11422
|
-
*
|
|
12449
|
+
* The version of the client.
|
|
11423
12450
|
*
|
|
11424
12451
|
* @param request DescribeClientEventsRequest
|
|
11425
12452
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -11427,7 +12454,7 @@ export default class Client extends OpenApi {
|
|
|
11427
12454
|
*/
|
|
11428
12455
|
describeClientEventsWithOptions(request: DescribeClientEventsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeClientEventsResponse>;
|
|
11429
12456
|
/**
|
|
11430
|
-
*
|
|
12457
|
+
* The version of the client.
|
|
11431
12458
|
*
|
|
11432
12459
|
* @param request DescribeClientEventsRequest
|
|
11433
12460
|
* @return DescribeClientEventsResponse
|
|
@@ -11437,13 +12464,49 @@ export default class Client extends OpenApi {
|
|
|
11437
12464
|
describeCloudDriveGroups(request: DescribeCloudDriveGroupsRequest): Promise<DescribeCloudDriveGroupsResponse>;
|
|
11438
12465
|
describeCloudDrivePermissionsWithOptions(request: DescribeCloudDrivePermissionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCloudDrivePermissionsResponse>;
|
|
11439
12466
|
describeCloudDrivePermissions(request: DescribeCloudDrivePermissionsRequest): Promise<DescribeCloudDrivePermissionsResponse>;
|
|
12467
|
+
describeCloudDriveUsersWithOptions(request: DescribeCloudDriveUsersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCloudDriveUsersResponse>;
|
|
12468
|
+
describeCloudDriveUsers(request: DescribeCloudDriveUsersRequest): Promise<DescribeCloudDriveUsersResponse>;
|
|
11440
12469
|
describeCustomizedListHeadersWithOptions(request: DescribeCustomizedListHeadersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCustomizedListHeadersResponse>;
|
|
11441
12470
|
describeCustomizedListHeaders(request: DescribeCustomizedListHeadersRequest): Promise<DescribeCustomizedListHeadersResponse>;
|
|
11442
12471
|
describeDesktopGroupsWithOptions(request: DescribeDesktopGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDesktopGroupsResponse>;
|
|
11443
12472
|
describeDesktopGroups(request: DescribeDesktopGroupsRequest): Promise<DescribeDesktopGroupsResponse>;
|
|
11444
|
-
|
|
11445
|
-
|
|
12473
|
+
describeDesktopInfoWithOptions(request: DescribeDesktopInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDesktopInfoResponse>;
|
|
12474
|
+
describeDesktopInfo(request: DescribeDesktopInfoRequest): Promise<DescribeDesktopInfoResponse>;
|
|
12475
|
+
describeDesktopOversoldGroupWithOptions(request: DescribeDesktopOversoldGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDesktopOversoldGroupResponse>;
|
|
12476
|
+
describeDesktopOversoldGroup(request: DescribeDesktopOversoldGroupRequest): Promise<DescribeDesktopOversoldGroupResponse>;
|
|
12477
|
+
describeDesktopOversoldUserWithOptions(request: DescribeDesktopOversoldUserRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDesktopOversoldUserResponse>;
|
|
12478
|
+
describeDesktopOversoldUser(request: DescribeDesktopOversoldUserRequest): Promise<DescribeDesktopOversoldUserResponse>;
|
|
12479
|
+
describeDesktopOversoldUserGroupWithOptions(request: DescribeDesktopOversoldUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDesktopOversoldUserGroupResponse>;
|
|
12480
|
+
describeDesktopOversoldUserGroup(request: DescribeDesktopOversoldUserGroupRequest): Promise<DescribeDesktopOversoldUserGroupResponse>;
|
|
12481
|
+
/**
|
|
12482
|
+
* You can query data within the last 30 days.
|
|
12483
|
+
*
|
|
12484
|
+
* @param request DescribeDesktopSessionsRequest
|
|
12485
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
12486
|
+
* @return DescribeDesktopSessionsResponse
|
|
12487
|
+
*/
|
|
12488
|
+
describeDesktopSessionsWithOptions(request: DescribeDesktopSessionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDesktopSessionsResponse>;
|
|
12489
|
+
/**
|
|
12490
|
+
* You can query data within the last 30 days.
|
|
12491
|
+
*
|
|
12492
|
+
* @param request DescribeDesktopSessionsRequest
|
|
12493
|
+
* @return DescribeDesktopSessionsResponse
|
|
12494
|
+
*/
|
|
12495
|
+
describeDesktopSessions(request: DescribeDesktopSessionsRequest): Promise<DescribeDesktopSessionsResponse>;
|
|
12496
|
+
/**
|
|
12497
|
+
* When no values are specified for the `InstanceTypeFamily` and `DesktopTypeId` parameters for a cloud desktop, all types of cloud desktops are queried.
|
|
12498
|
+
*
|
|
12499
|
+
* @param request DescribeDesktopTypesRequest
|
|
12500
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
12501
|
+
* @return DescribeDesktopTypesResponse
|
|
12502
|
+
*/
|
|
11446
12503
|
describeDesktopTypesWithOptions(request: DescribeDesktopTypesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDesktopTypesResponse>;
|
|
12504
|
+
/**
|
|
12505
|
+
* When no values are specified for the `InstanceTypeFamily` and `DesktopTypeId` parameters for a cloud desktop, all types of cloud desktops are queried.
|
|
12506
|
+
*
|
|
12507
|
+
* @param request DescribeDesktopTypesRequest
|
|
12508
|
+
* @return DescribeDesktopTypesResponse
|
|
12509
|
+
*/
|
|
11447
12510
|
describeDesktopTypes(request: DescribeDesktopTypesRequest): Promise<DescribeDesktopTypesResponse>;
|
|
11448
12511
|
describeDesktopsWithOptions(request: DescribeDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDesktopsResponse>;
|
|
11449
12512
|
describeDesktops(request: DescribeDesktopsRequest): Promise<DescribeDesktopsResponse>;
|
|
@@ -11474,60 +12537,30 @@ export default class Client extends OpenApi {
|
|
|
11474
12537
|
describeFotaPendingDesktops(request: DescribeFotaPendingDesktopsRequest): Promise<DescribeFotaPendingDesktopsResponse>;
|
|
11475
12538
|
describeFotaTasksWithOptions(request: DescribeFotaTasksRequest, runtime: $Util.RuntimeOptions): Promise<DescribeFotaTasksResponse>;
|
|
11476
12539
|
describeFotaTasks(request: DescribeFotaTasksRequest): Promise<DescribeFotaTasksResponse>;
|
|
12540
|
+
describeGuestApplicationsWithOptions(request: DescribeGuestApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeGuestApplicationsResponse>;
|
|
12541
|
+
describeGuestApplications(request: DescribeGuestApplicationsRequest): Promise<DescribeGuestApplicationsResponse>;
|
|
12542
|
+
describeImageModifiedRecordsWithOptions(request: DescribeImageModifiedRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeImageModifiedRecordsResponse>;
|
|
12543
|
+
describeImageModifiedRecords(request: DescribeImageModifiedRecordsRequest): Promise<DescribeImageModifiedRecordsResponse>;
|
|
11477
12544
|
/**
|
|
11478
|
-
* You can
|
|
11479
|
-
*
|
|
11480
|
-
* @param request DescribeFrontVulPatchListRequest
|
|
11481
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
11482
|
-
* @return DescribeFrontVulPatchListResponse
|
|
11483
|
-
*/
|
|
11484
|
-
describeFrontVulPatchListWithOptions(request: DescribeFrontVulPatchListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeFrontVulPatchListResponse>;
|
|
11485
|
-
/**
|
|
11486
|
-
* You can query the information about patches of up to 50 vulnerabilities in each request before you fix the current vulnerability.
|
|
11487
|
-
*
|
|
11488
|
-
* @param request DescribeFrontVulPatchListRequest
|
|
11489
|
-
* @return DescribeFrontVulPatchListResponse
|
|
11490
|
-
*/
|
|
11491
|
-
describeFrontVulPatchList(request: DescribeFrontVulPatchListRequest): Promise<DescribeFrontVulPatchListResponse>;
|
|
11492
|
-
/**
|
|
11493
|
-
* ## Description
|
|
11494
|
-
* After security protection is enabled, the system scans your cloud desktops for vulnerabilities once every day.
|
|
11495
|
-
*
|
|
11496
|
-
* @param request DescribeGroupedVulRequest
|
|
11497
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
11498
|
-
* @return DescribeGroupedVulResponse
|
|
11499
|
-
*/
|
|
11500
|
-
describeGroupedVulWithOptions(request: DescribeGroupedVulRequest, runtime: $Util.RuntimeOptions): Promise<DescribeGroupedVulResponse>;
|
|
11501
|
-
/**
|
|
11502
|
-
* ## Description
|
|
11503
|
-
* After security protection is enabled, the system scans your cloud desktops for vulnerabilities once every day.
|
|
11504
|
-
*
|
|
11505
|
-
* @param request DescribeGroupedVulRequest
|
|
11506
|
-
* @return DescribeGroupedVulResponse
|
|
11507
|
-
*/
|
|
11508
|
-
describeGroupedVul(request: DescribeGroupedVulRequest): Promise<DescribeGroupedVulResponse>;
|
|
11509
|
-
/**
|
|
11510
|
-
* If you have changed the image for a cloud desktop, you can go to the Elastic Desktop Service (EDS) console to query the image change records. To query the image change records of a cloud desktop, find the cloud desktop that you want to manage, click **Change Image History** to the right of **Image ID/Name** on the **Basic Information** tab.
|
|
12545
|
+
* You can call the ModifyImagePermission operation to share images with other Alibaba Cloud accounts or unshare images. You can call the DescribeImagePermission operation to obtain the list of Alibaba Cloud accounts that have received shared images.
|
|
11511
12546
|
*
|
|
11512
|
-
* @param request
|
|
12547
|
+
* @param request DescribeImagePermissionRequest
|
|
11513
12548
|
* @param runtime runtime options for this request RuntimeOptions
|
|
11514
|
-
* @return
|
|
12549
|
+
* @return DescribeImagePermissionResponse
|
|
11515
12550
|
*/
|
|
11516
|
-
|
|
12551
|
+
describeImagePermissionWithOptions(request: DescribeImagePermissionRequest, runtime: $Util.RuntimeOptions): Promise<DescribeImagePermissionResponse>;
|
|
11517
12552
|
/**
|
|
11518
|
-
*
|
|
12553
|
+
* You can call the ModifyImagePermission operation to share images with other Alibaba Cloud accounts or unshare images. You can call the DescribeImagePermission operation to obtain the list of Alibaba Cloud accounts that have received shared images.
|
|
11519
12554
|
*
|
|
11520
|
-
* @param request
|
|
11521
|
-
* @return
|
|
12555
|
+
* @param request DescribeImagePermissionRequest
|
|
12556
|
+
* @return DescribeImagePermissionResponse
|
|
11522
12557
|
*/
|
|
11523
|
-
describeImageModifiedRecords(request: DescribeImageModifiedRecordsRequest): Promise<DescribeImageModifiedRecordsResponse>;
|
|
11524
|
-
describeImagePermissionWithOptions(request: DescribeImagePermissionRequest, runtime: $Util.RuntimeOptions): Promise<DescribeImagePermissionResponse>;
|
|
11525
12558
|
describeImagePermission(request: DescribeImagePermissionRequest): Promise<DescribeImagePermissionResponse>;
|
|
11526
12559
|
describeImagesWithOptions(request: DescribeImagesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeImagesResponse>;
|
|
11527
12560
|
describeImages(request: DescribeImagesRequest): Promise<DescribeImagesResponse>;
|
|
11528
12561
|
/**
|
|
11529
|
-
* * After you run a command,
|
|
11530
|
-
* * You can query the execution
|
|
12562
|
+
* * After you run a command, it may not succeed. You can call this operation to query the execution result.
|
|
12563
|
+
* * You can query the information about execution in the last two weeks. A maximum of 100,000 lines of execution information can be retained.
|
|
11531
12564
|
*
|
|
11532
12565
|
* @param request DescribeInvocationsRequest
|
|
11533
12566
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -11535,8 +12568,8 @@ export default class Client extends OpenApi {
|
|
|
11535
12568
|
*/
|
|
11536
12569
|
describeInvocationsWithOptions(request: DescribeInvocationsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInvocationsResponse>;
|
|
11537
12570
|
/**
|
|
11538
|
-
* * After you run a command,
|
|
11539
|
-
* * You can query the execution
|
|
12571
|
+
* * After you run a command, it may not succeed. You can call this operation to query the execution result.
|
|
12572
|
+
* * You can query the information about execution in the last two weeks. A maximum of 100,000 lines of execution information can be retained.
|
|
11540
12573
|
*
|
|
11541
12574
|
* @param request DescribeInvocationsRequest
|
|
11542
12575
|
* @return DescribeInvocationsResponse
|
|
@@ -11552,50 +12585,60 @@ export default class Client extends OpenApi {
|
|
|
11552
12585
|
describeOfficeSites(request: DescribeOfficeSitesRequest): Promise<DescribeOfficeSitesResponse>;
|
|
11553
12586
|
describePolicyGroupsWithOptions(request: DescribePolicyGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribePolicyGroupsResponse>;
|
|
11554
12587
|
describePolicyGroups(request: DescribePolicyGroupsRequest): Promise<DescribePolicyGroupsResponse>;
|
|
11555
|
-
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
11556
|
-
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
11557
|
-
describeScanTaskProgressWithOptions(request: DescribeScanTaskProgressRequest, runtime: $Util.RuntimeOptions): Promise<DescribeScanTaskProgressResponse>;
|
|
11558
|
-
describeScanTaskProgress(request: DescribeScanTaskProgressRequest): Promise<DescribeScanTaskProgressResponse>;
|
|
11559
|
-
describeSecurityEventOperationStatusWithOptions(request: DescribeSecurityEventOperationStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSecurityEventOperationStatusResponse>;
|
|
11560
|
-
describeSecurityEventOperationStatus(request: DescribeSecurityEventOperationStatusRequest): Promise<DescribeSecurityEventOperationStatusResponse>;
|
|
11561
|
-
describeSecurityEventOperationsWithOptions(request: DescribeSecurityEventOperationsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSecurityEventOperationsResponse>;
|
|
11562
|
-
describeSecurityEventOperations(request: DescribeSecurityEventOperationsRequest): Promise<DescribeSecurityEventOperationsResponse>;
|
|
11563
|
-
describeSnapshotsWithOptions(request: DescribeSnapshotsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSnapshotsResponse>;
|
|
11564
|
-
describeSnapshots(request: DescribeSnapshotsRequest): Promise<DescribeSnapshotsResponse>;
|
|
11565
|
-
describeSuspEventOverviewWithOptions(request: DescribeSuspEventOverviewRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSuspEventOverviewResponse>;
|
|
11566
|
-
describeSuspEventOverview(request: DescribeSuspEventOverviewRequest): Promise<DescribeSuspEventOverviewResponse>;
|
|
11567
12588
|
/**
|
|
11568
|
-
* ##
|
|
11569
|
-
*
|
|
12589
|
+
* ## Usage notes
|
|
12590
|
+
* The request parameters vary based on the type of desktop resources whose price you want to query. Take note of the following items:
|
|
12591
|
+
* * If you set ResourceType to OfficeSite, you must specify InstanceType.
|
|
12592
|
+
* * If you set ResourceType to Bandwidth, the pay-by-data-transfer metering method is used for network billing.
|
|
12593
|
+
* * If you set ResourceType to Desktop, you must specify InstanceType, RootDiskSizeGib, and UserDiskSizeGib. You can specify OsType, PeriodUnit, Period, and Amount based on your business requirements.
|
|
12594
|
+
* > Before you call this operation to query the prices of cloud desktops by setting ResourceType to Desktop, you must know the desktop types and disk sizes that EDS provides. The disk sizes vary based on the desktop types. For more information, see [Cloud desktop types](~~188609~~).
|
|
11570
12595
|
*
|
|
11571
|
-
* @param request
|
|
12596
|
+
* @param request DescribePriceRequest
|
|
11572
12597
|
* @param runtime runtime options for this request RuntimeOptions
|
|
11573
|
-
* @return
|
|
11574
|
-
*/
|
|
11575
|
-
|
|
11576
|
-
/**
|
|
11577
|
-
* ##
|
|
11578
|
-
*
|
|
11579
|
-
*
|
|
11580
|
-
*
|
|
11581
|
-
*
|
|
11582
|
-
|
|
11583
|
-
|
|
12598
|
+
* @return DescribePriceResponse
|
|
12599
|
+
*/
|
|
12600
|
+
describePriceWithOptions(request: DescribePriceRequest, runtime: $Util.RuntimeOptions): Promise<DescribePriceResponse>;
|
|
12601
|
+
/**
|
|
12602
|
+
* ## Usage notes
|
|
12603
|
+
* The request parameters vary based on the type of desktop resources whose price you want to query. Take note of the following items:
|
|
12604
|
+
* * If you set ResourceType to OfficeSite, you must specify InstanceType.
|
|
12605
|
+
* * If you set ResourceType to Bandwidth, the pay-by-data-transfer metering method is used for network billing.
|
|
12606
|
+
* * If you set ResourceType to Desktop, you must specify InstanceType, RootDiskSizeGib, and UserDiskSizeGib. You can specify OsType, PeriodUnit, Period, and Amount based on your business requirements.
|
|
12607
|
+
* > Before you call this operation to query the prices of cloud desktops by setting ResourceType to Desktop, you must know the desktop types and disk sizes that EDS provides. The disk sizes vary based on the desktop types. For more information, see [Cloud desktop types](~~188609~~).
|
|
12608
|
+
*
|
|
12609
|
+
* @param request DescribePriceRequest
|
|
12610
|
+
* @return DescribePriceResponse
|
|
12611
|
+
*/
|
|
12612
|
+
describePrice(request: DescribePriceRequest): Promise<DescribePriceResponse>;
|
|
12613
|
+
describePriceForCreateDesktopOversoldGroupWithOptions(request: DescribePriceForCreateDesktopOversoldGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribePriceForCreateDesktopOversoldGroupResponse>;
|
|
12614
|
+
describePriceForCreateDesktopOversoldGroup(request: DescribePriceForCreateDesktopOversoldGroupRequest): Promise<DescribePriceForCreateDesktopOversoldGroupResponse>;
|
|
12615
|
+
describePriceForModifyDesktopOversoldGroupSaleWithOptions(request: DescribePriceForModifyDesktopOversoldGroupSaleRequest, runtime: $Util.RuntimeOptions): Promise<DescribePriceForModifyDesktopOversoldGroupSaleResponse>;
|
|
12616
|
+
describePriceForModifyDesktopOversoldGroupSale(request: DescribePriceForModifyDesktopOversoldGroupSaleRequest): Promise<DescribePriceForModifyDesktopOversoldGroupSaleResponse>;
|
|
12617
|
+
describePriceForRenewDesktopOversoldGroupWithOptions(request: DescribePriceForRenewDesktopOversoldGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribePriceForRenewDesktopOversoldGroupResponse>;
|
|
12618
|
+
describePriceForRenewDesktopOversoldGroup(request: DescribePriceForRenewDesktopOversoldGroupRequest): Promise<DescribePriceForRenewDesktopOversoldGroupResponse>;
|
|
12619
|
+
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
12620
|
+
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
11584
12621
|
/**
|
|
11585
|
-
*
|
|
12622
|
+
* * This is a central operation and can be called only by using services in the China (Shanghai) region.
|
|
12623
|
+
* * You can query session statistics for the past hour.
|
|
11586
12624
|
*
|
|
11587
|
-
* @param request
|
|
12625
|
+
* @param request DescribeSessionStatisticRequest
|
|
11588
12626
|
* @param runtime runtime options for this request RuntimeOptions
|
|
11589
|
-
* @return
|
|
12627
|
+
* @return DescribeSessionStatisticResponse
|
|
11590
12628
|
*/
|
|
11591
|
-
|
|
12629
|
+
describeSessionStatisticWithOptions(request: DescribeSessionStatisticRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSessionStatisticResponse>;
|
|
11592
12630
|
/**
|
|
11593
|
-
*
|
|
12631
|
+
* * This is a central operation and can be called only by using services in the China (Shanghai) region.
|
|
12632
|
+
* * You can query session statistics for the past hour.
|
|
11594
12633
|
*
|
|
11595
|
-
* @param request
|
|
11596
|
-
* @return
|
|
12634
|
+
* @param request DescribeSessionStatisticRequest
|
|
12635
|
+
* @return DescribeSessionStatisticResponse
|
|
11597
12636
|
*/
|
|
11598
|
-
|
|
12637
|
+
describeSessionStatistic(request: DescribeSessionStatisticRequest): Promise<DescribeSessionStatisticResponse>;
|
|
12638
|
+
describeSnapshotsWithOptions(request: DescribeSnapshotsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSnapshotsResponse>;
|
|
12639
|
+
describeSnapshots(request: DescribeSnapshotsRequest): Promise<DescribeSnapshotsResponse>;
|
|
12640
|
+
describeUserConnectTimeWithOptions(request: DescribeUserConnectTimeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUserConnectTimeResponse>;
|
|
12641
|
+
describeUserConnectTime(request: DescribeUserConnectTimeRequest): Promise<DescribeUserConnectTimeResponse>;
|
|
11599
12642
|
describeUserConnectionRecordsWithOptions(request: DescribeUserConnectionRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUserConnectionRecordsResponse>;
|
|
11600
12643
|
describeUserConnectionRecords(request: DescribeUserConnectionRecordsRequest): Promise<DescribeUserConnectionRecordsResponse>;
|
|
11601
12644
|
describeUserProfilePathRulesWithOptions(request: DescribeUserProfilePathRulesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUserProfilePathRulesResponse>;
|
|
@@ -11606,12 +12649,6 @@ export default class Client extends OpenApi {
|
|
|
11606
12649
|
describeUsersPassword(request: DescribeUsersPasswordRequest): Promise<DescribeUsersPasswordResponse>;
|
|
11607
12650
|
describeVirtualMFADevicesWithOptions(request: DescribeVirtualMFADevicesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVirtualMFADevicesResponse>;
|
|
11608
12651
|
describeVirtualMFADevices(request: DescribeVirtualMFADevicesRequest): Promise<DescribeVirtualMFADevicesResponse>;
|
|
11609
|
-
describeVulDetailsWithOptions(request: DescribeVulDetailsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVulDetailsResponse>;
|
|
11610
|
-
describeVulDetails(request: DescribeVulDetailsRequest): Promise<DescribeVulDetailsResponse>;
|
|
11611
|
-
describeVulListWithOptions(request: DescribeVulListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVulListResponse>;
|
|
11612
|
-
describeVulList(request: DescribeVulListRequest): Promise<DescribeVulListResponse>;
|
|
11613
|
-
describeVulOverviewWithOptions(request: DescribeVulOverviewRequest, runtime: $Util.RuntimeOptions): Promise<DescribeVulOverviewResponse>;
|
|
11614
|
-
describeVulOverview(request: DescribeVulOverviewRequest): Promise<DescribeVulOverviewResponse>;
|
|
11615
12652
|
describeZonesWithOptions(request: DescribeZonesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeZonesResponse>;
|
|
11616
12653
|
describeZones(request: DescribeZonesRequest): Promise<DescribeZonesResponse>;
|
|
11617
12654
|
detachCenWithOptions(request: DetachCenRequest, runtime: $Util.RuntimeOptions): Promise<DetachCenResponse>;
|
|
@@ -11624,20 +12661,7 @@ export default class Client extends OpenApi {
|
|
|
11624
12661
|
dissociateNetworkPackage(request: DissociateNetworkPackageRequest): Promise<DissociateNetworkPackageResponse>;
|
|
11625
12662
|
exportClientEventsWithOptions(request: ExportClientEventsRequest, runtime: $Util.RuntimeOptions): Promise<ExportClientEventsResponse>;
|
|
11626
12663
|
exportClientEvents(request: ExportClientEventsRequest): Promise<ExportClientEventsResponse>;
|
|
11627
|
-
/**
|
|
11628
|
-
* You can call the operation to export desktop groups and then save the desktop groups in the .xlsx file. The information about exported desktop groups includes: the desktop group ID and name, the workspace ID and name, the desktop template, the security policy name, the number of authorized users, the billing method, and the creation time.
|
|
11629
|
-
*
|
|
11630
|
-
* @param request ExportDesktopGroupInfoRequest
|
|
11631
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
11632
|
-
* @return ExportDesktopGroupInfoResponse
|
|
11633
|
-
*/
|
|
11634
12664
|
exportDesktopGroupInfoWithOptions(request: ExportDesktopGroupInfoRequest, runtime: $Util.RuntimeOptions): Promise<ExportDesktopGroupInfoResponse>;
|
|
11635
|
-
/**
|
|
11636
|
-
* You can call the operation to export desktop groups and then save the desktop groups in the .xlsx file. The information about exported desktop groups includes: the desktop group ID and name, the workspace ID and name, the desktop template, the security policy name, the number of authorized users, the billing method, and the creation time.
|
|
11637
|
-
*
|
|
11638
|
-
* @param request ExportDesktopGroupInfoRequest
|
|
11639
|
-
* @return ExportDesktopGroupInfoResponse
|
|
11640
|
-
*/
|
|
11641
12665
|
exportDesktopGroupInfo(request: ExportDesktopGroupInfoRequest): Promise<ExportDesktopGroupInfoResponse>;
|
|
11642
12666
|
/**
|
|
11643
12667
|
* The list of cloud desktops that are exported by calling the ExportDesktopListInfo operation is saved in a CSV file. The CSV file contains the information about each cloud desktop, including the IDs and names of cloud desktops, IDs and names of workspaces, IDs and names of desktop groups, vCPUs, memory, protocols, system disk capacity, data disk capacity, OSs, running status, current user, tags, IP addresses, billing methods, and creation time.
|
|
@@ -11654,15 +12678,18 @@ export default class Client extends OpenApi {
|
|
|
11654
12678
|
* @return ExportDesktopListInfoResponse
|
|
11655
12679
|
*/
|
|
11656
12680
|
exportDesktopListInfo(request: ExportDesktopListInfoRequest): Promise<ExportDesktopListInfoResponse>;
|
|
12681
|
+
getAsyncTaskWithOptions(request: GetAsyncTaskRequest, runtime: $Util.RuntimeOptions): Promise<GetAsyncTaskResponse>;
|
|
12682
|
+
getAsyncTask(request: GetAsyncTaskRequest): Promise<GetAsyncTaskResponse>;
|
|
11657
12683
|
getConnectionTicketWithOptions(request: GetConnectionTicketRequest, runtime: $Util.RuntimeOptions): Promise<GetConnectionTicketResponse>;
|
|
11658
12684
|
getConnectionTicket(request: GetConnectionTicketRequest): Promise<GetConnectionTicketResponse>;
|
|
12685
|
+
getCoordinateTicketWithOptions(request: GetCoordinateTicketRequest, runtime: $Util.RuntimeOptions): Promise<GetCoordinateTicketResponse>;
|
|
12686
|
+
getCoordinateTicket(request: GetCoordinateTicketRequest): Promise<GetCoordinateTicketResponse>;
|
|
11659
12687
|
getDesktopGroupDetailWithOptions(request: GetDesktopGroupDetailRequest, runtime: $Util.RuntimeOptions): Promise<GetDesktopGroupDetailResponse>;
|
|
11660
12688
|
getDesktopGroupDetail(request: GetDesktopGroupDetailRequest): Promise<GetDesktopGroupDetailResponse>;
|
|
11661
12689
|
getOfficeSiteSsoStatusWithOptions(request: GetOfficeSiteSsoStatusRequest, runtime: $Util.RuntimeOptions): Promise<GetOfficeSiteSsoStatusResponse>;
|
|
11662
12690
|
getOfficeSiteSsoStatus(request: GetOfficeSiteSsoStatusRequest): Promise<GetOfficeSiteSsoStatusResponse>;
|
|
11663
12691
|
/**
|
|
11664
|
-
*
|
|
11665
|
-
* You can call this operation only for workspaces of the Active Directory (AD) and convenience account types. You cannot call this operation for RAM directories.
|
|
12692
|
+
* You can call this operation only for workspaces of the Active Directory (AD) and convenience account types.
|
|
11666
12693
|
*
|
|
11667
12694
|
* @param request GetSpMetadataRequest
|
|
11668
12695
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -11670,19 +12697,31 @@ export default class Client extends OpenApi {
|
|
|
11670
12697
|
*/
|
|
11671
12698
|
getSpMetadataWithOptions(request: GetSpMetadataRequest, runtime: $Util.RuntimeOptions): Promise<GetSpMetadataResponse>;
|
|
11672
12699
|
/**
|
|
11673
|
-
*
|
|
11674
|
-
* You can call this operation only for workspaces of the Active Directory (AD) and convenience account types. You cannot call this operation for RAM directories.
|
|
12700
|
+
* You can call this operation only for workspaces of the Active Directory (AD) and convenience account types.
|
|
11675
12701
|
*
|
|
11676
12702
|
* @param request GetSpMetadataRequest
|
|
11677
12703
|
* @return GetSpMetadataResponse
|
|
11678
12704
|
*/
|
|
11679
12705
|
getSpMetadata(request: GetSpMetadataRequest): Promise<GetSpMetadataResponse>;
|
|
11680
|
-
|
|
11681
|
-
|
|
12706
|
+
/**
|
|
12707
|
+
* Hibernating a cloud desktop is in private preview. If you want to try this feature, submit a ticket.
|
|
12708
|
+
*
|
|
12709
|
+
* @param request HibernateDesktopsRequest
|
|
12710
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
12711
|
+
* @return HibernateDesktopsResponse
|
|
12712
|
+
*/
|
|
12713
|
+
hibernateDesktopsWithOptions(request: HibernateDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<HibernateDesktopsResponse>;
|
|
12714
|
+
/**
|
|
12715
|
+
* Hibernating a cloud desktop is in private preview. If you want to try this feature, submit a ticket.
|
|
12716
|
+
*
|
|
12717
|
+
* @param request HibernateDesktopsRequest
|
|
12718
|
+
* @return HibernateDesktopsResponse
|
|
12719
|
+
*/
|
|
12720
|
+
hibernateDesktops(request: HibernateDesktopsRequest): Promise<HibernateDesktopsResponse>;
|
|
11682
12721
|
listCdsFilesWithOptions(tmpReq: ListCdsFilesRequest, runtime: $Util.RuntimeOptions): Promise<ListCdsFilesResponse>;
|
|
11683
12722
|
listCdsFiles(request: ListCdsFilesRequest): Promise<ListCdsFilesResponse>;
|
|
11684
12723
|
/**
|
|
11685
|
-
* If you use an AD directory to connect to an AD system
|
|
12724
|
+
* If you use an AD directory to connect to an AD system, you can call this operation to obtain the user information in the AD system.
|
|
11686
12725
|
*
|
|
11687
12726
|
* @param request ListDirectoryUsersRequest
|
|
11688
12727
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -11690,7 +12729,7 @@ export default class Client extends OpenApi {
|
|
|
11690
12729
|
*/
|
|
11691
12730
|
listDirectoryUsersWithOptions(request: ListDirectoryUsersRequest, runtime: $Util.RuntimeOptions): Promise<ListDirectoryUsersResponse>;
|
|
11692
12731
|
/**
|
|
11693
|
-
* If you use an AD directory to connect to an AD system
|
|
12732
|
+
* If you use an AD directory to connect to an AD system, you can call this operation to obtain the user information in the AD system.
|
|
11694
12733
|
*
|
|
11695
12734
|
* @param request ListDirectoryUsersRequest
|
|
11696
12735
|
* @return ListDirectoryUsersResponse
|
|
@@ -11703,7 +12742,6 @@ export default class Client extends OpenApi {
|
|
|
11703
12742
|
listOfficeSiteUsersWithOptions(request: ListOfficeSiteUsersRequest, runtime: $Util.RuntimeOptions): Promise<ListOfficeSiteUsersResponse>;
|
|
11704
12743
|
listOfficeSiteUsers(request: ListOfficeSiteUsersRequest): Promise<ListOfficeSiteUsersResponse>;
|
|
11705
12744
|
/**
|
|
11706
|
-
* ## Description
|
|
11707
12745
|
* You must specify at least one of the ResourceId.N, Tag.N.Key, and Tag.N.Value parameters in the request to specify the query objects.
|
|
11708
12746
|
*
|
|
11709
12747
|
* @param request ListTagResourcesRequest
|
|
@@ -11712,7 +12750,6 @@ export default class Client extends OpenApi {
|
|
|
11712
12750
|
*/
|
|
11713
12751
|
listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse>;
|
|
11714
12752
|
/**
|
|
11715
|
-
* ## Description
|
|
11716
12753
|
* You must specify at least one of the ResourceId.N, Tag.N.Key, and Tag.N.Value parameters in the request to specify the query objects.
|
|
11717
12754
|
*
|
|
11718
12755
|
* @param request ListTagResourcesRequest
|
|
@@ -11722,7 +12759,6 @@ export default class Client extends OpenApi {
|
|
|
11722
12759
|
listUserAdOrganizationUnitsWithOptions(request: ListUserAdOrganizationUnitsRequest, runtime: $Util.RuntimeOptions): Promise<ListUserAdOrganizationUnitsResponse>;
|
|
11723
12760
|
listUserAdOrganizationUnits(request: ListUserAdOrganizationUnitsRequest): Promise<ListUserAdOrganizationUnitsResponse>;
|
|
11724
12761
|
/**
|
|
11725
|
-
* ## Description
|
|
11726
12762
|
* After a virtual MFA device is locked, its status changes to LOCKED. The AD user who uses the virtual MFA device is unable to pass MFA and is therefore unable to log on to the client. You can call the [UnlockVirtualMFADevice](~~206212~~) operation to unlock the device.
|
|
11727
12763
|
*
|
|
11728
12764
|
* @param request LockVirtualMFADeviceRequest
|
|
@@ -11731,7 +12767,6 @@ export default class Client extends OpenApi {
|
|
|
11731
12767
|
*/
|
|
11732
12768
|
lockVirtualMFADeviceWithOptions(request: LockVirtualMFADeviceRequest, runtime: $Util.RuntimeOptions): Promise<LockVirtualMFADeviceResponse>;
|
|
11733
12769
|
/**
|
|
11734
|
-
* ## Description
|
|
11735
12770
|
* After a virtual MFA device is locked, its status changes to LOCKED. The AD user who uses the virtual MFA device is unable to pass MFA and is therefore unable to log on to the client. You can call the [UnlockVirtualMFADevice](~~206212~~) operation to unlock the device.
|
|
11736
12771
|
*
|
|
11737
12772
|
* @param request LockVirtualMFADeviceRequest
|
|
@@ -11740,40 +12775,17 @@ export default class Client extends OpenApi {
|
|
|
11740
12775
|
lockVirtualMFADevice(request: LockVirtualMFADeviceRequest): Promise<LockVirtualMFADeviceResponse>;
|
|
11741
12776
|
migrateDesktopsWithOptions(request: MigrateDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<MigrateDesktopsResponse>;
|
|
11742
12777
|
migrateDesktops(request: MigrateDesktopsRequest): Promise<MigrateDesktopsResponse>;
|
|
11743
|
-
|
|
11744
|
-
|
|
11745
|
-
*
|
|
11746
|
-
* @param request ModifyADConnectorDirectoryRequest
|
|
11747
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
11748
|
-
* @return ModifyADConnectorDirectoryResponse
|
|
11749
|
-
*/
|
|
12778
|
+
migrateImageProtocolWithOptions(request: MigrateImageProtocolRequest, runtime: $Util.RuntimeOptions): Promise<MigrateImageProtocolResponse>;
|
|
12779
|
+
migrateImageProtocol(request: MigrateImageProtocolRequest): Promise<MigrateImageProtocolResponse>;
|
|
11750
12780
|
modifyADConnectorDirectoryWithOptions(request: ModifyADConnectorDirectoryRequest, runtime: $Util.RuntimeOptions): Promise<ModifyADConnectorDirectoryResponse>;
|
|
11751
|
-
/**
|
|
11752
|
-
* This operation modifies only the domain name and Domain Name System (DNS) parameters of AD directories in the ERROR or REGISTERING state. DNS parameters include DomainName, SubDomainName, DnsAddress.N, and SubDomainDnsAddress.
|
|
11753
|
-
*
|
|
11754
|
-
* @param request ModifyADConnectorDirectoryRequest
|
|
11755
|
-
* @return ModifyADConnectorDirectoryResponse
|
|
11756
|
-
*/
|
|
11757
12781
|
modifyADConnectorDirectory(request: ModifyADConnectorDirectoryRequest): Promise<ModifyADConnectorDirectoryResponse>;
|
|
11758
|
-
/**
|
|
11759
|
-
* This operation modifies the domain name and DNS parameters of workspaces that are of enterprise AD account type and in the Error or Registering state. DNS parameters include DomainName, SubDomainName, DnsAddress.N, and SubDomainDnsAddress.N.
|
|
11760
|
-
*
|
|
11761
|
-
* @param request ModifyADConnectorOfficeSiteRequest
|
|
11762
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
11763
|
-
* @return ModifyADConnectorOfficeSiteResponse
|
|
11764
|
-
*/
|
|
11765
12782
|
modifyADConnectorOfficeSiteWithOptions(request: ModifyADConnectorOfficeSiteRequest, runtime: $Util.RuntimeOptions): Promise<ModifyADConnectorOfficeSiteResponse>;
|
|
11766
|
-
/**
|
|
11767
|
-
* This operation modifies the domain name and DNS parameters of workspaces that are of enterprise AD account type and in the Error or Registering state. DNS parameters include DomainName, SubDomainName, DnsAddress.N, and SubDomainDnsAddress.N.
|
|
11768
|
-
*
|
|
11769
|
-
* @param request ModifyADConnectorOfficeSiteRequest
|
|
11770
|
-
* @return ModifyADConnectorOfficeSiteResponse
|
|
11771
|
-
*/
|
|
11772
12783
|
modifyADConnectorOfficeSite(request: ModifyADConnectorOfficeSiteRequest): Promise<ModifyADConnectorOfficeSiteResponse>;
|
|
12784
|
+
modifyAclEntriesWithOptions(request: ModifyAclEntriesRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAclEntriesResponse>;
|
|
12785
|
+
modifyAclEntries(request: ModifyAclEntriesRequest): Promise<ModifyAclEntriesResponse>;
|
|
11773
12786
|
modifyAutoSnapshotPolicyWithOptions(request: ModifyAutoSnapshotPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAutoSnapshotPolicyResponse>;
|
|
11774
12787
|
modifyAutoSnapshotPolicy(request: ModifyAutoSnapshotPolicyRequest): Promise<ModifyAutoSnapshotPolicyResponse>;
|
|
11775
12788
|
/**
|
|
11776
|
-
* ## Description
|
|
11777
12789
|
* Only custom desktop templates can be modified.
|
|
11778
12790
|
*
|
|
11779
12791
|
* @param request ModifyBundleRequest
|
|
@@ -11782,7 +12794,6 @@ export default class Client extends OpenApi {
|
|
|
11782
12794
|
*/
|
|
11783
12795
|
modifyBundleWithOptions(request: ModifyBundleRequest, runtime: $Util.RuntimeOptions): Promise<ModifyBundleResponse>;
|
|
11784
12796
|
/**
|
|
11785
|
-
* ## Description
|
|
11786
12797
|
* Only custom desktop templates can be modified.
|
|
11787
12798
|
*
|
|
11788
12799
|
* @param request ModifyBundleRequest
|
|
@@ -11797,14 +12808,14 @@ export default class Client extends OpenApi {
|
|
|
11797
12808
|
modifyCloudDriveGroups(request: ModifyCloudDriveGroupsRequest): Promise<ModifyCloudDriveGroupsResponse>;
|
|
11798
12809
|
modifyCloudDrivePermissionWithOptions(request: ModifyCloudDrivePermissionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyCloudDrivePermissionResponse>;
|
|
11799
12810
|
modifyCloudDrivePermission(request: ModifyCloudDrivePermissionRequest): Promise<ModifyCloudDrivePermissionResponse>;
|
|
12811
|
+
modifyCloudDriveUsersWithOptions(request: ModifyCloudDriveUsersRequest, runtime: $Util.RuntimeOptions): Promise<ModifyCloudDriveUsersResponse>;
|
|
12812
|
+
modifyCloudDriveUsers(request: ModifyCloudDriveUsersRequest): Promise<ModifyCloudDriveUsersResponse>;
|
|
11800
12813
|
modifyCustomizedListHeadersWithOptions(request: ModifyCustomizedListHeadersRequest, runtime: $Util.RuntimeOptions): Promise<ModifyCustomizedListHeadersResponse>;
|
|
11801
12814
|
modifyCustomizedListHeaders(request: ModifyCustomizedListHeadersRequest): Promise<ModifyCustomizedListHeadersResponse>;
|
|
11802
12815
|
/**
|
|
11803
|
-
* * Before you call this operation, make sure that you are familiar with the billing methods of cloud desktops
|
|
12816
|
+
* * Before you call this operation, make sure that you are familiar with the billing methods of cloud desktops. For more information, see [Billing overview](~~188395~~).
|
|
11804
12817
|
* * Before you call this operation, make sure that the cloud desktop that you want to manage is in the Running or Stopped state and no overdue payments of the cloud desktop are generated.
|
|
11805
|
-
* * After the order payment is completed, the system starts to change the billing method of the cloud desktop. During the change, you cannot perform operations, such as starting or stopping the cloud desktop, and changing configurations of the cloud desktop
|
|
11806
|
-
* After you change the billing method of the cloud desktop from subscription to pay-as-you-go, you may get a refund. For more information, see [Change a subscription cloud desktop to a pay-as-you-go one](https://help.aliyun.com/document_detail/439964.html).
|
|
11807
|
-
* </props>
|
|
12818
|
+
* * After the order payment is completed, the system starts to change the billing method of the cloud desktop. During the change, you cannot perform operations, such as starting or stopping the cloud desktop, and changing configurations of the cloud desktop.
|
|
11808
12819
|
*
|
|
11809
12820
|
* @param request ModifyDesktopChargeTypeRequest
|
|
11810
12821
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -11812,11 +12823,9 @@ export default class Client extends OpenApi {
|
|
|
11812
12823
|
*/
|
|
11813
12824
|
modifyDesktopChargeTypeWithOptions(request: ModifyDesktopChargeTypeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopChargeTypeResponse>;
|
|
11814
12825
|
/**
|
|
11815
|
-
* * Before you call this operation, make sure that you are familiar with the billing methods of cloud desktops
|
|
12826
|
+
* * Before you call this operation, make sure that you are familiar with the billing methods of cloud desktops. For more information, see [Billing overview](~~188395~~).
|
|
11816
12827
|
* * Before you call this operation, make sure that the cloud desktop that you want to manage is in the Running or Stopped state and no overdue payments of the cloud desktop are generated.
|
|
11817
|
-
* * After the order payment is completed, the system starts to change the billing method of the cloud desktop. During the change, you cannot perform operations, such as starting or stopping the cloud desktop, and changing configurations of the cloud desktop
|
|
11818
|
-
* After you change the billing method of the cloud desktop from subscription to pay-as-you-go, you may get a refund. For more information, see [Change a subscription cloud desktop to a pay-as-you-go one](https://help.aliyun.com/document_detail/439964.html).
|
|
11819
|
-
* </props>
|
|
12828
|
+
* * After the order payment is completed, the system starts to change the billing method of the cloud desktop. During the change, you cannot perform operations, such as starting or stopping the cloud desktop, and changing configurations of the cloud desktop.
|
|
11820
12829
|
*
|
|
11821
12830
|
* @param request ModifyDesktopChargeTypeRequest
|
|
11822
12831
|
* @return ModifyDesktopChargeTypeResponse
|
|
@@ -11846,8 +12855,7 @@ export default class Client extends OpenApi {
|
|
|
11846
12855
|
*/
|
|
11847
12856
|
modifyDesktopGroup(request: ModifyDesktopGroupRequest): Promise<ModifyDesktopGroupResponse>;
|
|
11848
12857
|
/**
|
|
11849
|
-
*
|
|
11850
|
-
* You can only change the hostname of a Windows cloud desktop in the workspace of the enterprise Active Directory (AD) account type. After the hostname is changed, the cloud desktop is recreated.
|
|
12858
|
+
* You can only change the hostname of a Windows cloud desktop in the Active Directory (AD) workspace. After the hostname is changed, the cloud desktop is recreated.
|
|
11851
12859
|
*
|
|
11852
12860
|
* @param request ModifyDesktopHostNameRequest
|
|
11853
12861
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -11855,8 +12863,7 @@ export default class Client extends OpenApi {
|
|
|
11855
12863
|
*/
|
|
11856
12864
|
modifyDesktopHostNameWithOptions(request: ModifyDesktopHostNameRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopHostNameResponse>;
|
|
11857
12865
|
/**
|
|
11858
|
-
*
|
|
11859
|
-
* You can only change the hostname of a Windows cloud desktop in the workspace of the enterprise Active Directory (AD) account type. After the hostname is changed, the cloud desktop is recreated.
|
|
12866
|
+
* You can only change the hostname of a Windows cloud desktop in the Active Directory (AD) workspace. After the hostname is changed, the cloud desktop is recreated.
|
|
11860
12867
|
*
|
|
11861
12868
|
* @param request ModifyDesktopHostNameRequest
|
|
11862
12869
|
* @return ModifyDesktopHostNameResponse
|
|
@@ -11864,6 +12871,12 @@ export default class Client extends OpenApi {
|
|
|
11864
12871
|
modifyDesktopHostName(request: ModifyDesktopHostNameRequest): Promise<ModifyDesktopHostNameResponse>;
|
|
11865
12872
|
modifyDesktopNameWithOptions(request: ModifyDesktopNameRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopNameResponse>;
|
|
11866
12873
|
modifyDesktopName(request: ModifyDesktopNameRequest): Promise<ModifyDesktopNameResponse>;
|
|
12874
|
+
modifyDesktopOversoldGroupWithOptions(request: ModifyDesktopOversoldGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopOversoldGroupResponse>;
|
|
12875
|
+
modifyDesktopOversoldGroup(request: ModifyDesktopOversoldGroupRequest): Promise<ModifyDesktopOversoldGroupResponse>;
|
|
12876
|
+
modifyDesktopOversoldGroupSaleWithOptions(request: ModifyDesktopOversoldGroupSaleRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopOversoldGroupSaleResponse>;
|
|
12877
|
+
modifyDesktopOversoldGroupSale(request: ModifyDesktopOversoldGroupSaleRequest): Promise<ModifyDesktopOversoldGroupSaleResponse>;
|
|
12878
|
+
modifyDesktopOversoldUserGroupWithOptions(request: ModifyDesktopOversoldUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopOversoldUserGroupResponse>;
|
|
12879
|
+
modifyDesktopOversoldUserGroup(request: ModifyDesktopOversoldUserGroupRequest): Promise<ModifyDesktopOversoldUserGroupResponse>;
|
|
11867
12880
|
/**
|
|
11868
12881
|
* You can call this operation to change the configurations, such as the desktop type and disk size, of a cloud desktop.
|
|
11869
12882
|
* * Before you call this operation, take note of the cloud desktop types and the disk sizes for each type of cloud desktop that Elastic Desktop Service (EDS) provides. For more information, see [Cloud desktop types](~~188609~~).
|
|
@@ -11897,8 +12910,10 @@ export default class Client extends OpenApi {
|
|
|
11897
12910
|
* @return ModifyDesktopSpecResponse
|
|
11898
12911
|
*/
|
|
11899
12912
|
modifyDesktopSpec(request: ModifyDesktopSpecRequest): Promise<ModifyDesktopSpecResponse>;
|
|
12913
|
+
modifyDesktopTimerWithOptions(request: ModifyDesktopTimerRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopTimerResponse>;
|
|
12914
|
+
modifyDesktopTimer(request: ModifyDesktopTimerRequest): Promise<ModifyDesktopTimerResponse>;
|
|
11900
12915
|
/**
|
|
11901
|
-
* The cloud
|
|
12916
|
+
* The cloud desktop must be in the Running (Running) state.
|
|
11902
12917
|
*
|
|
11903
12918
|
* @param request ModifyDesktopsPolicyGroupRequest
|
|
11904
12919
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -11906,7 +12921,7 @@ export default class Client extends OpenApi {
|
|
|
11906
12921
|
*/
|
|
11907
12922
|
modifyDesktopsPolicyGroupWithOptions(request: ModifyDesktopsPolicyGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopsPolicyGroupResponse>;
|
|
11908
12923
|
/**
|
|
11909
|
-
* The cloud
|
|
12924
|
+
* The cloud desktop must be in the Running (Running) state.
|
|
11910
12925
|
*
|
|
11911
12926
|
* @param request ModifyDesktopsPolicyGroupRequest
|
|
11912
12927
|
* @return ModifyDesktopsPolicyGroupResponse
|
|
@@ -11946,7 +12961,7 @@ export default class Client extends OpenApi {
|
|
|
11946
12961
|
*/
|
|
11947
12962
|
modifyDiskSpec(request: ModifyDiskSpecRequest): Promise<ModifyDiskSpecResponse>;
|
|
11948
12963
|
/**
|
|
11949
|
-
* The cloud
|
|
12964
|
+
* The cloud desktops to which you want to assign users must be in the Running state.
|
|
11950
12965
|
*
|
|
11951
12966
|
* @param request ModifyEntitlementRequest
|
|
11952
12967
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -11954,15 +12969,14 @@ export default class Client extends OpenApi {
|
|
|
11954
12969
|
*/
|
|
11955
12970
|
modifyEntitlementWithOptions(request: ModifyEntitlementRequest, runtime: $Util.RuntimeOptions): Promise<ModifyEntitlementResponse>;
|
|
11956
12971
|
/**
|
|
11957
|
-
* The cloud
|
|
12972
|
+
* The cloud desktops to which you want to assign users must be in the Running state.
|
|
11958
12973
|
*
|
|
11959
12974
|
* @param request ModifyEntitlementRequest
|
|
11960
12975
|
* @return ModifyEntitlementResponse
|
|
11961
12976
|
*/
|
|
11962
12977
|
modifyEntitlement(request: ModifyEntitlementRequest): Promise<ModifyEntitlementResponse>;
|
|
11963
12978
|
/**
|
|
11964
|
-
*
|
|
11965
|
-
* You can call this operation to modify the properties of only custom images in the Available (Available) state.
|
|
12979
|
+
* You can call this operation to modify the attributes of only custom images that are in the Available state.
|
|
11966
12980
|
*
|
|
11967
12981
|
* @param request ModifyImageAttributeRequest
|
|
11968
12982
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -11970,55 +12984,16 @@ export default class Client extends OpenApi {
|
|
|
11970
12984
|
*/
|
|
11971
12985
|
modifyImageAttributeWithOptions(request: ModifyImageAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyImageAttributeResponse>;
|
|
11972
12986
|
/**
|
|
11973
|
-
*
|
|
11974
|
-
* You can call this operation to modify the properties of only custom images in the Available (Available) state.
|
|
12987
|
+
* You can call this operation to modify the attributes of only custom images that are in the Available state.
|
|
11975
12988
|
*
|
|
11976
12989
|
* @param request ModifyImageAttributeRequest
|
|
11977
12990
|
* @return ModifyImageAttributeResponse
|
|
11978
12991
|
*/
|
|
11979
12992
|
modifyImageAttribute(request: ModifyImageAttributeRequest): Promise<ModifyImageAttributeResponse>;
|
|
11980
|
-
/**
|
|
11981
|
-
* ### Security of shared images
|
|
11982
|
-
* Elastic Desktop Service (EDS) does not ensure the integrity and security of shared images on cloud desktops. Before you use shared images, make sure that the images come from trusted accounts. You must assume all risks.
|
|
11983
|
-
* ### Quotas and billing
|
|
11984
|
-
* * Shared images do not count against the image quotas of the recipient Alibaba Cloud accounts.
|
|
11985
|
-
* * Alibaba Cloud accounts that share images are not charged if the recipient accounts use the shared images to create cloud desktops.
|
|
11986
|
-
* * There are no additional charges for sharing an image.
|
|
11987
|
-
* ### Supported sharing behavior
|
|
11988
|
-
* * You can share custom images with other Alibaba Cloud accounts.
|
|
11989
|
-
* * You can share custom images between accounts in the China site (aliyun.com) and the international site (alibabacloud.com).
|
|
11990
|
-
* ### Unsupported sharing behavior
|
|
11991
|
-
* * You cannot share images that are shared by other Alibaba Cloud accounts.
|
|
11992
|
-
* * You cannot share encrypted images.
|
|
11993
|
-
* * You cannot share images across regions. If you want to share images across regions, you can call the CopyImage operation to copy the images from the source region to the destination region.
|
|
11994
|
-
*
|
|
11995
|
-
* @param request ModifyImagePermissionRequest
|
|
11996
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
11997
|
-
* @return ModifyImagePermissionResponse
|
|
11998
|
-
*/
|
|
11999
12993
|
modifyImagePermissionWithOptions(request: ModifyImagePermissionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyImagePermissionResponse>;
|
|
12000
|
-
/**
|
|
12001
|
-
* ### Security of shared images
|
|
12002
|
-
* Elastic Desktop Service (EDS) does not ensure the integrity and security of shared images on cloud desktops. Before you use shared images, make sure that the images come from trusted accounts. You must assume all risks.
|
|
12003
|
-
* ### Quotas and billing
|
|
12004
|
-
* * Shared images do not count against the image quotas of the recipient Alibaba Cloud accounts.
|
|
12005
|
-
* * Alibaba Cloud accounts that share images are not charged if the recipient accounts use the shared images to create cloud desktops.
|
|
12006
|
-
* * There are no additional charges for sharing an image.
|
|
12007
|
-
* ### Supported sharing behavior
|
|
12008
|
-
* * You can share custom images with other Alibaba Cloud accounts.
|
|
12009
|
-
* * You can share custom images between accounts in the China site (aliyun.com) and the international site (alibabacloud.com).
|
|
12010
|
-
* ### Unsupported sharing behavior
|
|
12011
|
-
* * You cannot share images that are shared by other Alibaba Cloud accounts.
|
|
12012
|
-
* * You cannot share encrypted images.
|
|
12013
|
-
* * You cannot share images across regions. If you want to share images across regions, you can call the CopyImage operation to copy the images from the source region to the destination region.
|
|
12014
|
-
*
|
|
12015
|
-
* @param request ModifyImagePermissionRequest
|
|
12016
|
-
* @return ModifyImagePermissionResponse
|
|
12017
|
-
*/
|
|
12018
12994
|
modifyImagePermission(request: ModifyImagePermissionRequest): Promise<ModifyImagePermissionResponse>;
|
|
12019
12995
|
/**
|
|
12020
|
-
*
|
|
12021
|
-
* When you create a NAS file system, a mount target is automatically generated. By default, the mount target does not need to be changed. If the mount target is accidentally deleted, you must specify a new mount target for the NAS file system in the workspace. You can call the [CreateMountTarget](~~62621~~) operation to create a mount target.
|
|
12996
|
+
* When you create a NAS file system, a mount target is automatically generated. By default, the mount target does not need to be changed. If the mount target is deleted by misoperation, you must specify a new mount target for the NAS file system in the workspace. You can call the [CreateMountTarget](~~62621~~) operation to create a mount target.
|
|
12022
12997
|
*
|
|
12023
12998
|
* @param request ModifyNASDefaultMountTargetRequest
|
|
12024
12999
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12026,8 +13001,7 @@ export default class Client extends OpenApi {
|
|
|
12026
13001
|
*/
|
|
12027
13002
|
modifyNASDefaultMountTargetWithOptions(request: ModifyNASDefaultMountTargetRequest, runtime: $Util.RuntimeOptions): Promise<ModifyNASDefaultMountTargetResponse>;
|
|
12028
13003
|
/**
|
|
12029
|
-
*
|
|
12030
|
-
* When you create a NAS file system, a mount target is automatically generated. By default, the mount target does not need to be changed. If the mount target is accidentally deleted, you must specify a new mount target for the NAS file system in the workspace. You can call the [CreateMountTarget](~~62621~~) operation to create a mount target.
|
|
13004
|
+
* When you create a NAS file system, a mount target is automatically generated. By default, the mount target does not need to be changed. If the mount target is deleted by misoperation, you must specify a new mount target for the NAS file system in the workspace. You can call the [CreateMountTarget](~~62621~~) operation to create a mount target.
|
|
12031
13005
|
*
|
|
12032
13006
|
* @param request ModifyNASDefaultMountTargetRequest
|
|
12033
13007
|
* @return ModifyNASDefaultMountTargetResponse
|
|
@@ -12036,8 +13010,7 @@ export default class Client extends OpenApi {
|
|
|
12036
13010
|
modifyNetworkPackageBandwidthWithOptions(request: ModifyNetworkPackageBandwidthRequest, runtime: $Util.RuntimeOptions): Promise<ModifyNetworkPackageBandwidthResponse>;
|
|
12037
13011
|
modifyNetworkPackageBandwidth(request: ModifyNetworkPackageBandwidthRequest): Promise<ModifyNetworkPackageBandwidthResponse>;
|
|
12038
13012
|
/**
|
|
12039
|
-
*
|
|
12040
|
-
* If you want to temporarily disable Internet access for a cloud desktop, you can disable the Internet access package. You can restore the package based on your requirements.
|
|
13013
|
+
* If you want to temporarily disable Internet access for a cloud desktop, you can disable the Internet access package. You can restore the package when you require Internet access for the cloud desktop.
|
|
12041
13014
|
*
|
|
12042
13015
|
* @param request ModifyNetworkPackageEnabledRequest
|
|
12043
13016
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12045,8 +13018,7 @@ export default class Client extends OpenApi {
|
|
|
12045
13018
|
*/
|
|
12046
13019
|
modifyNetworkPackageEnabledWithOptions(request: ModifyNetworkPackageEnabledRequest, runtime: $Util.RuntimeOptions): Promise<ModifyNetworkPackageEnabledResponse>;
|
|
12047
13020
|
/**
|
|
12048
|
-
*
|
|
12049
|
-
* If you want to temporarily disable Internet access for a cloud desktop, you can disable the Internet access package. You can restore the package based on your requirements.
|
|
13021
|
+
* If you want to temporarily disable Internet access for a cloud desktop, you can disable the Internet access package. You can restore the package when you require Internet access for the cloud desktop.
|
|
12050
13022
|
*
|
|
12051
13023
|
* @param request ModifyNetworkPackageEnabledRequest
|
|
12052
13024
|
* @return ModifyNetworkPackageEnabledResponse
|
|
@@ -12058,12 +13030,10 @@ export default class Client extends OpenApi {
|
|
|
12058
13030
|
modifyOfficeSiteCrossDesktopAccess(request: ModifyOfficeSiteCrossDesktopAccessRequest): Promise<ModifyOfficeSiteCrossDesktopAccessResponse>;
|
|
12059
13031
|
modifyOfficeSiteMfaEnabledWithOptions(request: ModifyOfficeSiteMfaEnabledRequest, runtime: $Util.RuntimeOptions): Promise<ModifyOfficeSiteMfaEnabledResponse>;
|
|
12060
13032
|
modifyOfficeSiteMfaEnabled(request: ModifyOfficeSiteMfaEnabledRequest): Promise<ModifyOfficeSiteMfaEnabledResponse>;
|
|
12061
|
-
modifyOperateVulWithOptions(request: ModifyOperateVulRequest, runtime: $Util.RuntimeOptions): Promise<ModifyOperateVulResponse>;
|
|
12062
|
-
modifyOperateVul(request: ModifyOperateVulRequest): Promise<ModifyOperateVulResponse>;
|
|
12063
13033
|
modifyPolicyGroupWithOptions(request: ModifyPolicyGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyPolicyGroupResponse>;
|
|
12064
13034
|
modifyPolicyGroup(request: ModifyPolicyGroupRequest): Promise<ModifyPolicyGroupResponse>;
|
|
12065
13035
|
/**
|
|
12066
|
-
* You can modify permissions
|
|
13036
|
+
* You can modify user permissions on cloud desktops that are only in the Running state.
|
|
12067
13037
|
*
|
|
12068
13038
|
* @param request ModifyUserEntitlementRequest
|
|
12069
13039
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12071,7 +13041,7 @@ export default class Client extends OpenApi {
|
|
|
12071
13041
|
*/
|
|
12072
13042
|
modifyUserEntitlementWithOptions(request: ModifyUserEntitlementRequest, runtime: $Util.RuntimeOptions): Promise<ModifyUserEntitlementResponse>;
|
|
12073
13043
|
/**
|
|
12074
|
-
* You can modify permissions
|
|
13044
|
+
* You can modify user permissions on cloud desktops that are only in the Running state.
|
|
12075
13045
|
*
|
|
12076
13046
|
* @param request ModifyUserEntitlementRequest
|
|
12077
13047
|
* @return ModifyUserEntitlementResponse
|
|
@@ -12081,8 +13051,6 @@ export default class Client extends OpenApi {
|
|
|
12081
13051
|
modifyUserToDesktopGroup(request: ModifyUserToDesktopGroupRequest): Promise<ModifyUserToDesktopGroupResponse>;
|
|
12082
13052
|
moveCdsFileWithOptions(request: MoveCdsFileRequest, runtime: $Util.RuntimeOptions): Promise<MoveCdsFileResponse>;
|
|
12083
13053
|
moveCdsFile(request: MoveCdsFileRequest): Promise<MoveCdsFileResponse>;
|
|
12084
|
-
operateVulsWithOptions(request: OperateVulsRequest, runtime: $Util.RuntimeOptions): Promise<OperateVulsResponse>;
|
|
12085
|
-
operateVuls(request: OperateVulsRequest): Promise<OperateVulsResponse>;
|
|
12086
13054
|
/**
|
|
12087
13055
|
* The cloud desktops that you want to restart by calling this operation must be in the Running state.
|
|
12088
13056
|
*
|
|
@@ -12100,11 +13068,11 @@ export default class Client extends OpenApi {
|
|
|
12100
13068
|
rebootDesktops(request: RebootDesktopsRequest): Promise<RebootDesktopsResponse>;
|
|
12101
13069
|
/**
|
|
12102
13070
|
* Before you change the image of a cloud desktop, take note of the following limits:
|
|
12103
|
-
*
|
|
12104
|
-
*
|
|
13071
|
+
* * You can select the OS of an image during image change. However, this operation is unavailable in the following regions: China (Hong Kong), Australia (Sydney), Singapore (Singapore), and Japan (Tokyo).
|
|
13072
|
+
* * Image change between GPU and non-GPU images is not supported. If a cloud desktop is of the Graphics type, you can use only a GPU image. If the cloud desktop is of a non-Graphics type, you can use only a non-GPU image.
|
|
12105
13073
|
* After you change the image of the cloud desktop, the system uses the new image to initialize the system disk of the cloud desktop. Take note of the following impacts:
|
|
12106
|
-
*
|
|
12107
|
-
*
|
|
13074
|
+
* * The system deletes data from the original system disk. The snapshots that are created from the original system disk of the cloud desktop become unavailable and are automatically deleted.
|
|
13075
|
+
* * If you change the OS of the image, the system deletes data from the original data disk of the cloud desktop. The system also deletes snapshots that are created from the original data disk of the cloud desktop because original snapshots become unavailable. If you do not change the OS of the image, data on the original data disk is retained, and snapshots that are created from the data disk are still available.
|
|
12108
13076
|
*
|
|
12109
13077
|
* @param request RebuildDesktopsRequest
|
|
12110
13078
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12113,11 +13081,11 @@ export default class Client extends OpenApi {
|
|
|
12113
13081
|
rebuildDesktopsWithOptions(request: RebuildDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<RebuildDesktopsResponse>;
|
|
12114
13082
|
/**
|
|
12115
13083
|
* Before you change the image of a cloud desktop, take note of the following limits:
|
|
12116
|
-
*
|
|
12117
|
-
*
|
|
13084
|
+
* * You can select the OS of an image during image change. However, this operation is unavailable in the following regions: China (Hong Kong), Australia (Sydney), Singapore (Singapore), and Japan (Tokyo).
|
|
13085
|
+
* * Image change between GPU and non-GPU images is not supported. If a cloud desktop is of the Graphics type, you can use only a GPU image. If the cloud desktop is of a non-Graphics type, you can use only a non-GPU image.
|
|
12118
13086
|
* After you change the image of the cloud desktop, the system uses the new image to initialize the system disk of the cloud desktop. Take note of the following impacts:
|
|
12119
|
-
*
|
|
12120
|
-
*
|
|
13087
|
+
* * The system deletes data from the original system disk. The snapshots that are created from the original system disk of the cloud desktop become unavailable and are automatically deleted.
|
|
13088
|
+
* * If you change the OS of the image, the system deletes data from the original data disk of the cloud desktop. The system also deletes snapshots that are created from the original data disk of the cloud desktop because original snapshots become unavailable. If you do not change the OS of the image, data on the original data disk is retained, and snapshots that are created from the data disk are still available.
|
|
12121
13089
|
*
|
|
12122
13090
|
* @param request RebuildDesktopsRequest
|
|
12123
13091
|
* @return RebuildDesktopsResponse
|
|
@@ -12127,14 +13095,30 @@ export default class Client extends OpenApi {
|
|
|
12127
13095
|
removeFilePermission(request: RemoveFilePermissionRequest): Promise<RemoveFilePermissionResponse>;
|
|
12128
13096
|
removeUserFromDesktopGroupWithOptions(request: RemoveUserFromDesktopGroupRequest, runtime: $Util.RuntimeOptions): Promise<RemoveUserFromDesktopGroupResponse>;
|
|
12129
13097
|
removeUserFromDesktopGroup(request: RemoveUserFromDesktopGroupRequest): Promise<RemoveUserFromDesktopGroupResponse>;
|
|
13098
|
+
removeUserFromDesktopOversoldUserGroupWithOptions(request: RemoveUserFromDesktopOversoldUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<RemoveUserFromDesktopOversoldUserGroupResponse>;
|
|
13099
|
+
removeUserFromDesktopOversoldUserGroup(request: RemoveUserFromDesktopOversoldUserGroupRequest): Promise<RemoveUserFromDesktopOversoldUserGroupResponse>;
|
|
13100
|
+
renewDesktopOversoldGroupWithOptions(request: RenewDesktopOversoldGroupRequest, runtime: $Util.RuntimeOptions): Promise<RenewDesktopOversoldGroupResponse>;
|
|
13101
|
+
renewDesktopOversoldGroup(request: RenewDesktopOversoldGroupRequest): Promise<RenewDesktopOversoldGroupResponse>;
|
|
12130
13102
|
renewDesktopsWithOptions(request: RenewDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<RenewDesktopsResponse>;
|
|
12131
13103
|
renewDesktops(request: RenewDesktopsRequest): Promise<RenewDesktopsResponse>;
|
|
12132
13104
|
renewNetworkPackagesWithOptions(request: RenewNetworkPackagesRequest, runtime: $Util.RuntimeOptions): Promise<RenewNetworkPackagesResponse>;
|
|
12133
13105
|
renewNetworkPackages(request: RenewNetworkPackagesRequest): Promise<RenewNetworkPackagesResponse>;
|
|
13106
|
+
/**
|
|
13107
|
+
* > You can call this operation to reset only cloud desktops that are managed by a cloud desktop group. You cannot reset an independent cloud desktop.
|
|
13108
|
+
*
|
|
13109
|
+
* @param request ResetDesktopsRequest
|
|
13110
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13111
|
+
* @return ResetDesktopsResponse
|
|
13112
|
+
*/
|
|
12134
13113
|
resetDesktopsWithOptions(request: ResetDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<ResetDesktopsResponse>;
|
|
13114
|
+
/**
|
|
13115
|
+
* > You can call this operation to reset only cloud desktops that are managed by a cloud desktop group. You cannot reset an independent cloud desktop.
|
|
13116
|
+
*
|
|
13117
|
+
* @param request ResetDesktopsRequest
|
|
13118
|
+
* @return ResetDesktopsResponse
|
|
13119
|
+
*/
|
|
12135
13120
|
resetDesktops(request: ResetDesktopsRequest): Promise<ResetDesktopsResponse>;
|
|
12136
13121
|
/**
|
|
12137
|
-
* ## Description
|
|
12138
13122
|
* When you create a NAS file system, a mount target is automatically generated. By default, you do not need to modify the mount target of the NAS file system. If the mount target is disabled, you need to reset the mount target of the NAS file system.
|
|
12139
13123
|
*
|
|
12140
13124
|
* @param request ResetNASDefaultMountTargetRequest
|
|
@@ -12143,7 +13127,6 @@ export default class Client extends OpenApi {
|
|
|
12143
13127
|
*/
|
|
12144
13128
|
resetNASDefaultMountTargetWithOptions(request: ResetNASDefaultMountTargetRequest, runtime: $Util.RuntimeOptions): Promise<ResetNASDefaultMountTargetResponse>;
|
|
12145
13129
|
/**
|
|
12146
|
-
* ## Description
|
|
12147
13130
|
* When you create a NAS file system, a mount target is automatically generated. By default, you do not need to modify the mount target of the NAS file system. If the mount target is disabled, you need to reset the mount target of the NAS file system.
|
|
12148
13131
|
*
|
|
12149
13132
|
* @param request ResetNASDefaultMountTargetRequest
|
|
@@ -12176,23 +13159,19 @@ export default class Client extends OpenApi {
|
|
|
12176
13159
|
revokeCoordinatePrivilegeWithOptions(request: RevokeCoordinatePrivilegeRequest, runtime: $Util.RuntimeOptions): Promise<RevokeCoordinatePrivilegeResponse>;
|
|
12177
13160
|
revokeCoordinatePrivilege(request: RevokeCoordinatePrivilegeRequest): Promise<RevokeCoordinatePrivilegeResponse>;
|
|
12178
13161
|
/**
|
|
12179
|
-
*
|
|
12180
|
-
* When alerts are handled, the system quarantines the files that contain detected threats to the quarantine panel. You can call this operation to remove quarantined files from the quarantine panel.
|
|
13162
|
+
* You can use the RunCommand operation to run scripts only on Windows cloud desktops.
|
|
12181
13163
|
*
|
|
12182
|
-
* @param request
|
|
13164
|
+
* @param request RunCommandRequest
|
|
12183
13165
|
* @param runtime runtime options for this request RuntimeOptions
|
|
12184
|
-
* @return
|
|
13166
|
+
* @return RunCommandResponse
|
|
12185
13167
|
*/
|
|
12186
|
-
|
|
13168
|
+
runCommandWithOptions(request: RunCommandRequest, runtime: $Util.RuntimeOptions): Promise<RunCommandResponse>;
|
|
12187
13169
|
/**
|
|
12188
|
-
*
|
|
12189
|
-
* When alerts are handled, the system quarantines the files that contain detected threats to the quarantine panel. You can call this operation to remove quarantined files from the quarantine panel.
|
|
13170
|
+
* You can use the RunCommand operation to run scripts only on Windows cloud desktops.
|
|
12190
13171
|
*
|
|
12191
|
-
* @param request
|
|
12192
|
-
* @return
|
|
13172
|
+
* @param request RunCommandRequest
|
|
13173
|
+
* @return RunCommandResponse
|
|
12193
13174
|
*/
|
|
12194
|
-
rollbackSuspEventQuaraFile(request: RollbackSuspEventQuaraFileRequest): Promise<RollbackSuspEventQuaraFileResponse>;
|
|
12195
|
-
runCommandWithOptions(request: RunCommandRequest, runtime: $Util.RuntimeOptions): Promise<RunCommandResponse>;
|
|
12196
13175
|
runCommand(request: RunCommandRequest): Promise<RunCommandResponse>;
|
|
12197
13176
|
/**
|
|
12198
13177
|
* ## Description
|
|
@@ -12217,11 +13196,23 @@ export default class Client extends OpenApi {
|
|
|
12217
13196
|
setDesktopGroupTimer(request: SetDesktopGroupTimerRequest): Promise<SetDesktopGroupTimerResponse>;
|
|
12218
13197
|
setDesktopGroupTimerStatusWithOptions(request: SetDesktopGroupTimerStatusRequest, runtime: $Util.RuntimeOptions): Promise<SetDesktopGroupTimerStatusResponse>;
|
|
12219
13198
|
setDesktopGroupTimerStatus(request: SetDesktopGroupTimerStatusRequest): Promise<SetDesktopGroupTimerStatusResponse>;
|
|
13199
|
+
/**
|
|
13200
|
+
* This operation is supported only for AD directories, not for RAM directories.
|
|
13201
|
+
*
|
|
13202
|
+
* @param request SetDirectorySsoStatusRequest
|
|
13203
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13204
|
+
* @return SetDirectorySsoStatusResponse
|
|
13205
|
+
*/
|
|
12220
13206
|
setDirectorySsoStatusWithOptions(request: SetDirectorySsoStatusRequest, runtime: $Util.RuntimeOptions): Promise<SetDirectorySsoStatusResponse>;
|
|
13207
|
+
/**
|
|
13208
|
+
* This operation is supported only for AD directories, not for RAM directories.
|
|
13209
|
+
*
|
|
13210
|
+
* @param request SetDirectorySsoStatusRequest
|
|
13211
|
+
* @return SetDirectorySsoStatusResponse
|
|
13212
|
+
*/
|
|
12221
13213
|
setDirectorySsoStatus(request: SetDirectorySsoStatusRequest): Promise<SetDirectorySsoStatusResponse>;
|
|
12222
13214
|
/**
|
|
12223
|
-
*
|
|
12224
|
-
* You can call this operation only for workspaces of the Active Directory (AD) and convenience account types. You cannot call this operation for RAM directories.
|
|
13215
|
+
* You can call this operation only for workspaces of the Active Directory (AD) and convenience account types.
|
|
12225
13216
|
*
|
|
12226
13217
|
* @param request SetIdpMetadataRequest
|
|
12227
13218
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12229,8 +13220,7 @@ export default class Client extends OpenApi {
|
|
|
12229
13220
|
*/
|
|
12230
13221
|
setIdpMetadataWithOptions(request: SetIdpMetadataRequest, runtime: $Util.RuntimeOptions): Promise<SetIdpMetadataResponse>;
|
|
12231
13222
|
/**
|
|
12232
|
-
*
|
|
12233
|
-
* You can call this operation only for workspaces of the Active Directory (AD) and convenience account types. You cannot call this operation for RAM directories.
|
|
13223
|
+
* You can call this operation only for workspaces of the Active Directory (AD) and convenience account types.
|
|
12234
13224
|
*
|
|
12235
13225
|
* @param request SetIdpMetadataRequest
|
|
12236
13226
|
* @return SetIdpMetadataResponse
|
|
@@ -12241,7 +13231,7 @@ export default class Client extends OpenApi {
|
|
|
12241
13231
|
setUserProfilePathRulesWithOptions(tmpReq: SetUserProfilePathRulesRequest, runtime: $Util.RuntimeOptions): Promise<SetUserProfilePathRulesResponse>;
|
|
12242
13232
|
setUserProfilePathRules(request: SetUserProfilePathRulesRequest): Promise<SetUserProfilePathRulesResponse>;
|
|
12243
13233
|
/**
|
|
12244
|
-
* The cloud desktop to
|
|
13234
|
+
* The cloud desktop that you want to start must be in the Stopped state.
|
|
12245
13235
|
*
|
|
12246
13236
|
* @param request StartDesktopsRequest
|
|
12247
13237
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12249,31 +13239,14 @@ export default class Client extends OpenApi {
|
|
|
12249
13239
|
*/
|
|
12250
13240
|
startDesktopsWithOptions(request: StartDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<StartDesktopsResponse>;
|
|
12251
13241
|
/**
|
|
12252
|
-
* The cloud desktop to
|
|
13242
|
+
* The cloud desktop that you want to start must be in the Stopped state.
|
|
12253
13243
|
*
|
|
12254
13244
|
* @param request StartDesktopsRequest
|
|
12255
13245
|
* @return StartDesktopsResponse
|
|
12256
13246
|
*/
|
|
12257
13247
|
startDesktops(request: StartDesktopsRequest): Promise<StartDesktopsResponse>;
|
|
12258
13248
|
/**
|
|
12259
|
-
*
|
|
12260
|
-
* > When you specify a workspace, all cloud desktops within the workspace are scanned.
|
|
12261
|
-
*
|
|
12262
|
-
* @param request StartVirusScanTaskRequest
|
|
12263
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
12264
|
-
* @return StartVirusScanTaskResponse
|
|
12265
|
-
*/
|
|
12266
|
-
startVirusScanTaskWithOptions(request: StartVirusScanTaskRequest, runtime: $Util.RuntimeOptions): Promise<StartVirusScanTaskResponse>;
|
|
12267
|
-
/**
|
|
12268
|
-
* When you call this operation, you must specify a workspace or a cloud desktop by specifying the OfficeSiteId or DesktopId parameter.
|
|
12269
|
-
* > When you specify a workspace, all cloud desktops within the workspace are scanned.
|
|
12270
|
-
*
|
|
12271
|
-
* @param request StartVirusScanTaskRequest
|
|
12272
|
-
* @return StartVirusScanTaskResponse
|
|
12273
|
-
*/
|
|
12274
|
-
startVirusScanTask(request: StartVirusScanTaskRequest): Promise<StartVirusScanTaskResponse>;
|
|
12275
|
-
/**
|
|
12276
|
-
* The cloud desktop must be in the Running state.
|
|
13249
|
+
* The cloud desktops that you want to stop must be in the Running state.
|
|
12277
13250
|
*
|
|
12278
13251
|
* @param request StopDesktopsRequest
|
|
12279
13252
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12281,14 +13254,14 @@ export default class Client extends OpenApi {
|
|
|
12281
13254
|
*/
|
|
12282
13255
|
stopDesktopsWithOptions(request: StopDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<StopDesktopsResponse>;
|
|
12283
13256
|
/**
|
|
12284
|
-
* The cloud
|
|
13257
|
+
* The cloud desktops that you want to stop must be in the Running state.
|
|
12285
13258
|
*
|
|
12286
13259
|
* @param request StopDesktopsRequest
|
|
12287
13260
|
* @return StopDesktopsResponse
|
|
12288
13261
|
*/
|
|
12289
13262
|
stopDesktops(request: StopDesktopsRequest): Promise<StopDesktopsResponse>;
|
|
12290
13263
|
/**
|
|
12291
|
-
*
|
|
13264
|
+
* The ID of the execution.
|
|
12292
13265
|
*
|
|
12293
13266
|
* @param request StopInvocationRequest
|
|
12294
13267
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12296,7 +13269,7 @@ export default class Client extends OpenApi {
|
|
|
12296
13269
|
*/
|
|
12297
13270
|
stopInvocationWithOptions(request: StopInvocationRequest, runtime: $Util.RuntimeOptions): Promise<StopInvocationResponse>;
|
|
12298
13271
|
/**
|
|
12299
|
-
*
|
|
13272
|
+
* The ID of the execution.
|
|
12300
13273
|
*
|
|
12301
13274
|
* @param request StopInvocationRequest
|
|
12302
13275
|
* @return StopInvocationResponse
|
|
@@ -12323,8 +13296,23 @@ export default class Client extends OpenApi {
|
|
|
12323
13296
|
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
12324
13297
|
updateFotaTaskWithOptions(request: UpdateFotaTaskRequest, runtime: $Util.RuntimeOptions): Promise<UpdateFotaTaskResponse>;
|
|
12325
13298
|
updateFotaTask(request: UpdateFotaTaskRequest): Promise<UpdateFotaTaskResponse>;
|
|
13299
|
+
/**
|
|
13300
|
+
* > You can call this operation to upload custom Windows images.
|
|
13301
|
+
*
|
|
13302
|
+
* @param request UploadImageRequest
|
|
13303
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13304
|
+
* @return UploadImageResponse
|
|
13305
|
+
*/
|
|
12326
13306
|
uploadImageWithOptions(request: UploadImageRequest, runtime: $Util.RuntimeOptions): Promise<UploadImageResponse>;
|
|
13307
|
+
/**
|
|
13308
|
+
* > You can call this operation to upload custom Windows images.
|
|
13309
|
+
*
|
|
13310
|
+
* @param request UploadImageRequest
|
|
13311
|
+
* @return UploadImageResponse
|
|
13312
|
+
*/
|
|
12327
13313
|
uploadImage(request: UploadImageRequest): Promise<UploadImageResponse>;
|
|
12328
13314
|
verifyCenWithOptions(request: VerifyCenRequest, runtime: $Util.RuntimeOptions): Promise<VerifyCenResponse>;
|
|
12329
13315
|
verifyCen(request: VerifyCenRequest): Promise<VerifyCenResponse>;
|
|
13316
|
+
wakeupDesktopsWithOptions(request: WakeupDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<WakeupDesktopsResponse>;
|
|
13317
|
+
wakeupDesktops(request: WakeupDesktopsRequest): Promise<WakeupDesktopsResponse>;
|
|
12330
13318
|
}
|