@alicloud/ecd20200930 3.4.3 → 3.5.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 +338 -146
- package/dist/client.js +2724 -2406
- package/dist/client.js.map +1 -1
- package/package.json +4 -4
- package/src/client.ts +501 -146
package/dist/client.d.ts
CHANGED
|
@@ -1637,7 +1637,9 @@ export declare class CreateDesktopOversoldGroupRequest extends $tea.Model {
|
|
|
1637
1637
|
description?: string;
|
|
1638
1638
|
desktopType?: string;
|
|
1639
1639
|
directoryId?: string;
|
|
1640
|
+
idleDisconnectDuration?: number;
|
|
1640
1641
|
imageId?: string;
|
|
1642
|
+
keepDuration?: number;
|
|
1641
1643
|
name?: string;
|
|
1642
1644
|
oversoldUserCount?: number;
|
|
1643
1645
|
oversoldWarn?: number;
|
|
@@ -3676,6 +3678,8 @@ export declare class DescribeDesktopOversoldUserGroupResponse extends $tea.Model
|
|
|
3676
3678
|
});
|
|
3677
3679
|
}
|
|
3678
3680
|
export declare class DescribeDesktopSessionsRequest extends $tea.Model {
|
|
3681
|
+
desktopId?: string[];
|
|
3682
|
+
desktopName?: string;
|
|
3679
3683
|
endTime?: string;
|
|
3680
3684
|
endUserId?: string;
|
|
3681
3685
|
officeSiteId?: string;
|
|
@@ -4864,6 +4868,56 @@ export declare class DescribePriceForRenewDesktopOversoldGroupResponse extends $
|
|
|
4864
4868
|
[key: string]: any;
|
|
4865
4869
|
});
|
|
4866
4870
|
}
|
|
4871
|
+
export declare class DescribeRecordingsRequest extends $tea.Model {
|
|
4872
|
+
desktopId?: string;
|
|
4873
|
+
endTime?: string;
|
|
4874
|
+
maxResults?: number;
|
|
4875
|
+
needSignedUrl?: boolean;
|
|
4876
|
+
nextToken?: string;
|
|
4877
|
+
policyGroupId?: string;
|
|
4878
|
+
regionId?: string;
|
|
4879
|
+
signedUrlExpireMinutes?: number;
|
|
4880
|
+
startTime?: string;
|
|
4881
|
+
static names(): {
|
|
4882
|
+
[key: string]: string;
|
|
4883
|
+
};
|
|
4884
|
+
static types(): {
|
|
4885
|
+
[key: string]: any;
|
|
4886
|
+
};
|
|
4887
|
+
constructor(map?: {
|
|
4888
|
+
[key: string]: any;
|
|
4889
|
+
});
|
|
4890
|
+
}
|
|
4891
|
+
export declare class DescribeRecordingsResponseBody extends $tea.Model {
|
|
4892
|
+
nextToken?: string;
|
|
4893
|
+
recordings?: DescribeRecordingsResponseBodyRecordings[];
|
|
4894
|
+
requestId?: string;
|
|
4895
|
+
static names(): {
|
|
4896
|
+
[key: string]: string;
|
|
4897
|
+
};
|
|
4898
|
+
static types(): {
|
|
4899
|
+
[key: string]: any;
|
|
4900
|
+
};
|
|
4901
|
+
constructor(map?: {
|
|
4902
|
+
[key: string]: any;
|
|
4903
|
+
});
|
|
4904
|
+
}
|
|
4905
|
+
export declare class DescribeRecordingsResponse extends $tea.Model {
|
|
4906
|
+
headers?: {
|
|
4907
|
+
[key: string]: string;
|
|
4908
|
+
};
|
|
4909
|
+
statusCode?: number;
|
|
4910
|
+
body?: DescribeRecordingsResponseBody;
|
|
4911
|
+
static names(): {
|
|
4912
|
+
[key: string]: string;
|
|
4913
|
+
};
|
|
4914
|
+
static types(): {
|
|
4915
|
+
[key: string]: any;
|
|
4916
|
+
};
|
|
4917
|
+
constructor(map?: {
|
|
4918
|
+
[key: string]: any;
|
|
4919
|
+
});
|
|
4920
|
+
}
|
|
4867
4921
|
export declare class DescribeRegionsRequest extends $tea.Model {
|
|
4868
4922
|
acceptLanguage?: string;
|
|
4869
4923
|
regionId?: string;
|
|
@@ -7222,7 +7276,9 @@ export declare class ModifyDesktopNameResponse extends $tea.Model {
|
|
|
7222
7276
|
export declare class ModifyDesktopOversoldGroupRequest extends $tea.Model {
|
|
7223
7277
|
concurrenceCount?: number;
|
|
7224
7278
|
description?: string;
|
|
7279
|
+
idleDisconnectDuration?: number;
|
|
7225
7280
|
imageId?: string;
|
|
7281
|
+
keepDuration?: number;
|
|
7226
7282
|
name?: string;
|
|
7227
7283
|
oversoldGroupId?: string;
|
|
7228
7284
|
oversoldUserCount?: number;
|
|
@@ -11304,6 +11360,27 @@ export declare class DescribePriceForRenewDesktopOversoldGroupResponseBodyData e
|
|
|
11304
11360
|
[key: string]: any;
|
|
11305
11361
|
});
|
|
11306
11362
|
}
|
|
11363
|
+
export declare class DescribeRecordingsResponseBodyRecordings extends $tea.Model {
|
|
11364
|
+
desktopId?: string;
|
|
11365
|
+
desktopName?: string;
|
|
11366
|
+
endTime?: string;
|
|
11367
|
+
endUserIds?: string[];
|
|
11368
|
+
filePath?: string;
|
|
11369
|
+
policyGroupId?: string;
|
|
11370
|
+
recordingSize?: number;
|
|
11371
|
+
recordingType?: string;
|
|
11372
|
+
signedUrl?: string;
|
|
11373
|
+
startTime?: string;
|
|
11374
|
+
static names(): {
|
|
11375
|
+
[key: string]: string;
|
|
11376
|
+
};
|
|
11377
|
+
static types(): {
|
|
11378
|
+
[key: string]: any;
|
|
11379
|
+
};
|
|
11380
|
+
constructor(map?: {
|
|
11381
|
+
[key: string]: any;
|
|
11382
|
+
});
|
|
11383
|
+
}
|
|
11307
11384
|
export declare class DescribeRegionsResponseBodyRegions extends $tea.Model {
|
|
11308
11385
|
localName?: string;
|
|
11309
11386
|
regionEndpoint?: string;
|
|
@@ -12183,7 +12260,7 @@ export default class Client extends OpenApi {
|
|
|
12183
12260
|
[key: string]: string;
|
|
12184
12261
|
}, endpoint: string): string;
|
|
12185
12262
|
/**
|
|
12186
|
-
*
|
|
12263
|
+
* If you do not create any cloud computer in a convenience office network within 15 days, the office network is automatically locked and virtual private cloud (VPC) resources are released. If you want to resume the office network, you can call this operation to unlock the office network.
|
|
12187
12264
|
*
|
|
12188
12265
|
* @param request ActivateOfficeSiteRequest
|
|
12189
12266
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12191,7 +12268,7 @@ export default class Client extends OpenApi {
|
|
|
12191
12268
|
*/
|
|
12192
12269
|
activateOfficeSiteWithOptions(request: ActivateOfficeSiteRequest, runtime: $Util.RuntimeOptions): Promise<ActivateOfficeSiteResponse>;
|
|
12193
12270
|
/**
|
|
12194
|
-
*
|
|
12271
|
+
* If you do not create any cloud computer in a convenience office network within 15 days, the office network is automatically locked and virtual private cloud (VPC) resources are released. If you want to resume the office network, you can call this operation to unlock the office network.
|
|
12195
12272
|
*
|
|
12196
12273
|
* @param request ActivateOfficeSiteRequest
|
|
12197
12274
|
* @return ActivateOfficeSiteResponse
|
|
@@ -12261,8 +12338,8 @@ export default class Client extends OpenApi {
|
|
|
12261
12338
|
/**
|
|
12262
12339
|
* Prerequisites
|
|
12263
12340
|
* * A CEN instance is created.
|
|
12264
|
-
* *
|
|
12265
|
-
* >
|
|
12341
|
+
* * The office network is an advanced office network, and the account system type is convenient account.
|
|
12342
|
+
* > The office network is added to the CEN instance when you create the instance. An office network can be added to only one CEN instance.
|
|
12266
12343
|
*
|
|
12267
12344
|
* @param request AttachCenRequest
|
|
12268
12345
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12272,8 +12349,8 @@ export default class Client extends OpenApi {
|
|
|
12272
12349
|
/**
|
|
12273
12350
|
* Prerequisites
|
|
12274
12351
|
* * A CEN instance is created.
|
|
12275
|
-
* *
|
|
12276
|
-
* >
|
|
12352
|
+
* * The office network is an advanced office network, and the account system type is convenient account.
|
|
12353
|
+
* > The office network is added to the CEN instance when you create the instance. An office network can be added to only one CEN instance.
|
|
12277
12354
|
*
|
|
12278
12355
|
* @param request AttachCenRequest
|
|
12279
12356
|
* @return AttachCenResponse
|
|
@@ -12317,11 +12394,13 @@ export default class Client extends OpenApi {
|
|
|
12317
12394
|
*/
|
|
12318
12395
|
createADConnectorDirectory(request: CreateADConnectorDirectoryRequest): Promise<CreateADConnectorDirectoryResponse>;
|
|
12319
12396
|
/**
|
|
12320
|
-
*
|
|
12321
|
-
*
|
|
12322
|
-
*
|
|
12323
|
-
*
|
|
12324
|
-
*
|
|
12397
|
+
* When you create an enterprise AD office network, the system automatically creates an AD connector to connect to an enterprise AD. You are charged for the AD connector. For more information, see [Billing overview](~~188395~~).
|
|
12398
|
+
* After you call this operation to create an AD office network, you must perform the following steps to complete AD domain setting:
|
|
12399
|
+
* 1. Configure a conditional forwarder in a Domain Name System (DNS) server.
|
|
12400
|
+
* 2. Configure a trust relationship in an AD domain controller and call the [ConfigADConnectorTrust](~~311258~~) operation to configure the trust relationship with the AD office network.
|
|
12401
|
+
* 3. Call the [ListUserAdOrganizationUnits](~~311259~~) operation to query a list of organizational units (OUs) of the AD domain, and call the [ConfigADConnectorUser](~~311262~~) operation to specify an OU and administrator for the AD office network.
|
|
12402
|
+
* > When you create the AD office network, take note of the DomainUserName and DomainPassword parameters. If you specify the parameters, you need to only configure a conditional forwarder. If you do not specify the parameters, you must configure a conditional forwarder, trust relationship, and OU as prompted.
|
|
12403
|
+
* For more information, see [Create and manage enterprise AD office networks](~~214469~~).
|
|
12325
12404
|
*
|
|
12326
12405
|
* @param request CreateADConnectorOfficeSiteRequest
|
|
12327
12406
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12329,11 +12408,13 @@ export default class Client extends OpenApi {
|
|
|
12329
12408
|
*/
|
|
12330
12409
|
createADConnectorOfficeSiteWithOptions(request: CreateADConnectorOfficeSiteRequest, runtime: $Util.RuntimeOptions): Promise<CreateADConnectorOfficeSiteResponse>;
|
|
12331
12410
|
/**
|
|
12332
|
-
*
|
|
12333
|
-
*
|
|
12334
|
-
*
|
|
12335
|
-
*
|
|
12336
|
-
*
|
|
12411
|
+
* When you create an enterprise AD office network, the system automatically creates an AD connector to connect to an enterprise AD. You are charged for the AD connector. For more information, see [Billing overview](~~188395~~).
|
|
12412
|
+
* After you call this operation to create an AD office network, you must perform the following steps to complete AD domain setting:
|
|
12413
|
+
* 1. Configure a conditional forwarder in a Domain Name System (DNS) server.
|
|
12414
|
+
* 2. Configure a trust relationship in an AD domain controller and call the [ConfigADConnectorTrust](~~311258~~) operation to configure the trust relationship with the AD office network.
|
|
12415
|
+
* 3. Call the [ListUserAdOrganizationUnits](~~311259~~) operation to query a list of organizational units (OUs) of the AD domain, and call the [ConfigADConnectorUser](~~311262~~) operation to specify an OU and administrator for the AD office network.
|
|
12416
|
+
* > When you create the AD office network, take note of the DomainUserName and DomainPassword parameters. If you specify the parameters, you need to only configure a conditional forwarder. If you do not specify the parameters, you must configure a conditional forwarder, trust relationship, and OU as prompted.
|
|
12417
|
+
* For more information, see [Create and manage enterprise AD office networks](~~214469~~).
|
|
12337
12418
|
*
|
|
12338
12419
|
* @param request CreateADConnectorOfficeSiteRequest
|
|
12339
12420
|
* @return CreateADConnectorOfficeSiteResponse
|
|
@@ -12357,7 +12438,7 @@ export default class Client extends OpenApi {
|
|
|
12357
12438
|
*/
|
|
12358
12439
|
createAutoSnapshotPolicy(request: CreateAutoSnapshotPolicyRequest): Promise<CreateAutoSnapshotPolicyResponse>;
|
|
12359
12440
|
/**
|
|
12360
|
-
*
|
|
12441
|
+
* Cloud computer templates include system templates and custom templates. A system template is the default template provided by Alibaba Cloud. You can call this operation to create a custom template.
|
|
12361
12442
|
*
|
|
12362
12443
|
* @param request CreateBundleRequest
|
|
12363
12444
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12365,7 +12446,7 @@ export default class Client extends OpenApi {
|
|
|
12365
12446
|
*/
|
|
12366
12447
|
createBundleWithOptions(request: CreateBundleRequest, runtime: $Util.RuntimeOptions): Promise<CreateBundleResponse>;
|
|
12367
12448
|
/**
|
|
12368
|
-
*
|
|
12449
|
+
* Cloud computer templates include system templates and custom templates. A system template is the default template provided by Alibaba Cloud. You can call this operation to create a custom template.
|
|
12369
12450
|
*
|
|
12370
12451
|
* @param request CreateBundleRequest
|
|
12371
12452
|
* @return CreateBundleResponse
|
|
@@ -12393,7 +12474,6 @@ export default class Client extends OpenApi {
|
|
|
12393
12474
|
createCloudDriveUsersWithOptions(request: CreateCloudDriveUsersRequest, runtime: $Util.RuntimeOptions): Promise<CreateCloudDriveUsersResponse>;
|
|
12394
12475
|
createCloudDriveUsers(request: CreateCloudDriveUsersRequest): Promise<CreateCloudDriveUsersResponse>;
|
|
12395
12476
|
/**
|
|
12396
|
-
* # Description
|
|
12397
12477
|
* Before you call this operation to create a desktop group, make sure that the following operations are complete:
|
|
12398
12478
|
* * You are familiar with the features, usage limits, and scaling policies of desktop groups. For more information, see [Overview](~~290959~~) of desktop groups.
|
|
12399
12479
|
* * Resources, such as workspaces, users, desktop templates, and policies, are created.
|
|
@@ -12404,7 +12484,6 @@ export default class Client extends OpenApi {
|
|
|
12404
12484
|
*/
|
|
12405
12485
|
createDesktopGroupWithOptions(request: CreateDesktopGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateDesktopGroupResponse>;
|
|
12406
12486
|
/**
|
|
12407
|
-
* # Description
|
|
12408
12487
|
* Before you call this operation to create a desktop group, make sure that the following operations are complete:
|
|
12409
12488
|
* * You are familiar with the features, usage limits, and scaling policies of desktop groups. For more information, see [Overview](~~290959~~) of desktop groups.
|
|
12410
12489
|
* * Resources, such as workspaces, users, desktop templates, and policies, are created.
|
|
@@ -12416,13 +12495,13 @@ export default class Client extends OpenApi {
|
|
|
12416
12495
|
createDesktopOversoldGroupWithOptions(request: CreateDesktopOversoldGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateDesktopOversoldGroupResponse>;
|
|
12417
12496
|
createDesktopOversoldGroup(request: CreateDesktopOversoldGroupRequest): Promise<CreateDesktopOversoldGroupResponse>;
|
|
12418
12497
|
/**
|
|
12419
|
-
*
|
|
12420
|
-
* *
|
|
12421
|
-
* *
|
|
12422
|
-
* *
|
|
12423
|
-
* *
|
|
12424
|
-
* *
|
|
12425
|
-
*
|
|
12498
|
+
* Before you create cloud computers, complete the following preparations:
|
|
12499
|
+
* * An office network (formerly called workspace) and users are created. For more information, see:
|
|
12500
|
+
* * Convenience office network: [CreateSimpleOfficeSite](~~215416~~) and [CreateUsers](~~437832~~).
|
|
12501
|
+
* * Active Directory (AD) office network: [CreateADConnectorOfficeSite](~~215417~~) and [Create an AD user](~~188619~~).
|
|
12502
|
+
* * Make sure a cloud computer template exists. If no cloud computer template exists, call the [CreateBundle](~~188883~~) operation to create a template.
|
|
12503
|
+
* * Make sure a policy exists. If no policy exists, call the [CreatePolicyGroup](~~188889~~) operation to create a policy.
|
|
12504
|
+
* If you want the cloud computers to automatically execute a custom command script, you can use the `UserCommands` field to configure a custom command.
|
|
12426
12505
|
*
|
|
12427
12506
|
* @param request CreateDesktopsRequest
|
|
12428
12507
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12430,13 +12509,13 @@ export default class Client extends OpenApi {
|
|
|
12430
12509
|
*/
|
|
12431
12510
|
createDesktopsWithOptions(request: CreateDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<CreateDesktopsResponse>;
|
|
12432
12511
|
/**
|
|
12433
|
-
*
|
|
12434
|
-
* *
|
|
12435
|
-
* *
|
|
12436
|
-
* *
|
|
12437
|
-
* *
|
|
12438
|
-
* *
|
|
12439
|
-
*
|
|
12512
|
+
* Before you create cloud computers, complete the following preparations:
|
|
12513
|
+
* * An office network (formerly called workspace) and users are created. For more information, see:
|
|
12514
|
+
* * Convenience office network: [CreateSimpleOfficeSite](~~215416~~) and [CreateUsers](~~437832~~).
|
|
12515
|
+
* * Active Directory (AD) office network: [CreateADConnectorOfficeSite](~~215417~~) and [Create an AD user](~~188619~~).
|
|
12516
|
+
* * Make sure a cloud computer template exists. If no cloud computer template exists, call the [CreateBundle](~~188883~~) operation to create a template.
|
|
12517
|
+
* * Make sure a policy exists. If no policy exists, call the [CreatePolicyGroup](~~188889~~) operation to create a policy.
|
|
12518
|
+
* If you want the cloud computers to automatically execute a custom command script, you can use the `UserCommands` field to configure a custom command.
|
|
12440
12519
|
*
|
|
12441
12520
|
* @param request CreateDesktopsRequest
|
|
12442
12521
|
* @return CreateDesktopsResponse
|
|
@@ -12467,8 +12546,8 @@ export default class Client extends OpenApi {
|
|
|
12467
12546
|
createPolicyGroup(request: CreatePolicyGroupRequest): Promise<CreatePolicyGroupResponse>;
|
|
12468
12547
|
/**
|
|
12469
12548
|
* Before you create a RAM directory, make sure that you have completed the following operations:
|
|
12470
|
-
* * You have created a virtual private cloud (VPC) by calling the
|
|
12471
|
-
* * You have created a vSwitch in the VPC
|
|
12549
|
+
* * You have created a virtual private cloud (VPC) by calling the CreateVpc operation in a region where Elastic Desktop Service (EDS) is available.
|
|
12550
|
+
* * You have created a vSwitch by calling the CreateVSwitch operation in a region where the VPC resides. You can call the [DescribeZones](~~196648~~) operation to obtain the zones where EDS is available in a region.
|
|
12472
12551
|
*
|
|
12473
12552
|
* @param request CreateRAMDirectoryRequest
|
|
12474
12553
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12477,8 +12556,8 @@ export default class Client extends OpenApi {
|
|
|
12477
12556
|
createRAMDirectoryWithOptions(request: CreateRAMDirectoryRequest, runtime: $Util.RuntimeOptions): Promise<CreateRAMDirectoryResponse>;
|
|
12478
12557
|
/**
|
|
12479
12558
|
* Before you create a RAM directory, make sure that you have completed the following operations:
|
|
12480
|
-
* * You have created a virtual private cloud (VPC) by calling the
|
|
12481
|
-
* * You have created a vSwitch in the VPC
|
|
12559
|
+
* * You have created a virtual private cloud (VPC) by calling the CreateVpc operation in a region where Elastic Desktop Service (EDS) is available.
|
|
12560
|
+
* * You have created a vSwitch by calling the CreateVSwitch operation in a region where the VPC resides. You can call the [DescribeZones](~~196648~~) operation to obtain the zones where EDS is available in a region.
|
|
12482
12561
|
*
|
|
12483
12562
|
* @param request CreateRAMDirectoryRequest
|
|
12484
12563
|
* @return CreateRAMDirectoryResponse
|
|
@@ -12487,7 +12566,7 @@ export default class Client extends OpenApi {
|
|
|
12487
12566
|
createSimpleOfficeSiteWithOptions(request: CreateSimpleOfficeSiteRequest, runtime: $Util.RuntimeOptions): Promise<CreateSimpleOfficeSiteResponse>;
|
|
12488
12567
|
createSimpleOfficeSite(request: CreateSimpleOfficeSiteRequest): Promise<CreateSimpleOfficeSiteResponse>;
|
|
12489
12568
|
/**
|
|
12490
|
-
* The cloud
|
|
12569
|
+
* The cloud computer must be in the **Running** or **Stopped** state.
|
|
12491
12570
|
*
|
|
12492
12571
|
* @param request CreateSnapshotRequest
|
|
12493
12572
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12495,7 +12574,7 @@ export default class Client extends OpenApi {
|
|
|
12495
12574
|
*/
|
|
12496
12575
|
createSnapshotWithOptions(request: CreateSnapshotRequest, runtime: $Util.RuntimeOptions): Promise<CreateSnapshotResponse>;
|
|
12497
12576
|
/**
|
|
12498
|
-
* The cloud
|
|
12577
|
+
* The cloud computer must be in the **Running** or **Stopped** state.
|
|
12499
12578
|
*
|
|
12500
12579
|
* @param request CreateSnapshotRequest
|
|
12501
12580
|
* @return CreateSnapshotResponse
|
|
@@ -12511,7 +12590,24 @@ export default class Client extends OpenApi {
|
|
|
12511
12590
|
deleteCloudDriveGroups(request: DeleteCloudDriveGroupsRequest): Promise<DeleteCloudDriveGroupsResponse>;
|
|
12512
12591
|
deleteCloudDriveUsersWithOptions(request: DeleteCloudDriveUsersRequest, runtime: $Util.RuntimeOptions): Promise<DeleteCloudDriveUsersResponse>;
|
|
12513
12592
|
deleteCloudDriveUsers(request: DeleteCloudDriveUsersRequest): Promise<DeleteCloudDriveUsersResponse>;
|
|
12593
|
+
/**
|
|
12594
|
+
* * Before you delete a desktop group, make sure that cloud desktops in the desktop group are not connected and no users are authorized to use the cloud desktops.
|
|
12595
|
+
* * You cannot delete a subscription desktop group when cloud desktops in the group are in valid period.
|
|
12596
|
+
* * If you delete a pay-as-you-go desktop group, cloud desktops in the group are deleted.
|
|
12597
|
+
*
|
|
12598
|
+
* @param request DeleteDesktopGroupRequest
|
|
12599
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
12600
|
+
* @return DeleteDesktopGroupResponse
|
|
12601
|
+
*/
|
|
12514
12602
|
deleteDesktopGroupWithOptions(request: DeleteDesktopGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDesktopGroupResponse>;
|
|
12603
|
+
/**
|
|
12604
|
+
* * Before you delete a desktop group, make sure that cloud desktops in the desktop group are not connected and no users are authorized to use the cloud desktops.
|
|
12605
|
+
* * You cannot delete a subscription desktop group when cloud desktops in the group are in valid period.
|
|
12606
|
+
* * If you delete a pay-as-you-go desktop group, cloud desktops in the group are deleted.
|
|
12607
|
+
*
|
|
12608
|
+
* @param request DeleteDesktopGroupRequest
|
|
12609
|
+
* @return DeleteDesktopGroupResponse
|
|
12610
|
+
*/
|
|
12515
12611
|
deleteDesktopGroup(request: DeleteDesktopGroupRequest): Promise<DeleteDesktopGroupResponse>;
|
|
12516
12612
|
deleteDesktopsWithOptions(request: DeleteDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDesktopsResponse>;
|
|
12517
12613
|
deleteDesktops(request: DeleteDesktopsRequest): Promise<DeleteDesktopsResponse>;
|
|
@@ -12531,7 +12627,7 @@ export default class Client extends OpenApi {
|
|
|
12531
12627
|
*/
|
|
12532
12628
|
deleteDevices(request: DeleteDevicesRequest): Promise<DeleteDevicesResponse>;
|
|
12533
12629
|
/**
|
|
12534
|
-
* You cannot delete directories that are
|
|
12630
|
+
* You cannot delete directories that are used by cloud desktops.
|
|
12535
12631
|
*
|
|
12536
12632
|
* @param request DeleteDirectoriesRequest
|
|
12537
12633
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12539,7 +12635,7 @@ export default class Client extends OpenApi {
|
|
|
12539
12635
|
*/
|
|
12540
12636
|
deleteDirectoriesWithOptions(request: DeleteDirectoriesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDirectoriesResponse>;
|
|
12541
12637
|
/**
|
|
12542
|
-
* You cannot delete directories that are
|
|
12638
|
+
* You cannot delete directories that are used by cloud desktops.
|
|
12543
12639
|
*
|
|
12544
12640
|
* @param request DeleteDirectoriesRequest
|
|
12545
12641
|
* @return DeleteDirectoriesResponse
|
|
@@ -12549,7 +12645,7 @@ export default class Client extends OpenApi {
|
|
|
12549
12645
|
deleteEduRoom(request: DeleteEduRoomRequest): Promise<DeleteEduRoomResponse>;
|
|
12550
12646
|
/**
|
|
12551
12647
|
* * Images include system images and custom images. System images cannot be deleted.
|
|
12552
|
-
* * If an image to delete is referenced by a
|
|
12648
|
+
* * If an image that you want to delete is referenced by a cloud computer template, call the [DeleteBundles](~~436972~~) operation to delete the cloud computer template before you delete the image.
|
|
12553
12649
|
*
|
|
12554
12650
|
* @param request DeleteImagesRequest
|
|
12555
12651
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12558,7 +12654,7 @@ export default class Client extends OpenApi {
|
|
|
12558
12654
|
deleteImagesWithOptions(request: DeleteImagesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteImagesResponse>;
|
|
12559
12655
|
/**
|
|
12560
12656
|
* * Images include system images and custom images. System images cannot be deleted.
|
|
12561
|
-
* * If an image to delete is referenced by a
|
|
12657
|
+
* * If an image that you want to delete is referenced by a cloud computer template, call the [DeleteBundles](~~436972~~) operation to delete the cloud computer template before you delete the image.
|
|
12562
12658
|
*
|
|
12563
12659
|
* @param request DeleteImagesRequest
|
|
12564
12660
|
* @return DeleteImagesResponse
|
|
@@ -12566,8 +12662,7 @@ export default class Client extends OpenApi {
|
|
|
12566
12662
|
deleteImages(request: DeleteImagesRequest): Promise<DeleteImagesResponse>;
|
|
12567
12663
|
/**
|
|
12568
12664
|
* Before you delete an Apsara File Storage NAS (NAS) file system, make sure that the data you want to retain is backed up.
|
|
12569
|
-
*
|
|
12570
|
-
* **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.
|
|
12665
|
+
* ><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.></warning>
|
|
12571
12666
|
*
|
|
12572
12667
|
* @param request DeleteNASFileSystemsRequest
|
|
12573
12668
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12576,8 +12671,7 @@ export default class Client extends OpenApi {
|
|
|
12576
12671
|
deleteNASFileSystemsWithOptions(request: DeleteNASFileSystemsRequest, runtime: $Util.RuntimeOptions): Promise<DeleteNASFileSystemsResponse>;
|
|
12577
12672
|
/**
|
|
12578
12673
|
* Before you delete an Apsara File Storage NAS (NAS) file system, make sure that the data you want to retain is backed up.
|
|
12579
|
-
*
|
|
12580
|
-
* **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.
|
|
12674
|
+
* ><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.></warning>
|
|
12581
12675
|
*
|
|
12582
12676
|
* @param request DeleteNASFileSystemsRequest
|
|
12583
12677
|
* @return DeleteNASFileSystemsResponse
|
|
@@ -12586,10 +12680,10 @@ export default class Client extends OpenApi {
|
|
|
12586
12680
|
deleteNetworkPackagesWithOptions(request: DeleteNetworkPackagesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteNetworkPackagesResponse>;
|
|
12587
12681
|
deleteNetworkPackages(request: DeleteNetworkPackagesRequest): Promise<DeleteNetworkPackagesResponse>;
|
|
12588
12682
|
/**
|
|
12589
|
-
* Before you delete
|
|
12590
|
-
* * All cloud
|
|
12683
|
+
* Before you delete an office network, make sure that the following operations are complete:
|
|
12684
|
+
* * All cloud computers in the office network are released.
|
|
12591
12685
|
* * The data that you want to retain is backed up.
|
|
12592
|
-
*
|
|
12686
|
+
* > Resources and data on cloud computers in an office network cannot be restored after you delete it. Proceed with caution.
|
|
12593
12687
|
*
|
|
12594
12688
|
* @param request DeleteOfficeSitesRequest
|
|
12595
12689
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12597,10 +12691,10 @@ export default class Client extends OpenApi {
|
|
|
12597
12691
|
*/
|
|
12598
12692
|
deleteOfficeSitesWithOptions(request: DeleteOfficeSitesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteOfficeSitesResponse>;
|
|
12599
12693
|
/**
|
|
12600
|
-
* Before you delete
|
|
12601
|
-
* * All cloud
|
|
12694
|
+
* Before you delete an office network, make sure that the following operations are complete:
|
|
12695
|
+
* * All cloud computers in the office network are released.
|
|
12602
12696
|
* * The data that you want to retain is backed up.
|
|
12603
|
-
*
|
|
12697
|
+
* > Resources and data on cloud computers in an office network cannot be restored after you delete it. Proceed with caution.
|
|
12604
12698
|
*
|
|
12605
12699
|
* @param request DeleteOfficeSitesRequest
|
|
12606
12700
|
* @return DeleteOfficeSitesResponse
|
|
@@ -12624,7 +12718,7 @@ export default class Client extends OpenApi {
|
|
|
12624
12718
|
*/
|
|
12625
12719
|
deleteSnapshot(request: DeleteSnapshotRequest): Promise<DeleteSnapshotResponse>;
|
|
12626
12720
|
/**
|
|
12627
|
-
* If an MFA device is deleted, the device is unbound, reset, and disabled. When
|
|
12721
|
+
* If an MFA device is deleted, the device is unbound, reset, and disabled. When an Active Directory (AD) user wants to connect to the cloud desktop that is bound to the MFA device, the AD user must bind a new MFA device.
|
|
12628
12722
|
*
|
|
12629
12723
|
* @param request DeleteVirtualMFADeviceRequest
|
|
12630
12724
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12632,7 +12726,7 @@ export default class Client extends OpenApi {
|
|
|
12632
12726
|
*/
|
|
12633
12727
|
deleteVirtualMFADeviceWithOptions(request: DeleteVirtualMFADeviceRequest, runtime: $Util.RuntimeOptions): Promise<DeleteVirtualMFADeviceResponse>;
|
|
12634
12728
|
/**
|
|
12635
|
-
* If an MFA device is deleted, the device is unbound, reset, and disabled. When
|
|
12729
|
+
* If an MFA device is deleted, the device is unbound, reset, and disabled. When an Active Directory (AD) user wants to connect to the cloud desktop that is bound to the MFA device, the AD user must bind a new MFA device.
|
|
12636
12730
|
*
|
|
12637
12731
|
* @param request DeleteVirtualMFADeviceRequest
|
|
12638
12732
|
* @return DeleteVirtualMFADeviceResponse
|
|
@@ -12760,7 +12854,7 @@ export default class Client extends OpenApi {
|
|
|
12760
12854
|
describeImageModifiedRecordsWithOptions(request: DescribeImageModifiedRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeImageModifiedRecordsResponse>;
|
|
12761
12855
|
describeImageModifiedRecords(request: DescribeImageModifiedRecordsRequest): Promise<DescribeImageModifiedRecordsResponse>;
|
|
12762
12856
|
/**
|
|
12763
|
-
* You can call the ModifyImagePermission operation to share
|
|
12857
|
+
* You can call the [ModifyImagePermission](~~436982~~) operation to share an image with another cloud computer user or unshare an image. You can call the DescribeImagePermission operation to obtain the Alibaba Cloud accounts with which the current image is shared.
|
|
12764
12858
|
*
|
|
12765
12859
|
* @param request DescribeImagePermissionRequest
|
|
12766
12860
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12768,7 +12862,7 @@ export default class Client extends OpenApi {
|
|
|
12768
12862
|
*/
|
|
12769
12863
|
describeImagePermissionWithOptions(request: DescribeImagePermissionRequest, runtime: $Util.RuntimeOptions): Promise<DescribeImagePermissionResponse>;
|
|
12770
12864
|
/**
|
|
12771
|
-
* You can call the ModifyImagePermission operation to share
|
|
12865
|
+
* You can call the [ModifyImagePermission](~~436982~~) operation to share an image with another cloud computer user or unshare an image. You can call the DescribeImagePermission operation to obtain the Alibaba Cloud accounts with which the current image is shared.
|
|
12772
12866
|
*
|
|
12773
12867
|
* @param request DescribeImagePermissionRequest
|
|
12774
12868
|
* @return DescribeImagePermissionResponse
|
|
@@ -12834,6 +12928,8 @@ export default class Client extends OpenApi {
|
|
|
12834
12928
|
describePriceForModifyDesktopOversoldGroupSale(request: DescribePriceForModifyDesktopOversoldGroupSaleRequest): Promise<DescribePriceForModifyDesktopOversoldGroupSaleResponse>;
|
|
12835
12929
|
describePriceForRenewDesktopOversoldGroupWithOptions(request: DescribePriceForRenewDesktopOversoldGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribePriceForRenewDesktopOversoldGroupResponse>;
|
|
12836
12930
|
describePriceForRenewDesktopOversoldGroup(request: DescribePriceForRenewDesktopOversoldGroupRequest): Promise<DescribePriceForRenewDesktopOversoldGroupResponse>;
|
|
12931
|
+
describeRecordingsWithOptions(request: DescribeRecordingsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRecordingsResponse>;
|
|
12932
|
+
describeRecordings(request: DescribeRecordingsRequest): Promise<DescribeRecordingsResponse>;
|
|
12837
12933
|
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
12838
12934
|
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
12839
12935
|
/**
|
|
@@ -12884,7 +12980,22 @@ export default class Client extends OpenApi {
|
|
|
12884
12980
|
exportDesktopGroupInfoWithOptions(request: ExportDesktopGroupInfoRequest, runtime: $Util.RuntimeOptions): Promise<ExportDesktopGroupInfoResponse>;
|
|
12885
12981
|
exportDesktopGroupInfo(request: ExportDesktopGroupInfoRequest): Promise<ExportDesktopGroupInfoResponse>;
|
|
12886
12982
|
/**
|
|
12887
|
-
* The
|
|
12983
|
+
* The cloud computer list exported by calling this operation is saved as a CSV file. Each entry of data of a cloud computer includes the following fields:
|
|
12984
|
+
* * Cloud computer ID and name
|
|
12985
|
+
* * Office network ID and name
|
|
12986
|
+
* * The instance type, OS and protocol of the cloud computer
|
|
12987
|
+
* * System disk and data disk of the cloud computer
|
|
12988
|
+
* * The status
|
|
12989
|
+
* * Purchase method
|
|
12990
|
+
* * The time when the cloud computer expires
|
|
12991
|
+
* * Remaining duration and total duration
|
|
12992
|
+
* * Number of assigned users and number of current users
|
|
12993
|
+
* * Office network type
|
|
12994
|
+
* * The time when the cloud computer was created
|
|
12995
|
+
* * Tags
|
|
12996
|
+
* * Encryption status
|
|
12997
|
+
* * IP
|
|
12998
|
+
* * The hostname
|
|
12888
12999
|
*
|
|
12889
13000
|
* @param request ExportDesktopListInfoRequest
|
|
12890
13001
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12892,7 +13003,22 @@ export default class Client extends OpenApi {
|
|
|
12892
13003
|
*/
|
|
12893
13004
|
exportDesktopListInfoWithOptions(request: ExportDesktopListInfoRequest, runtime: $Util.RuntimeOptions): Promise<ExportDesktopListInfoResponse>;
|
|
12894
13005
|
/**
|
|
12895
|
-
* The
|
|
13006
|
+
* The cloud computer list exported by calling this operation is saved as a CSV file. Each entry of data of a cloud computer includes the following fields:
|
|
13007
|
+
* * Cloud computer ID and name
|
|
13008
|
+
* * Office network ID and name
|
|
13009
|
+
* * The instance type, OS and protocol of the cloud computer
|
|
13010
|
+
* * System disk and data disk of the cloud computer
|
|
13011
|
+
* * The status
|
|
13012
|
+
* * Purchase method
|
|
13013
|
+
* * The time when the cloud computer expires
|
|
13014
|
+
* * Remaining duration and total duration
|
|
13015
|
+
* * Number of assigned users and number of current users
|
|
13016
|
+
* * Office network type
|
|
13017
|
+
* * The time when the cloud computer was created
|
|
13018
|
+
* * Tags
|
|
13019
|
+
* * Encryption status
|
|
13020
|
+
* * IP
|
|
13021
|
+
* * The hostname
|
|
12896
13022
|
*
|
|
12897
13023
|
* @param request ExportDesktopListInfoRequest
|
|
12898
13024
|
* @return ExportDesktopListInfoResponse
|
|
@@ -12900,7 +13026,20 @@ export default class Client extends OpenApi {
|
|
|
12900
13026
|
exportDesktopListInfo(request: ExportDesktopListInfoRequest): Promise<ExportDesktopListInfoResponse>;
|
|
12901
13027
|
getAsyncTaskWithOptions(request: GetAsyncTaskRequest, runtime: $Util.RuntimeOptions): Promise<GetAsyncTaskResponse>;
|
|
12902
13028
|
getAsyncTask(request: GetAsyncTaskRequest): Promise<GetAsyncTaskResponse>;
|
|
13029
|
+
/**
|
|
13030
|
+
* The cloud computer must be in the Running state.
|
|
13031
|
+
*
|
|
13032
|
+
* @param request GetConnectionTicketRequest
|
|
13033
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13034
|
+
* @return GetConnectionTicketResponse
|
|
13035
|
+
*/
|
|
12903
13036
|
getConnectionTicketWithOptions(request: GetConnectionTicketRequest, runtime: $Util.RuntimeOptions): Promise<GetConnectionTicketResponse>;
|
|
13037
|
+
/**
|
|
13038
|
+
* The cloud computer must be in the Running state.
|
|
13039
|
+
*
|
|
13040
|
+
* @param request GetConnectionTicketRequest
|
|
13041
|
+
* @return GetConnectionTicketResponse
|
|
13042
|
+
*/
|
|
12904
13043
|
getConnectionTicket(request: GetConnectionTicketRequest): Promise<GetConnectionTicketResponse>;
|
|
12905
13044
|
getCoordinateTicketWithOptions(request: GetCoordinateTicketRequest, runtime: $Util.RuntimeOptions): Promise<GetCoordinateTicketResponse>;
|
|
12906
13045
|
getCoordinateTicket(request: GetCoordinateTicketRequest): Promise<GetCoordinateTicketResponse>;
|
|
@@ -12962,7 +13101,7 @@ export default class Client extends OpenApi {
|
|
|
12962
13101
|
listOfficeSiteUsersWithOptions(request: ListOfficeSiteUsersRequest, runtime: $Util.RuntimeOptions): Promise<ListOfficeSiteUsersResponse>;
|
|
12963
13102
|
listOfficeSiteUsers(request: ListOfficeSiteUsersRequest): Promise<ListOfficeSiteUsersResponse>;
|
|
12964
13103
|
/**
|
|
12965
|
-
* You must
|
|
13104
|
+
* You must use at least one of the following parameters in the request to determine the object that you want to query: `ResourceId.N`, `Tag.N.Key`, and `Tag.N.Value`.
|
|
12966
13105
|
*
|
|
12967
13106
|
* @param request ListTagResourcesRequest
|
|
12968
13107
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12970,7 +13109,7 @@ export default class Client extends OpenApi {
|
|
|
12970
13109
|
*/
|
|
12971
13110
|
listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse>;
|
|
12972
13111
|
/**
|
|
12973
|
-
* You must
|
|
13112
|
+
* You must use at least one of the following parameters in the request to determine the object that you want to query: `ResourceId.N`, `Tag.N.Key`, and `Tag.N.Value`.
|
|
12974
13113
|
*
|
|
12975
13114
|
* @param request ListTagResourcesRequest
|
|
12976
13115
|
* @return ListTagResourcesResponse
|
|
@@ -12979,7 +13118,7 @@ export default class Client extends OpenApi {
|
|
|
12979
13118
|
listUserAdOrganizationUnitsWithOptions(request: ListUserAdOrganizationUnitsRequest, runtime: $Util.RuntimeOptions): Promise<ListUserAdOrganizationUnitsResponse>;
|
|
12980
13119
|
listUserAdOrganizationUnits(request: ListUserAdOrganizationUnitsRequest): Promise<ListUserAdOrganizationUnitsResponse>;
|
|
12981
13120
|
/**
|
|
12982
|
-
* 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.
|
|
13121
|
+
* After a virtual MFA device is locked, its status changes to LOCKED. The Active Directory (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.
|
|
12983
13122
|
*
|
|
12984
13123
|
* @param request LockVirtualMFADeviceRequest
|
|
12985
13124
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12987,7 +13126,7 @@ export default class Client extends OpenApi {
|
|
|
12987
13126
|
*/
|
|
12988
13127
|
lockVirtualMFADeviceWithOptions(request: LockVirtualMFADeviceRequest, runtime: $Util.RuntimeOptions): Promise<LockVirtualMFADeviceResponse>;
|
|
12989
13128
|
/**
|
|
12990
|
-
* 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.
|
|
13129
|
+
* After a virtual MFA device is locked, its status changes to LOCKED. The Active Directory (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.
|
|
12991
13130
|
*
|
|
12992
13131
|
* @param request LockVirtualMFADeviceRequest
|
|
12993
13132
|
* @return LockVirtualMFADeviceResponse
|
|
@@ -12999,9 +13138,35 @@ export default class Client extends OpenApi {
|
|
|
12999
13138
|
migrateImageProtocol(request: MigrateImageProtocolRequest): Promise<MigrateImageProtocolResponse>;
|
|
13000
13139
|
modifyADConnectorDirectoryWithOptions(request: ModifyADConnectorDirectoryRequest, runtime: $Util.RuntimeOptions): Promise<ModifyADConnectorDirectoryResponse>;
|
|
13001
13140
|
modifyADConnectorDirectory(request: ModifyADConnectorDirectoryRequest): Promise<ModifyADConnectorDirectoryResponse>;
|
|
13141
|
+
/**
|
|
13142
|
+
* You can modify parameters of domain names and Domain Name System (DNS) for enterprise AD office networks that are in the `ERROR` or `REGISTERED` state. The parameters include `DomainName`, `SubDomainName`, `DnsAddress.N`, and `SubDomainDnsAddress.N`.
|
|
13143
|
+
*
|
|
13144
|
+
* @param request ModifyADConnectorOfficeSiteRequest
|
|
13145
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13146
|
+
* @return ModifyADConnectorOfficeSiteResponse
|
|
13147
|
+
*/
|
|
13002
13148
|
modifyADConnectorOfficeSiteWithOptions(request: ModifyADConnectorOfficeSiteRequest, runtime: $Util.RuntimeOptions): Promise<ModifyADConnectorOfficeSiteResponse>;
|
|
13149
|
+
/**
|
|
13150
|
+
* You can modify parameters of domain names and Domain Name System (DNS) for enterprise AD office networks that are in the `ERROR` or `REGISTERED` state. The parameters include `DomainName`, `SubDomainName`, `DnsAddress.N`, and `SubDomainDnsAddress.N`.
|
|
13151
|
+
*
|
|
13152
|
+
* @param request ModifyADConnectorOfficeSiteRequest
|
|
13153
|
+
* @return ModifyADConnectorOfficeSiteResponse
|
|
13154
|
+
*/
|
|
13003
13155
|
modifyADConnectorOfficeSite(request: ModifyADConnectorOfficeSiteRequest): Promise<ModifyADConnectorOfficeSiteResponse>;
|
|
13156
|
+
/**
|
|
13157
|
+
* You can set different Internet access control policies at different granularities to achieve the effect of composite policies. For example, you can disable the Internet access on the office network granularity and enable the Internet access on specific cloud computer granularity. The effect is that all cloud computers in the office network except the specified cloud computers are not allowed to access the Internet.
|
|
13158
|
+
*
|
|
13159
|
+
* @param request ModifyAclEntriesRequest
|
|
13160
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13161
|
+
* @return ModifyAclEntriesResponse
|
|
13162
|
+
*/
|
|
13004
13163
|
modifyAclEntriesWithOptions(request: ModifyAclEntriesRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAclEntriesResponse>;
|
|
13164
|
+
/**
|
|
13165
|
+
* You can set different Internet access control policies at different granularities to achieve the effect of composite policies. For example, you can disable the Internet access on the office network granularity and enable the Internet access on specific cloud computer granularity. The effect is that all cloud computers in the office network except the specified cloud computers are not allowed to access the Internet.
|
|
13166
|
+
*
|
|
13167
|
+
* @param request ModifyAclEntriesRequest
|
|
13168
|
+
* @return ModifyAclEntriesResponse
|
|
13169
|
+
*/
|
|
13005
13170
|
modifyAclEntries(request: ModifyAclEntriesRequest): Promise<ModifyAclEntriesResponse>;
|
|
13006
13171
|
modifyAutoSnapshotPolicyWithOptions(request: ModifyAutoSnapshotPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAutoSnapshotPolicyResponse>;
|
|
13007
13172
|
modifyAutoSnapshotPolicy(request: ModifyAutoSnapshotPolicyRequest): Promise<ModifyAutoSnapshotPolicyResponse>;
|
|
@@ -13033,10 +13198,9 @@ export default class Client extends OpenApi {
|
|
|
13033
13198
|
modifyCustomizedListHeadersWithOptions(request: ModifyCustomizedListHeadersRequest, runtime: $Util.RuntimeOptions): Promise<ModifyCustomizedListHeadersResponse>;
|
|
13034
13199
|
modifyCustomizedListHeaders(request: ModifyCustomizedListHeadersRequest): Promise<ModifyCustomizedListHeadersResponse>;
|
|
13035
13200
|
/**
|
|
13036
|
-
* * Before you call this operation, make sure that you
|
|
13037
|
-
* * Before you call this operation, make sure that the cloud
|
|
13038
|
-
* * After the order payment is completed, the system starts to change the billing method of the cloud
|
|
13039
|
-
* * 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).
|
|
13201
|
+
* * Before you call this operation, make sure that you fully understand the billing methods of cloud computers. For more information, see [Billing overview](~~188395~~).
|
|
13202
|
+
* * Before you call this operation, make sure that the cloud computers whose billing method you want to change are in the Running or Stopped state and you have no overdue payments in your Alibaba Cloud account.
|
|
13203
|
+
* * After the order payment is completed, the system starts to change the billing method of the cloud computers. During the change, you cannot perform operations, such as starting or stopping the cloud computers, and changing configurations of the cloud computers.
|
|
13040
13204
|
*
|
|
13041
13205
|
* @param request ModifyDesktopChargeTypeRequest
|
|
13042
13206
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13044,21 +13208,16 @@ export default class Client extends OpenApi {
|
|
|
13044
13208
|
*/
|
|
13045
13209
|
modifyDesktopChargeTypeWithOptions(request: ModifyDesktopChargeTypeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopChargeTypeResponse>;
|
|
13046
13210
|
/**
|
|
13047
|
-
* * Before you call this operation, make sure that you
|
|
13048
|
-
* * Before you call this operation, make sure that the cloud
|
|
13049
|
-
* * After the order payment is completed, the system starts to change the billing method of the cloud
|
|
13050
|
-
* * 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).
|
|
13211
|
+
* * Before you call this operation, make sure that you fully understand the billing methods of cloud computers. For more information, see [Billing overview](~~188395~~).
|
|
13212
|
+
* * Before you call this operation, make sure that the cloud computers whose billing method you want to change are in the Running or Stopped state and you have no overdue payments in your Alibaba Cloud account.
|
|
13213
|
+
* * After the order payment is completed, the system starts to change the billing method of the cloud computers. During the change, you cannot perform operations, such as starting or stopping the cloud computers, and changing configurations of the cloud computers.
|
|
13051
13214
|
*
|
|
13052
13215
|
* @param request ModifyDesktopChargeTypeRequest
|
|
13053
13216
|
* @return ModifyDesktopChargeTypeResponse
|
|
13054
13217
|
*/
|
|
13055
13218
|
modifyDesktopChargeType(request: ModifyDesktopChargeTypeRequest): Promise<ModifyDesktopChargeTypeResponse>;
|
|
13056
13219
|
/**
|
|
13057
|
-
* After
|
|
13058
|
-
* * By default, a desktop group has the same name as all cloud desktops in the group. You can modify the desktop group name, which is specified by the DesktopGroupName parameter, to distinguish the desktop group from the cloud desktops.
|
|
13059
|
-
* * If the number of vCPUs and memory size of the cloud desktop cannot meet your business requirements in high performance scenarios, you can change the desktop template that is used to create the cloud desktop to a desktop template (OwnBundleId) that has higher specifications.
|
|
13060
|
-
* * If a security policy that is associated with the desktop group cannot meet your requirements on security, you can change the policy to another policy (PolicyGroupId) that provides higher security.
|
|
13061
|
-
* * If the number of cloud desktops in the desktop group is insufficient to meet the business requirements of end users, you can modify the parameter settings in the scaling policy. The parameters include MinDesktopsCount, MaxDesktopsCount, and AllowBufferCount.
|
|
13220
|
+
* After a cloud computer pool is created, the system creates a specific number of cloud computers in the pool based on the auto scaling policy and user connections. Cloud computers are created by using the same cloud computer template and security policy. You can modify the configurations of the pool, including the pool name, cloud computer template, and policy, in different business scenarios.
|
|
13062
13221
|
*
|
|
13063
13222
|
* @param request ModifyDesktopGroupRequest
|
|
13064
13223
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13066,18 +13225,14 @@ export default class Client extends OpenApi {
|
|
|
13066
13225
|
*/
|
|
13067
13226
|
modifyDesktopGroupWithOptions(request: ModifyDesktopGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopGroupResponse>;
|
|
13068
13227
|
/**
|
|
13069
|
-
* After
|
|
13070
|
-
* * By default, a desktop group has the same name as all cloud desktops in the group. You can modify the desktop group name, which is specified by the DesktopGroupName parameter, to distinguish the desktop group from the cloud desktops.
|
|
13071
|
-
* * If the number of vCPUs and memory size of the cloud desktop cannot meet your business requirements in high performance scenarios, you can change the desktop template that is used to create the cloud desktop to a desktop template (OwnBundleId) that has higher specifications.
|
|
13072
|
-
* * If a security policy that is associated with the desktop group cannot meet your requirements on security, you can change the policy to another policy (PolicyGroupId) that provides higher security.
|
|
13073
|
-
* * If the number of cloud desktops in the desktop group is insufficient to meet the business requirements of end users, you can modify the parameter settings in the scaling policy. The parameters include MinDesktopsCount, MaxDesktopsCount, and AllowBufferCount.
|
|
13228
|
+
* After a cloud computer pool is created, the system creates a specific number of cloud computers in the pool based on the auto scaling policy and user connections. Cloud computers are created by using the same cloud computer template and security policy. You can modify the configurations of the pool, including the pool name, cloud computer template, and policy, in different business scenarios.
|
|
13074
13229
|
*
|
|
13075
13230
|
* @param request ModifyDesktopGroupRequest
|
|
13076
13231
|
* @return ModifyDesktopGroupResponse
|
|
13077
13232
|
*/
|
|
13078
13233
|
modifyDesktopGroup(request: ModifyDesktopGroupRequest): Promise<ModifyDesktopGroupResponse>;
|
|
13079
13234
|
/**
|
|
13080
|
-
*
|
|
13235
|
+
* The Windows cloud computer whose hostname you want to modify must be in an AD office network. After the hostname is modified, the cloud computer is re-created.
|
|
13081
13236
|
*
|
|
13082
13237
|
* @param request ModifyDesktopHostNameRequest
|
|
13083
13238
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13085,7 +13240,7 @@ export default class Client extends OpenApi {
|
|
|
13085
13240
|
*/
|
|
13086
13241
|
modifyDesktopHostNameWithOptions(request: ModifyDesktopHostNameRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopHostNameResponse>;
|
|
13087
13242
|
/**
|
|
13088
|
-
*
|
|
13243
|
+
* The Windows cloud computer whose hostname you want to modify must be in an AD office network. After the hostname is modified, the cloud computer is re-created.
|
|
13089
13244
|
*
|
|
13090
13245
|
* @param request ModifyDesktopHostNameRequest
|
|
13091
13246
|
* @return ModifyDesktopHostNameResponse
|
|
@@ -13100,16 +13255,16 @@ export default class Client extends OpenApi {
|
|
|
13100
13255
|
modifyDesktopOversoldUserGroupWithOptions(request: ModifyDesktopOversoldUserGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopOversoldUserGroupResponse>;
|
|
13101
13256
|
modifyDesktopOversoldUserGroup(request: ModifyDesktopOversoldUserGroupRequest): Promise<ModifyDesktopOversoldUserGroupResponse>;
|
|
13102
13257
|
/**
|
|
13103
|
-
*
|
|
13104
|
-
* * Before you
|
|
13105
|
-
* *
|
|
13106
|
-
* *
|
|
13107
|
-
* * You cannot change a cloud
|
|
13108
|
-
* *
|
|
13109
|
-
* * If
|
|
13110
|
-
* *
|
|
13111
|
-
* *
|
|
13112
|
-
* *
|
|
13258
|
+
* Changing the configurations of a cloud computer includes changing the instance type of the cloud computer and scaling up the disks of the cloud computer.
|
|
13259
|
+
* * Before you change the configurations of a cloud computer, you must understand the instance types and disk sizes supported by cloud computers. For more information, see [Cloud computer types](~~188609~~). You can call the [DescribeDesktopTypes](~~188882~~) operation to query the instance types supported by cloud computers.
|
|
13260
|
+
* * You must change at least one of the following configurations: instance type, system disk size, and data disk size of the cloud computer. You must specify at least one of the following parameters: `DesktopType`, `RootDiskSizeGib`, and `UserDiskSizeGib`. Take note of the following items:
|
|
13261
|
+
* * The instance type of a cloud computer includes the configurations of vCPUs, memory, and GPUs. You can only change an instance type to another. You cannot change only one of the configurations.
|
|
13262
|
+
* * You cannot change a cloud computer between the General Office type and the non-General Office type. You cannot yet change a cloud computer between the Graphics type and the non-Graphics type.
|
|
13263
|
+
* * The system disk and data disks of a cloud computer can only be scaled up and cannot be scaled down.
|
|
13264
|
+
* * If the billing method of the cloud computer is subscription, the system calculates the price difference based on the configuration difference between the original cloud computer and the new cloud computer. You must make up for the price difference or receive a refund for the price difference.
|
|
13265
|
+
* * We recommend that you do not change the configurations of a cloud computer twice within 5 minutes.
|
|
13266
|
+
* * When you change the configurations of a cloud computer, the cloud computer must be in the Stopped state.
|
|
13267
|
+
* * After you change the configurations of a cloud computer, the personal data on the cloud computer is not affected.
|
|
13113
13268
|
*
|
|
13114
13269
|
* @param request ModifyDesktopSpecRequest
|
|
13115
13270
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13117,16 +13272,16 @@ export default class Client extends OpenApi {
|
|
|
13117
13272
|
*/
|
|
13118
13273
|
modifyDesktopSpecWithOptions(request: ModifyDesktopSpecRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopSpecResponse>;
|
|
13119
13274
|
/**
|
|
13120
|
-
*
|
|
13121
|
-
* * Before you
|
|
13122
|
-
* *
|
|
13123
|
-
* *
|
|
13124
|
-
* * You cannot change a cloud
|
|
13125
|
-
* *
|
|
13126
|
-
* * If
|
|
13127
|
-
* *
|
|
13128
|
-
* *
|
|
13129
|
-
* *
|
|
13275
|
+
* Changing the configurations of a cloud computer includes changing the instance type of the cloud computer and scaling up the disks of the cloud computer.
|
|
13276
|
+
* * Before you change the configurations of a cloud computer, you must understand the instance types and disk sizes supported by cloud computers. For more information, see [Cloud computer types](~~188609~~). You can call the [DescribeDesktopTypes](~~188882~~) operation to query the instance types supported by cloud computers.
|
|
13277
|
+
* * You must change at least one of the following configurations: instance type, system disk size, and data disk size of the cloud computer. You must specify at least one of the following parameters: `DesktopType`, `RootDiskSizeGib`, and `UserDiskSizeGib`. Take note of the following items:
|
|
13278
|
+
* * The instance type of a cloud computer includes the configurations of vCPUs, memory, and GPUs. You can only change an instance type to another. You cannot change only one of the configurations.
|
|
13279
|
+
* * You cannot change a cloud computer between the General Office type and the non-General Office type. You cannot yet change a cloud computer between the Graphics type and the non-Graphics type.
|
|
13280
|
+
* * The system disk and data disks of a cloud computer can only be scaled up and cannot be scaled down.
|
|
13281
|
+
* * If the billing method of the cloud computer is subscription, the system calculates the price difference based on the configuration difference between the original cloud computer and the new cloud computer. You must make up for the price difference or receive a refund for the price difference.
|
|
13282
|
+
* * We recommend that you do not change the configurations of a cloud computer twice within 5 minutes.
|
|
13283
|
+
* * When you change the configurations of a cloud computer, the cloud computer must be in the Stopped state.
|
|
13284
|
+
* * After you change the configurations of a cloud computer, the personal data on the cloud computer is not affected.
|
|
13130
13285
|
*
|
|
13131
13286
|
* @param request ModifyDesktopSpecRequest
|
|
13132
13287
|
* @return ModifyDesktopSpecResponse
|
|
@@ -13135,7 +13290,7 @@ export default class Client extends OpenApi {
|
|
|
13135
13290
|
modifyDesktopTimerWithOptions(request: ModifyDesktopTimerRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopTimerResponse>;
|
|
13136
13291
|
modifyDesktopTimer(request: ModifyDesktopTimerRequest): Promise<ModifyDesktopTimerResponse>;
|
|
13137
13292
|
/**
|
|
13138
|
-
* The cloud
|
|
13293
|
+
* The cloud desktops that you want to restart by calling this operation must be in the Running state.
|
|
13139
13294
|
*
|
|
13140
13295
|
* @param request ModifyDesktopsPolicyGroupRequest
|
|
13141
13296
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13143,7 +13298,7 @@ export default class Client extends OpenApi {
|
|
|
13143
13298
|
*/
|
|
13144
13299
|
modifyDesktopsPolicyGroupWithOptions(request: ModifyDesktopsPolicyGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDesktopsPolicyGroupResponse>;
|
|
13145
13300
|
/**
|
|
13146
|
-
* The cloud
|
|
13301
|
+
* The cloud desktops that you want to restart by calling this operation must be in the Running state.
|
|
13147
13302
|
*
|
|
13148
13303
|
* @param request ModifyDesktopsPolicyGroupRequest
|
|
13149
13304
|
* @return ModifyDesktopsPolicyGroupResponse
|
|
@@ -13183,7 +13338,9 @@ export default class Client extends OpenApi {
|
|
|
13183
13338
|
*/
|
|
13184
13339
|
modifyDiskSpec(request: ModifyDiskSpecRequest): Promise<ModifyDiskSpecResponse>;
|
|
13185
13340
|
/**
|
|
13186
|
-
* The cloud
|
|
13341
|
+
* * The cloud computer must be in the Running state.
|
|
13342
|
+
* * After you call this operation, the assignment result is immediately returned. You can call the [DescribeDesktops](~~436815~~) operation to query the assignment of the cloud computer. The value of the `ManagementFlags` response parameter indicates the assignment of the cloud computer. A value of `ASSIGNING` indicates that the cloud computer is being assigned, and other values indicate that the cloud computer is assigned.
|
|
13343
|
+
* * We recommend that you check the assignment every 2 to 5 seconds and perform the checks within 50 seconds. Typically, 1 to 5 seconds are required to complete the assignment.
|
|
13187
13344
|
*
|
|
13188
13345
|
* @param request ModifyEntitlementRequest
|
|
13189
13346
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13191,7 +13348,9 @@ export default class Client extends OpenApi {
|
|
|
13191
13348
|
*/
|
|
13192
13349
|
modifyEntitlementWithOptions(request: ModifyEntitlementRequest, runtime: $Util.RuntimeOptions): Promise<ModifyEntitlementResponse>;
|
|
13193
13350
|
/**
|
|
13194
|
-
* The cloud
|
|
13351
|
+
* * The cloud computer must be in the Running state.
|
|
13352
|
+
* * After you call this operation, the assignment result is immediately returned. You can call the [DescribeDesktops](~~436815~~) operation to query the assignment of the cloud computer. The value of the `ManagementFlags` response parameter indicates the assignment of the cloud computer. A value of `ASSIGNING` indicates that the cloud computer is being assigned, and other values indicate that the cloud computer is assigned.
|
|
13353
|
+
* * We recommend that you check the assignment every 2 to 5 seconds and perform the checks within 50 seconds. Typically, 1 to 5 seconds are required to complete the assignment.
|
|
13195
13354
|
*
|
|
13196
13355
|
* @param request ModifyEntitlementRequest
|
|
13197
13356
|
* @return ModifyEntitlementResponse
|
|
@@ -13212,7 +13371,44 @@ export default class Client extends OpenApi {
|
|
|
13212
13371
|
* @return ModifyImageAttributeResponse
|
|
13213
13372
|
*/
|
|
13214
13373
|
modifyImageAttribute(request: ModifyImageAttributeRequest): Promise<ModifyImageAttributeResponse>;
|
|
13374
|
+
/**
|
|
13375
|
+
* ### [](#)Security of shared images
|
|
13376
|
+
* WUYING Workspace cannot guarantee the integrity and security of shared images. When you use a shared image, you must make sure that the image comes from a trusted sharer or account, and you are legally responsible for using the shared image.
|
|
13377
|
+
* ### [](#)Quota and billing
|
|
13378
|
+
* * A shared image does not count against the image quotas of principals to which the image is shared.
|
|
13379
|
+
* * After a principal uses a shared image to create a cloud computer, the sharer is not charged for the shared image.
|
|
13380
|
+
* * You are not charged for shared images.
|
|
13381
|
+
* ### [](#)Supported sharing behaviors
|
|
13382
|
+
* * You can share custom images with other Alibaba Cloud accounts.
|
|
13383
|
+
* * You can share custom images between accounts in the China site (aliyun.com) and the international site (alibabacloud.com).
|
|
13384
|
+
* ### [](#)Unsupported sharing behaviors
|
|
13385
|
+
* * You cannot share images that are shared by other Alibaba Cloud accounts.
|
|
13386
|
+
* * You cannot share encrypted images.
|
|
13387
|
+
* * You cannot share images across regions. If you want to share an image across regions, you must copy the image to the destination region and then share the image. For more information, see [CopyImage](~~436978~~).
|
|
13388
|
+
*
|
|
13389
|
+
* @param request ModifyImagePermissionRequest
|
|
13390
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
13391
|
+
* @return ModifyImagePermissionResponse
|
|
13392
|
+
*/
|
|
13215
13393
|
modifyImagePermissionWithOptions(request: ModifyImagePermissionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyImagePermissionResponse>;
|
|
13394
|
+
/**
|
|
13395
|
+
* ### [](#)Security of shared images
|
|
13396
|
+
* WUYING Workspace cannot guarantee the integrity and security of shared images. When you use a shared image, you must make sure that the image comes from a trusted sharer or account, and you are legally responsible for using the shared image.
|
|
13397
|
+
* ### [](#)Quota and billing
|
|
13398
|
+
* * A shared image does not count against the image quotas of principals to which the image is shared.
|
|
13399
|
+
* * After a principal uses a shared image to create a cloud computer, the sharer is not charged for the shared image.
|
|
13400
|
+
* * You are not charged for shared images.
|
|
13401
|
+
* ### [](#)Supported sharing behaviors
|
|
13402
|
+
* * You can share custom images with other Alibaba Cloud accounts.
|
|
13403
|
+
* * You can share custom images between accounts in the China site (aliyun.com) and the international site (alibabacloud.com).
|
|
13404
|
+
* ### [](#)Unsupported sharing behaviors
|
|
13405
|
+
* * You cannot share images that are shared by other Alibaba Cloud accounts.
|
|
13406
|
+
* * You cannot share encrypted images.
|
|
13407
|
+
* * You cannot share images across regions. If you want to share an image across regions, you must copy the image to the destination region and then share the image. For more information, see [CopyImage](~~436978~~).
|
|
13408
|
+
*
|
|
13409
|
+
* @param request ModifyImagePermissionRequest
|
|
13410
|
+
* @return ModifyImagePermissionResponse
|
|
13411
|
+
*/
|
|
13216
13412
|
modifyImagePermission(request: ModifyImagePermissionRequest): Promise<ModifyImagePermissionResponse>;
|
|
13217
13413
|
/**
|
|
13218
13414
|
* 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.
|
|
@@ -13232,7 +13428,7 @@ export default class Client extends OpenApi {
|
|
|
13232
13428
|
modifyNetworkPackageBandwidthWithOptions(request: ModifyNetworkPackageBandwidthRequest, runtime: $Util.RuntimeOptions): Promise<ModifyNetworkPackageBandwidthResponse>;
|
|
13233
13429
|
modifyNetworkPackageBandwidth(request: ModifyNetworkPackageBandwidthRequest): Promise<ModifyNetworkPackageBandwidthResponse>;
|
|
13234
13430
|
/**
|
|
13235
|
-
* If you want to temporarily disable Internet access
|
|
13431
|
+
* If you want to temporarily disable the Internet access of your cloud computer after the Internet access is enabled for your cloud computer, you can disable the premium bandwidth plan and restore it as needed.
|
|
13236
13432
|
*
|
|
13237
13433
|
* @param request ModifyNetworkPackageEnabledRequest
|
|
13238
13434
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13240,7 +13436,7 @@ export default class Client extends OpenApi {
|
|
|
13240
13436
|
*/
|
|
13241
13437
|
modifyNetworkPackageEnabledWithOptions(request: ModifyNetworkPackageEnabledRequest, runtime: $Util.RuntimeOptions): Promise<ModifyNetworkPackageEnabledResponse>;
|
|
13242
13438
|
/**
|
|
13243
|
-
* If you want to temporarily disable Internet access
|
|
13439
|
+
* If you want to temporarily disable the Internet access of your cloud computer after the Internet access is enabled for your cloud computer, you can disable the premium bandwidth plan and restore it as needed.
|
|
13244
13440
|
*
|
|
13245
13441
|
* @param request ModifyNetworkPackageEnabledRequest
|
|
13246
13442
|
* @return ModifyNetworkPackageEnabledResponse
|
|
@@ -13255,7 +13451,7 @@ export default class Client extends OpenApi {
|
|
|
13255
13451
|
modifyPolicyGroupWithOptions(request: ModifyPolicyGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyPolicyGroupResponse>;
|
|
13256
13452
|
modifyPolicyGroup(request: ModifyPolicyGroupRequest): Promise<ModifyPolicyGroupResponse>;
|
|
13257
13453
|
/**
|
|
13258
|
-
* You can modify
|
|
13454
|
+
* You can modify end users only for cloud computers that are in the Running state.
|
|
13259
13455
|
*
|
|
13260
13456
|
* @param request ModifyUserEntitlementRequest
|
|
13261
13457
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13263,7 +13459,7 @@ export default class Client extends OpenApi {
|
|
|
13263
13459
|
*/
|
|
13264
13460
|
modifyUserEntitlementWithOptions(request: ModifyUserEntitlementRequest, runtime: $Util.RuntimeOptions): Promise<ModifyUserEntitlementResponse>;
|
|
13265
13461
|
/**
|
|
13266
|
-
* You can modify
|
|
13462
|
+
* You can modify end users only for cloud computers that are in the Running state.
|
|
13267
13463
|
*
|
|
13268
13464
|
* @param request ModifyUserEntitlementRequest
|
|
13269
13465
|
* @return ModifyUserEntitlementResponse
|
|
@@ -13274,7 +13470,7 @@ export default class Client extends OpenApi {
|
|
|
13274
13470
|
moveCdsFileWithOptions(request: MoveCdsFileRequest, runtime: $Util.RuntimeOptions): Promise<MoveCdsFileResponse>;
|
|
13275
13471
|
moveCdsFile(request: MoveCdsFileRequest): Promise<MoveCdsFileResponse>;
|
|
13276
13472
|
/**
|
|
13277
|
-
* The cloud
|
|
13473
|
+
* The cloud computers that you want to restart must be in the Running state.
|
|
13278
13474
|
*
|
|
13279
13475
|
* @param request RebootDesktopsRequest
|
|
13280
13476
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13282,19 +13478,19 @@ export default class Client extends OpenApi {
|
|
|
13282
13478
|
*/
|
|
13283
13479
|
rebootDesktopsWithOptions(request: RebootDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<RebootDesktopsResponse>;
|
|
13284
13480
|
/**
|
|
13285
|
-
* The cloud
|
|
13481
|
+
* The cloud computers that you want to restart must be in the Running state.
|
|
13286
13482
|
*
|
|
13287
13483
|
* @param request RebootDesktopsRequest
|
|
13288
13484
|
* @return RebootDesktopsResponse
|
|
13289
13485
|
*/
|
|
13290
13486
|
rebootDesktops(request: RebootDesktopsRequest): Promise<RebootDesktopsResponse>;
|
|
13291
13487
|
/**
|
|
13292
|
-
* Before you change the image of a cloud
|
|
13293
|
-
* * You can select the OS of
|
|
13294
|
-
* *
|
|
13295
|
-
* After
|
|
13296
|
-
* *
|
|
13297
|
-
* * If
|
|
13488
|
+
* Before you change the image of a cloud computer, take note of the following limits:
|
|
13489
|
+
* * You can select an image whose OS is different from the OS of the original image. The image change feature is not supported in the following regions: China (Hong Kong), Australia (Sydney), Singapore, and Japan (Tokyo).
|
|
13490
|
+
* * GPU images and non-GPU images cannot be exchanged. Graphical cloud computers can only use GPU-accelerated images. Non-graphical cloud computers can only use non-GPU-accelerated images.
|
|
13491
|
+
* After the image is changed, the system uses the new image to initialize the system disk of the cloud computer. This has the following impacts:
|
|
13492
|
+
* * Data in the system disk of the original cloud computer is cleared. Snapshots that are created based on the system disk of the original cloud computer can no longer be used. The system automatically deletes the snapshots.
|
|
13493
|
+
* * If the OS of the image is changed, the data in the data disks of the original cloud computer is cleared, and the snapshots that are created based on the data disks of the original cloud computer can no longer be used. The system automatically deletes the snapshots. If the OS of the image is not changed, the data in the data disks of the original cloud computer is retained, and the snapshots that are created based on the data disks of the original cloud computer can still be used.
|
|
13298
13494
|
*
|
|
13299
13495
|
* @param request RebuildDesktopsRequest
|
|
13300
13496
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13302,12 +13498,12 @@ export default class Client extends OpenApi {
|
|
|
13302
13498
|
*/
|
|
13303
13499
|
rebuildDesktopsWithOptions(request: RebuildDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<RebuildDesktopsResponse>;
|
|
13304
13500
|
/**
|
|
13305
|
-
* Before you change the image of a cloud
|
|
13306
|
-
* * You can select the OS of
|
|
13307
|
-
* *
|
|
13308
|
-
* After
|
|
13309
|
-
* *
|
|
13310
|
-
* * If
|
|
13501
|
+
* Before you change the image of a cloud computer, take note of the following limits:
|
|
13502
|
+
* * You can select an image whose OS is different from the OS of the original image. The image change feature is not supported in the following regions: China (Hong Kong), Australia (Sydney), Singapore, and Japan (Tokyo).
|
|
13503
|
+
* * GPU images and non-GPU images cannot be exchanged. Graphical cloud computers can only use GPU-accelerated images. Non-graphical cloud computers can only use non-GPU-accelerated images.
|
|
13504
|
+
* After the image is changed, the system uses the new image to initialize the system disk of the cloud computer. This has the following impacts:
|
|
13505
|
+
* * Data in the system disk of the original cloud computer is cleared. Snapshots that are created based on the system disk of the original cloud computer can no longer be used. The system automatically deletes the snapshots.
|
|
13506
|
+
* * If the OS of the image is changed, the data in the data disks of the original cloud computer is cleared, and the snapshots that are created based on the data disks of the original cloud computer can no longer be used. The system automatically deletes the snapshots. If the OS of the image is not changed, the data in the data disks of the original cloud computer is retained, and the snapshots that are created based on the data disks of the original cloud computer can still be used.
|
|
13311
13507
|
*
|
|
13312
13508
|
* @param request RebuildDesktopsRequest
|
|
13313
13509
|
* @return RebuildDesktopsResponse
|
|
@@ -13326,7 +13522,7 @@ export default class Client extends OpenApi {
|
|
|
13326
13522
|
renewNetworkPackagesWithOptions(request: RenewNetworkPackagesRequest, runtime: $Util.RuntimeOptions): Promise<RenewNetworkPackagesResponse>;
|
|
13327
13523
|
renewNetworkPackages(request: RenewNetworkPackagesRequest): Promise<RenewNetworkPackagesResponse>;
|
|
13328
13524
|
/**
|
|
13329
|
-
* > You can call this operation to reset only cloud
|
|
13525
|
+
* > You can call this operation to reset only cloud computers in a cloud computer pool.
|
|
13330
13526
|
*
|
|
13331
13527
|
* @param request ResetDesktopsRequest
|
|
13332
13528
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13334,7 +13530,7 @@ export default class Client extends OpenApi {
|
|
|
13334
13530
|
*/
|
|
13335
13531
|
resetDesktopsWithOptions(request: ResetDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<ResetDesktopsResponse>;
|
|
13336
13532
|
/**
|
|
13337
|
-
* > You can call this operation to reset only cloud
|
|
13533
|
+
* > You can call this operation to reset only cloud computers in a cloud computer pool.
|
|
13338
13534
|
*
|
|
13339
13535
|
* @param request ResetDesktopsRequest
|
|
13340
13536
|
* @return ResetDesktopsResponse
|
|
@@ -13357,10 +13553,9 @@ export default class Client extends OpenApi {
|
|
|
13357
13553
|
resetNASDefaultMountTarget(request: ResetNASDefaultMountTargetRequest): Promise<ResetNASDefaultMountTargetResponse>;
|
|
13358
13554
|
/**
|
|
13359
13555
|
* Before you call this operation, make sure that the following operations are performed:
|
|
13360
|
-
* * The data that you want to retain
|
|
13361
|
-
*
|
|
13362
|
-
*
|
|
13363
|
-
* * The cloud desktop whose disk you want to restore is stopped.
|
|
13556
|
+
* * The data that you want to retain is backed up.
|
|
13557
|
+
* > The disk restoration operation is irreversible. After you call this operation, the disk is restored to the status at the point in time when the snapshot was created. Data that is generated between the snapshot creation time and the current time is lost. Before you restore the disk based on the snapshot, make sure that you back up data.
|
|
13558
|
+
* * The cloud computer to which the disk belongs is stopped.
|
|
13364
13559
|
*
|
|
13365
13560
|
* @param request ResetSnapshotRequest
|
|
13366
13561
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13369,10 +13564,9 @@ export default class Client extends OpenApi {
|
|
|
13369
13564
|
resetSnapshotWithOptions(request: ResetSnapshotRequest, runtime: $Util.RuntimeOptions): Promise<ResetSnapshotResponse>;
|
|
13370
13565
|
/**
|
|
13371
13566
|
* Before you call this operation, make sure that the following operations are performed:
|
|
13372
|
-
* * The data that you want to retain
|
|
13373
|
-
*
|
|
13374
|
-
*
|
|
13375
|
-
* * The cloud desktop whose disk you want to restore is stopped.
|
|
13567
|
+
* * The data that you want to retain is backed up.
|
|
13568
|
+
* > The disk restoration operation is irreversible. After you call this operation, the disk is restored to the status at the point in time when the snapshot was created. Data that is generated between the snapshot creation time and the current time is lost. Before you restore the disk based on the snapshot, make sure that you back up data.
|
|
13569
|
+
* * The cloud computer to which the disk belongs is stopped.
|
|
13376
13570
|
*
|
|
13377
13571
|
* @param request ResetSnapshotRequest
|
|
13378
13572
|
* @return ResetSnapshotResponse
|
|
@@ -13396,8 +13590,7 @@ export default class Client extends OpenApi {
|
|
|
13396
13590
|
*/
|
|
13397
13591
|
runCommand(request: RunCommandRequest): Promise<RunCommandResponse>;
|
|
13398
13592
|
/**
|
|
13399
|
-
*
|
|
13400
|
-
* When you attach your workspace network to a Cloud Enterprise Network (CEN) instance in another Alibaba Cloud account, you need to call this operation to obtain a verification code. After the call is successful, the system sends a verification code to the email address associated with the Alibaba Cloud account.
|
|
13593
|
+
* You must call this operation to obtain the verification code that is required when you bind an advanced office network to a CEN instance that belongs to another Alibaba Cloud account. After you call this operation, the system sends a verification code to the email address associated with the Alibaba Cloud account to which the CEN instance belongs.
|
|
13401
13594
|
*
|
|
13402
13595
|
* @param request SendVerifyCodeRequest
|
|
13403
13596
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13405,8 +13598,7 @@ export default class Client extends OpenApi {
|
|
|
13405
13598
|
*/
|
|
13406
13599
|
sendVerifyCodeWithOptions(request: SendVerifyCodeRequest, runtime: $Util.RuntimeOptions): Promise<SendVerifyCodeResponse>;
|
|
13407
13600
|
/**
|
|
13408
|
-
*
|
|
13409
|
-
* When you attach your workspace network to a Cloud Enterprise Network (CEN) instance in another Alibaba Cloud account, you need to call this operation to obtain a verification code. After the call is successful, the system sends a verification code to the email address associated with the Alibaba Cloud account.
|
|
13601
|
+
* You must call this operation to obtain the verification code that is required when you bind an advanced office network to a CEN instance that belongs to another Alibaba Cloud account. After you call this operation, the system sends a verification code to the email address associated with the Alibaba Cloud account to which the CEN instance belongs.
|
|
13410
13602
|
*
|
|
13411
13603
|
* @param request SendVerifyCodeRequest
|
|
13412
13604
|
* @return SendVerifyCodeResponse
|
|
@@ -13453,7 +13645,7 @@ export default class Client extends OpenApi {
|
|
|
13453
13645
|
setUserProfilePathRulesWithOptions(tmpReq: SetUserProfilePathRulesRequest, runtime: $Util.RuntimeOptions): Promise<SetUserProfilePathRulesResponse>;
|
|
13454
13646
|
setUserProfilePathRules(request: SetUserProfilePathRulesRequest): Promise<SetUserProfilePathRulesResponse>;
|
|
13455
13647
|
/**
|
|
13456
|
-
* The cloud
|
|
13648
|
+
* The cloud computers that you want to start must be in the Stopped state.
|
|
13457
13649
|
*
|
|
13458
13650
|
* @param request StartDesktopsRequest
|
|
13459
13651
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13461,14 +13653,14 @@ export default class Client extends OpenApi {
|
|
|
13461
13653
|
*/
|
|
13462
13654
|
startDesktopsWithOptions(request: StartDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<StartDesktopsResponse>;
|
|
13463
13655
|
/**
|
|
13464
|
-
* The cloud
|
|
13656
|
+
* The cloud computers that you want to start must be in the Stopped state.
|
|
13465
13657
|
*
|
|
13466
13658
|
* @param request StartDesktopsRequest
|
|
13467
13659
|
* @return StartDesktopsResponse
|
|
13468
13660
|
*/
|
|
13469
13661
|
startDesktops(request: StartDesktopsRequest): Promise<StartDesktopsResponse>;
|
|
13470
13662
|
/**
|
|
13471
|
-
* The cloud
|
|
13663
|
+
* The cloud computers that you want to stop must be in the Running state.
|
|
13472
13664
|
*
|
|
13473
13665
|
* @param request StopDesktopsRequest
|
|
13474
13666
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13476,7 +13668,7 @@ export default class Client extends OpenApi {
|
|
|
13476
13668
|
*/
|
|
13477
13669
|
stopDesktopsWithOptions(request: StopDesktopsRequest, runtime: $Util.RuntimeOptions): Promise<StopDesktopsResponse>;
|
|
13478
13670
|
/**
|
|
13479
|
-
* The cloud
|
|
13671
|
+
* The cloud computers that you want to stop must be in the Running state.
|
|
13480
13672
|
*
|
|
13481
13673
|
* @param request StopDesktopsRequest
|
|
13482
13674
|
* @return StopDesktopsResponse
|
|
@@ -13521,7 +13713,7 @@ export default class Client extends OpenApi {
|
|
|
13521
13713
|
updateFotaTaskWithOptions(request: UpdateFotaTaskRequest, runtime: $Util.RuntimeOptions): Promise<UpdateFotaTaskResponse>;
|
|
13522
13714
|
updateFotaTask(request: UpdateFotaTaskRequest): Promise<UpdateFotaTaskResponse>;
|
|
13523
13715
|
/**
|
|
13524
|
-
* >
|
|
13716
|
+
* > You can upload only Windows images.
|
|
13525
13717
|
*
|
|
13526
13718
|
* @param request UploadImageRequest
|
|
13527
13719
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13529,7 +13721,7 @@ export default class Client extends OpenApi {
|
|
|
13529
13721
|
*/
|
|
13530
13722
|
uploadImageWithOptions(request: UploadImageRequest, runtime: $Util.RuntimeOptions): Promise<UploadImageResponse>;
|
|
13531
13723
|
/**
|
|
13532
|
-
* >
|
|
13724
|
+
* > You can upload only Windows images.
|
|
13533
13725
|
*
|
|
13534
13726
|
* @param request UploadImageRequest
|
|
13535
13727
|
* @return UploadImageResponse
|